order.wxss 2.5 KB
/* pages/order/order.wxss */
@import "../../templates/templates.wxss";
@import "../../pages/css/modal.wxss";
.tab_box {
    height: 90rpx;
    line-height: 90rpx;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1rpx solid #f5f5f5;
    overflow: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    position: fixed;
    top:0;
    left:0;
    right:0;
    background: #ffffff;
}
.tab_item {
    display: inline-block;
    width: 160rpx;
    font-size: 30rpx;
    color: #333333;
    position: relative;
    text-align: center;
    /* border: 1rpx solid red; */
}
.active {
    color: #EA5D27;
}

.tab_box .active::after {
    content: "";
    /*border: 2rpx solid #DB4E2A;*/
    position: absolute;
    bottom: 0rpx;
    left: 50%;
    transform: translateX(-50%);
    width: 80rpx;
    height: 2rpx;
    background: #EA5D27;
}.content_box {
     padding: 10rpx 20rpx;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     border-top: 1rpx solid #eeeeee;
 }
.post_box {
    margin-top: 92rpx;
    padding-bottom:130rpx;
}
.content_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30rpx 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1rpx solid #eeeeee;

}
.content_item .thumb {
    width: 170rpx;
    height: 170rpx;
    margin-right: 26rpx;
}
.lish-right {
    height: 166rpx;
    display: flex;
    flex:1;
    flex-direction: column;
    justify-content: space-around;
}
.lish-right .title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lish-right .title, .lish-right .time{
    font-size: 24rpx;
    color: #333333;
}
.lish-right .state {
    color:#999999;
    font-size: 24rpx;
}
.lish-right .name-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    font-size: 22rpx;
}
.lish-right .name-box .name-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.lish-right .name-box .btn {
    color:#E2C8B1;
    font-size: 24rpx;
}
.lish-right .name-box .btn text {
    border-radius: 6rpx;
    padding: 8rpx 32rpx;
    background-color: #323232;
}
.lish-right .name-box .avatar{
    width: 40rpx;
    height: 40rpx;
    margin-right: 16rpx;
    border-radius: 50%;
}
.no-data {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30rpx;
    color: #cccccc;
    margin-top: 200rpx;
}