| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | .tab-active-class {    font-size: 28rpx;    font-family: PingFang SC-Bold, PingFang SC;    font-weight: bold !important;    color: #3874F6 !important;}.head {    display: flex;    width: 100vw;    height: 98rpx;    align-items: center;    padding: 0 30rpx;    box-sizing: border-box;    .count {        flex: 1;        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #333333;        flex-shrink: 0;    }    .search {        display: flex;        align-items: center;        width: 360rpx;        height: 58rpx;        background: #FFFFFF;        border-radius: 29rpx;        box-sizing: border-box;        padding: 0 15rpx;        input {            flex: 1;            font-size: 28rpx;            padding: 0 10rpx;        }    }    .add {        display: flex;        align-items: center;        justify-content: center;        width: 58rpx;        height: 58rpx;        background: #FFFFFF;        border-radius: 8rpx;        border: 2rpx solid #CCCCCC;        margin-left: 32rpx;        color: #666666;    }}
 |