155 lines
2.4 KiB
Plaintext
155 lines
2.4 KiB
Plaintext
|
|
page {
|
|
background-color: #eee;
|
|
}
|
|
|
|
/* 订单tab */
|
|
.order-tab{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
z-index: 9;
|
|
background: white;
|
|
}
|
|
|
|
.order-tab-item{
|
|
font-size: 28rpx;
|
|
width: 20%;
|
|
text-align: center;
|
|
border-bottom: solid 2rpx #f7f7f7;
|
|
color: #464854;
|
|
background: white;
|
|
position: relative;
|
|
}
|
|
|
|
.order-tab-item:after {
|
|
position: absolute;
|
|
content: '';
|
|
left: calc(50% - 30rpx);
|
|
bottom: 0;
|
|
background-color: transparent;
|
|
width: 60rpx;
|
|
height: 8rpx;
|
|
border-radius: 50rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.order-tab-item.active{
|
|
color:#000;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.order-tab-item.active:after {
|
|
background-color: #378fff;
|
|
}
|
|
|
|
/* 订单列表 */
|
|
.order-content{
|
|
border-bottom: solid 100rpx transparent;
|
|
padding: 80rpx 0 20rpx 0;
|
|
}
|
|
|
|
.order-list {
|
|
background-color: white;
|
|
margin: 30rpx 0;
|
|
}
|
|
|
|
.order-company {
|
|
display: flex;
|
|
line-height: 50rpx;
|
|
margin-bottom: 20rpx;
|
|
padding: 20rpx 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.order-company-name {
|
|
font-weight: 600;
|
|
flex: 1;
|
|
display: flex;
|
|
}
|
|
|
|
.order-logo {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.order-arrow {
|
|
width: 28rpx;
|
|
height: 28rpx;
|
|
margin: 10rpx 0 10rpx 20rpx;
|
|
}
|
|
|
|
.order-company-state {
|
|
color: #378fff;
|
|
}
|
|
|
|
.order-goods {
|
|
position: relative;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.order-goods-img {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.order-goods-text {
|
|
position: absolute;
|
|
padding-left: 220rpx;
|
|
padding-right: 30rpx;
|
|
right: 0;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.order-goods-name {
|
|
height: 80rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.order-goods-price {
|
|
display: flex;
|
|
font-size: 28rpx;
|
|
color: #999999;
|
|
}
|
|
|
|
.order-goods-price text {
|
|
flex: 1;
|
|
display: block;
|
|
font-size: 32rpx;
|
|
color: #000;
|
|
}
|
|
|
|
.order-footer {
|
|
border-top: 2rpx solid #eee;
|
|
margin-top: 20rpx;
|
|
padding: 30rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.order-footer-btn {
|
|
margin-left: 20rpx;
|
|
height: 60rpx;
|
|
line-height: 56rpx;
|
|
box-sizing: border-box;
|
|
border: solid 1rpx #dddddd;
|
|
padding: 0 20rpx;
|
|
font-size: 26rpx;
|
|
border-radius: 40rpx;
|
|
float: right;
|
|
}
|
|
|
|
.order-footer-btn-back {
|
|
border-color: #378fff;
|
|
color: #378fff;
|
|
}
|