/**app.wxss**/
|
@import './styles/public.wxss';
|
@import './styles/animate.wxss';
|
@import './components/vant/common/index.wxss';
|
|
/* font-family */
|
@font-face {
|
font-family: 'DingTalk';
|
src: url('./font/DingTalk_JinBuTi_Regular.ttf') format('truetype');
|
}
|
|
page {
|
color: var(--text-color);
|
background-color: var(--bg-color);
|
font-size: var(--font-size-main);
|
line-height: var(--line-height-main);
|
font-family: var(--base-font-family);
|
}
|
|
/* iphoneX底部安全距离 */
|
.safeHeight {
|
height: env(safe-area-inset-bottom);
|
}
|
|
page .btn {
|
background: #ffffff;
|
border-radius: 8rpx;
|
font-size: 28rpx;
|
width: 400rpx;
|
height: 80rpx;
|
line-height: 80rpx;
|
margin: 0;
|
border: none;
|
}
|
|
page .btn-blue {
|
background-color: #26a7df;
|
color: #ffffff;
|
}
|
|
page .btn-primary {
|
background-color: var(--main-color);
|
color: #ffffff;
|
}
|
|
page .btn-white {
|
background-color: #ffffff;
|
color: var(--main-color);
|
}
|
|
.pre {
|
white-space: pre-wrap;
|
word-wrap: break-word;
|
color: var(--text-color);
|
font-family: var(--base-font-family);
|
}
|
|
.public-color {
|
color: var(--main-color)
|
}
|
|
.more-btn {
|
padding: 16rpx 0;
|
color: var(--main-color);
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
|
.more-btn-image {
|
height: 28rpx;
|
width: 28rpx;
|
margin-left: 8rpx;
|
}
|
|
page .tab-active-class {
|
color: var(--main-color);
|
}
|
|
.myMediate .tab-nav-class,
|
.messageCenter-tabs .tab-nav-class {
|
background-color: var(--bg-color);
|
}
|
|
.popup-bottom-button {
|
padding: 32rpx 0;
|
border-top: 2rpx solid var(--border-color);
|
position: fixed;
|
bottom: 0;
|
left: 32rpx;
|
right: 32rpx;
|
background-color: #ffffff;
|
}
|
|
.second-font {
|
font-size: 24rpx;
|
line-height: 40rpx;
|
}
|