爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

222 lines
5.2 KiB

/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.faq-page.data-v-2d4a740c {
min-height: 100vh;
background: linear-gradient(180deg, #fff3db 0%, #ffffff 100%);
padding-bottom: env(safe-area-inset-bottom);
}
.nav-bar.data-v-2d4a740c {
display: flex;
align-items: center;
height: calc(150rpx + var(--status-bar-height));
padding: 0 32rpx;
padding-top: var(--status-bar-height);
background: linear-gradient(180deg, #fff3db 100%, #ffffff 0%);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
box-sizing: border-box;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
}
.nav-bar .back.data-v-2d4a740c {
padding: 20rpx;
margin-left: -20rpx;
}
.nav-bar .title.data-v-2d4a740c {
flex: 1;
text-align: center;
font-size: 34rpx;
font-weight: 500;
color: #222;
}
.main-content.data-v-2d4a740c {
margin-top: calc(150rpx + var(--status-bar-height));
margin-bottom: 40rpx;
padding-bottom: calc(88rpx + env(safe-area-inset-bottom));
}
.content-card.data-v-2d4a740c {
margin: 0 32rpx;
padding: 32rpx;
background: #fff;
border-radius: 32rpx;
box-shadow: 0 8rpx 32rpx rgba(60, 167, 250, 0.08);
}
.qa-list.data-v-2d4a740c {
padding: 0 36rpx;
}
.qa-item.data-v-2d4a740c {
margin-bottom: 36rpx;
}
.question-row.data-v-2d4a740c {
display: flex;
align-items: center;
margin-bottom: 8rpx;
}
.q-icon.data-v-2d4a740c {
color: #ffb300;
font-size: 32rpx;
font-weight: bold;
margin-right: 12rpx;
}
.question.data-v-2d4a740c {
font-size: 32rpx;
font-weight: bold;
color: #222;
}
.answer.data-v-2d4a740c {
font-size: 26rpx;
color: #999;
line-height: 1.7;
padding-left: 44rpx;
}
.dashed-line.data-v-2d4a740c {
border-bottom: 2rpx dashed #e5e5e5;
margin: 24rpx 36rpx 0 36rpx;
}
.bottom-tip.data-v-2d4a740c {
font-size: 24rpx;
color: #999;
text-align: left;
line-height: 1.6;
padding: 32rpx 36rpx 0 36rpx;
}
.bottom-btns.data-v-2d4a740c {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 101;
display: flex;
justify-content: center;
align-items: center;
gap: 32rpx;
padding: 24rpx 36rpx calc(24rpx + env(safe-area-inset-bottom)) 36rpx;
background: #fff;
box-shadow: 0 -2rpx 12rpx rgba(0, 0, 0, 0.03);
}
.btn-outline.data-v-2d4a740c {
flex: 1;
height: 88rpx;
line-height: 88rpx;
background: #fff0d2;
color: #ffb300;
font-size: 32rpx;
border-radius: 44rpx;
border: 2rpx solid #ffb300;
margin-right: 0;
}
.btn-gradient.data-v-2d4a740c {
flex: 1;
height: 88rpx;
line-height: 88rpx;
background: linear-gradient(90deg, #ffdf8c 0%, #ffb300 100%);
color: #fff;
font-size: 32rpx;
border-radius: 44rpx;
border: none;
margin-left: 0;
}
.phone-popup.data-v-2d4a740c {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 9999;
display: flex;
align-items: flex-end;
justify-content: center;
}
.phone-popup .popup-mask.data-v-2d4a740c {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
z-index: 0;
}
.phone-popup .popup-content.data-v-2d4a740c {
position: relative;
width: 100vw;
background: #fff;
border-radius: 24rpx 24rpx 0 0;
box-shadow: 0 -4rpx 32rpx rgba(0, 0, 0, 0.08);
padding-bottom: env(safe-area-inset-bottom);
animation: popupUp-2d4a740c 0.2s;
}
@keyframes popupUp-2d4a740c {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.phone-popup .popup-header.data-v-2d4a740c {
display: flex;
align-items: center;
justify-content: center;
height: 56px;
border-bottom: 1px solid #f2f2f2;
position: relative;
}
.phone-popup .popup-header .close-btn.data-v-2d4a740c {
position: absolute;
left: 24px;
font-size: 17px;
color: #999;
}
.phone-popup .popup-header .popup-title.data-v-2d4a740c {
font-size: 18px;
color: #222;
font-weight: 600;
letter-spacing: 1px;
}
.phone-popup .popup-phone-row.data-v-2d4a740c {
display: flex;
align-items: center;
justify-content: center;
padding: 40px 0 32px 0;
}
.phone-popup .popup-phone-row .popup-phone.data-v-2d4a740c {
font-size: 24px;
color: #222;
font-weight: 400;
letter-spacing: 1px;
margin-right: 18px;
}
.phone-popup .popup-phone-row .popup-phone-icon.data-v-2d4a740c {
width: 44px;
height: 44px;
background: #f5f5f5;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}