253 lines
6.5 KiB
Plaintext
253 lines
6.5 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.container .container-main {
|
||
padding-bottom: 112rpx;
|
||
}
|
||
.container .container-main .main-tips {
|
||
position: -webkit-sticky;
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 99;
|
||
background: #FFF;
|
||
padding: 24rpx 32rpx;
|
||
}
|
||
.container .container-main .main-tips .tips-icon {
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
background-size: 32rpx;
|
||
}
|
||
.container .container-main .main-tips .tips-text {
|
||
color: var(--theme-color);
|
||
font-size: 24rpx;
|
||
line-height: 34rpx;
|
||
margin-left: 8rpx;
|
||
}
|
||
.container .container-main .main-tips .tips-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: -1;
|
||
background: var(--theme-color);
|
||
opacity: 0.1;
|
||
}
|
||
.container .container-main .main-content {
|
||
padding: 32rpx;
|
||
}
|
||
.container .container-main .main-content .content-item {
|
||
padding: 32rpx 32rpx 24rpx;
|
||
border-radius: 16rpx;
|
||
background: #FFF;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top {
|
||
padding-bottom: 32rpx;
|
||
border-bottom: 1px solid #E4E4E4;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-avatar {
|
||
width: 96rpx;
|
||
height: 96rpx;
|
||
border-radius: 50%;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-info {
|
||
margin-left: 24rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-info .title {
|
||
color: #5A5B6E;
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
line-height: 44rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-info .subtitle {
|
||
margin-top: 16rpx;
|
||
color: #666;
|
||
font-size: 24rpx;
|
||
line-height: 34rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-btn {
|
||
background: var(--theme-color);
|
||
border-radius: 50%;
|
||
overflow: hidden;
|
||
width: 48rpx;
|
||
height: 48rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-top .top-btn .icon {
|
||
width: 100%;
|
||
height: 100%;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center {
|
||
margin-top: 32rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-title {
|
||
color: #5A5B6E;
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
line-height: 44rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-content {
|
||
margin-top: 24rpx;
|
||
color: #5A5B6E;
|
||
font-size: 28rpx;
|
||
line-height: 40rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-image {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
margin-top: 16rpx;
|
||
-webkit-column-gap: 2%;
|
||
column-gap: 2%;
|
||
row-gap: 14rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-image .image-box {
|
||
width: 32%;
|
||
height: 0;
|
||
padding-top: 32%;
|
||
position: relative;
|
||
border-radius: 16rpx;
|
||
overflow: hidden;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-image .image-box .image {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-image.special-image {
|
||
justify-content: space-between;
|
||
-webkit-column-gap: 0;
|
||
column-gap: 0;
|
||
}
|
||
.container .container-main .main-content .content-item .item-center .center-image.special-image .image-box {
|
||
width: calc(50% - 8rpx);
|
||
padding-top: calc(50% - 8rpx);
|
||
}
|
||
.container .container-main .main-content .content-item .item-bottom {
|
||
margin-top: 24rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-bottom .bottom-label {
|
||
padding: 6rpx 18rpx 6rpx 8rpx;
|
||
position: relative;
|
||
z-index: 1;
|
||
border-radius: 8rpx;
|
||
overflow: hidden;
|
||
}
|
||
.container .container-main .main-content .content-item .item-bottom .bottom-label .label-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background: var(--theme-color);
|
||
z-index: -1;
|
||
opacity: 0.1;
|
||
}
|
||
.container .container-main .main-content .content-item .item-bottom .bottom-label .label-icon {
|
||
width: 24rpx;
|
||
height: 24rpx;
|
||
background-size: 24rpx;
|
||
}
|
||
.container .container-main .main-content .content-item .item-bottom .bottom-label .label-text {
|
||
margin-left: 8rpx;
|
||
color: var(--theme-color);
|
||
font-size: 20rpx;
|
||
line-height: 28rpx;
|
||
}
|
||
.container .container-main .main-footer {
|
||
position: fixed;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: 99;
|
||
padding: 12rpx 24rpx;
|
||
background: #ffffff;
|
||
border-top: 1rpx solid #F6F7FB;
|
||
}
|
||
.container .container-main .main-footer .footer-share {
|
||
padding: 22rpx 24rpx;
|
||
background: #FFF;
|
||
border-radius: 16rpx;
|
||
overflow: hidden;
|
||
position: relative;
|
||
z-index: 1;
|
||
}
|
||
.container .container-main .main-footer .footer-share .share-icon {
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
background-size: 32rpx;
|
||
}
|
||
.container .container-main .main-footer .footer-share .share-text {
|
||
margin-left: 16rpx;
|
||
color: var(--theme-color);
|
||
font-size: 24rpx;
|
||
line-height: 44rpx;
|
||
}
|
||
.container .container-main .main-footer .footer-share .share-bg {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: -1;
|
||
background: var(--theme-color);
|
||
opacity: 0.1;
|
||
}
|
||
.container .container-main .main-footer .footer-contact {
|
||
color: #ffffff;
|
||
font-size: 32rpx;
|
||
line-height: 44rpx;
|
||
padding: 22rpx 24rpx;
|
||
border-radius: 16rpx;
|
||
background: var(--theme-color);
|
||
text-align: center;
|
||
width: 240rpx;
|
||
margin-left: 16rpx;
|
||
}
|
||
.container .container-login {
|
||
padding: 96rpx 60rpx 0;
|
||
}
|
||
.container .container-login .login-image {
|
||
width: 100%;
|
||
height: 500rpx;
|
||
}
|
||
.container .container-login .login-tips {
|
||
color: #585858;
|
||
font-size: 36rpx;
|
||
line-height: 50rpx;
|
||
margin-top: 48rpx;
|
||
text-align: center;
|
||
}
|
||
.container .container-login .login-btn {
|
||
margin-top: 56rpx;
|
||
height: 88rpx;
|
||
line-height: 88rpx;
|
||
font-size: 28rpx;
|
||
border-radius: 16rpx;
|
||
text-align: center;
|
||
color: #ffffff;
|
||
}
|