123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- /* 无任何数据的空布局 */
- .mescroll-empty[data-v-7cefd855] {
- box-sizing: border-box;
- width: 100%;
- padding: 9.375rem 1.5625rem;
- text-align: center;
- }
- .mescroll-empty.empty-fixed[data-v-7cefd855] {
- z-index: 99;
- position: absolute; /*transform会使fixed失效,最终会降级为absolute */
- top: 3.125rem;
- left: 0;
- }
- .mescroll-empty .empty-icon[data-v-7cefd855] {
- width: 6.25rem;
- height: 4.6875rem;
- }
- .mescroll-empty .empty-tip[data-v-7cefd855] {
- margin-top: 0.625rem;
- font-size: 0.875rem;
- color: #bbbbbb;
- }
- .mescroll-empty .empty-btn[data-v-7cefd855] {
- display: inline-block;
- margin-top: 1.25rem;
- min-width: 6.25rem;
- padding: 0.5625rem;
- font-size: 0.875rem;
- border: 0.03125rem solid #e04b28;
- border-radius: 1.875rem;
- color: #e04b28;
- }
- .mescroll-empty .empty-btn[data-v-7cefd855]:active {
- opacity: 0.75;
- }
- /* 回到顶部的按钮 */
- .mescroll-totop[data-v-49fff3a8] {
- z-index: 9990;
- position: fixed !important; /* 加上important避免编译到H5,在多mescroll中定位失效 */
- right: 0.625rem;
- bottom: 3.75rem;
- width: 2.25rem;
- height: auto;
- border-radius: 50%;
- opacity: 0;
- transition: opacity 0.5s; /* 过渡 */
- margin-bottom: var(--window-bottom); /* css变量 */
- }
- /* 适配 iPhoneX */
- @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
- .mescroll-totop-safearea[data-v-49fff3a8] {
- margin-bottom: calc(var(--window-bottom) + constant(safe-area-inset-bottom)); /* window-bottom + 适配 iPhoneX */
- margin-bottom: calc(var(--window-bottom) + env(safe-area-inset-bottom));
- }
- }
- /* 显示 -- 淡入 */
- .mescroll-totop-in[data-v-49fff3a8] {
- opacity: 1;
- }
- /* 隐藏 -- 淡出且不接收事件*/
- .mescroll-totop-out[data-v-49fff3a8] {
- opacity: 0;
- pointer-events: none;
- }
- .mescroll-body[data-v-151374fc] {
- position: relative; /* 下拉刷新区域相对自身定位 */
- height: auto; /* 不可固定高度,否则overflow:hidden导致无法滑动; 同时使设置的最小高生效,实现列表不满屏仍可下拉*/
- overflow: hidden; /* 当有元素写在mescroll-body标签前面时,可遮住下拉刷新区域 */
- box-sizing: border-box; /* 避免设置padding出现双滚动条的问题 */
- }
- /* 使sticky生效: 父元素不能overflow:hidden或者overflow:auto属性 */
- .mescroll-body.mescorll-sticky[data-v-151374fc]{
- overflow: unset !important
- }
- /* 适配 iPhoneX */
- @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
- .mescroll-safearea[data-v-151374fc] {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- }
- /* 下拉刷新区域 */
- .mescroll-downwarp[data-v-151374fc] {
- position: absolute;
- top: -100%;
- left: 0;
- width: 100%;
- height: 100%;
- text-align: center;
- }
- /* 下拉刷新--内容区,定位于区域底部 */
- .mescroll-downwarp .downwarp-content[data-v-151374fc] {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100%;
- min-height: 1.875rem;
- padding: 0.625rem 0;
- text-align: center;
- }
- /* 下拉刷新--提示文本 */
- .mescroll-downwarp .downwarp-tip[data-v-151374fc] {
- display: inline-block;
- font-size: 0.875rem;
- vertical-align: middle;
- margin-left: 0.5rem;
- /* color: gray; 已在style设置color,此处删去*/
- }
- /* 下拉刷新--旋转进度条 */
- .mescroll-downwarp .downwarp-progress[data-v-151374fc] {
- display: inline-block;
- width: 1rem;
- height: 1rem;
- border-radius: 50%;
- border: 0.0625rem solid gray;
- border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
- vertical-align: middle;
- }
- /* 旋转动画 */
- .mescroll-downwarp .mescroll-rotate[data-v-151374fc] {
- animation: mescrollDownRotate-151374fc 0.6s linear infinite;
- }
- @keyframes mescrollDownRotate-151374fc {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- /* 上拉加载区域 */
- .mescroll-upwarp[data-v-151374fc] {
- box-sizing: border-box;
- min-height: 3.4375rem;
- padding: 0.9375rem 0;
- text-align: center;
- clear: both;
- }
- /*提示文本 */
- .mescroll-upwarp .upwarp-tip[data-v-151374fc],
- .mescroll-upwarp .upwarp-nodata[data-v-151374fc] {
- display: inline-block;
- font-size: 0.875rem;
- vertical-align: middle;
- /* color: gray; 已在style设置color,此处删去*/
- }
- .mescroll-upwarp .upwarp-tip[data-v-151374fc] {
- margin-left: 0.5rem;
- }
- /*旋转进度条 */
- .mescroll-upwarp .upwarp-progress[data-v-151374fc] {
- display: inline-block;
- width: 1rem;
- height: 1rem;
- border-radius: 50%;
- border: 0.0625rem solid gray;
- border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
- vertical-align: middle;
- }
- /* 旋转动画 */
- .mescroll-upwarp .mescroll-rotate[data-v-151374fc] {
- animation: mescrollUpRotate-151374fc 0.6s linear infinite;
- }
- @keyframes mescrollUpRotate-151374fc {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .menu-list-box[data-v-758a2c95] {
- padding: 0;
- background: #fff;
- box-sizing: border-box;
- }
- .menu-list-box[data-v-758a2c95],
- .menu-swiper-box[data-v-758a2c95] {
- position: relative;
- background: #fff;
- }
- .menu-list-box .menu-swiper-item[data-v-758a2c95],
- .menu-swiper-box .menu-swiper-item[data-v-758a2c95] {
- background: #fff;
- height: 100%;
- width: 100%;
- }
- .menu-list-box .menu-tab-box[data-v-758a2c95],
- .menu-swiper-box .menu-tab-box[data-v-758a2c95] {
- display: flex;
- flex-wrap: wrap;
- }
- .menu-list-box .menu-tab-box .tab-list[data-v-758a2c95],
- .menu-swiper-box .menu-tab-box .tab-list[data-v-758a2c95] {
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: 0.6875rem;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- padding-bottom: 0.9375rem;
- }
- .menu-list-box .menu-tab-box .tab-list .tab-img[data-v-758a2c95],
- .menu-swiper-box .menu-tab-box .tab-list .tab-img[data-v-758a2c95] {
- border-radius: 0.78125rem;
- margin-bottom: 0.3125rem;
- }
- .menu-list-box .menu-tab-box .tab-list .tab-title[data-v-758a2c95],
- .menu-swiper-box .menu-tab-box .tab-list .tab-title[data-v-758a2c95] {
- font-size: 0.75rem;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111;
- margin-top: 0.3125rem;
- }
- .menu-list-box .menu-tab-box .tab-list .active[data-v-758a2c95],
- .menu-swiper-box .menu-tab-box .tab-list .active[data-v-758a2c95] {
- color: #E2C99E;
- }
- .menu-list-box .menu-dots[data-v-758a2c95],
- .menu-swiper-box .menu-dots[data-v-758a2c95] {
- display: flex;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- .menu-list-box .menu-dots .dot[data-v-758a2c95],
- .menu-swiper-box .menu-dots .dot[data-v-758a2c95] {
- width: 1.25rem;
- height: 0.09375rem;
- background: #eeeeee;
- margin-right: 0.3125rem;
- }
- .menu-list-box .menu-dots .dot-active[data-v-758a2c95],
- .menu-swiper-box .menu-dots .dot-active[data-v-758a2c95] {
- width: 1.25rem;
- height: 0.09375rem;
- background: #2BC7B9;
- margin-right: 0.3125rem;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- body {
- height: 100%;
- background: #f6f6f6;
- }
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- body[data-v-f73eb578] {
- height: 100%;
- background-color: #f5f5f5;
- }
- .content[data-v-f73eb578] {
- height: 100%;
- }
- .content .top-content[data-v-f73eb578] {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10;
- }
- .content .top-title[data-v-f73eb578] {
- height: 2.75rem;
- line-height: 2.75rem;
- font-size: 1.3125rem;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #222222;
- padding-left: 1.28125rem;
- background-color: #FFFFFF;
- }
- .content .search-cont[data-v-f73eb578] {
- padding: 0.5rem 0.9375rem;
- background-color: #FFFFFF;
- }
- .content .search-cont .inner[data-v-f73eb578] {
- box-sizing: border-box;
- width: 100%;
- height: 2.25rem;
- background: #F7F7F7;
- border-radius: 1.125rem;
- display: flex;
- align-items: center;
- padding: 0 0.9375rem;
- }
- .content .search-cont .inner .icon-search[data-v-f73eb578] {
- width: 0.875rem;
- height: 0.875rem;
- margin-right: 0.625rem;
- }
- .content .search-cont .inner uni-input[data-v-f73eb578] {
- height: 1.875rem;
- line-height: 1.875rem;
- flex: 1;
- }
- .content .cate-list[data-v-f73eb578] {
- box-sizing: border-box;
- background: #fff;
- }
- .content .package-box[data-v-f73eb578] {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-wrap: wrap;
- }
- .content .package-box .item[data-v-f73eb578] {
- box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
- background-color: #fff;
- width: calc(50% - 0.9375rem);
- border-radius: 0.46875rem;
- margin: 0.46875rem;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .content .package-box .item .top[data-v-f73eb578] {
- width: 100%;
- height: 10.625rem;
- }
- .content .package-box .item .top uni-image[data-v-f73eb578] {
- border-radius: 0.46875rem 0.46875rem 0 0;
- width: 100%;
- height: 100%;
- }
- .content .package-box .item .bottom[data-v-f73eb578] {
- padding: 0.46875rem 0.3125rem;
- width: 100%;
- }
- .content .package-box .item .bottom .title[data-v-f73eb578] {
- font-weight: bold;
- font-size: 0.875rem;
- font-family: PingFang SC;
- color: #111111;
- }
- .content .package-box .item .bottom .price-box[data-v-f73eb578] {
- margin-top: 0.3125rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- }
- .content .package-box .item .bottom .price-box .price[data-v-f73eb578] {
- padding: 0.15625rem 0.3125rem;
- background-color: #C39A58;
- border-radius: 0.9375rem;
- font-size: 0.625rem;
- font-family: PingFang SC;
- color: #ffffff;
- }
- .content .package-box .item .bottom .price-box .count[data-v-f73eb578] {
- font-size: 0.75rem;
- font-family: PingFang SC;
- color: #333333;
- }
|