379 lines
10 KiB
CSS
379 lines
10 KiB
CSS
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.uni-tag[data-v-1f94d070] {
|
||
line-height: 14px;
|
||
font-size: 12px;
|
||
font-weight: 200;
|
||
padding: 4px 7px;
|
||
color: #fff;
|
||
border-radius: 3px;
|
||
background-color: #8f939c;
|
||
border-width: 1px;
|
||
border-style: solid;
|
||
border-color: #8f939c;
|
||
}
|
||
.uni-tag--default[data-v-1f94d070] {
|
||
font-size: 12px;
|
||
}
|
||
.uni-tag--default--inverted[data-v-1f94d070] {
|
||
color: #8f939c;
|
||
border-color: #8f939c;
|
||
}
|
||
.uni-tag--small[data-v-1f94d070] {
|
||
padding: 2px 5px;
|
||
font-size: 12px;
|
||
border-radius: 2px;
|
||
}
|
||
.uni-tag--mini[data-v-1f94d070] {
|
||
padding: 1px 3px;
|
||
font-size: 12px;
|
||
border-radius: 2px;
|
||
}
|
||
.uni-tag--primary[data-v-1f94d070] {
|
||
background-color: #2979ff;
|
||
border-color: #2979ff;
|
||
color: #fff;
|
||
}
|
||
.uni-tag--success[data-v-1f94d070] {
|
||
color: #fff;
|
||
background-color: #18bc37;
|
||
border-color: #18bc37;
|
||
}
|
||
.uni-tag--warning[data-v-1f94d070] {
|
||
color: #fff;
|
||
background-color: #f3a73f;
|
||
border-color: #f3a73f;
|
||
}
|
||
.uni-tag--error[data-v-1f94d070] {
|
||
color: #fff;
|
||
background-color: #e43d33;
|
||
border-color: #e43d33;
|
||
}
|
||
.uni-tag--primary--inverted[data-v-1f94d070] {
|
||
color: #2979ff;
|
||
border-color: #2979ff;
|
||
}
|
||
.uni-tag--success--inverted[data-v-1f94d070] {
|
||
color: #18bc37;
|
||
border-color: #18bc37;
|
||
}
|
||
.uni-tag--warning--inverted[data-v-1f94d070] {
|
||
color: #f3a73f;
|
||
border-color: #f3a73f;
|
||
}
|
||
.uni-tag--error--inverted[data-v-1f94d070] {
|
||
color: #e43d33;
|
||
border-color: #e43d33;
|
||
}
|
||
.uni-tag--inverted[data-v-1f94d070] {
|
||
background-color: #fff;
|
||
}
|
||
.uni-tag--circle[data-v-1f94d070] {
|
||
border-radius: 15px;
|
||
}
|
||
.uni-tag--mark[data-v-1f94d070] {
|
||
border-top-left-radius: 0;
|
||
border-bottom-left-radius: 0;
|
||
border-top-right-radius: 15px;
|
||
border-bottom-right-radius: 15px;
|
||
}
|
||
.uni-tag--disabled[data-v-1f94d070] {
|
||
opacity: 0.5;
|
||
}
|
||
.uni-tag-text[data-v-1f94d070] {
|
||
color: #fff;
|
||
font-size: 14px;
|
||
}
|
||
.uni-tag-text--primary[data-v-1f94d070] {
|
||
color: #2979ff;
|
||
}
|
||
.uni-tag-text--success[data-v-1f94d070] {
|
||
color: #18bc37;
|
||
}
|
||
.uni-tag-text--warning[data-v-1f94d070] {
|
||
color: #f3a73f;
|
||
}
|
||
.uni-tag-text--error[data-v-1f94d070] {
|
||
color: #e43d33;
|
||
}
|
||
.uni-tag-text--small[data-v-1f94d070] {
|
||
font-size: 12px;
|
||
}
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.uni-section[data-v-637fd36b] {
|
||
background-color: #fff;
|
||
}
|
||
.uni-section .uni-section-header[data-v-637fd36b] {
|
||
position: relative;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
padding: 12px 10px;
|
||
font-weight: normal;
|
||
}
|
||
.uni-section .uni-section-header__decoration[data-v-637fd36b] {
|
||
margin-right: 6px;
|
||
background-color: #2979ff;
|
||
}
|
||
.uni-section .uni-section-header__decoration.line[data-v-637fd36b] {
|
||
width: 4px;
|
||
height: 12px;
|
||
border-radius: 10px;
|
||
}
|
||
.uni-section .uni-section-header__decoration.circle[data-v-637fd36b] {
|
||
width: 8px;
|
||
height: 8px;
|
||
border-top-right-radius: 50px;
|
||
border-top-left-radius: 50px;
|
||
border-bottom-left-radius: 50px;
|
||
border-bottom-right-radius: 50px;
|
||
}
|
||
.uni-section .uni-section-header__decoration.square[data-v-637fd36b] {
|
||
width: 8px;
|
||
height: 8px;
|
||
}
|
||
.uni-section .uni-section-header__content[data-v-637fd36b] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
flex: 1;
|
||
color: #333;
|
||
}
|
||
.uni-section .uni-section-header__content .distraction[data-v-637fd36b] {
|
||
flex-direction: row;
|
||
align-items: center;
|
||
}
|
||
.uni-section .uni-section-header__content-sub[data-v-637fd36b] {
|
||
margin-top: 2px;
|
||
}
|
||
.uni-section .uni-section-header__slot-right[data-v-637fd36b] {
|
||
font-size: 14px;
|
||
}
|
||
.uni-section .uni-section-content[data-v-637fd36b] {
|
||
font-size: 14px;
|
||
}
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.shop-image[data-v-1f5faebb] {
|
||
height: 5.125rem;
|
||
width: 5.125rem;
|
||
background-color: #D8D8D8;
|
||
border-radius: 0.3125rem;
|
||
margin-right: 0.3125rem;
|
||
}
|
||
[data-v-1f5faebb] .uni-section-header {
|
||
padding: 0 !important;
|
||
}
|
||
[data-v-1f5faebb] .uni-section-header .uni-section-header__content {
|
||
height: 5.125rem;
|
||
}
|
||
[data-v-1f5faebb] .uni-section-header .uni-section-header__slot-right {
|
||
height: 5.125rem;
|
||
}
|
||
.commodity-name[data-v-1f5faebb] {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
}
|
||
.commodity-name-title[data-v-1f5faebb] {
|
||
color: #333333;
|
||
font-size: 0.875rem;
|
||
font-weight: normal;
|
||
margin-bottom: 0.25rem;
|
||
}
|
||
.commodity-name-ks[data-v-1f5faebb] {
|
||
font-size: 0.75rem;
|
||
color: #999999;
|
||
}
|
||
.commodity-name-2[data-v-1f5faebb] {
|
||
justify-content: space-between;
|
||
}
|
||
.commodity-name-1[data-v-1f5faebb] {
|
||
justify-content: flex-start;
|
||
}
|
||
.go-buy[data-v-1f5faebb] {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column-reverse;
|
||
}
|
||
.price-num[data-v-1f5faebb] {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: flex-end;
|
||
margin-left: 0.625rem;
|
||
}
|
||
.price-num .price[data-v-1f5faebb] {
|
||
color: #3D3D3D;
|
||
}
|
||
.jg[data-v-1f5faebb] {
|
||
margin-right: 0.125rem;
|
||
}
|
||
.xl[data-v-1f5faebb] {
|
||
color: #8C8C8C;
|
||
}
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
[data-v-c148ceea] .uni-section-header {
|
||
align-items: flex-start;
|
||
padding: 0.75rem 0 !important;
|
||
}
|
||
.head-portrait[data-v-c148ceea] {
|
||
width: 2rem;
|
||
height: 2rem;
|
||
background: #999999;
|
||
border-radius: 50%;
|
||
margin-right: 0.625rem;
|
||
}
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.select-card[data-v-9267cbd6] {
|
||
background-color: #fff;
|
||
margin-bottom: 1.25rem;
|
||
padding: 0.625rem 1.25rem;
|
||
}
|
||
.checkbox-list[data-v-9267cbd6] {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
padding: 0 0.625rem;
|
||
}
|
||
[data-v-9267cbd6] .uni-checkbox-input {
|
||
border-radius: 50%;
|
||
}
|
||
.content-bottom[data-v-9267cbd6] {
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-around;
|
||
position: fixed;
|
||
width: 100%;
|
||
background-color: #ffffff;
|
||
padding: 1.25rem 0;
|
||
}
|
||
.content-bottom .content-bottom-price[data-v-9267cbd6] {
|
||
margin: 0px;
|
||
width: 10.9375rem;
|
||
line-height: normal;
|
||
border-radius: 0.3125rem;
|
||
/* 自动布局 */
|
||
background: linear-gradient(270deg, #FF9B27 20%, #FDC123 103%);
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 0.875rem 2.6875rem;
|
||
} |