/* pages/myTranslate/myTranslate.wxss */
|
view {
|
display: flex;
|
}
|
|
.navbar {
|
flex: none;
|
display: flex;
|
background: #fff;
|
font-size: 18px;
|
color: #999;
|
height: 6vh;
|
}
|
|
.navbar .item {
|
position: relative;
|
flex: auto;
|
text-align: center;
|
line-height: 80rpx;
|
}
|
|
.navbar .item.active {
|
color: #2195ff;
|
}
|
|
.navbar .item.active:after {
|
content: "";
|
display: block;
|
position: absolute;
|
bottom: 0;
|
left: 0;
|
right: 0;
|
height: 4rpx;
|
background: #2195ff;
|
}
|
|
.businessSchedule {
|
font-size: 16px;
|
padding: 2vh;
|
margin: 2vh;
|
background-color: #fff;
|
box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
|
}
|
|
.businessSchedule-top {
|
display: flex;
|
color: #333;
|
align-items: center;
|
padding-bottom: 1vh;
|
border-bottom: 1px solid #f2f2f2;
|
}
|
|
.businessSchedule-top-img {
|
width: 3vh;
|
height: 3vh;
|
}
|
|
.businessSchedule-top-title {
|
padding-left: 1vh;
|
}
|
|
.businessSchedule-top-status {
|
margin-left: auto;
|
display: flex;
|
justify-content: center;
|
box-shadow: 0px 4px 8px 0px rgba(136, 136, 136, 0.11);
|
padding: 1vh;
|
border-radius: 18px;
|
color: #fff;
|
}
|
|
.businessSchedule-center {
|
font-size: 14px;
|
display: flex;
|
padding: 1vh 0;
|
color: #333;
|
}
|
|
.businessSchedule-bottom {
|
display: flex;
|
font-size: 14px;
|
color: #999;
|
}
|
|
.loading {
|
padding: 10rpx;
|
text-align: center;
|
}
|
|
.loading:before {
|
display: inline-block;
|
margin-right: 5rpx;
|
vertical-align: middle;
|
content: '';
|
width: 40rpx;
|
height: 40rpx;
|
background-size: contain;
|
animation: rotate 1s linear infinite;
|
}
|
|
.loading.complete:before {
|
display: none;
|
}
|
|
.businessSchedule-load {
|
display: flex;
|
justify-content: center;
|
color: #999;
|
font-size: 14px;
|
margin-bottom: 4vh;
|
}
|