CNCEC_APP/unpackage/dist/dev/app-plus/pages/index/index.css

5169 lines
179 KiB
CSS
Raw Normal View History

2026-03-25 14:54:15 +08:00
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-1098449d]:root,
body[data-v-1098449d] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-transition-fade-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-fade-in-1098449d;
}
.u-transition-fade-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-fade-out-1098449d;
}
.u-transition-slide-up-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-up-in-1098449d;
}
.u-transition-slide-up-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-up-out-1098449d;
}
.u-transition-slide-down-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-down-in-1098449d;
}
.u-transition-slide-down-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-down-out-1098449d;
}
.u-transition-slide-left-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-left-in-1098449d;
}
.u-transition-slide-left-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-left-out-1098449d;
}
.u-transition-slide-right-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-right-in-1098449d;
}
.u-transition-slide-right-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-slide-right-out-1098449d;
}
.u-transition-zoom-in-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-zoom-in-in-1098449d;
}
.u-transition-zoom-in-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-zoom-in-out-1098449d;
}
.u-transition-zoom-out-enter[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-zoom-out-in-1098449d;
}
.u-transition-zoom-out-leave[data-v-1098449d] {
animation-fill-mode: both;
animation-name: u-transition-zoom-out-out-1098449d;
}
@keyframes u-transition-fade-in-1098449d {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes u-transition-fade-out-1098449d {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes u-transition-slide-up-in-1098449d {
0% {
opacity: 0;
transform: translate3d(0, 1.25rem, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes u-transition-slide-up-out-1098449d {
0% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
100% {
opacity: 0;
transform: translate3d(0, 1.25rem, 0);
}
}
@keyframes u-transition-slide-down-in-1098449d {
0% {
opacity: 0;
transform: translate3d(0, -1.25rem, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes u-transition-slide-down-out-1098449d {
0% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
100% {
opacity: 0;
transform: translate3d(0, -1.25rem, 0);
}
}
@keyframes u-transition-slide-left-in-1098449d {
0% {
opacity: 0;
transform: translate3d(1.25rem, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes u-transition-slide-left-out-1098449d {
0% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
100% {
opacity: 0;
transform: translate3d(1.25rem, 0, 0);
}
}
@keyframes u-transition-slide-right-in-1098449d {
0% {
opacity: 0;
transform: translate3d(-1.25rem, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes u-transition-slide-right-out-1098449d {
0% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
100% {
opacity: 0;
transform: translate3d(-1.25rem, 0, 0);
}
}
@keyframes u-transition-zoom-in-in-1098449d {
0% {
opacity: 0;
transform: scale(0.85);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes u-transition-zoom-in-out-1098449d {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.85);
}
}
@keyframes u-transition-zoom-out-in-1098449d {
0% {
opacity: 0;
transform: scale(1.1);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes u-transition-zoom-out-out-1098449d {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(1.1);
}
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
@font-face {
font-family: 'uicon-iconfont';
font-weight: normal;
font-style: normal;
font-display: auto;
src: url('data:application/x-font-woff2;charset=utf-8;base64,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
format('woff2');
}
/* 支付宝,百度,头条小程序目前读取大的本地字体文件,导致无法显示图标,故用在线加载的方式-2020-05-12 */
.u-iconfont[data-v-b4d1c4b2] {
position: relative;
display: flex;
font: normal normal normal 14px/1 'uicon-iconfont';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.u-iconfont[data-v-b4d1c4b2]::before {
display: flex;
align-items: center;
}
.uicon-en[data-v-b4d1c4b2]:before {
content: '\e70a';
}
.uicon-zh[data-v-b4d1c4b2]:before {
content: '\e692';
}
.uicon-level[data-v-b4d1c4b2]:before {
content: '\e693';
}
.uicon-woman[data-v-b4d1c4b2]:before {
content: '\e69c';
}
.uicon-man[data-v-b4d1c4b2]:before {
content: '\e697';
}
.uicon-column-line[data-v-b4d1c4b2]:before {
content: '\e68e';
}
.uicon-empty-page[data-v-b4d1c4b2]:before {
content: '\e627';
}
.uicon-empty-data[data-v-b4d1c4b2]:before {
content: '\e62f';
}
.uicon-empty-car[data-v-b4d1c4b2]:before {
content: '\e602';
}
.uicon-empty-order[data-v-b4d1c4b2]:before {
content: '\e639';
}
.uicon-empty-address[data-v-b4d1c4b2]:before {
content: '\e646';
}
.uicon-empty-message[data-v-b4d1c4b2]:before {
content: '\e6a9';
}
.uicon-empty-search[data-v-b4d1c4b2]:before {
content: '\e664';
}
.uicon-empty-favor[data-v-b4d1c4b2]:before {
content: '\e67c';
}
.uicon-empty-coupon[data-v-b4d1c4b2]:before {
content: '\e682';
}
.uicon-empty-history[data-v-b4d1c4b2]:before {
content: '\e684';
}
.uicon-empty-permission[data-v-b4d1c4b2]:before {
content: '\e686';
}
.uicon-empty-news[data-v-b4d1c4b2]:before {
content: '\e687';
}
.uicon-empty-wifi[data-v-b4d1c4b2]:before {
content: '\e688';
}
.uicon-empty-list[data-v-b4d1c4b2]:before {
content: '\e68b';
}
.uicon-arrow-left-double[data-v-b4d1c4b2]:before {
content: '\e68c';
}
.uicon-arrow-right-double[data-v-b4d1c4b2]:before {
content: '\e68d';
}
.uicon-red-packet[data-v-b4d1c4b2]:before {
content: '\e691';
}
.uicon-red-packet-fill[data-v-b4d1c4b2]:before {
content: '\e690';
}
.uicon-order[data-v-b4d1c4b2]:before {
content: '\e68f';
}
.uicon-nav-back-arrow[data-v-b4d1c4b2]:before {
content: '\e67f';
}
.uicon-nav-back[data-v-b4d1c4b2]:before {
content: '\e683';
}
.uicon-checkbox-mark[data-v-b4d1c4b2]:before {
content: '\e6a8';
}
.uicon-arrow-up-fill[data-v-b4d1c4b2]:before {
content: '\e6b0';
}
.uicon-arrow-down-fill[data-v-b4d1c4b2]:before {
content: '\e600';
}
.uicon-backspace[data-v-b4d1c4b2]:before {
content: '\e67b';
}
.uicon-android-circle-fill[data-v-b4d1c4b2]:before {
content: '\e67e';
}
.uicon-android-fill[data-v-b4d1c4b2]:before {
content: '\e67d';
}
.uicon-question[data-v-b4d1c4b2]:before {
content: '\e715';
}
.uicon-pause[data-v-b4d1c4b2]:before {
content: '\e8fa';
}
.uicon-close[data-v-b4d1c4b2]:before {
content: '\e685';
}
.uicon-volume-up[data-v-b4d1c4b2]:before {
content: '\e633';
}
.uicon-volume-off[data-v-b4d1c4b2]:before {
content: '\e644';
}
.uicon-info[data-v-b4d1c4b2]:before {
content: '\e653';
}
.uicon-error[data-v-b4d1c4b2]:before {
content: '\e6d3';
}
.uicon-lock-opened-fill[data-v-b4d1c4b2]:before {
content: '\e974';
}
.uicon-lock-fill[data-v-b4d1c4b2]:before {
content: '\e979';
}
.uicon-lock[data-v-b4d1c4b2]:before {
content: '\e97a';
}
.uicon-photo-fill[data-v-b4d1c4b2]:before {
content: '\e98b';
}
.uicon-photo[data-v-b4d1c4b2]:before {
content: '\e98d';
}
.uicon-account-fill[data-v-b4d1c4b2]:before {
content: '\e614';
}
.uicon-minus-people-fill[data-v-b4d1c4b2]:before {
content: '\e615';
}
.uicon-plus-people-fill[data-v-b4d1c4b2]:before {
content: '\e626';
}
.uicon-account[data-v-b4d1c4b2]:before {
content: '\e628';
}
.uicon-thumb-down-fill[data-v-b4d1c4b2]:before {
content: '\e726';
}
.uicon-thumb-down[data-v-b4d1c4b2]:before {
content: '\e727';
}
.uicon-thumb-up-fill[data-v-b4d1c4b2]:before {
content: '\e72f';
}
.uicon-thumb-up[data-v-b4d1c4b2]:before {
content: '\e733';
}
.uicon-person-delete-fill[data-v-b4d1c4b2]:before {
content: '\e66a';
}
.uicon-cut[data-v-b4d1c4b2]:before {
content: '\e948';
}
.uicon-fingerprint[data-v-b4d1c4b2]:before {
content: '\e955';
}
.uicon-home-fill[data-v-b4d1c4b2]:before {
content: '\e964';
}
.uicon-home[data-v-b4d1c4b2]:before {
content: '\e965';
}
.uicon-hourglass-half-fill[data-v-b4d1c4b2]:before {
content: '\e966';
}
.uicon-hourglass[data-v-b4d1c4b2]:before {
content: '\e967';
}
.uicon-lock-open[data-v-b4d1c4b2]:before {
content: '\e973';
}
.uicon-integral-fill[data-v-b4d1c4b2]:before {
content: '\e703';
}
.uicon-integral[data-v-b4d1c4b2]:before {
content: '\e704';
}
.uicon-coupon[data-v-b4d1c4b2]:before {
content: '\e8ae';
}
.uicon-coupon-fill[data-v-b4d1c4b2]:before {
content: '\e8c4';
}
.uicon-kefu-ermai[data-v-b4d1c4b2]:before {
content: '\e656';
}
.uicon-scan[data-v-b4d1c4b2]:before {
content: '\e662';
}
.uicon-rmb[data-v-b4d1c4b2]:before {
content: '\e608';
}
.uicon-rmb-circle-fill[data-v-b4d1c4b2]:before {
content: '\e657';
}
.uicon-rmb-circle[data-v-b4d1c4b2]:before {
content: '\e677';
}
.uicon-gift[data-v-b4d1c4b2]:before {
content: '\e65b';
}
.uicon-gift-fill[data-v-b4d1c4b2]:before {
content: '\e65c';
}
.uicon-bookmark-fill[data-v-b4d1c4b2]:before {
content: '\e63b';
}
.uicon-zhuanfa[data-v-b4d1c4b2]:before {
content: '\e60b';
}
.uicon-eye-off-outline[data-v-b4d1c4b2]:before {
content: '\e62b';
}
.uicon-eye-off[data-v-b4d1c4b2]:before {
content: '\e648';
}
.uicon-pause-circle[data-v-b4d1c4b2]:before {
content: '\e643';
}
.uicon-play-circle[data-v-b4d1c4b2]:before {
content: '\e647';
}
.uicon-pause-circle-fill[data-v-b4d1c4b2]:before {
content: '\e654';
}
.uicon-play-circle-fill[data-v-b4d1c4b2]:before {
content: '\e655';
}
.uicon-grid[data-v-b4d1c4b2]:before {
content: '\e673';
}
.uicon-play-right[data-v-b4d1c4b2]:before {
content: '\e610';
}
.uicon-play-left[data-v-b4d1c4b2]:before {
content: '\e66d';
}
.uicon-calendar[data-v-b4d1c4b2]:before {
content: '\e66e';
}
.uicon-rewind-right[data-v-b4d1c4b2]:before {
content: '\e66f';
}
.uicon-rewind-left[data-v-b4d1c4b2]:before {
content: '\e671';
}
.uicon-skip-forward-right[data-v-b4d1c4b2]:before {
content: '\e672';
}
.uicon-skip-back-left[data-v-b4d1c4b2]:before {
content: '\e674';
}
.uicon-play-left-fill[data-v-b4d1c4b2]:before {
content: '\e675';
}
.uicon-play-right-fill[data-v-b4d1c4b2]:before {
content: '\e676';
}
.uicon-grid-fill[data-v-b4d1c4b2]:before {
content: '\e678';
}
.uicon-rewind-left-fill[data-v-b4d1c4b2]:before {
content: '\e679';
}
.uicon-rewind-right-fill[data-v-b4d1c4b2]:before {
content: '\e67a';
}
.uicon-pushpin[data-v-b4d1c4b2]:before {
content: '\e7e3';
}
.uicon-star[data-v-b4d1c4b2]:before {
content: '\e65f';
}
.uicon-star-fill[data-v-b4d1c4b2]:before {
content: '\e669';
}
.uicon-server-fill[data-v-b4d1c4b2]:before {
content: '\e751';
}
.uicon-server-man[data-v-b4d1c4b2]:before {
content: '\e6bc';
}
.uicon-edit-pen[data-v-b4d1c4b2]:before {
content: '\e612';
}
.uicon-edit-pen-fill[data-v-b4d1c4b2]:before {
content: '\e66b';
}
.uicon-wifi[data-v-b4d1c4b2]:before {
content: '\e667';
}
.uicon-wifi-off[data-v-b4d1c4b2]:before {
content: '\e668';
}
.uicon-file-text[data-v-b4d1c4b2]:before {
content: '\e663';
}
.uicon-file-text-fill[data-v-b4d1c4b2]:before {
content: '\e665';
}
.uicon-more-dot-fill[data-v-b4d1c4b2]:before {
content: '\e630';
}
.uicon-minus[data-v-b4d1c4b2]:before {
content: '\e618';
}
.uicon-minus-circle[data-v-b4d1c4b2]:before {
content: '\e61b';
}
.uicon-plus[data-v-b4d1c4b2]:before {
content: '\e62d';
}
.uicon-plus-circle[data-v-b4d1c4b2]:before {
content: '\e62e';
}
.uicon-minus-circle-fill[data-v-b4d1c4b2]:before {
content: '\e652';
}
.uicon-plus-circle-fill[data-v-b4d1c4b2]:before {
content: '\e661';
}
.uicon-email[data-v-b4d1c4b2]:before {
content: '\e611';
}
.uicon-email-fill[data-v-b4d1c4b2]:before {
content: '\e642';
}
.uicon-phone[data-v-b4d1c4b2]:before {
content: '\e622';
}
.uicon-phone-fill[data-v-b4d1c4b2]:before {
content: '\e64f';
}
.uicon-clock[data-v-b4d1c4b2]:before {
content: '\e60f';
}
.uicon-car[data-v-b4d1c4b2]:before {
content: '\e60c';
}
.uicon-car-fill[data-v-b4d1c4b2]:before {
content: '\e636';
}
.uicon-warning[data-v-b4d1c4b2]:before {
content: '\e694';
}
.uicon-warning-fill[data-v-b4d1c4b2]:before {
content: '\e64d';
}
.uicon-search[data-v-b4d1c4b2]:before {
content: '\e62a';
}
.uicon-baidu-circle-fill[data-v-b4d1c4b2]:before {
content: '\e680';
}
.uicon-baidu[data-v-b4d1c4b2]:before {
content: '\e681';
}
.uicon-facebook[data-v-b4d1c4b2]:before {
content: '\e689';
}
.uicon-facebook-circle-fill[data-v-b4d1c4b2]:before {
content: '\e68a';
}
.uicon-qzone[data-v-b4d1c4b2]:before {
content: '\e695';
}
.uicon-qzone-circle-fill[data-v-b4d1c4b2]:before {
content: '\e696';
}
.uicon-moments-circel-fill[data-v-b4d1c4b2]:before {
content: '\e69a';
}
.uicon-moments[data-v-b4d1c4b2]:before {
content: '\e69b';
}
.uicon-qq-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6a0';
}
.uicon-qq-fill[data-v-b4d1c4b2]:before {
content: '\e6a1';
}
.uicon-weibo[data-v-b4d1c4b2]:before {
content: '\e6a4';
}
.uicon-weibo-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6a5';
}
.uicon-taobao[data-v-b4d1c4b2]:before {
content: '\e6a6';
}
.uicon-taobao-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6a7';
}
.uicon-twitter[data-v-b4d1c4b2]:before {
content: '\e6aa';
}
.uicon-twitter-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6ab';
}
.uicon-weixin-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6b1';
}
.uicon-weixin-fill[data-v-b4d1c4b2]:before {
content: '\e6b2';
}
.uicon-zhifubao-circle-fill[data-v-b4d1c4b2]:before {
content: '\e6b8';
}
.uicon-zhifubao[data-v-b4d1c4b2]:before {
content: '\e6b9';
}
.uicon-zhihu[data-v-b4d1c4b2]:before {
content: '\e6ba';
}
.uicon-zhihu-circle-fill[data-v-b4d1c4b2]:before {
content: '\e709';
}
.uicon-list[data-v-b4d1c4b2]:before {
content: '\e650';
}
.uicon-list-dot[data-v-b4d1c4b2]:before {
content: '\e616';
}
.uicon-setting[data-v-b4d1c4b2]:before {
content: '\e61f';
}
.uicon-bell[data-v-b4d1c4b2]:before {
content: '\e609';
}
.uicon-bell-fill[data-v-b4d1c4b2]:before {
content: '\e640';
}
.uicon-attach[data-v-b4d1c4b2]:before {
content: '\e632';
}
.uicon-shopping-cart[data-v-b4d1c4b2]:before {
content: '\e621';
}
.uicon-shopping-cart-fill[data-v-b4d1c4b2]:before {
content: '\e65d';
}
.uicon-tags[data-v-b4d1c4b2]:before {
content: '\e629';
}
.uicon-share[data-v-b4d1c4b2]:before {
content: '\e631';
}
.uicon-question-circle-fill[data-v-b4d1c4b2]:before {
content: '\e666';
}
.uicon-question-circle[data-v-b4d1c4b2]:before {
content: '\e625';
}
.uicon-error-circle[data-v-b4d1c4b2]:before {
content: '\e624';
}
.uicon-checkmark-circle[data-v-b4d1c4b2]:before {
content: '\e63d';
}
.uicon-close-circle[data-v-b4d1c4b2]:before {
content: '\e63f';
}
.uicon-info-circle[data-v-b4d1c4b2]:before {
content: '\e660';
}
.uicon-md-person-add[data-v-b4d1c4b2]:before {
content: '\e6e4';
}
.uicon-md-person-fill[data-v-b4d1c4b2]:before {
content: '\e6ea';
}
.uicon-bag-fill[data-v-b4d1c4b2]:before {
content: '\e617';
}
.uicon-bag[data-v-b4d1c4b2]:before {
content: '\e619';
}
.uicon-chat-fill[data-v-b4d1c4b2]:before {
content: '\e61e';
}
.uicon-chat[data-v-b4d1c4b2]:before {
content: '\e620';
}
.uicon-more-circle[data-v-b4d1c4b2]:before {
content: '\e63e';
}
.uicon-more-circle-fill[data-v-b4d1c4b2]:before {
content: '\e645';
}
.uicon-volume[data-v-b4d1c4b2]:before {
content: '\e66c';
}
.uicon-volume-fill[data-v-b4d1c4b2]:before {
content: '\e670';
}
.uicon-reload[data-v-b4d1c4b2]:before {
content: '\e788';
}
.uicon-camera[data-v-b4d1c4b2]:before {
content: '\e7d7';
}
.uicon-heart[data-v-b4d1c4b2]:before {
content: '\e7df';
}
.uicon-heart-fill[data-v-b4d1c4b2]:before {
content: '\e851';
}
.uicon-minus-square-fill[data-v-b4d1c4b2]:before {
content: '\e855';
}
.uicon-plus-square-fill[data-v-b4d1c4b2]:before {
content: '\e856';
}
.uicon-pushpin-fill[data-v-b4d1c4b2]:before {
content: '\e86e';
}
.uicon-camera-fill[data-v-b4d1c4b2]:before {
content: '\e870';
}
.uicon-setting-fill[data-v-b4d1c4b2]:before {
content: '\e872';
}
.uicon-google[data-v-b4d1c4b2]:before {
content: '\e87a';
}
.uicon-ie[data-v-b4d1c4b2]:before {
content: '\e87b';
}
.uicon-apple-fill[data-v-b4d1c4b2]:before {
content: '\e881';
}
.uicon-chrome-circle-fill[data-v-b4d1c4b2]:before {
content: '\e885';
}
.uicon-github-circle-fill[data-v-b4d1c4b2]:before {
content: '\e887';
}
.uicon-IE-circle-fill[data-v-b4d1c4b2]:before {
content: '\e889';
}
.uicon-google-circle-fill[data-v-b4d1c4b2]:before {
content: '\e88a';
}
.uicon-arrow-down[data-v-b4d1c4b2]:before {
content: '\e60d';
}
.uicon-arrow-left[data-v-b4d1c4b2]:before {
content: '\e60e';
}
.uicon-map[data-v-b4d1c4b2]:before {
content: '\e61d';
}
.uicon-man-add-fill[data-v-b4d1c4b2]:before {
content: '\e64c';
}
.uicon-tags-fill[data-v-b4d1c4b2]:before {
content: '\e651';
}
.uicon-arrow-leftward[data-v-b4d1c4b2]:before {
content: '\e601';
}
.uicon-arrow-rightward[data-v-b4d1c4b2]:before {
content: '\e603';
}
.uicon-arrow-downward[data-v-b4d1c4b2]:before {
content: '\e604';
}
.uicon-arrow-right[data-v-b4d1c4b2]:before {
content: '\e605';
}
.uicon-arrow-up[data-v-b4d1c4b2]:before {
content: '\e606';
}
.uicon-arrow-upward[data-v-b4d1c4b2]:before {
content: '\e607';
}
.uicon-bookmark[data-v-b4d1c4b2]:before {
content: '\e60a';
}
.uicon-eye[data-v-b4d1c4b2]:before {
content: '\e613';
}
.uicon-man-delete[data-v-b4d1c4b2]:before {
content: '\e61a';
}
.uicon-man-add[data-v-b4d1c4b2]:before {
content: '\e61c';
}
.uicon-trash[data-v-b4d1c4b2]:before {
content: '\e623';
}
.uicon-error-circle-fill[data-v-b4d1c4b2]:before {
content: '\e62c';
}
.uicon-calendar-fill[data-v-b4d1c4b2]:before {
content: '\e634';
}
.uicon-checkmark-circle-fill[data-v-b4d1c4b2]:before {
content: '\e635';
}
.uicon-close-circle-fill[data-v-b4d1c4b2]:before {
content: '\e637';
}
.uicon-clock-fill[data-v-b4d1c4b2]:before {
content: '\e638';
}
.uicon-checkmark[data-v-b4d1c4b2]:before {
content: '\e63a';
}
.uicon-download[data-v-b4d1c4b2]:before {
content: '\e63c';
}
.uicon-eye-fill[data-v-b4d1c4b2]:before {
content: '\e641';
}
.uicon-mic-off[data-v-b4d1c4b2]:before {
content: '\e649';
}
.uicon-mic[data-v-b4d1c4b2]:before {
content: '\e64a';
}
.uicon-info-circle-fill[data-v-b4d1c4b2]:before {
content: '\e64b';
}
.uicon-map-fill[data-v-b4d1c4b2]:before {
content: '\e64e';
}
.uicon-trash-fill[data-v-b4d1c4b2]:before {
content: '\e658';
}
.uicon-volume-off-fill[data-v-b4d1c4b2]:before {
content: '\e659';
}
.uicon-volume-up-fill[data-v-b4d1c4b2]:before {
content: '\e65a';
}
.uicon-share-fill[data-v-b4d1c4b2]:before {
content: '\e65e';
}
[data-v-b4d1c4b2]:root,
body[data-v-b4d1c4b2] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-icon[data-v-b4d1c4b2] {
display: inline-flex;
align-items: center;
}
.u-icon--left[data-v-b4d1c4b2] {
flex-direction: row-reverse;
align-items: center;
}
.u-icon--right[data-v-b4d1c4b2] {
flex-direction: row;
align-items: center;
}
.u-icon--top[data-v-b4d1c4b2] {
flex-direction: column-reverse;
justify-content: center;
}
.u-icon--bottom[data-v-b4d1c4b2] {
flex-direction: column;
justify-content: center;
}
.u-icon__icon[data-v-b4d1c4b2] {
position: relative;
}
.u-icon__icon--primary[data-v-b4d1c4b2] {
color: var(--u-type-primary);
}
.u-icon__icon--success[data-v-b4d1c4b2] {
color: var(--u-type-success);
}
.u-icon__icon--error[data-v-b4d1c4b2] {
color: var(--u-type-error);
}
.u-icon__icon--warning[data-v-b4d1c4b2] {
color: var(--u-type-warning);
}
.u-icon__icon--info[data-v-b4d1c4b2] {
color: var(--u-type-info);
}
.u-icon__decimal[data-v-b4d1c4b2] {
position: absolute;
top: 0;
left: 0;
display: inline-block;
overflow: hidden;
}
.u-icon__img[data-v-b4d1c4b2] {
height: auto;
will-change: transform;
}
.u-icon__label[data-v-b4d1c4b2] {
line-height: 1;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-53906a69]:root,
body[data-v-53906a69] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-badge[data-v-53906a69] {
display: inline-flex;
justify-content: center;
align-items: center;
line-height: 0.75rem;
padding: 0.125rem 0.25rem;
border-radius: 3.125rem;
z-index: 9;
}
.u-badge--bg--primary[data-v-53906a69] {
background-color: var(--u-type-primary);
}
.u-badge--bg--error[data-v-53906a69] {
background-color: var(--u-type-error);
}
.u-badge--bg--success[data-v-53906a69] {
background-color: var(--u-type-success);
}
.u-badge--bg--info[data-v-53906a69] {
background-color: var(--u-type-info);
}
.u-badge--bg--warning[data-v-53906a69] {
background-color: var(--u-type-warning);
}
.u-badge-dot[data-v-53906a69] {
height: 0.5rem;
width: 0.5rem;
border-radius: 3.125rem;
line-height: 1;
}
.u-badge-mini[data-v-53906a69] {
transform: scale(0.8);
transform-origin: center center;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-d6b0a321]:root,
body[data-v-d6b0a321] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-62b8a246]:root,
body[data-v-62b8a246] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-fixed-placeholder[data-v-62b8a246] {
box-sizing: content-box;
height: 50px;
}
.u-tabbar__content[data-v-62b8a246] {
display: flex;
flex-direction: row;
align-items: center;
position: relative;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 998;
box-sizing: content-box;
}
.u-tabbar__content__circle__border[data-v-62b8a246] {
border-radius: 100%;
width: 4.0625rem;
height: 4.0625rem;
top: -1.8125rem;
position: absolute;
z-index: 4;
background-color: var(--u-bg-white);
left: 50%;
transform: translateX(-50%);
}
.u-tabbar__content__circle__border[data-v-62b8a246]:after {
border-radius: 100px;
}
.u-tabbar__content__item[data-v-62b8a246] {
flex: 1;
justify-content: center;
height: 100%;
padding: 0.375rem 0;
display: flex;
flex-direction: row;
flex-direction: column;
align-items: center;
position: relative;
}
.u-tabbar__content__item__container[data-v-62b8a246] {
display: flex;
flex-direction: row;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
position: relative;
}
.u-tabbar__content__item__icon[data-v-62b8a246] {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.u-tabbar__content__item__text[data-v-62b8a246] {
color: var(--u-content-color);
font-size: 0.8125rem;
line-height: 0.875rem;
text-align: center;
width: 100%;
}
.u-tabbar__content__circle[data-v-62b8a246] {
position: relative;
display: flex;
flex-direction: row;
flex-direction: column;
justify-content: space-between;
z-index: 10;
height: calc(100% - 1px);
}
.u-tabbar__content__circle__container[data-v-62b8a246] {
display: flex;
flex-direction: row;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
position: relative;
box-sizing: border-box;
}
.u-tabbar__content__circle__icon[data-v-62b8a246] {
width: 3.125rem;
height: 3.125rem;
border-radius: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: var(--u-bg-white);
/* 将凸起图标上移,与顶部边框线对齐 */
position: absolute;
top: -1.71875rem;
left: 50%;
z-index: 6;
transform: translateX(-50%);
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-a5d64378]:root,
body[data-v-a5d64378] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-loading-circle[data-v-a5d64378] {
display: inline-flex;
vertical-align: middle;
width: 0.875rem;
height: 0.875rem;
background: 0 0;
border-radius: 50%;
border: 2px solid;
border-color: var(--u-divider-color) var(--u-divider-color) var(--u-divider-color) var(--u-tips-color);
animation: u-circle-a5d64378 1s linear infinite;
}
.u-loading-flower[data-v-a5d64378] {
width: 20px;
height: 20px;
display: inline-block;
vertical-align: middle;
animation: u-flower-a5d64378 1s steps(12) infinite;
background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
background-size: 100%;
}
@keyframes u-flower-a5d64378 {
0% {
transform: rotate(0deg);
}
to {
transform: rotate(1turn);
}
}
@keyframes u-circle-a5d64378 {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-392405c3]:root,
body[data-v-392405c3] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.coust-chart[data-v-392405c3] {
width: 100%;
position: relative;
}
.coust-chart-tit[data-v-392405c3] {
font-size: 0.875rem;
font-weight: 700;
padding-bottom: 0.625rem;
}
.coust-chart .coust-loading[data-v-392405c3] {
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
top: 50%;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-663f3f74]:root,
body[data-v-663f3f74] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.project[data-v-663f3f74] {
display: grid;
grid-template-columns: repeat(4, 25%);
}
.project-col[data-v-663f3f74] {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.project-col-num[data-v-663f3f74] {
text-align: center;
overflow-wrap: break-word;
width: 100%;
color: #ffffff;
font-size: 1.25rem;
}
.project-col-lab[data-v-663f3f74] {
color: #ffffff;
font-size: 0.75rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-ba25975a]:root,
body[data-v-ba25975a] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.safe-hours[data-v-ba25975a] {
padding: 0 1.25rem 0 3.75rem;
width: 100%;
text-align: left;
overflow: hidden;
}
.safe-hours > uni-text[data-v-ba25975a] {
font-weight: 700;
font-size: 1.625rem;
background: linear-gradient(180deg, #2573cb, #50c2ff);
-webkit-background-clip: text;
/* 兼容Safari浏览器 */
background-clip: text;
color: transparent;
/* 文字透明,显示背景渐变 */
letter-spacing: 0.3125rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-03c91fe4]:root,
body[data-v-03c91fe4] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.organizer-tit[data-v-03c91fe4] {
color: #2573cb;
width: 100%;
font-size: 0.875rem;
background-color: #F7FBFE;
padding: 0.375rem 0.625rem 0;
}
.organizer-lab[data-v-03c91fe4] {
color: #999999;
font-size: 0.75rem;
}
.organizer_num[data-v-03c91fe4] {
color: #333333;
font-size: 0.875rem;
margin-top: 0.5rem;
}
.organizer .row[data-v-03c91fe4] {
background-color: #F7FBFE;
}
.organizer .row_li[data-v-03c91fe4] {
flex: 1;
display: flex;
flex-direction: column;
}
.container[data-v-0e645258] {
width: 30px;
height: 30px;
position: relative;
}
.container.loading1[data-v-0e645258] {
transform: rotate(45deg);
}
.container .shape[data-v-0e645258] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 1px;
}
.container .shape.shape1[data-v-0e645258] {
left: 0;
background-color: #1890FF;
}
.container .shape.shape2[data-v-0e645258] {
right: 0;
background-color: #91CB74;
}
.container .shape.shape3[data-v-0e645258] {
bottom: 0;
background-color: #FAC858;
}
.container .shape.shape4[data-v-0e645258] {
bottom: 0;
right: 0;
background-color: #EE6666;
}
.loading1 .shape1[data-v-0e645258] {
animation: animation1shape1-0e645258 0.5s ease 0s infinite alternate;
}
@keyframes animation1shape1-0e645258 {
from {
transform: translate(0, 0);
}
to {
transform: translate(16px, 16px);
}
}
.loading1 .shape2[data-v-0e645258] {
animation: animation1shape2-0e645258 0.5s ease 0s infinite alternate;
}
@keyframes animation1shape2-0e645258 {
from {
transform: translate(0, 0);
}
to {
transform: translate(-16px, 16px);
}
}
.loading1 .shape3[data-v-0e645258] {
animation: animation1shape3-0e645258 0.5s ease 0s infinite alternate;
}
@keyframes animation1shape3-0e645258 {
from {
transform: translate(0, 0);
}
to {
transform: translate(16px, -16px);
}
}
.loading1 .shape4[data-v-0e645258] {
animation: animation1shape4-0e645258 0.5s ease 0s infinite alternate;
}
@keyframes animation1shape4-0e645258 {
from {
transform: translate(0, 0);
}
to {
transform: translate(-16px, -16px);
}
}
.container[data-v-3df48dc2] {
width: 30px;
height: 30px;
position: relative;
}
.container.loading2[data-v-3df48dc2] {
transform: rotate(10deg);
}
.container.loading2 .shape[data-v-3df48dc2] {
border-radius: 5px;
}
.container.loading2[data-v-3df48dc2]{
animation: rotation 1s infinite;
}
.container .shape[data-v-3df48dc2] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 1px;
}
.container .shape.shape1[data-v-3df48dc2] {
left: 0;
background-color: #1890FF;
}
.container .shape.shape2[data-v-3df48dc2] {
right: 0;
background-color: #91CB74;
}
.container .shape.shape3[data-v-3df48dc2] {
bottom: 0;
background-color: #FAC858;
}
.container .shape.shape4[data-v-3df48dc2] {
bottom: 0;
right: 0;
background-color: #EE6666;
}
.loading2 .shape1[data-v-3df48dc2] {
animation: animation2shape1-3df48dc2 0.5s ease 0s infinite alternate;
}
@keyframes animation2shape1-3df48dc2 {
from {
transform: translate(0, 0);
}
to {
transform: translate(20px, 20px);
}
}
.loading2 .shape2[data-v-3df48dc2] {
animation: animation2shape2-3df48dc2 0.5s ease 0s infinite alternate;
}
@keyframes animation2shape2-3df48dc2 {
from {
transform: translate(0, 0);
}
to {
transform: translate(-20px, 20px);
}
}
.loading2 .shape3[data-v-3df48dc2] {
animation: animation2shape3-3df48dc2 0.5s ease 0s infinite alternate;
}
@keyframes animation2shape3-3df48dc2 {
from {
transform: translate(0, 0);
}
to {
transform: translate(20px, -20px);
}
}
.loading2 .shape4[data-v-3df48dc2] {
animation: animation2shape4-3df48dc2 0.5s ease 0s infinite alternate;
}
@keyframes animation2shape4-3df48dc2 {
from {
transform: translate(0, 0);
}
to {
transform: translate(-20px, -20px);
}
}
.container[data-v-27a8293c] {
width: 30px;
height: 30px;
position: relative;
}
.container.loading3[data-v-27a8293c] {
animation: rotation 1s infinite;
}
.container.loading3 .shape1[data-v-27a8293c] {
border-top-left-radius: 10px;
}
.container.loading3 .shape2[data-v-27a8293c] {
border-top-right-radius: 10px;
}
.container.loading3 .shape3[data-v-27a8293c] {
border-bottom-left-radius: 10px;
}
.container.loading3 .shape4[data-v-27a8293c] {
border-bottom-right-radius: 10px;
}
.container .shape[data-v-27a8293c] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 1px;
}
.container .shape.shape1[data-v-27a8293c] {
left: 0;
background-color: #1890FF;
}
.container .shape.shape2[data-v-27a8293c] {
right: 0;
background-color: #91CB74;
}
.container .shape.shape3[data-v-27a8293c] {
bottom: 0;
background-color: #FAC858;
}
.container .shape.shape4[data-v-27a8293c] {
bottom: 0;
right: 0;
background-color: #EE6666;
}
.loading3 .shape1[data-v-27a8293c] {
animation: animation3shape1-27a8293c 0.5s ease 0s infinite alternate;
}
@keyframes animation3shape1-27a8293c {
from {
transform: translate(0, 0);
}
to {
transform: translate(5px, 5px);
}
}
.loading3 .shape2[data-v-27a8293c] {
animation: animation3shape2-27a8293c 0.5s ease 0s infinite alternate;
}
@keyframes animation3shape2-27a8293c {
from {
transform: translate(0, 0);
}
to {
transform: translate(-5px, 5px);
}
}
.loading3 .shape3[data-v-27a8293c] {
animation: animation3shape3-27a8293c 0.5s ease 0s infinite alternate;
}
@keyframes animation3shape3-27a8293c {
from {
transform: translate(0, 0);
}
to {
transform: translate(5px, -5px);
}
}
.loading3 .shape4[data-v-27a8293c] {
animation: animation3shape4-27a8293c 0.5s ease 0s infinite alternate;
}
@keyframes animation3shape4-27a8293c {
from {
transform: translate(0, 0);
}
to {
transform: translate(-5px, -5px);
}
}
.container[data-v-2e7deb83] {
width: 30px;
height: 30px;
position: relative;
}
.container.loading5 .shape[data-v-2e7deb83] {
width: 15px;
height: 15px;
}
.container .shape[data-v-2e7deb83] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 1px;
}
.container .shape.shape1[data-v-2e7deb83] {
left: 0;
background-color: #1890FF;
}
.container .shape.shape2[data-v-2e7deb83] {
right: 0;
background-color: #91CB74;
}
.container .shape.shape3[data-v-2e7deb83] {
bottom: 0;
background-color: #FAC858;
}
.container .shape.shape4[data-v-2e7deb83] {
bottom: 0;
right: 0;
background-color: #EE6666;
}
.loading5 .shape1[data-v-2e7deb83] {
animation: animation5shape1-2e7deb83 2s ease 0s infinite reverse;
}
@keyframes animation5shape1-2e7deb83 {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(0, 15px);
}
50% {
transform: translate(15px, 15px);
}
75% {
transform: translate(15px, 0);
}
}
.loading5 .shape2[data-v-2e7deb83] {
animation: animation5shape2-2e7deb83 2s ease 0s infinite reverse;
}
@keyframes animation5shape2-2e7deb83 {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(-15px, 0);
}
50% {
transform: translate(-15px, 15px);
}
75% {
transform: translate(0, 15px);
}
}
.loading5 .shape3[data-v-2e7deb83] {
animation: animation5shape3-2e7deb83 2s ease 0s infinite reverse;
}
@keyframes animation5shape3-2e7deb83 {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(15px, 0);
}
50% {
transform: translate(15px, -15px);
}
75% {
transform: translate(0, -15px);
}
}
.loading5 .shape4[data-v-2e7deb83] {
animation: animation5shape4-2e7deb83 2s ease 0s infinite reverse;
}
@keyframes animation5shape4-2e7deb83 {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(0, -15px);
}
50% {
transform: translate(-15px, -15px);
}
75% {
transform: translate(-15px, 0);
}
}
.container[data-v-ef674bbb] {
width: 30px;
height: 30px;
position: relative;
}
.container.loading6[data-v-ef674bbb] {
animation: rotation 1s infinite;
}
.container.loading6 .shape[data-v-ef674bbb] {
width: 12px;
height: 12px;
border-radius: 2px;
}
.container .shape[data-v-ef674bbb] {
position: absolute;
width: 10px;
height: 10px;
border-radius: 1px;
}
.container .shape.shape1[data-v-ef674bbb] {
left: 0;
background-color: #1890FF;
}
.container .shape.shape2[data-v-ef674bbb] {
right: 0;
background-color: #91CB74;
}
.container .shape.shape3[data-v-ef674bbb] {
bottom: 0;
background-color: #FAC858;
}
.container .shape.shape4[data-v-ef674bbb] {
bottom: 0;
right: 0;
background-color: #EE6666;
}
.loading6 .shape1[data-v-ef674bbb] {
animation: animation6shape1-ef674bbb 2s linear 0s infinite normal;
}
@keyframes animation6shape1-ef674bbb {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(0, 18px);
}
50% {
transform: translate(18px, 18px);
}
75% {
transform: translate(18px, 0);
}
}
.loading6 .shape2[data-v-ef674bbb] {
animation: animation6shape2-ef674bbb 2s linear 0s infinite normal;
}
@keyframes animation6shape2-ef674bbb {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(-18px, 0);
}
50% {
transform: translate(-18px, 18px);
}
75% {
transform: translate(0, 18px);
}
}
.loading6 .shape3[data-v-ef674bbb] {
animation: animation6shape3-ef674bbb 2s linear 0s infinite normal;
}
@keyframes animation6shape3-ef674bbb {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(18px, 0);
}
50% {
transform: translate(18px, -18px);
}
75% {
transform: translate(0, -18px);
}
}
.loading6 .shape4[data-v-ef674bbb] {
animation: animation6shape4-ef674bbb 2s linear 0s infinite normal;
}
@keyframes animation6shape4-ef674bbb {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(0, -18px);
}
50% {
transform: translate(-18px, -18px);
}
75% {
transform: translate(-18px, 0);
}
}
.chartsview[data-v-a99d579b] {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex: 1;
justify-content: center;
align-items: center;
}
.charts-font[data-v-a99d579b]{
font-size: 14px;
color: #CCCCCC;
margin-top: 10px;
}
.charts-error[data-v-a99d579b]{
width: 128px;
height: 128px;
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAUz0lEQVR4Xu1de3Bc1X3+zmp3jYVWfkPAgCWwY8zLEglNQCSW0yT9o2SQaDKdNulUykwfM+k09p+J3ImYIPJXi9yZzDSZZiwyaZuZBCwnNG1DMogEmUAAy7xs/MAyNhCMjWWtsK1deU/n23OvtLu6j3Pv3t29d71nxjOSde455/5+3/m9z7kCjRY4BR7eK7fkcmhrasLT37hbTAY+QYADigDHagwFYGhc7gZwHMAUgG4hMPzNe8RoWInTAECAnHl4r+yREt0DXWIbhx3cJ5fHP8TYjntFR4DTBDqUIwBmMrJDCtyPHDoQw0Q8jkeXinCLtECp43Gwh56R22IxTBbu+KFxOTbQJbo9DlW17rYASGdlNySeKl2JADpbkmKiait0mWhoXHZkmzE52CkocmvavvOsbMvl8MhAl+jlQrg2CQzu6BI9NV2Yw+T2AJiVo+DuL2kSeLQ1KfrC8kLcYbkYBv/pbjEWhjUNjUvSpk9KSAicm2tGXxjAaUcbewBkJAm6xeLBp1PJ2os06ttcDl8H0CEEaGnvGegSg2EAQZTW4B0AEntSS2ov0mhgJc5jmwT6IDEWi2E0zNZ2WEFhC4CZjCRxH7GwAfpbkmIkLC9EFQBg20BXeOySsNBGZx2OXkB6Vg5CgAbMZgD7BTDSkhTDOgM3+kSDAr7iANNz8n4hQRdxojUu9kTjVRurtKKAJwBIKZfPZPOuYWFgY6wlgV4hau+GNVjsnQKeAJDOSIp/Wt6lbSKeQG8jSOSdAbV+wisA7FxDSGAqBmwNS5DIiGIucyNwKiGedutTz3/3BgCb4JBJoGqDIJ2VW4REmxRog0S3lGgT/NlfY3RzCgJjQmJSCkxeDuDwBgCb8HAhvQkCIdCbSgQfmSPDmWGDzHsm1UqwjBEUAMbqERCeAEBGz2RknwR2uW0yAZQdL6DR+WEW90syXLmjtW8So0Jg9MoE9tSD4esZANUAAd1M5NAjGOULaaOkAzCKGEaj7Ar7AoBHEGxrSYqdOnxMZ+W3ZA59ZehxnWkC7yMlJkUMIy1x7IyaVPANAAMEHTlgTACO1rYERlqTot+J8nbp58C5VcEBDftnOEpAKAsAgYPAPgNZQbYFP3QeCAybJ/Bg2CVC2QDwCoJUAtudiJKuExCQLoZbPKirAoOHovuIThVByuXii2jE/C9I2TaXBYsfmThyahMtCWy1A4ERbj7rvvRI9aCa3F7pINm3n5XdXgtjFgHAYCQrW4v8bBo6MYFep5cwmEefuSwQpDNSRoq9+osdrqRaGBqXMhfDVi8gWASAdEbuswuyGCKNSLatBygXBHUqAQohMmHESAKrqzSro4TIS2yOq10dVQQAuyKQUoC7BXnIxHQWwwL4ay/qIM/8DHaFJuijv7M99QzaNmAx6hzQFsvhKSmxvakJo7oHUooA4MUA0wHBTDYfQnVUB6bFnLc1JHqiFgPwxPnSzhKjLUn0B+UpsDoqFkOfLvO5HN8AMN5lOJUU2+2IMD0ne0QOtCcq0k7OANe1VGToag7qaBRXeiFFAJjOyBENsV20Jqcgj2FQHgvyJWYvAQfPAJuvAv7198ADm4DMHJBKAmuag5ypemPpGNiVWk2pDcCDDDQCPTU7EOgmjrxMRgA8dgBYmwJOXwBuWgH87m3gz26OLgDy6q9G9RSLvIAymFZUGsaCjJzE7qB1+vvngXRGQebG5QB/P30eaF2iQBHllk8wxdDfGq/eYVLLQJBfEOQNOpk3/Bg86hbA8iAZwt2/a78asX8zsKRJ/fzYQeDttFIHUbcJqi0JnM4FaOX9g2Sw7lgHTgPTs0DHRxTjT5wDtqzTfTr8/aoJArfTwX055P1519q6apGV4v8/XlU6nzv/vo8CvzwK3L0W2LS6Wquo/DzVAoFrMiivyzVSvpUnycIMVAUU///2kgIC9b+pDqq5jirMVXEX0RUAfMkwgoDrMoFQBUbUcoqxVFJsrdQCtAAQZhBUijChGlfiwdSSypx81gaAAQLLA6OhIlaNF2MGqriMm1cFqJoEtlai0lobAIzqZbPYF7RrV2N+BT79L99c8Eh+dzI474RGYSqB9qDyBuaLawMgnZE8Exjau24C56TPAZ8+vsD0594GPrHW50DWjwVuD2gBwDgm/q1AX6VOB/v5YeDWNerlXnsf+MKGYF/ULQvrdTZXAFQioeN1kVHqTxuAgSo2xiWCdk+DVgWuAEjPyt31XqARJYAZa92ZSqq7CMttjgCoh1r9cgkU1ueDuq7PEQDTs/JY0Nm8sBI0gusKxCCMZDIogsyqzJIDiA3YAqCx+yvDs4BHLVsKBFoPEPDLNYbToUCZUsASAFHY/SfTCxWtq5qBK4ziEB2a1VmfsqTAIgBUupLXL/Evshj0NNCaBM7NAr89sTDSp64HOj/id+ToP1eOR7AYAD4qg6tBwufeARhabV8BfPJaFWxZEgeSMWDTmstaApD8vuMCRQAI47Gs37wFrG4GrksBR882mG212VhW3rpEtPvZiL6OhvmZyOszFPm7D6qqX+76L6xfGIH/l7mkVMGNKy773Z8njIyh1081cfHBkJAEfgqZv2kV8Cmj4HP/H4ADZ1RBqNmYbfvEtV7hVX/9/X7HYR4AYUr6PPmmYjSZ/7kblRT47yOK8Uyu8DxA6xXqHADVw2XsARQhuSWBFV7rBeYBoHsyuNJ7582zwBNHgNVLgb+8TTH/8YOq/o+7ffPVCwynpAiC+W+cUfOcnwOuvlIdO4ti86MG5gGQdrkFtFoE2fUykJ4F+u4AknHgx6+pnf/ZduCW1QD9f3oDPA/A5tcFpA3x8ingxXcVuPJ61Dgt27MRuKG1Wm8c6DyevYE8AMJk/f/nq8BNK5VeN10/k8mvnwZ+ZRw1pfjnYdCOq1VZuJd2/Bzwv0cXGL9hpdr1PGNIgMUF8Oe3AquWehk1FH0nUknR6WUleQCENe37vZeUFOi/AyhUDbQL/JwE5q4ngI4YNxBxl7NiZ5kBoCePAb9/R4mBq64EejcGX9DhhTl++sYTaPdya7sCgPoySM1LvujzM8Dzd3cuMNy08ikZeBqYqoE7njv1t28p3c3f/+hapSLs2jszAI1Luo40JMn4j64s7v3PzympQNeSgLtnLfDxiHkYXkvGFAA0r2Yjsf3sPF0km/r/H+9aEP8P8ORPEhh5ecErIPNpGLJxF7/3oWLcfesV80rboQ+UyDf7f3HTYuPx+XeAX00Ct68BPn0D8O8TasyvbgZakrpvEIp+nuyAPACmM/KsW7k3b+N4/ABA5lSq8cIH0/o39f9f3KoYQYab0uDnR4BjZ4Gv3LYAgB+9qiQB+xe2X0+q4kw22hL8V9roTXz3BTXP1z6mVAJzDfxHqUIDNELN02f9hI7/T6v7zSklbml8MfFCXzzoRp1Pv57n/Wj5M/RrJnn2/QG4rlVJIPM4+DfvWVjB9/YpFfFJIzBEZv7iMHAirUT+59qBO2zcu7zuf1ftfrOKtxAUVElBF3cGTTtzPBaNtiaFhRy0nlHoGIDc/a+fUlez0Dq/ZY26kiXoRoCR0G5WvRkoMnf0/xwFXnwPiAFINgE3LAOmLwKnjPEoKejfW7Xj0+q0Mef92seLVQNLvF95H/iTm4CNJfZC0O8e5HheAkJCNwBkHsv++zuDXKq/sSgd/uu1xf47gfnWOR5mVeNe1Qx8adOClW8l+n8woQzDL9682Cik7fDTg8D1KaD3Zn9rrdRTlHA0mmmvLJJOHopERFg8AK+EIgiomo6dAy7OKdXwNx3AiRngRy8DOQl0XgN8Zp19tJDMJZMLRX/pOh7eqwhMNRCmZtpkVreiePEECADLj0SH6WWd1kIgPP6G2sVty4Av36pE/+43gDMX1K6+b8NiEJhGHqXEV263Bwm9AY731Q6gJVF7qnDnT7ynbCS6zDx8QpXJgNi8JPBwmljouoC1f3X7FdDHH30DmMsBG1YosU+m0Vg8exG4pkV5B2begCFg5htIMCf7gDOadsCXbgGusbEjqkkbMp+iv7
background-position: center;
}
.chartsview[data-v-0ca34aee] {
width: 100%;
height: 100%;
display: flex;
flex: 1;
justify-content: center;
align-items: center;
}
.charts-box[data-v-a6a882bc] {
width: 100%;
height: 12.5rem;
2026-03-25 14:54:15 +08:00
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-28418ae2]:root,
body[data-v-28418ae2] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-subsection[data-v-28418ae2] {
display: flex;
flex-direction: row;
align-items: center;
overflow: hidden;
position: relative;
}
.u-item[data-v-28418ae2] {
flex: 1;
text-align: center;
font-size: 0.8125rem;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
color: var(--u-main-color);
padding: 0 0.1875rem;
}
.u-item-bg[data-v-28418ae2] {
background-color: var(--u-type-primary);
position: absolute;
z-index: -1;
}
.u-none-border-right[data-v-28418ae2] {
border-right: none !important;
}
.u-item-first[data-v-28418ae2] {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.u-item-last[data-v-28418ae2] {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.u-item-text[data-v-28418ae2] {
transition: all 0.35s;
color: var(--u-main-color);
display: flex;
flex-direction: row;
align-items: center;
position: relative;
z-index: 3;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-e3917daa]:root,
body[data-v-e3917daa] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.defect-main[data-v-e3917daa] {
height: 3.75rem;
}
.defect-box[data-v-e3917daa] {
width: calc((100% - 1.25rem) / 4);
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.defect-box-lab[data-v-e3917daa] {
font-size: 0.75rem;
color: #ffffff;
}
.defect-box-num[data-v-e3917daa] {
font-size: 0.875rem;
font-weight: 600;
color: #ffffff;
}
.gb-all[data-v-e3917daa] {
background: linear-gradient(to top right, #9E9E9E, #dcdcdc);
}
.gb-not-rectified[data-v-e3917daa] {
background: linear-gradient(to top right, #FFD626, #FF9F7D);
}
.gb-rectified[data-v-e3917daa] {
background: linear-gradient(to top right, #2488FA, #79BAFF);
}
.gb-rectified-rate[data-v-e3917daa] {
background: linear-gradient(to top right, #2AD192, #8DF0C9);
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-566fc965]:root,
body[data-v-566fc965] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.cost[data-v-566fc965] {
width: 100%;
}
.cost-box[data-v-566fc965] {
flex: 1;
}
.cost-box-lab[data-v-566fc965] {
color: #999999;
font-size: 0.75rem;
}
.cost-box-num[data-v-566fc965] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-65b1088b]:root,
body[data-v-65b1088b] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.special-equip[data-v-65b1088b] {
padding: 0.625rem 0;
}
.special-equip-box[data-v-65b1088b] {
flex: 1;
}
.special-equip-box-row[data-v-65b1088b] {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.special-equip-box-row-lab[data-v-65b1088b] {
font-size: 0.75rem;
color: #999999;
margin-top: 0.375rem;
}
.special-equip-box-row-num[data-v-65b1088b] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-57832b90]:root,
body[data-v-57832b90] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.big-crisis[data-v-57832b90] {
width: 100%;
height: 12.5rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-4fef74c9]:root,
body[data-v-4fef74c9] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.rish-ranking[data-v-4fef74c9] {
width: 100%;
height: 15rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-6bbf9eb3]:root,
body[data-v-6bbf9eb3] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.work[data-v-6bbf9eb3] {
padding: 0.625rem 0;
}
.work-box[data-v-6bbf9eb3] {
flex: 1;
}
.work-box-row[data-v-6bbf9eb3] {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.work-box-row-lab[data-v-6bbf9eb3] {
font-size: 0.75rem;
color: #999999;
margin-top: 0.375rem;
}
.work-box-row-num[data-v-6bbf9eb3] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-5048bcdb]:root,
body[data-v-5048bcdb] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.emergencyCard[data-v-5048bcdb] {
width: 100%;
height: 12.5rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-2b88b180]:root,
body[data-v-2b88b180] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.org-person-row[data-v-2b88b180] {
flex: 1;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-end;
padding: 0.625rem 0;
}
.org-person-row_lab[data-v-2b88b180] {
width: 6.25rem;
font-size: 0.75rem;
color: #999999;
line-height: 1;
}
.org-person-row_num[data-v-2b88b180] {
width: calc(100% - 6.25rem);
line-height: 1;
font-size: 0.875rem;
color: #333333;
padding-left: 1.25rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-2c6840f6]:root,
body[data-v-2c6840f6] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.star-level-box_inner[data-v-2c6840f6] {
padding: 0 0.9375rem;
display: grid;
grid-template-columns: 3.125rem 1fr 1fr;
column-gap: 0.625rem;
}
.star-level-tit[data-v-2c6840f6] {
padding: 0.375rem;
width: 1.5rem;
height: 2.5625rem;
text-align: center;
line-height: 0.9375rem;
font-size: 0.75rem;
background: linear-gradient(to right, #1e5ca3, #3094ff);
color: #ffffff;
border-radius: 0.1875rem;
}
.star-level_lab[data-v-2c6840f6] {
font-size: 0.625rem;
color: #999999;
}
.star-level_num[data-v-2c6840f6] {
font-size: 0.875rem;
color: #333333;
}
.star-level-row[data-v-2c6840f6] {
height: 3.125rem;
padding: 0.3125rem;
flex: 1;
background-color: #F7FBFE;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-d56b7742]:root,
body[data-v-d56b7742] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.education[data-v-d56b7742] {
width: 100%;
}
.education-box[data-v-d56b7742] {
flex: 1;
}
.education-box-lab[data-v-d56b7742] {
color: #999999;
font-size: 0.75rem;
}
.education-box-num[data-v-d56b7742] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-911d8482]:root,
body[data-v-911d8482] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.measuring[data-v-911d8482] {
padding: 0.625rem 0;
}
.measuring-box[data-v-911d8482] {
flex: 1;
}
.measuring-box-row[data-v-911d8482] {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.measuring-box-row-lab[data-v-911d8482] {
font-size: 0.75rem;
color: #999999;
margin-top: 0.375rem;
}
.measuring-box-row-num[data-v-911d8482] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-885e0717]:root,
body[data-v-885e0717] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inspection[data-v-885e0717] {
width: 100%;
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-3894200b]:root,
body[data-v-3894200b] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inspection[data-v-3894200b] {
width: 100%;
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-1e1c2b72]:root,
body[data-v-1e1c2b72] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inspection[data-v-1e1c2b72] {
width: 100%;
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-96c387c0]:root,
body[data-v-96c387c0] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inspection[data-v-96c387c0] {
width: 100%;
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-5be3af42]:root,
body[data-v-5be3af42] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.inspection[data-v-5be3af42] {
width: 100%;
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-077e4da0]:root,
body[data-v-077e4da0] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.education[data-v-077e4da0] {
width: 100%;
}
.education-box[data-v-077e4da0] {
flex: 1;
}
.education-box-lab[data-v-077e4da0] {
color: #999999;
font-size: 0.75rem;
}
.education-box-num[data-v-077e4da0] {
color: #333333;
font-size: 0.875rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-c60b6f79]:root,
body[data-v-c60b6f79] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.defect-main[data-v-c60b6f79] {
height: 3.75rem;
}
.defect-box[data-v-c60b6f79] {
width: calc((100% - 1.25rem) / 3);
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.defect-box-lab[data-v-c60b6f79] {
font-size: 0.75rem;
color: #ffffff;
}
.defect-box-num[data-v-c60b6f79] {
font-size: 0.875rem;
font-weight: 600;
color: #ffffff;
}
.gb-all[data-v-c60b6f79] {
background: linear-gradient(to top right, #9E9E9E, #dcdcdc);
}
.gb-not-rectified[data-v-c60b6f79] {
background: linear-gradient(to top right, #FFD626, #FF9F7D);
}
.gb-rectified[data-v-c60b6f79] {
background: linear-gradient(to top right, #2488FA, #79BAFF);
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-d3e96106]:root,
body[data-v-d3e96106] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.ys[data-v-d3e96106] {
height: 9.375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-5be1e34d]:root,
body[data-v-5be1e34d] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.weld-row[data-v-5be1e34d] {
background-color: #F7FBFE;
}
.weld-row-col_lab[data-v-5be1e34d] {
font-size: 0.875rem;
color: #999999;
}
.weld-row-col_num[data-v-5be1e34d] {
font-size: 1rem;
color: #333333;
}
.weld-row1[data-v-5be1e34d] {
display: grid;
grid-template-columns: repeat(3, calc((100% - 1.875rem) / 3));
grid-column-gap: 0.9375rem;
}
.weld-row1-col1[data-v-5be1e34d] {
padding: 0.625rem;
background-color: #F7FBFE;
}
.weld-row1-col1_lab[data-v-5be1e34d] {
text-align: center;
font-size: 0.875rem;
color: #999999;
}
.weld-row1-col1_num[data-v-5be1e34d] {
text-align: center;
font-size: 1rem;
color: #333333;
}
.weld-row2[data-v-5be1e34d] {
display: grid;
grid-template-columns: repeat(2, calc((100% - 0.9375rem) / 2));
grid-column-gap: 0.9375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-c4bf84b3]:root,
body[data-v-c4bf84b3] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-image[data-v-c4bf84b3] {
position: relative;
transition: opacity 0.5s ease-in-out;
}
.u-image__image[data-v-c4bf84b3] {
width: 100%;
height: 100%;
}
.u-image__loading[data-v-c4bf84b3], .u-image__error[data-v-c4bf84b3] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: var(--u-bg-color);
color: var(--u-tips-color);
font-size: 1.4375rem;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-78f27ce9]:root,
body[data-v-78f27ce9] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-cell[data-v-78f27ce9] {
display: flex;
flex-direction: row;
align-items: center;
position: relative;
box-sizing: border-box;
width: 100%;
padding: 0.8125rem 1rem;
font-size: 0.875rem;
line-height: 1.6875rem;
color: var(--u-content-color);
background-color: var(--u-bg-white);
text-align: left;
}
.u-cell_title[data-v-78f27ce9] {
font-size: 0.875rem;
}
.u-cell__left-icon-wrap[data-v-78f27ce9] {
margin-right: 0.3125rem;
font-size: 1rem;
}
.u-cell__right-icon-wrap[data-v-78f27ce9] {
margin-left: 0.3125rem;
color: var(--u-tips-color);
font-size: 0.875rem;
}
.u-cell__left-icon-wrap[data-v-78f27ce9],
.u-cell__right-icon-wrap[data-v-78f27ce9] {
display: flex;
flex-direction: row;
align-items: center;
height: 1.5rem;
}
.u-cell-border[data-v-78f27ce9]:after {
position: absolute;
box-sizing: border-box;
content: " ";
pointer-events: none;
border-bottom: 1px solid var(--u-border-color);
right: 0;
left: 0;
top: 0;
transform: scaleY(0.5);
}
.u-cell-border[data-v-78f27ce9] {
position: relative;
}
.u-cell__label[data-v-78f27ce9] {
margin-top: 0.1875rem;
font-size: 0.8125rem;
line-height: 1.125rem;
color: var(--u-tips-color);
word-wrap: break-word;
}
.u-cell__value[data-v-78f27ce9] {
overflow: hidden;
text-align: right;
vertical-align: middle;
color: var(--u-tips-color);
font-size: 0.8125rem;
}
.u-cell__title[data-v-78f27ce9],
.u-cell__value[data-v-78f27ce9] {
flex: 1;
}
.u-cell--required[data-v-78f27ce9] {
overflow: visible;
display: flex;
flex-direction: row;
align-items: center;
}
.u-cell--required[data-v-78f27ce9]:before {
position: absolute;
content: "*";
left: 8px;
margin-top: 0.125rem;
font-size: 14px;
color: var(--u-type-error);
}
.u-cell_right[data-v-78f27ce9] {
line-height: 1;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-07db21ed]:root,
body[data-v-07db21ed] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-cell-box[data-v-07db21ed] {
width: 100%;
}
.u-cell-title[data-v-07db21ed] {
padding: 0.9375rem 1rem 0.3125rem 1rem;
font-size: 0.9375rem;
text-align: left;
color: var(--u-tips-color);
}
.u-cell-item-box[data-v-07db21ed] {
background-color: var(--u-bg-white);
flex-direction: row;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-a44cf897]:root,
body[data-v-a44cf897] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-btn[data-v-a44cf897]::after {
border: none;
}
.u-btn[data-v-a44cf897] {
position: relative;
border: 0;
display: inline-flex;
overflow: visible;
line-height: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0 1.25rem;
z-index: 1;
box-sizing: border-box;
transition: all 0.15s;
}
.u-btn--bold-border[data-v-a44cf897] {
border: 1px solid var(--u-white-color);
}
.u-btn--default[data-v-a44cf897] {
color: var(--u-content-color);
border-color: var(--u-light-color);
background-color: var(--u-bg-white);
}
.u-btn--primary[data-v-a44cf897] {
color: var(--u-white-color);
border-color: var(--u-type-primary);
background-color: var(--u-type-primary);
}
.u-btn--success[data-v-a44cf897] {
color: var(--u-white-color);
border-color: var(--u-type-success);
background-color: var(--u-type-success);
}
.u-btn--error[data-v-a44cf897] {
color: var(--u-white-color);
border-color: var(--u-type-error);
background-color: var(--u-type-error);
}
.u-btn--warning[data-v-a44cf897] {
color: var(--u-white-color);
border-color: var(--u-type-warning);
background-color: var(--u-type-warning);
}
.u-btn--default--disabled[data-v-a44cf897] {
color: var(--u-white-color);
border-color: var(--u-border-color);
background-color: var(--u-bg-white);
}
.u-btn--primary--disabled[data-v-a44cf897] {
color: var(--u-white-color) !important;
border-color: var(--u-type-primary-disabled) !important;
background-color: var(--u-type-primary-disabled) !important;
}
.u-btn--success--disabled[data-v-a44cf897] {
color: var(--u-white-color) !important;
border-color: var(--u-type-success-disabled) !important;
background-color: var(--u-type-success-disabled) !important;
}
.u-btn--error--disabled[data-v-a44cf897] {
color: var(--u-white-color) !important;
border-color: var(--u-type-error-disabled) !important;
background-color: var(--u-type-error-disabled) !important;
}
.u-btn--warning--disabled[data-v-a44cf897] {
color: var(--u-white-color) !important;
border-color: var(--u-type-warning-disabled) !important;
background-color: var(--u-type-warning-disabled) !important;
}
.u-btn--primary--plain[data-v-a44cf897] {
color: var(--u-type-primary) !important;
border-color: var(--u-type-primary-disabled) !important;
background-color: var(--u-type-primary-light) !important;
}
.u-btn--success--plain[data-v-a44cf897] {
color: var(--u-type-success) !important;
border-color: var(--u-type-success-disabled) !important;
background-color: var(--u-type-success-light) !important;
}
.u-btn--error--plain[data-v-a44cf897] {
color: var(--u-type-error) !important;
border-color: var(--u-type-error-disabled) !important;
background-color: var(--u-type-error-light) !important;
}
.u-btn--warning--plain[data-v-a44cf897] {
color: var(--u-type-warning) !important;
border-color: var(--u-type-warning-disabled) !important;
background-color: var(--u-type-warning-light) !important;
}
.u-hairline-border[data-v-a44cf897]:after {
content: " ";
position: absolute;
pointer-events: none;
box-sizing: border-box;
transform-origin: 0 0;
left: 0;
top: 0;
width: 199.8%;
height: 199.7%;
transform: scale(0.5, 0.5);
border: 1px solid currentColor;
z-index: 1;
}
.u-wave-ripple[data-v-a44cf897] {
z-index: 0;
position: absolute;
border-radius: 100%;
background-clip: padding-box;
pointer-events: none;
-webkit-user-select: none;
user-select: none;
transform: scale(0);
opacity: 1;
transform-origin: center;
}
.u-wave-ripple.u-wave-active[data-v-a44cf897] {
opacity: 0;
transform: scale(2);
transition: opacity 1s linear, transform 0.4s linear;
}
.u-round-circle[data-v-a44cf897] {
border-radius: 3.125rem;
}
.u-round-circle[data-v-a44cf897]::after {
border-radius: 3.125rem;
}
.u-loading[data-v-a44cf897]::after {
background-color: rgba(255, 255, 255, 0.35);
}
.u-size-default[data-v-a44cf897] {
font-size: 0.9375rem;
height: 2.5rem;
line-height: 2.5rem;
}
.u-size-medium[data-v-a44cf897] {
display: inline-flex;
width: auto;
font-size: 0.8125rem;
height: 2.1875rem;
line-height: 2.1875rem;
padding: 0 2.5rem;
}
.u-size-mini[data-v-a44cf897] {
display: inline-flex;
width: auto;
font-size: 0.6875rem;
padding-top: 1px;
height: 1.5625rem;
line-height: 1.5625rem;
padding: 0 0.625rem;
}
.u-primary-plain-hover[data-v-a44cf897] {
color: var(--u-white-color) !important;
background: var(--u-type-primary-dark) !important;
}
.u-default-plain-hover[data-v-a44cf897] {
color: var(--u-type-primary-dark) !important;
background: var(--u-type-primary-light) !important;
}
.u-success-plain-hover[data-v-a44cf897] {
color: var(--u-white-color) !important;
background: var(--u-type-success-dark) !important;
}
.u-warning-plain-hover[data-v-a44cf897] {
color: var(--u-white-color) !important;
background: var(--u-type-warning-dark) !important;
}
.u-error-plain-hover[data-v-a44cf897] {
color: var(--u-white-color) !important;
background: var(--u-type-error-dark) !important;
}
.u-info-plain-hover[data-v-a44cf897] {
color: var(--u-white-color) !important;
background: var(--u-type-info-dark) !important;
}
.u-default-hover[data-v-a44cf897] {
color: var(--u-type-primary-dark) !important;
border-color: var(--u-type-primary-dark) !important;
background-color: var(--u-type-primary-light) !important;
}
.u-primary-hover[data-v-a44cf897] {
background: var(--u-type-primary-dark) !important;
color: var(--u-white-color);
}
.u-success-hover[data-v-a44cf897] {
background: var(--u-type-success-dark) !important;
color: var(--u-white-color);
}
.u-info-hover[data-v-a44cf897] {
background: var(--u-type-info-dark) !important;
color: var(--u-white-color);
}
.u-warning-hover[data-v-a44cf897] {
background: var(--u-type-warning-dark) !important;
color: var(--u-white-color);
}
.u-error-hover[data-v-a44cf897] {
background: var(--u-type-error-dark) !important;
color: var(--u-white-color);
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-1606b1e3]:root,
body[data-v-1606b1e3] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-wrap[data-v-1606b1e3] {
background-color: #ffffff;
width: 100%;
height: calc(100vh - 52px - env(safe-area-inset-bottom));
}
.u-wrap .fab[data-v-1606b1e3] {
padding: 0.625rem 1.25rem;
position: fixed;
bottom: 6.25rem;
left: 0;
right: 0;
z-index: 9999999999999;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-55059f9a]:root,
body[data-v-55059f9a] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-grid-item[data-v-55059f9a] {
box-sizing: border-box;
background-color: var(--u-bg-white);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: relative;
flex-direction: column;
}
.u-grid-item-hover[data-v-55059f9a] {
background: var(--u-bg-gray-light) !important;
}
.u-grid-marker-box[data-v-55059f9a] {
position: absolute;
display: inline-flex;
line-height: 0;
}
.u-grid-marker-wrap[data-v-55059f9a] {
position: absolute;
}
.u-grid-item-box[data-v-55059f9a] {
padding: 0.9375rem 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-direction: column;
flex: 1;
width: 100%;
height: 100%;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-a828b844]:root,
body[data-v-a828b844] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-grid[data-v-a828b844] {
width: 100%;
background-color: #ffffff;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
}
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
[data-v-d3afc24d]:root,
body[data-v-d3afc24d] {
/* 纯色 */
--u-white-color: #ffffff;
--u-black-color: #000000;
--u-main-color: #303133;
--u-content-color: #606266;
--u-tips-color: #909399;
--u-light-color: #c0c4cc;
--u-border-color: #e4e7ed;
--u-divider-color: #e4e7ed;
--u-mask-color: rgba(0, 0, 0, 0.4);
--u-shadow-color: rgba(0, 0, 0, 0.1);
/* 背景色 */
--u-bg-color: #f3f4f6;
--u-bg-white: #ffffff;
--u-bg-gray-light: #f1f1f1;
--u-bg-gray-dark: #2f343c;
--u-bg-black: #000000;
/* 主色 */
--u-type-primary: #17447a;
--u-type-primary-light: #d5dde7;
--u-type-primary-disabled: #8fa6c3;
--u-type-primary-dark: #123662;
/* 警告色 */
--u-type-warning: #ff9900;
--u-type-warning-disabled: #fcbd71;
--u-type-warning-dark: #f29100;
--u-type-warning-light: #fdf6ec;
/* 成功色 */
--u-type-success: #19be6b;
--u-type-success-disabled: #71d5a1;
--u-type-success-dark: #18b566;
--u-type-success-light: #dbf1e1;
/* 错误色 */
--u-type-error: #fa3534;
--u-type-error-disabled: #fab6b6;
--u-type-error-dark: #dd6161;
--u-type-error-light: #fef0f0;
/* 信息色 */
--u-type-info: #909399;
--u-type-info-disabled: #c8c9cc;
--u-type-info-dark: #82848a;
--u-type-info-light: #f4f4f5;
}
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.u-wrap .u-section[data-v-d3afc24d] {
background-color: #ffffff;
}