myGiftBox.less 1.66 KB
.my_gift_box {
    width: 100%;
    // height: calc(100vh-25px);
    background-color: #fff;
    padding-top: 25px;
    .top_box {
        display: flex;
        justify-content: space-between;
        height: 45px;
        margin: 0 30px;
        img {
            width: 37px;
            height: 37px;
            margin: 4px 0;
        }
        .tabs {
            flex: 1;
            margin: 0 134px 0 200px;
            // tab边框
            .van-hairline--top-bottom::after,
            .van-hairline-unset--top-bottom::after {
                border-width: 0;
            }
            .van-tabs__line {
                width: 26px !important;
                height: 5px;
                background: rgba(208, 2, 27, 1);
                border-radius: 3px;
            }
            .van-tab {
                font-size: 32px;
                font-weight: 400;
                color: rgba(153, 153, 153, 1);
                height: 45px;
                line-height: 32px;
            }
            .van-tab--active{
                color: #D0021B;
            }
        }
        .desc {
            width: 114px;
            height: 45px;
            font-size: 26px;
            font-weight: 400;
            color: rgba(153, 153, 153, 1);
            line-height: 45px;
        }
    }
    .item_box{
        height: calc(100vh-114px);
        padding-bottom: 40px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .tip_text{
        text-align: center;
        margin-top: 20px;
        font-size: 26px;
        color: #999;
    }
    .van-picker__cancel, .van-picker__confirm{
        font-size: 30px;
    }
    .van-picker-column{
        font-size: 28px;
    }
}