city-list.wxss 1.7 KB
/* pages/index/city-list/city-list.wxss */
page {
    height: 100%;
    background-color: #f5f6f8;
}
.content {
    height: 100%;
    background-color: #f5f6f8;
}
.tab_box {
    width: 100%;
    /* padding: 0 70rpx; */
    height: 90rpx;
    line-height: 90rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-bottom: 20rpx solid #f5f5f5; */
    overflow: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: fixed;
    top:0;
    left:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
}
.tab_item {
    width:50%;
    display: inline-block;
    /* width: 160rpx; */
    font-size: 30rpx;
    color: #333333;
    position: relative;
    text-align: center;
    border-bottom: 4rpx solid transparent;
    /* border: 1rpx solid red; */
}
.tab_box .active {
    border-bottom: 4rpx solid #DB4E2A;
    /*font-weight: bold;*/
    /*color: #0E050A;*/
}

/*.tab_box .active::after {*/
    /*content: "";*/
    /*!*border: 2rpx solid #DB4E2A;*!*/
    /*position: absolute;*/
    /*bottom: 0rpx;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*width: 250rpx;*/
    /*height: 3rpx;*/
    /*background: #2C82E6;*/
/*}*/
.city-box {
    margin-top: 104rpx;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10rpx 30rpx;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.city-item {
    padding: 10rpx 40rpx;
    font-size: 28rpx;
    color: #666666;
    border-radius: 6rpx;
    margin-top: 20rpx;
    margin-right: 20rpx;
    border:1rpx solid #e8e8e8;
    background-color: #fff;
}
.change-bg {
    background-color: #DB4E2A;
    color: #ffffff;
}