107 lines
1.8 KiB
CSS
107 lines
1.8 KiB
CSS
.container {}
|
|
|
|
.row {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
margin: 0 30rpx;
|
|
margin-top: 30rpx;
|
|
|
|
}
|
|
|
|
.row_label {
|
|
display: flex;
|
|
font-size: 28rpx;
|
|
color: #999999;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.row_label span {
|
|
color: #FF370B;
|
|
}
|
|
|
|
.row_con {
|
|
flex: 1;
|
|
border-bottom: 1rpx solid #EBEBEB;
|
|
margin-left: 84rpx;
|
|
padding-left: 12rpx;
|
|
padding-bottom: 30rpx;
|
|
}
|
|
|
|
.tabList {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 45rpx;
|
|
}
|
|
|
|
.tabItem {
|
|
flex: 1;
|
|
text-align: center;
|
|
font-size: 32rpx;
|
|
color: #999999;
|
|
border-right: 1rpx solid #EBEBEB;
|
|
padding: 14rpx 0;
|
|
}
|
|
|
|
.tabItem:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
.active {
|
|
color: #222222;
|
|
position: relative;
|
|
}
|
|
|
|
.active::after {
|
|
content: '';
|
|
width: 100%;
|
|
height: 2rpx;
|
|
background-color: #FF370B;
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
bottom: -5rpx;
|
|
}
|
|
|
|
|
|
.row_con .u-input {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.currentAddress {
|
|
background: #F6F6FA;
|
|
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
|
padding: 30rpx 24rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
|
|
.tips {
|
|
font-size: 26rpx;
|
|
color: rgba(255, 0, 0, 0.808);
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.currentAddress1 {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.currentAddress1_right {
|
|
width: 91rpx;
|
|
height: 51rpx;
|
|
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
|
border: 1rpx solid #999999;
|
|
font-size: 28rpx;
|
|
color: #222222;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-left: 50rpx;
|
|
}
|
|
|
|
.currentAddress2 {
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
margin-top: 6rpx;
|
|
} |