爱简收旧衣按件回收前端代码仓库
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.
 
 
 
 

138 lines
3.2 KiB

/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.tui-detail-container.data-v-4922c184 {
min-height: 100vh;
background: #f7f7f7;
padding-bottom: 160rpx;
}
.navbar.data-v-4922c184 {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100rpx;
background: #fff;
z-index: 10;
display: flex;
align-items: flex-end;
justify-content: space-between;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
padding: 0 32rpx;
}
.navbar .nav-left.data-v-4922c184 {
flex: 0 0 48rpx;
display: flex;
align-items: center;
height: 100%;
}
.navbar .nav-title.data-v-4922c184 {
flex: 1;
text-align: center;
font-size: 36rpx;
font-weight: bold;
color: #222;
line-height: 100rpx;
}
.navbar .nav-right.data-v-4922c184 {
flex: 0 0 80rpx;
display: flex;
align-items: center;
justify-content: flex-end;
height: 100%;
}
.main-content.data-v-4922c184 {
margin-bottom: 40rpx;
margin-top: calc(120rpx + var(--status-bar-height));
}
.info-card.data-v-4922c184 {
background: #fff;
border-radius: 40rpx;
margin: 0 32rpx 32rpx 32rpx;
padding: 40rpx 36rpx 36rpx 36rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
}
.card-title.data-v-4922c184 {
font-size: 32rpx;
font-weight: bold;
color: #222;
margin-bottom: 32rpx;
}
.info-row.data-v-4922c184 {
display: flex;
align-items: center;
min-height: 60rpx;
margin-bottom: 0;
}
.info-row .label.data-v-4922c184 {
font-size: 26rpx;
color: #b3b3b3;
width: 180rpx;
font-weight: 400;
}
.info-row .value.data-v-4922c184 {
font-size: 30rpx;
color: #222;
font-weight: 500;
flex: 1;
word-break: break-all;
}
.divider.data-v-4922c184 {
height: 2rpx;
background: #f3f3f3;
margin: 18rpx 0 18rpx 0;
border: none;
}
.bottom-bar.data-v-4922c184 {
position: fixed;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
background: #f7f7f7;
padding-bottom: env(safe-area-inset-bottom);
padding-top: 24rpx;
padding-bottom: 24rpx;
z-index: 20;
}
.action-btn.data-v-4922c184 {
flex: 1;
margin: 0 32rpx;
height: 80rpx;
border-radius: 40rpx;
font-size: 30rpx;
font-weight: 500;
border: 2rpx solid #ffd36d;
background: #fffbe6;
color: #ffb800;
box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.03);
}
.action-btn.danger.data-v-4922c184 {
color: #ffb800;
border: 2rpx solid #ffd36d;
background: #fffbe6;
}