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

179 lines
4.2 KiB

/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.team-container.data-v-f0795b19 {
min-height: 100vh;
background: #f7f7f7;
}
.nav-bar.data-v-f0795b19 {
display: flex;
align-items: center;
height: calc(150rpx + var(--status-bar-height));
padding: 0 32rpx;
padding-top: var(--status-bar-height);
background: #fff;
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-f0795b19 {
padding: 20rpx;
margin-left: -20rpx;
}
.nav-bar .title.data-v-f0795b19 {
flex: 1;
text-align: center;
font-size: 34rpx;
font-weight: 500;
color: #222;
}
.main-content.data-v-f0795b19 {
margin-top: calc(150rpx + var(--status-bar-height));
margin-bottom: 40rpx;
}
.team-tabs.data-v-f0795b19 {
display: flex;
justify-content: center;
align-items: center;
background: #fff;
border-radius: 40rpx 40rpx 0 0;
margin: 0 32rpx;
padding: 0 0 0 0;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
}
.team-tabs .tab.data-v-f0795b19 {
flex: 1;
text-align: center;
font-size: 30rpx;
color: #b3b3b3;
font-weight: 500;
padding: 32rpx 0 24rpx 0;
border-bottom: 4rpx solid transparent;
transition: color 0.2s, border-color 0.2s;
}
.team-tabs .tab.active.data-v-f0795b19 {
color: #ff8917;
border-bottom: 4rpx solid #ff8917;
font-weight: 600;
}
.team-summary.data-v-f0795b19 {
background: #eeffe9;
color: #4cbb4c;
font-size: 26rpx;
text-align: center;
padding: 18rpx 0;
margin: 0 32rpx 0 32rpx;
border-radius: 0 0 20rpx 20rpx;
font-family: PingFang SC;
font-weight: 400;
}
.team-summary .highlight.data-v-f0795b19 {
color: #f79400;
font-weight: 600;
}
.team-list-card.data-v-f0795b19 {
background: #fff;
border-radius: 40rpx;
margin: 24rpx 32rpx 32rpx 32rpx;
padding: 0 0 0 0;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
}
.team-item.data-v-f0795b19 {
display: flex;
align-items: center;
justify-content: flex-start;
padding: 28rpx 36rpx 28rpx 36rpx;
border-bottom: 2rpx solid #f3f3f3;
}
.team-item.data-v-f0795b19:last-child {
border-bottom: none;
}
.avatar.data-v-f0795b19 {
width: 60rpx;
height: 60rpx;
border-radius: 50%;
margin-right: 24rpx;
object-fit: cover;
background: #f5f5f5;
}
.team-info.data-v-f0795b19 {
display: flex;
flex-direction: column;
justify-content: center;
min-width: 120rpx;
}
.team-name.data-v-f0795b19 {
font-size: 28rpx;
color: #222;
font-weight: 500;
}
.team-join.data-v-f0795b19 {
font-size: 22rpx;
color: #b3b3b3;
font-weight: 400;
margin-top: 2rpx;
}
.team-order.data-v-f0795b19 {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
min-width: 90rpx;
margin-left: 12rpx;
margin-right: 12rpx;
}
.team-order .order-count.data-v-f0795b19 {
font-size: 26rpx;
color: #222;
font-weight: 500;
}
.team-order .order-label.data-v-f0795b19 {
font-size: 22rpx;
color: #b3b3b3;
font-weight: 400;
margin-top: 2rpx;
}
.team-amount.data-v-f0795b19 {
min-width: 80rpx;
display: flex;
flex-direction: column;
align-items: flex-end;
margin-left: 12rpx;
}
.team-amount .amount.data-v-f0795b19 {
font-size: 26rpx;
color: #f79400;
font-weight: 500;
}
.team-amount .amount-label.data-v-f0795b19 {
font-size: 22rpx;
color: #b3b3b3;
font-weight: 400;
margin-top: 2rpx;
}