110 lines
1.9 KiB
Plaintext
110 lines
1.9 KiB
Plaintext
/* pages/my/orderList.wxss */
|
|
.van-tabs__wrap{
|
|
height: 44px;
|
|
overflow: hidden;
|
|
}
|
|
.van-tabs__nav--line {
|
|
box-sizing: content-box;
|
|
height: 100%;
|
|
padding-bottom: 15px;
|
|
}
|
|
.van-tabs__nav {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
background-color: #fff;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.van-tab {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-flex: 1;
|
|
-webkit-flex: 1;
|
|
flex: 1;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
padding: 0 4px;
|
|
color: #646566;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
cursor: pointer;
|
|
}
|
|
.van-tabs__line {
|
|
height: 2px;
|
|
background-color: #ff6925;
|
|
}
|
|
.order-con .van-tabs__line {
|
|
height: 2px;
|
|
background-color: #ff6925;
|
|
}
|
|
.van-tabs__line {
|
|
position: absolute;
|
|
bottom: 15px;
|
|
left: 0;
|
|
z-index: 1;
|
|
width: 40px;
|
|
height: 3px;
|
|
background-color: #ee0a24;
|
|
border-radius: 3px;
|
|
}
|
|
.van-tab--active text{
|
|
color: #ff6925;
|
|
font-weight: 500;
|
|
}
|
|
.pdlr15 {
|
|
padding: 0 15px;
|
|
}
|
|
.order-card {
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
padding-bottom: 10px;
|
|
padding: 0 15px;
|
|
margin-top: 10px;
|
|
}
|
|
.order-card .content-title {
|
|
padding: 10px 0;
|
|
position: relative;
|
|
font-size: 16px;
|
|
}
|
|
.flex-row {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.flex-col {
|
|
flex: 1;
|
|
width: 0;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: left;
|
|
-webkit-box-align: left;
|
|
}
|
|
.order-card .content-title .more {
|
|
color: #8f8f8f;
|
|
font-size: 12px;
|
|
}
|
|
.defaultImg {
|
|
border-radius: 5px;
|
|
}
|
|
.jz-center {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
text-align: center;
|
|
-webkit-box-align: center;
|
|
}
|
|
.order-card image{
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
.mr10{
|
|
margin-right: 10px;
|
|
} |