123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-loading-icon[data-v-2af81691] {
- flex-direction: row;
- align-items: center;
- justify-content: center;
- color: #c8c9cc;
- }
- .u-loading-icon__text[data-v-2af81691] {
- margin-left: 4px;
- color: #606266;
- font-size: 14px;
- line-height: 20px;
- }
- .u-loading-icon__spinner[data-v-2af81691] {
- width: 30px;
- height: 30px;
- position: relative;
- box-sizing: border-box;
- max-width: 100%;
- max-height: 100%;
- animation: u-rotate-2af81691 1s linear infinite;
- }
- .u-loading-icon__spinner--semicircle[data-v-2af81691] {
- border-width: 2px;
- border-color: transparent;
- border-top-right-radius: 100px;
- border-top-left-radius: 100px;
- border-bottom-left-radius: 100px;
- border-bottom-right-radius: 100px;
- border-style: solid;
- }
- .u-loading-icon__spinner--circle[data-v-2af81691] {
- border-top-right-radius: 100px;
- border-top-left-radius: 100px;
- border-bottom-left-radius: 100px;
- border-bottom-right-radius: 100px;
- border-width: 2px;
- border-top-color: #e5e5e5;
- border-right-color: #e5e5e5;
- border-bottom-color: #e5e5e5;
- border-left-color: #e5e5e5;
- border-style: solid;
- }
- .u-loading-icon--vertical[data-v-2af81691] {
- flex-direction: column;
- }
- [data-v-2af81691]:host {
- font-size: 0px;
- line-height: 1;
- }
- .u-loading-icon__spinner--spinner[data-v-2af81691] {
- animation-timing-function: steps(12);
- }
- .u-loading-icon__text[data-v-2af81691]:empty {
- display: none;
- }
- .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
- margin: 6px 0 0;
- color: #606266;
- }
- .u-loading-icon__dot[data-v-2af81691] {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .u-loading-icon__dot[data-v-2af81691]:before {
- display: block;
- width: 2px;
- height: 25%;
- margin: 0 auto;
- background-color: currentColor;
- border-radius: 40%;
- content: " ";
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
- transform: rotate(30deg);
- opacity: 1;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
- transform: rotate(60deg);
- opacity: 0.9375;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
- transform: rotate(90deg);
- opacity: 0.875;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
- transform: rotate(120deg);
- opacity: 0.8125;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
- transform: rotate(150deg);
- opacity: 0.75;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
- transform: rotate(180deg);
- opacity: 0.6875;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
- transform: rotate(210deg);
- opacity: 0.625;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
- transform: rotate(240deg);
- opacity: 0.5625;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
- transform: rotate(270deg);
- opacity: 0.5;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
- transform: rotate(300deg);
- opacity: 0.4375;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
- transform: rotate(330deg);
- opacity: 0.375;
- }
- .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
- transform: rotate(360deg);
- opacity: 0.3125;
- }
- @keyframes u-rotate-2af81691 {
- 0% {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(1turn);
- }
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- uni-view[data-v-7b7c7ea6], uni-scroll-view[data-v-7b7c7ea6], uni-swiper-item[data-v-7b7c7ea6] {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-swiper-indicator__wrapper[data-v-7b7c7ea6] {
- display: flex;
- flex-direction: row;
- }
- .u-swiper-indicator__wrapper--line[data-v-7b7c7ea6] {
- border-radius: 100px;
- height: 4px;
- }
- .u-swiper-indicator__wrapper--line__bar[data-v-7b7c7ea6] {
- width: 22px;
- height: 4px;
- border-radius: 100px;
- background-color: #FFFFFF;
- transition: transform 0.3s;
- }
- .u-swiper-indicator__wrapper__dot[data-v-7b7c7ea6] {
- width: 5px;
- height: 5px;
- border-radius: 100px;
- margin: 0 4px;
- }
- .u-swiper-indicator__wrapper__dot--active[data-v-7b7c7ea6] {
- width: 12px;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- uni-view[data-v-4e7d0c90], uni-scroll-view[data-v-4e7d0c90], uni-swiper-item[data-v-4e7d0c90] {
- display: flex;
- flex-direction: column;
- flex-shrink: 0;
- flex-grow: 0;
- flex-basis: auto;
- align-items: stretch;
- align-content: flex-start;
- }
- .u-swiper[data-v-4e7d0c90] {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- position: relative;
- overflow: hidden;
- }
- .u-swiper__wrapper[data-v-4e7d0c90] {
- flex: 1;
- }
- .u-swiper__wrapper__item[data-v-4e7d0c90] {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper[data-v-4e7d0c90] {
- display: flex;
- flex-direction: row;
- position: relative;
- overflow: hidden;
- transition: transform 0.3s;
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__image[data-v-4e7d0c90] {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__video[data-v-4e7d0c90] {
- flex: 1;
- }
- .u-swiper__wrapper__item__wrapper__title[data-v-4e7d0c90] {
- position: absolute;
- background-color: rgba(0, 0, 0, 0.3);
- bottom: 0;
- left: 0;
- right: 0;
- font-size: 0.875rem;
- padding: 0.375rem 0.75rem;
- color: #FFFFFF;
- flex: 1;
- }
- .u-swiper__indicator[data-v-4e7d0c90] {
- position: absolute;
- bottom: 10px;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- body {
- height: 100%;
- }
- .content {
- height: 100%;
- }
- .content uni-image {
- height: 14.0625rem;
- width: 100%;
- }
- .content .detail-cont {
- flex: 1;
- padding: 0.625rem;
- overflow-y: auto;
- }
- .content .detail-cont .title-box {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .content .detail-cont .title-box .line {
- border-radius: 0.15625rem;
- width: 0.25rem;
- height: 0.9375rem;
- background-color: #C39A58;
- }
- .content .detail-cont .title-box .title {
- margin-left: 0.46875rem;
- font-size: 1.25rem;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333;
- }
- .content .detail-cont .title-box .title-py {
- margin-left: 0.46875rem;
- font-size: 1rem;
- font-family: PingFang SC;
- color: #333;
- }
- .content .detail-cont .desc {
- margin-top: 0.625rem;
- font-size: 1rem;
- font-family: PingFang SC;
- color: #333;
- }
- .content .detail-cont .line-h {
- margin: 0.46875rem 0;
- border-bottom: 0.03125rem dashed #d4d4d4;
- }
- .content .detail-cont .tabs {
- width: 100%;
- margin: 0.625rem 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius: 0.9375rem;
- line-height: 1.875rem;
- }
- .content .detail-cont .tabs .tab1 {
- border-radius: 0.9375rem 0 0 0.9375rem;
- width: 25%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- color: #4F575A;
- font-size: 0.875rem;
- font-weight: bold;
- font-family: PingFang SC;
- }
- .content .detail-cont .tabs .tab2 {
- width: 25%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- color: #4F575A;
- font-size: 0.875rem;
- font-weight: bold;
- font-family: PingFang SC;
- }
- .content .detail-cont .tabs .tab3 {
- width: 25%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- color: #4F575A;
- font-size: 0.875rem;
- font-weight: bold;
- font-family: PingFang SC;
- }
- .content .detail-cont .tabs .tab4 {
- border-radius: 0 0.9375rem 0.9375rem 0;
- width: 25%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- color: #4F575A;
- font-size: 0.875rem;
- font-weight: bold;
- font-family: PingFang SC;
- }
- .content .detail-cont .tabs .active {
- background-color: #C39A58;
- color: #fff;
- }
- .content .ad {
- margin-bottom: 1.5625rem;
- width: 100%;
- padding: 0.46875rem;
- }
|