| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .zb-tooltip[data-v-13dad3a2] {
- position: relative;
- }
- .zb_tooltip_content[data-v-13dad3a2] {
- height: 100%;
- /* float: left; */
- position: relative;
- display: inline-block;
- /* overflow: hidden; */
- }
- .zb_tooltip__popper[data-v-13dad3a2] {
- /* transform-origin: center top; */
- background: var(--theme-bg-color);
- visibility: hidden;
- position: absolute;
- border-radius: 4px;
- font-size: 12px;
- padding: 10px;
- min-width: 10px;
- word-wrap: break-word;
- display: inline-block;
- white-space: nowrap;
- z-index: 9;
- }
- .zb_popper__icon[data-v-13dad3a2] {
- width: 0;
- height: 0;
- z-index: 9;
- position: absolute;
- }
- .zb_popper__arrow[data-v-13dad3a2] {
- bottom: -5px;
- /* transform-origin: center top; */
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 6px solid var(--theme-bg-color);
- }
- .zb_popper__right[data-v-13dad3a2] {
- border-top: 6px solid transparent;
- border-bottom: 6px solid transparent;
- border-right: 6px solid var(--theme-bg-color);
- left: -5px;
- }
- .zb_popper__left[data-v-13dad3a2] {
- border-top: 6px solid transparent;
- border-bottom: 6px solid transparent;
- border-left: 6px solid var(--theme-bg-color);
- right: -5px;
- }
- .zb_popper__up[data-v-13dad3a2] {
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-bottom: 6px solid var(--theme-bg-color);
- top: -5px;
- }
- .fixed[data-v-13dad3a2] {
- position: absolute;
- width: 100vw;
- height: 100vh;
- position: fixed;
- left: 0;
- top: 0;
- pointer-events: auto;
- background: red;
- z-index: -1;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .uniui-cart-filled[data-v-d31e1c47]:before {
- content: "\e6d0";
- }
- .uniui-gift-filled[data-v-d31e1c47]:before {
- content: "\e6c4";
- }
- .uniui-color[data-v-d31e1c47]:before {
- content: "\e6cf";
- }
- .uniui-wallet[data-v-d31e1c47]:before {
- content: "\e6b1";
- }
- .uniui-settings-filled[data-v-d31e1c47]:before {
- content: "\e6ce";
- }
- .uniui-auth-filled[data-v-d31e1c47]:before {
- content: "\e6cc";
- }
- .uniui-shop-filled[data-v-d31e1c47]:before {
- content: "\e6cd";
- }
- .uniui-staff-filled[data-v-d31e1c47]:before {
- content: "\e6cb";
- }
- .uniui-vip-filled[data-v-d31e1c47]:before {
- content: "\e6c6";
- }
- .uniui-plus-filled[data-v-d31e1c47]:before {
- content: "\e6c7";
- }
- .uniui-folder-add-filled[data-v-d31e1c47]:before {
- content: "\e6c8";
- }
- .uniui-color-filled[data-v-d31e1c47]:before {
- content: "\e6c9";
- }
- .uniui-tune-filled[data-v-d31e1c47]:before {
- content: "\e6ca";
- }
- .uniui-calendar-filled[data-v-d31e1c47]:before {
- content: "\e6c0";
- }
- .uniui-notification-filled[data-v-d31e1c47]:before {
- content: "\e6c1";
- }
- .uniui-wallet-filled[data-v-d31e1c47]:before {
- content: "\e6c2";
- }
- .uniui-medal-filled[data-v-d31e1c47]:before {
- content: "\e6c3";
- }
- .uniui-fire-filled[data-v-d31e1c47]:before {
- content: "\e6c5";
- }
- .uniui-refreshempty[data-v-d31e1c47]:before {
- content: "\e6bf";
- }
- .uniui-location-filled[data-v-d31e1c47]:before {
- content: "\e6af";
- }
- .uniui-person-filled[data-v-d31e1c47]:before {
- content: "\e69d";
- }
- .uniui-personadd-filled[data-v-d31e1c47]:before {
- content: "\e698";
- }
- .uniui-arrowthinleft[data-v-d31e1c47]:before {
- content: "\e6d2";
- }
- .uniui-arrowthinup[data-v-d31e1c47]:before {
- content: "\e6d3";
- }
- .uniui-arrowthindown[data-v-d31e1c47]:before {
- content: "\e6d4";
- }
- .uniui-back[data-v-d31e1c47]:before {
- content: "\e6b9";
- }
- .uniui-forward[data-v-d31e1c47]:before {
- content: "\e6ba";
- }
- .uniui-arrow-right[data-v-d31e1c47]:before {
- content: "\e6bb";
- }
- .uniui-arrow-left[data-v-d31e1c47]:before {
- content: "\e6bc";
- }
- .uniui-arrow-up[data-v-d31e1c47]:before {
- content: "\e6bd";
- }
- .uniui-arrow-down[data-v-d31e1c47]:before {
- content: "\e6be";
- }
- .uniui-arrowthinright[data-v-d31e1c47]:before {
- content: "\e6d1";
- }
- .uniui-down[data-v-d31e1c47]:before {
- content: "\e6b8";
- }
- .uniui-bottom[data-v-d31e1c47]:before {
- content: "\e6b8";
- }
- .uniui-arrowright[data-v-d31e1c47]:before {
- content: "\e6d5";
- }
- .uniui-right[data-v-d31e1c47]:before {
- content: "\e6b5";
- }
- .uniui-up[data-v-d31e1c47]:before {
- content: "\e6b6";
- }
- .uniui-top[data-v-d31e1c47]:before {
- content: "\e6b6";
- }
- .uniui-left[data-v-d31e1c47]:before {
- content: "\e6b7";
- }
- .uniui-arrowup[data-v-d31e1c47]:before {
- content: "\e6d6";
- }
- .uniui-eye[data-v-d31e1c47]:before {
- content: "\e651";
- }
- .uniui-eye-filled[data-v-d31e1c47]:before {
- content: "\e66a";
- }
- .uniui-eye-slash[data-v-d31e1c47]:before {
- content: "\e6b3";
- }
- .uniui-eye-slash-filled[data-v-d31e1c47]:before {
- content: "\e6b4";
- }
- .uniui-info-filled[data-v-d31e1c47]:before {
- content: "\e649";
- }
- .uniui-reload[data-v-d31e1c47]:before {
- content: "\e6b2";
- }
- .uniui-micoff-filled[data-v-d31e1c47]:before {
- content: "\e6b0";
- }
- .uniui-map-pin-ellipse[data-v-d31e1c47]:before {
- content: "\e6ac";
- }
- .uniui-map-pin[data-v-d31e1c47]:before {
- content: "\e6ad";
- }
- .uniui-location[data-v-d31e1c47]:before {
- content: "\e6ae";
- }
- .uniui-starhalf[data-v-d31e1c47]:before {
- content: "\e683";
- }
- .uniui-star[data-v-d31e1c47]:before {
- content: "\e688";
- }
- .uniui-star-filled[data-v-d31e1c47]:before {
- content: "\e68f";
- }
- .uniui-calendar[data-v-d31e1c47]:before {
- content: "\e6a0";
- }
- .uniui-fire[data-v-d31e1c47]:before {
- content: "\e6a1";
- }
- .uniui-medal[data-v-d31e1c47]:before {
- content: "\e6a2";
- }
- .uniui-font[data-v-d31e1c47]:before {
- content: "\e6a3";
- }
- .uniui-gift[data-v-d31e1c47]:before {
- content: "\e6a4";
- }
- .uniui-link[data-v-d31e1c47]:before {
- content: "\e6a5";
- }
- .uniui-notification[data-v-d31e1c47]:before {
- content: "\e6a6";
- }
- .uniui-staff[data-v-d31e1c47]:before {
- content: "\e6a7";
- }
- .uniui-vip[data-v-d31e1c47]:before {
- content: "\e6a8";
- }
- .uniui-folder-add[data-v-d31e1c47]:before {
- content: "\e6a9";
- }
- .uniui-tune[data-v-d31e1c47]:before {
- content: "\e6aa";
- }
- .uniui-auth[data-v-d31e1c47]:before {
- content: "\e6ab";
- }
- .uniui-person[data-v-d31e1c47]:before {
- content: "\e699";
- }
- .uniui-email-filled[data-v-d31e1c47]:before {
- content: "\e69a";
- }
- .uniui-phone-filled[data-v-d31e1c47]:before {
- content: "\e69b";
- }
- .uniui-phone[data-v-d31e1c47]:before {
- content: "\e69c";
- }
- .uniui-email[data-v-d31e1c47]:before {
- content: "\e69e";
- }
- .uniui-personadd[data-v-d31e1c47]:before {
- content: "\e69f";
- }
- .uniui-chatboxes-filled[data-v-d31e1c47]:before {
- content: "\e692";
- }
- .uniui-contact[data-v-d31e1c47]:before {
- content: "\e693";
- }
- .uniui-chatbubble-filled[data-v-d31e1c47]:before {
- content: "\e694";
- }
- .uniui-contact-filled[data-v-d31e1c47]:before {
- content: "\e695";
- }
- .uniui-chatboxes[data-v-d31e1c47]:before {
- content: "\e696";
- }
- .uniui-chatbubble[data-v-d31e1c47]:before {
- content: "\e697";
- }
- .uniui-upload-filled[data-v-d31e1c47]:before {
- content: "\e68e";
- }
- .uniui-upload[data-v-d31e1c47]:before {
- content: "\e690";
- }
- .uniui-weixin[data-v-d31e1c47]:before {
- content: "\e691";
- }
- .uniui-compose[data-v-d31e1c47]:before {
- content: "\e67f";
- }
- .uniui-qq[data-v-d31e1c47]:before {
- content: "\e680";
- }
- .uniui-download-filled[data-v-d31e1c47]:before {
- content: "\e681";
- }
- .uniui-pyq[data-v-d31e1c47]:before {
- content: "\e682";
- }
- .uniui-sound[data-v-d31e1c47]:before {
- content: "\e684";
- }
- .uniui-trash-filled[data-v-d31e1c47]:before {
- content: "\e685";
- }
- .uniui-sound-filled[data-v-d31e1c47]:before {
- content: "\e686";
- }
- .uniui-trash[data-v-d31e1c47]:before {
- content: "\e687";
- }
- .uniui-videocam-filled[data-v-d31e1c47]:before {
- content: "\e689";
- }
- .uniui-spinner-cycle[data-v-d31e1c47]:before {
- content: "\e68a";
- }
- .uniui-weibo[data-v-d31e1c47]:before {
- content: "\e68b";
- }
- .uniui-videocam[data-v-d31e1c47]:before {
- content: "\e68c";
- }
- .uniui-download[data-v-d31e1c47]:before {
- content: "\e68d";
- }
- .uniui-help[data-v-d31e1c47]:before {
- content: "\e679";
- }
- .uniui-navigate-filled[data-v-d31e1c47]:before {
- content: "\e67a";
- }
- .uniui-plusempty[data-v-d31e1c47]:before {
- content: "\e67b";
- }
- .uniui-smallcircle[data-v-d31e1c47]:before {
- content: "\e67c";
- }
- .uniui-minus-filled[data-v-d31e1c47]:before {
- content: "\e67d";
- }
- .uniui-micoff[data-v-d31e1c47]:before {
- content: "\e67e";
- }
- .uniui-closeempty[data-v-d31e1c47]:before {
- content: "\e66c";
- }
- .uniui-clear[data-v-d31e1c47]:before {
- content: "\e66d";
- }
- .uniui-navigate[data-v-d31e1c47]:before {
- content: "\e66e";
- }
- .uniui-minus[data-v-d31e1c47]:before {
- content: "\e66f";
- }
- .uniui-image[data-v-d31e1c47]:before {
- content: "\e670";
- }
- .uniui-mic[data-v-d31e1c47]:before {
- content: "\e671";
- }
- .uniui-paperplane[data-v-d31e1c47]:before {
- content: "\e672";
- }
- .uniui-close[data-v-d31e1c47]:before {
- content: "\e673";
- }
- .uniui-help-filled[data-v-d31e1c47]:before {
- content: "\e674";
- }
- .uniui-paperplane-filled[data-v-d31e1c47]:before {
- content: "\e675";
- }
- .uniui-plus[data-v-d31e1c47]:before {
- content: "\e676";
- }
- .uniui-mic-filled[data-v-d31e1c47]:before {
- content: "\e677";
- }
- .uniui-image-filled[data-v-d31e1c47]:before {
- content: "\e678";
- }
- .uniui-locked-filled[data-v-d31e1c47]:before {
- content: "\e668";
- }
- .uniui-info[data-v-d31e1c47]:before {
- content: "\e669";
- }
- .uniui-locked[data-v-d31e1c47]:before {
- content: "\e66b";
- }
- .uniui-camera-filled[data-v-d31e1c47]:before {
- content: "\e658";
- }
- .uniui-chat-filled[data-v-d31e1c47]:before {
- content: "\e659";
- }
- .uniui-camera[data-v-d31e1c47]:before {
- content: "\e65a";
- }
- .uniui-circle[data-v-d31e1c47]:before {
- content: "\e65b";
- }
- .uniui-checkmarkempty[data-v-d31e1c47]:before {
- content: "\e65c";
- }
- .uniui-chat[data-v-d31e1c47]:before {
- content: "\e65d";
- }
- .uniui-circle-filled[data-v-d31e1c47]:before {
- content: "\e65e";
- }
- .uniui-flag[data-v-d31e1c47]:before {
- content: "\e65f";
- }
- .uniui-flag-filled[data-v-d31e1c47]:before {
- content: "\e660";
- }
- .uniui-gear-filled[data-v-d31e1c47]:before {
- content: "\e661";
- }
- .uniui-home[data-v-d31e1c47]:before {
- content: "\e662";
- }
- .uniui-home-filled[data-v-d31e1c47]:before {
- content: "\e663";
- }
- .uniui-gear[data-v-d31e1c47]:before {
- content: "\e664";
- }
- .uniui-smallcircle-filled[data-v-d31e1c47]:before {
- content: "\e665";
- }
- .uniui-map-filled[data-v-d31e1c47]:before {
- content: "\e666";
- }
- .uniui-map[data-v-d31e1c47]:before {
- content: "\e667";
- }
- .uniui-refresh-filled[data-v-d31e1c47]:before {
- content: "\e656";
- }
- .uniui-refresh[data-v-d31e1c47]:before {
- content: "\e657";
- }
- .uniui-cloud-upload[data-v-d31e1c47]:before {
- content: "\e645";
- }
- .uniui-cloud-download-filled[data-v-d31e1c47]:before {
- content: "\e646";
- }
- .uniui-cloud-download[data-v-d31e1c47]:before {
- content: "\e647";
- }
- .uniui-cloud-upload-filled[data-v-d31e1c47]:before {
- content: "\e648";
- }
- .uniui-redo[data-v-d31e1c47]:before {
- content: "\e64a";
- }
- .uniui-images-filled[data-v-d31e1c47]:before {
- content: "\e64b";
- }
- .uniui-undo-filled[data-v-d31e1c47]:before {
- content: "\e64c";
- }
- .uniui-more[data-v-d31e1c47]:before {
- content: "\e64d";
- }
- .uniui-more-filled[data-v-d31e1c47]:before {
- content: "\e64e";
- }
- .uniui-undo[data-v-d31e1c47]:before {
- content: "\e64f";
- }
- .uniui-images[data-v-d31e1c47]:before {
- content: "\e650";
- }
- .uniui-paperclip[data-v-d31e1c47]:before {
- content: "\e652";
- }
- .uniui-settings[data-v-d31e1c47]:before {
- content: "\e653";
- }
- .uniui-search[data-v-d31e1c47]:before {
- content: "\e654";
- }
- .uniui-redo-filled[data-v-d31e1c47]:before {
- content: "\e655";
- }
- .uniui-list[data-v-d31e1c47]:before {
- content: "\e644";
- }
- .uniui-mail-open-filled[data-v-d31e1c47]:before {
- content: "\e63a";
- }
- .uniui-hand-down-filled[data-v-d31e1c47]:before {
- content: "\e63c";
- }
- .uniui-hand-down[data-v-d31e1c47]:before {
- content: "\e63d";
- }
- .uniui-hand-up-filled[data-v-d31e1c47]:before {
- content: "\e63e";
- }
- .uniui-hand-up[data-v-d31e1c47]:before {
- content: "\e63f";
- }
- .uniui-heart-filled[data-v-d31e1c47]:before {
- content: "\e641";
- }
- .uniui-mail-open[data-v-d31e1c47]:before {
- content: "\e643";
- }
- .uniui-heart[data-v-d31e1c47]:before {
- content: "\e639";
- }
- .uniui-loop[data-v-d31e1c47]:before {
- content: "\e633";
- }
- .uniui-pulldown[data-v-d31e1c47]:before {
- content: "\e632";
- }
- .uniui-scan[data-v-d31e1c47]:before {
- content: "\e62a";
- }
- .uniui-bars[data-v-d31e1c47]:before {
- content: "\e627";
- }
- .uniui-checkbox[data-v-d31e1c47]:before {
- content: "\e62b";
- }
- .uniui-checkbox-filled[data-v-d31e1c47]:before {
- content: "\e62c";
- }
- .uniui-shop[data-v-d31e1c47]:before {
- content: "\e62f";
- }
- .uniui-headphones[data-v-d31e1c47]:before {
- content: "\e630";
- }
- .uniui-cart[data-v-d31e1c47]:before {
- content: "\e631";
- }
- @font-face {
- font-family: uniicons;
- src: url("../../assets/uniicons.32e978a5.ttf");
- }
- .uni-icons[data-v-d31e1c47] {
- font-family: uniicons;
- text-decoration: none;
- text-align: center;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .box[data-v-88b7506d] {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .uni-pagination[data-v-88b7506d] {
- display: flex;
- position: relative;
- overflow: hidden;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .uni-pagination__total[data-v-88b7506d] {
- font-size: 22px;
- color: #999;
- margin-right: 15px;
- }
- .uni-pagination__btn[data-v-88b7506d] {
- display: flex;
- cursor: pointer;
- padding: 0 8px;
- line-height: 30px;
- font-size: 22px;
- position: relative;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- text-align: center;
- border-radius: 5px;
- }
- .uni-pagination__child-btn[data-v-88b7506d] {
- display: flex;
- font-size: 22px;
- position: relative;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- text-align: center;
- color: #666;
- font-size: 22px;
- }
- .uni-pagination__num[data-v-88b7506d] {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 30px;
- line-height: 30px;
- font-size: 22px;
- color: #666;
- margin: 0 5px;
- }
- .uni-pagination__num-tagwight[data-v-88b7506d] {
- width: 30px;
- }
- .uni-pagination__num-tag[data-v-88b7506d] {
- margin: 0 5px;
- height: 30px;
- text-align: center;
- line-height: 30px;
- color: #999;
- border-radius: 4px;
- }
- .uni-pagination__num-current[data-v-88b7506d] {
- display: flex;
- flex-direction: row;
- }
- .uni-pagination__num-current-text[data-v-88b7506d] {
- font-size: 22px;
- }
- .current-index-text[data-v-88b7506d] {
- color: #2979ff;
- }
- .uni-pagination--enabled[data-v-88b7506d] {
- color: #333333;
- opacity: 1;
- }
- .uni-pagination--disabled[data-v-88b7506d] {
- opacity: 0.5;
- }
- .uni-pagination--hover[data-v-88b7506d] {
- color: rgba(0, 0, 0, 0.6);
- background-color: #eee;
- }
- .tag--active[data-v-88b7506d]:hover {
- color: #2979ff;
- }
- .page--active[data-v-88b7506d] {
- color: #fff;
- background-color: #2979ff;
- }
- .page--active[data-v-88b7506d]:hover {
- color: #fff;
- }
- .is-pc-hide[data-v-88b7506d] {
- display: block;
- }
- .is-phone-hide[data-v-88b7506d] {
- display: none;
- }
- @media screen and (min-width: 450px) {
- .is-pc-hide[data-v-88b7506d] {
- display: none;
- }
- .is-phone-hide[data-v-88b7506d] {
- display: block;
- }
- .uni-pagination__num-flex-none[data-v-88b7506d] {
- flex: none;
- }
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .content[data-v-a45dfdea] {
- width: 100%;
- height: 100vh;
- opacity: 1;
- background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, #c4e5ff 100%);
- box-sizing: border-box;
- }
- .top[data-v-a45dfdea] {
- width: 100%;
- height: 100px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-color: #fff;
- padding: 0px 46px;
- box-sizing: border-box;
- }
- .top_logo[data-v-a45dfdea] {
- width: 327px;
- height: 52px;
- }
- .tite[data-v-a45dfdea] {
- width: 340px;
- height: 48px;
- font-size: 34px;
- font-weight: 800;
- }
- .time[data-v-a45dfdea] {
- width: 277px;
- text-align: right;
- }
- .time_top[data-v-a45dfdea] {
- font-size: 17px;
- }
- .time_bottom[data-v-a45dfdea] {
- display: flex;
- font-size: 17px;
- justify-content: space-between;
- }
- .time_bottom1[data-v-a45dfdea] {
- display: flex;
- }
- .time_state[data-v-a45dfdea] {
- font-size: 17px;
- font-weight: 600;
- color: #164490;
- }
- .parameter[data-v-a45dfdea] {
- width: 100%;
- /* padding-bottom: 20px; */
- display: flex;
- padding: 0px 20px 20px 20px;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- }
- .parameter_xian[data-v-a45dfdea] {
- width: 100%;
- height: 55px;
- background: linear-gradient(180deg, #1e83bd 0%, rgba(69, 168, 230, 0.92) 100%);
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- color: #fff;
- justify-content: space-between;
- font-size: 28px;
- font-weight: 600;
- padding: 0px 20px;
- box-sizing: border-box;
- }
- .parameter_xian .parameter_xian1[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_xian .parameter_xian2[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_xian .parameter_xian3[data-v-a45dfdea] {
- width: 430px;
- }
- .parameter_xian .parameter_xian4[data-v-a45dfdea] {
- width: 220px;
- margin-right: 10px;
- white-space: nowrap;
- /* 禁止换行 */
- overflow: hidden;
- /* 超出部分隐藏 */
- text-overflow: ellipsis;
- /* 显示省略号 */
- }
- .parameter_xian .parameter_xian5[data-v-a45dfdea] {
- width: 240px;
- margin-right: 10px;
- }
- .parameter_xian .parameter_xian6[data-v-a45dfdea] {
- width: 240px;
- }
- .parameter_box[data-v-a45dfdea] {
- width: 100%;
- overflow: auto;
- }
- .parameter_div[data-v-a45dfdea] {
- width: 100%;
- height: 46px;
- background: white;
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- margin-top: 10px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-weight: 500;
- padding: 0px 20px;
- box-sizing: border-box;
- }
- .parameter_div .parameter_xian1[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_div .parameter_xian2[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_div .parameter_xian3[data-v-a45dfdea] {
- width: 430px;
- }
- .parameter_div .parameter_xian4[data-v-a45dfdea] {
- width: 220px;
- white-space: nowrap;
- /* 禁止换行 */
- overflow: hidden;
- /* 超出部分隐藏 */
- text-overflow: ellipsis;
- /* 显示省略号 */
- }
- .parameter_div .parameter_xian5[data-v-a45dfdea] {
- width: 240px;
- margin-right: 10px;
- }
- .parameter_div .parameter_xian6[data-v-a45dfdea] {
- width: 240px;
- }
- .parameter_divred[data-v-a45dfdea] {
- width: 100%;
- height: 46px;
- background: #f56353;
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- margin-bottom: 10px;
- display: flex;
- align-items: center;
- color: #fff;
- font-weight: 500;
- justify-content: space-between;
- padding: 0px 16px;
- box-sizing: border-box;
- }
- .parameter_divred .parameter_xian1[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_divred .parameter_xian2[data-v-a45dfdea] {
- width: 160px;
- }
- .parameter_divred .parameter_xian3[data-v-a45dfdea] {
- width: 430px;
- }
- .parameter_divred .parameter_xian4[data-v-a45dfdea] {
- width: 220px;
- white-space: nowrap;
- /* 禁止换行 */
- overflow: hidden;
- /* 超出部分隐藏 */
- text-overflow: ellipsis;
- /* 显示省略号 */
- }
- .parameter_divred .parameter_xian5[data-v-a45dfdea] {
- width: 240px;
- margin-right: 10px;
- }
- .parameter_divred .parameter_xian6[data-v-a45dfdea] {
- width: 240px;
- }
- .parameter_bottom[data-v-a45dfdea] {
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- padding: 0px 16px;
- position: fixed;
- left: 10px;
- bottom: 10px;
- width: 100%;
- box-sizing: border-box;
- }
- .parameter_bottom1[data-v-a45dfdea] {
- display: flex;
- align-items: center;
- }
- .parameter_bottom1 uni-image[data-v-a45dfdea] {
- width: 32px;
- height: 32px;
- display: flex;
- }
- .parameter_bottom11[data-v-a45dfdea] {
- display: flex;
- align-items: center;
- margin-left: 100px;
- }
- .parameter_bottom11 uni-image[data-v-a45dfdea] {
- width: 32px;
- height: 32px;
- display: flex;
- }
- .parameter_bottom2[data-v-a45dfdea] {
- font-size: 19.58px;
- font-weight: 400;
- color: black;
- margin-left: 10px;
- }
- .parameter_bottom3[data-v-a45dfdea] {
- display: flex;
- }
- .parameter_bottom31[data-v-a45dfdea] {
- width: 48px;
- height: 48px;
- background: linear-gradient(180deg, #4aa7e0 0%, #2486c0 100%);
- border-radius: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19px;
- font-weight: 700;
- margin-right: 20px;
- color: white;
- }
- .parameter_bottom32[data-v-a45dfdea] {
- width: 48px;
- height: 48px;
- background: linear-gradient(180deg, #e0dada 0%, #827979 100%);
- border-radius: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19px;
- font-weight: 700;
- color: #222222;
- margin-right: 20px;
- }
- .parameter_bottom4[data-v-a45dfdea] {
- display: flex;
- align-items: center;
- }
- .eliminate[data-v-a45dfdea] {
- width: 107.69px;
- height: 44.05px;
- opacity: 1;
- border-radius: 2.45px;
- background: linear-gradient(180deg, #77a3e6 0%, #1955b0 10.42%, #06355e 88.89%, #77a3e6 100%);
- margin-right: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 23.5px;
- font-weight: 400;
- color: white;
- box-sizing: border-box;
- }
- .time_state1[data-v-a45dfdea] {
- font-size: 17px;
- font-weight: 600;
- color: #d91616;
- }
|