|
|
|
|
|
/* pages/callPhone/callPhone.wxss */
|
|
|
|
|
|
@import "../index/index.wxss";
|
|
|
|
|
|
@font-face {
|
|
|
|
|
|
font-family: "DingTalk"; /* 这里的字体名称是自定义的 */
|
|
|
|
|
|
src: url("https://matripecandy.oss-cn-beijing.aliyuncs.com/1shoudanImg/DingTalk%20Sans.ttf"); /* 服务器上ttf文件的路径,记得配置域名权限 */
|
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
font-style: normal;
|
|
|
|
|
|
font-display: swap;
|
|
|
|
|
|
}
|
|
|
|
|
|
page {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
.navigationbar {
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.navigationbar text {
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
.underreview {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
height: 54px;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
padding: 0 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.underreview > view:last-child {
|
|
|
|
|
|
color: var(--color-ysd);
|
|
|
|
|
|
}
|
|
|
|
|
|
.underreview > view:last-child i {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.titlelist {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
|
line-height: 2;
|
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
top: 0px;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: calc(100%);
|
|
|
|
|
|
z-index: 999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.titlelist > view {
|
|
|
|
|
|
width: 60px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.titlelist .activelist {
|
|
|
|
|
|
color: var(--color-ysd);
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
.titlelist .activelist::after {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
content: "";
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
|
height: 3px;
|
|
|
|
|
|
background-color: var(--color-ysd);
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
bottom: -8px;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-10px);
|
|
|
|
|
|
}
|
|
|
|
|
|
.main {
|
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .weui-search-bar__box {
|
|
|
|
|
|
height: 34px;
|
|
|
|
|
|
border-radius: 17px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .weui-search-bar__box .weui-search-bar__input .placeholder {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .weui-search-bar__box .weui-icon-clear {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
/* flex-direction: row; */
|
|
|
|
|
|
/* align-items: top; */
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
border-bottom: 1px solid #0000000f;
|
|
|
|
|
|
padding: 14px 0;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist > view:last-child {
|
|
|
|
|
|
/* border-bottom: 1px solid transparent; */
|
|
|
|
|
|
}
|
|
|
|
|
|
.mainlist .subset .date {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 12px;
|
|
|
|
|
|
top: 12px;
|
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo .icon {
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
background-color: rgba(255, 106, 0, 0.1);
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo .icon .iconfont {
|
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo .icon.noTel {
|
|
|
|
|
|
background-color: #ebebeb;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo .user {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main .mainlist .subset .userinfo .user .username {
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
/* width: 188px; */
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
.usertype {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
/* margin-top: 8px; */
|
|
|
|
|
|
}
|
|
|
|
|
|
.display-flex {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.titlelist1 {
|
|
|
|
|
|
/* display: flex; */
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
/* justify-content: space-between; */
|
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
|
padding: 0px;
|
|
|
|
|
|
line-height: 2;
|
|
|
|
|
|
/* padding-bottom: 8px; */
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
/* top: 0px;
|
|
|
|
|
|
left: 0; */
|
|
|
|
|
|
/* width: calc(100%); */
|
|
|
|
|
|
z-index: 999;
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs-bar__item {
|
|
|
|
|
|
margin: 0 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui-tabs {
|
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs swiper {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs-bar__wrp {
|
|
|
|
|
|
border-bottom: 1px solid var(--weui-BG-2);
|
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui-tabs-swiper {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
background-color: var(--weui-BG-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tab-content {
|
|
|
|
|
|
/* height: 100px; */
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui-tabs-bar__title {
|
|
|
|
|
|
margin: 0px 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tab-bar-title__selected {
|
|
|
|
|
|
/* font-size: 20px; */
|
|
|
|
|
|
color: var(--color-be) !important;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
.item-title {
|
|
|
|
|
|
margin: 10px 10px 5px;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
.item-desc {
|
|
|
|
|
|
margin: 5px 10px 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
color: var(--weui-FG-1);
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs-bar__item {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
/* font-weight: bold; */
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs-bar__item .activelist {
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
color: var(--color-be) !important;
|
|
|
|
|
|
border-bottom-color: var(--color-be) !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.weui-tabs-bar__title {
|
|
|
|
|
|
border-bottom-width: 3px !important;
|
|
|
|
|
|
/* border-bottom-color: var(--color-be) !important; */
|
|
|
|
|
|
}
|
|
|
|
|
|
.menuBorder {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
width: 72px;
|
|
|
|
|
|
margin-left: -36px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.lNum {
|
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
color: #1890ff;
|
|
|
|
|
|
line-height: 39px;
|
|
|
|
|
|
min-width: 60px;
|
|
|
|
|
|
letter-spacing: -1px;
|
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
|
font-family: "DingTalk";
|
|
|
|
|
|
}
|
|
|
|
|
|
.link {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
color: #576b95;
|
|
|
|
|
|
}
|
|
|
|
|
|
.bottomBox {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
padding-bottom: 26px;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.despBox{
|
|
|
|
|
|
height: calc(80vh - 70px);
|
|
|
|
|
|
}
|