You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
307 lines
6.5 KiB
CSS
307 lines
6.5 KiB
CSS
|
1 year ago
|
.pabtm {
|
||
|
|
position: fixed;
|
||
|
|
height: 48px;
|
||
|
|
width: 48px;
|
||
|
|
right: 12px;
|
||
|
|
padding: 6px 0px;
|
||
|
|
border-radius: 999px;
|
||
|
|
background-color: #ff4400;
|
||
|
|
box-shadow: 1px 1px 10px #f00;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: space-between;
|
||
|
|
box-sizing: border-box;
|
||
|
|
z-index: 999;
|
||
|
|
}
|
||
|
|
.navigationbar {
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
.navigationbar text {
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
/* padding: 10px; */
|
||
|
|
padding: 10px 0 20px 0;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
}
|
||
|
|
.container .userinfo {
|
||
|
|
font-size: 16px;
|
||
|
|
background-color: #fff;
|
||
|
|
padding: 0 9px;
|
||
|
|
/* border-radius: 8px; */
|
||
|
|
}
|
||
|
|
.container .userinfo > view:not(.drawerBox) {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 16px 0;
|
||
|
|
}
|
||
|
|
.container .userinfo .phone view:last-child {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
align-items: center;
|
||
|
|
color: var(--color-ysd);
|
||
|
|
}
|
||
|
|
.container .userinfo .phone view:last-child view:first-child {
|
||
|
|
width: 20px;
|
||
|
|
height: 20px;
|
||
|
|
margin-right: 4px;
|
||
|
|
}
|
||
|
|
.container .userinfo > view:nth-child(-n + 4) {
|
||
|
|
border-bottom: 1px solid #0000000f;
|
||
|
|
}
|
||
|
|
.container .userinfo > view > text:first-child {
|
||
|
|
color: #666;
|
||
|
|
}
|
||
|
|
/* .container .userinfo {
|
||
|
|
display: block;
|
||
|
|
} */
|
||
|
|
.container .userinfo > view:first-child {
|
||
|
|
padding-bottom: 20px;
|
||
|
|
}
|
||
|
|
.drawerBox {
|
||
|
|
}
|
||
|
|
.drawer {
|
||
|
|
position: fixed;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
z-index: 2000;
|
||
|
|
width: 100vw;
|
||
|
|
background-color: #fff;
|
||
|
|
height: 0;
|
||
|
|
transition: all 0.3s;
|
||
|
|
}
|
||
|
|
.drawerMask {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 1000;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
left: 0;
|
||
|
|
bottom: 0;
|
||
|
|
transition: opacity 0.3s, visibility 0.3s;
|
||
|
|
background: rgba(0, 0, 0, 0.6);
|
||
|
|
visibility: hidden;
|
||
|
|
opacity: 0;
|
||
|
|
}
|
||
|
|
.drawerMask.showDrawer {
|
||
|
|
opacity: 1;
|
||
|
|
visibility: visible;
|
||
|
|
}
|
||
|
|
.drawer.showDrawer {
|
||
|
|
/* position: relative; */
|
||
|
|
border-radius: 8px 8px 0 0;
|
||
|
|
height: 400px;
|
||
|
|
padding-bottom: 44px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent {
|
||
|
|
/* padding-left: 8px ; */
|
||
|
|
height: 400px;
|
||
|
|
margin-top: 32px;
|
||
|
|
margin-left: 12px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent > span:last-child {
|
||
|
|
display: block;
|
||
|
|
color: #999;
|
||
|
|
font-size: 14px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent > span:last-child text {
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset {
|
||
|
|
position: relative;
|
||
|
|
width: 320px;
|
||
|
|
border-left: 1.5px solid #ccc;
|
||
|
|
padding-left: 20px;
|
||
|
|
box-sizing: content-box;
|
||
|
|
margin-left: 6px;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset:not(:last-of-type) {
|
||
|
|
padding: 0 0 20px 20px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset:first-child {
|
||
|
|
padding-top: 8px;
|
||
|
|
box-sizing: content-box;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset .beforeball {
|
||
|
|
position: absolute;
|
||
|
|
left: -5.5px;
|
||
|
|
top: 0px;
|
||
|
|
width: 10px;
|
||
|
|
height: 10px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: #ccc;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset:first-child .beforeball {
|
||
|
|
background-color: var(--color-ysd);
|
||
|
|
top: 0px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset > view {
|
||
|
|
position: relative;
|
||
|
|
top: -12px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset:first-child .orderType {
|
||
|
|
color: var(--color-ysd);
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset .remark {
|
||
|
|
color: #666;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset .timeinfo {
|
||
|
|
color: #999;
|
||
|
|
font-size: 14px;
|
||
|
|
margin-left: 12px;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .followSubset:last-of-type {
|
||
|
|
border-left-color: transparent;
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .loadMore {
|
||
|
|
position: absolute;
|
||
|
|
left: 50%;
|
||
|
|
margin: 12px 0;
|
||
|
|
transform: translateX(-50%);
|
||
|
|
color: #999;
|
||
|
|
font-size: 14px;
|
||
|
|
/* text-align: center; */
|
||
|
|
}
|
||
|
|
.container .userinfo .followContent .loadMore .t-icon {
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
}
|
||
|
|
.container .statusbox {
|
||
|
|
font-size: 16px;
|
||
|
|
background-color: #fff;
|
||
|
|
padding: 0 9px;
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
.container .statusbox .status {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-top: 10px;
|
||
|
|
border-bottom: 1px solid #0000000f;
|
||
|
|
padding: 20px 0;
|
||
|
|
}
|
||
|
|
.container .statusbox .status .statuschange {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
justify-content: space-between;
|
||
|
|
}
|
||
|
|
.container .statusbox .status .statuschange > view {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: row;
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 22px;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.container .statusbox .status .statuschange > view view:first-child {
|
||
|
|
margin-right: 8px;
|
||
|
|
}
|
||
|
|
.container .statusbox .status .statuschange > view:not(:last-child) {
|
||
|
|
margin-right: 16px;
|
||
|
|
}
|
||
|
|
.container .statusbox .remark {
|
||
|
|
padding-top: 20px;
|
||
|
|
}
|
||
|
|
.container .statusbox .remark .weui-cell {
|
||
|
|
border-top: none;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
.container .weui-btn_primary {
|
||
|
|
width: 200px;
|
||
|
|
height: 42px;
|
||
|
|
border-radius: 25px;
|
||
|
|
background-color: var(--color-ysd);
|
||
|
|
font-size: 18px;
|
||
|
|
padding: 0;
|
||
|
|
line-height: 42px;
|
||
|
|
margin-top: 90px;
|
||
|
|
}
|
||
|
|
.titleMain view {
|
||
|
|
/* position: absolute; */
|
||
|
|
padding-bottom: 20px;
|
||
|
|
padding-left: 26rpx;
|
||
|
|
border-left: 2px solid #cccccc;
|
||
|
|
left: 16px;
|
||
|
|
line-height: 20px;
|
||
|
|
height: 22px;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: bold;
|
||
|
|
color: #333333;
|
||
|
|
}
|
||
|
|
.bb4 + .titleMain view {
|
||
|
|
color: var(--color-be) !important;
|
||
|
|
}
|
||
|
|
.bb4 + .titleMain .iconfont {
|
||
|
|
background-color: var(--color-be) !important;
|
||
|
|
}
|
||
|
|
.titleMain .iconfont {
|
||
|
|
position: absolute;
|
||
|
|
top: 0px;
|
||
|
|
left: -10px;
|
||
|
|
display: inline-block;
|
||
|
|
width: 40rpx;
|
||
|
|
height: 40rpx;
|
||
|
|
font-size: 13px;
|
||
|
|
font-weight: normal;
|
||
|
|
text-align: center;
|
||
|
|
line-height: 41rpx;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: #cccccc;
|
||
|
|
color: #ffffff;
|
||
|
|
}
|
||
|
|
.cb-cricle {
|
||
|
|
background-color: #cccccc;
|
||
|
|
}
|
||
|
|
.ui-step .ui-list-info {
|
||
|
|
border-left: 2px solid #cccccc;
|
||
|
|
}
|
||
|
|
.contact .info {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.contact .info image {
|
||
|
|
width: 52px;
|
||
|
|
height: 52px;
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
.loginOut {
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
.stickyBottom {
|
||
|
|
position: sticky;
|
||
|
|
bottom: 0;
|
||
|
|
padding-top: 8px;
|
||
|
|
padding-bottom: 24px;
|
||
|
|
z-index: 99;
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
.joinBottom {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
padding-top: 8px;
|
||
|
|
padding-bottom: 24px;
|
||
|
|
z-index: 99;
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.weui-cell::after {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.weui-cell::before {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.picker_toolbar {
|
||
|
|
background-color: #ff4400 !important;
|
||
|
|
color: #fff !important;
|
||
|
|
}
|
||
|
|
.thover9 {
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|