|
|
@@ -0,0 +1,799 @@
|
|
|
+
|
|
|
+/* 无任何数据的空布局 */
|
|
|
+.mescroll-empty[data-v-7cefd855] {
|
|
|
+ box-sizing: border-box;
|
|
|
+ width: 100%;
|
|
|
+ padding: 3.125rem 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: 8.75rem;
|
|
|
+ height: 8.75rem;
|
|
|
+}
|
|
|
+.mescroll-empty .empty-tip[data-v-7cefd855] {
|
|
|
+ margin-top: 0.625rem;
|
|
|
+ height: 1.25rem;
|
|
|
+ font-size: 0.875rem;
|
|
|
+ font-family: PingFangSC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 1.25rem;
|
|
|
+}
|
|
|
+.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-uni-warp[data-v-97b1664c] {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.mescroll-uni-content[data-v-97b1664c] {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.mescroll-uni[data-v-97b1664c] {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ min-height: 6.25rem;
|
|
|
+ overflow-y: auto;
|
|
|
+ box-sizing: border-box;
|
|
|
+ /* 避免设置padding出现双滚动条的问题 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 定位的方式固定高度 */
|
|
|
+.mescroll-uni-fixed[data-v-97b1664c] {
|
|
|
+ z-index: 1;
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: auto;
|
|
|
+ /* 使right生效 */
|
|
|
+ height: auto;
|
|
|
+ /* 使bottom生效 */
|
|
|
+}
|
|
|
+
|
|
|
+/* 适配 iPhoneX */
|
|
|
+@supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
|
|
|
+.mescroll-safearea[data-v-97b1664c] {
|
|
|
+ padding-bottom: constant(safe-area-inset-bottom);
|
|
|
+ padding-bottom: env(safe-area-inset-bottom);
|
|
|
+}
|
|
|
+}
|
|
|
+
|
|
|
+/* 下拉刷新区域 */
|
|
|
+.mescroll-downwarp[data-v-97b1664c] {
|
|
|
+ position: absolute;
|
|
|
+ top: -100%;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+/* 下拉刷新--内容区,定位于区域底部 */
|
|
|
+.mescroll-downwarp .downwarp-content[data-v-97b1664c] {
|
|
|
+ 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-97b1664c] {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 0.875rem;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-left: 0.5rem;
|
|
|
+ /* color: gray; 已在style设置color,此处删去*/
|
|
|
+}
|
|
|
+
|
|
|
+/* 下拉刷新--旋转进度条 */
|
|
|
+.mescroll-downwarp .downwarp-progress[data-v-97b1664c] {
|
|
|
+ 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-97b1664c] {
|
|
|
+ animation: mescrollDownRotate-97b1664c 0.6s linear infinite;
|
|
|
+}
|
|
|
+@keyframes mescrollDownRotate-97b1664c {
|
|
|
+0% {
|
|
|
+ transform: rotate(0deg);
|
|
|
+}
|
|
|
+100% {
|
|
|
+ transform: rotate(360deg);
|
|
|
+}
|
|
|
+}
|
|
|
+
|
|
|
+/* 上拉加载区域 */
|
|
|
+.mescroll-upwarp[data-v-97b1664c] {
|
|
|
+ box-sizing: border-box;
|
|
|
+ min-height: 3.4375rem;
|
|
|
+ padding: 0.9375rem 0;
|
|
|
+ text-align: center;
|
|
|
+ clear: both;
|
|
|
+}
|
|
|
+
|
|
|
+/*提示文本 */
|
|
|
+.mescroll-upwarp .upwarp-tip[data-v-97b1664c],
|
|
|
+.mescroll-upwarp .upwarp-nodata[data-v-97b1664c] {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 0.875rem;
|
|
|
+ vertical-align: middle;
|
|
|
+ /* color: gray; 已在style设置color,此处删去*/
|
|
|
+}
|
|
|
+.mescroll-upwarp .upwarp-tip[data-v-97b1664c] {
|
|
|
+ margin-left: 0.5rem;
|
|
|
+}
|
|
|
+
|
|
|
+/*旋转进度条 */
|
|
|
+.mescroll-upwarp .upwarp-progress[data-v-97b1664c] {
|
|
|
+ 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-97b1664c] {
|
|
|
+ animation: mescrollUpRotate-97b1664c 0.6s linear infinite;
|
|
|
+}
|
|
|
+@keyframes mescrollUpRotate-97b1664c {
|
|
|
+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 */
|
|
|
+/* 水平间距 */
|
|
|
+/* 垂直间距 */
|
|
|
+/* 透明度 */
|
|
|
+/* 文章场景相关 */
|
|
|
+.item[data-v-30bc23e1] {
|
|
|
+ line-height: 4.6875rem;
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 这里是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-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-shrink: 0;
|
|
|
+ flex-grow: 0;
|
|
|
+ flex-basis: auto;
|
|
|
+ align-items: stretch;
|
|
|
+ align-content: flex-start;
|
|
|
+}
|
|
|
+@font-face {
|
|
|
+ font-family: "uicon-iconfont";
|
|
|
+ src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
|
|
|
+}
|
|
|
+.u-icon[data-v-ac70166d] {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.u-icon--left[data-v-ac70166d] {
|
|
|
+ flex-direction: row-reverse;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.u-icon--right[data-v-ac70166d] {
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.u-icon--top[data-v-ac70166d] {
|
|
|
+ flex-direction: column-reverse;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.u-icon--bottom[data-v-ac70166d] {
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+}
|
|
|
+.u-icon__icon[data-v-ac70166d] {
|
|
|
+ font-family: uicon-iconfont;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ flex-direction: row;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.u-icon__icon--primary[data-v-ac70166d] {
|
|
|
+ color: #22ac38;
|
|
|
+}
|
|
|
+.u-icon__icon--success[data-v-ac70166d] {
|
|
|
+ color: #22ac38;
|
|
|
+}
|
|
|
+.u-icon__icon--error[data-v-ac70166d] {
|
|
|
+ color: #f56c6c;
|
|
|
+}
|
|
|
+.u-icon__icon--warning[data-v-ac70166d] {
|
|
|
+ color: #f9ae3d;
|
|
|
+}
|
|
|
+.u-icon__icon--info[data-v-ac70166d] {
|
|
|
+ color: #909399;
|
|
|
+}
|
|
|
+.u-icon__img[data-v-ac70166d] {
|
|
|
+ height: auto;
|
|
|
+ will-change: transform;
|
|
|
+}
|
|
|
+.u-icon__label[data-v-ac70166d] {
|
|
|
+ line-height: 1;
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 这里是uni-app内置的常用样式变量
|
|
|
+ *
|
|
|
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
+ *
|
|
|
+ */
|
|
|
+/**
|
|
|
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
+ *
|
|
|
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
+ */
|
|
|
+/* 颜色变量 */
|
|
|
+/* 行为相关颜色 */
|
|
|
+/* 文字基本颜色 */
|
|
|
+/* 背景颜色 */
|
|
|
+/* 边框颜色 */
|
|
|
+/* 尺寸变量 */
|
|
|
+/* 文字尺寸 */
|
|
|
+/* 图片尺寸 */
|
|
|
+/* Border Radius */
|
|
|
+/* 水平间距 */
|
|
|
+/* 垂直间距 */
|
|
|
+/* 透明度 */
|
|
|
+/* 文章场景相关 */
|
|
|
+uni-view[data-v-5ce41ee6], uni-scroll-view[data-v-5ce41ee6], uni-swiper-item[data-v-5ce41ee6] {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-shrink: 0;
|
|
|
+ flex-grow: 0;
|
|
|
+ flex-basis: auto;
|
|
|
+ align-items: stretch;
|
|
|
+ align-content: flex-start;
|
|
|
+}
|
|
|
+.u-button[data-v-5ce41ee6] {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.u-button__text[data-v-5ce41ee6] {
|
|
|
+ white-space: nowrap;
|
|
|
+ line-height: 1;
|
|
|
+}
|
|
|
+.u-button[data-v-5ce41ee6]:before {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border: inherit;
|
|
|
+ border-radius: inherit;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ opacity: 0;
|
|
|
+ content: " ";
|
|
|
+ background-color: #000;
|
|
|
+ border-color: #000;
|
|
|
+}
|
|
|
+.u-button--active[data-v-5ce41ee6]:before {
|
|
|
+ opacity: 0.15;
|
|
|
+}
|
|
|
+.u-button__icon + .u-button__text[data-v-5ce41ee6]:not(:empty), .u-button__loading-text[data-v-5ce41ee6] {
|
|
|
+ margin-left: 4px;
|
|
|
+}
|
|
|
+.u-button--plain.u-button--primary[data-v-5ce41ee6] {
|
|
|
+ color: #22ac38;
|
|
|
+}
|
|
|
+.u-button--plain.u-button--info[data-v-5ce41ee6] {
|
|
|
+ color: #909399;
|
|
|
+}
|
|
|
+.u-button--plain.u-button--success[data-v-5ce41ee6] {
|
|
|
+ color: #22ac38;
|
|
|
+}
|
|
|
+.u-button--plain.u-button--error[data-v-5ce41ee6] {
|
|
|
+ color: #f56c6c;
|
|
|
+}
|
|
|
+.u-button--plain.u-button--warning[data-v-5ce41ee6] {
|
|
|
+ color: #f56c6c;
|
|
|
+}
|
|
|
+.u-button[data-v-5ce41ee6] {
|
|
|
+ height: 52px;
|
|
|
+ position: relative;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ flex-direction: row;
|
|
|
+ box-sizing: border-box;
|
|
|
+ flex-direction: row;
|
|
|
+}
|
|
|
+.u-button__text[data-v-5ce41ee6] {
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.u-button__loading-text[data-v-5ce41ee6] {
|
|
|
+ font-size: 16px;
|
|
|
+ margin-left: 4px;
|
|
|
+}
|
|
|
+.u-button--large[data-v-5ce41ee6] {
|
|
|
+ width: 100%;
|
|
|
+ height: 64px;
|
|
|
+ padding: 0 15px;
|
|
|
+ font-size: 20px;
|
|
|
+}
|
|
|
+.u-button--normal[data-v-5ce41ee6] {
|
|
|
+ padding: 0 12px;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.u-button--small[data-v-5ce41ee6] {
|
|
|
+ min-width: 60px;
|
|
|
+ height: 30px;
|
|
|
+ padding: 0px 8px;
|
|
|
+ font-size: 12px;
|
|
|
+}
|
|
|
+.u-button--mini[data-v-5ce41ee6] {
|
|
|
+ height: 22px;
|
|
|
+ font-size: 10px;
|
|
|
+ min-width: 50px;
|
|
|
+ padding: 0px 8px;
|
|
|
+}
|
|
|
+.u-button--disabled[data-v-5ce41ee6] {
|
|
|
+ opacity: 0.5;
|
|
|
+}
|
|
|
+.u-button--info[data-v-5ce41ee6] {
|
|
|
+ color: #323233;
|
|
|
+ background-color: #fff;
|
|
|
+ border-color: #ebedf0;
|
|
|
+ border-width: 1px;
|
|
|
+ border-style: solid;
|
|
|
+}
|
|
|
+.u-button--success[data-v-5ce41ee6] {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #22ac38;
|
|
|
+ border-color: #22ac38;
|
|
|
+ border-width: 1px;
|
|
|
+ border-style: solid;
|
|
|
+}
|
|
|
+.u-button--primary[data-v-5ce41ee6] {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #22ac38;
|
|
|
+ border-color: #22ac38;
|
|
|
+ border-width: 1px;
|
|
|
+ border-style: solid;
|
|
|
+}
|
|
|
+.u-button--error[data-v-5ce41ee6] {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #f56c6c;
|
|
|
+ border-color: #f56c6c;
|
|
|
+ border-width: 1px;
|
|
|
+ border-style: solid;
|
|
|
+}
|
|
|
+.u-button--warning[data-v-5ce41ee6] {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #f9ae3d;
|
|
|
+ border-color: #f9ae3d;
|
|
|
+ border-width: 1px;
|
|
|
+ border-style: solid;
|
|
|
+}
|
|
|
+.u-button--block[data-v-5ce41ee6] {
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ flex-direction: row;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+.u-button--circle[data-v-5ce41ee6] {
|
|
|
+ border-top-right-radius: 100px;
|
|
|
+ border-top-left-radius: 100px;
|
|
|
+ border-bottom-left-radius: 100px;
|
|
|
+ border-bottom-right-radius: 100px;
|
|
|
+}
|
|
|
+.u-button--square[data-v-5ce41ee6] {
|
|
|
+ border-bottom-left-radius: 3px;
|
|
|
+ border-bottom-right-radius: 3px;
|
|
|
+ border-top-left-radius: 3px;
|
|
|
+ border-top-right-radius: 3px;
|
|
|
+}
|
|
|
+.u-button__icon[data-v-5ce41ee6] {
|
|
|
+ min-width: 1em;
|
|
|
+ line-height: inherit !important;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+.u-button--plain[data-v-5ce41ee6] {
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+.u-button--hairline[data-v-5ce41ee6] {
|
|
|
+ border-width: 0.5px !important;
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 这里是uni-app内置的常用样式变量
|
|
|
+ *
|
|
|
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
+ *
|
|
|
+ */
|
|
|
+/**
|
|
|
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
+ *
|
|
|
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
+ */
|
|
|
+/* 颜色变量 */
|
|
|
+/* 行为相关颜色 */
|
|
|
+/* 文字基本颜色 */
|
|
|
+/* 背景颜色 */
|
|
|
+/* 边框颜色 */
|
|
|
+/* 尺寸变量 */
|
|
|
+/* 文字尺寸 */
|
|
|
+/* 图片尺寸 */
|
|
|
+/* Border Radius */
|
|
|
+/* 水平间距 */
|
|
|
+/* 垂直间距 */
|
|
|
+/* 透明度 */
|
|
|
+/* 文章场景相关 */
|
|
|
+.order-card[data-v-12bc2a79] {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 0.25rem;
|
|
|
+ padding: 0.625rem;
|
|
|
+ margin-bottom: 0.625rem;
|
|
|
+ box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
|
|
|
+}
|
|
|
+.order-card .user-info[data-v-12bc2a79] {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ margin-bottom: 0.625rem;
|
|
|
+}
|
|
|
+.order-card .user-info .avatar[data-v-12bc2a79] {
|
|
|
+ width: 2.5rem;
|
|
|
+ height: 2.5rem;
|
|
|
+ border-radius: 1.25rem;
|
|
|
+ margin-right: 0.625rem;
|
|
|
+}
|
|
|
+.order-card .user-info .user-details[data-v-12bc2a79] {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+.order-card .user-info .user-details.right-items[data-v-12bc2a79] {
|
|
|
+ align-items: flex-end;
|
|
|
+}
|
|
|
+.order-card .user-info .user-details .username[data-v-12bc2a79] {
|
|
|
+ font-size: 0.875rem;
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 0.125rem;
|
|
|
+}
|
|
|
+.order-card .user-info .user-details .date[data-v-12bc2a79] {
|
|
|
+ font-size: 0.75rem;
|
|
|
+ color: #999999;
|
|
|
+}
|
|
|
+.order-card .user-info .user-details .status[data-v-12bc2a79] {
|
|
|
+ font-size: 0.75rem;
|
|
|
+ font-weight: bold;
|
|
|
+}
|
|
|
+.order-card .order-details[data-v-12bc2a79] {
|
|
|
+ font-size: 0.8125rem;
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom: 0.625rem;
|
|
|
+}
|
|
|
+.order-card .order-details .detail-row[data-v-12bc2a79] {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 0.375rem;
|
|
|
+}
|
|
|
+.order-card .order-details .detail-row .link[data-v-12bc2a79] {
|
|
|
+ color: #007bff;
|
|
|
+ text-decoration: underline;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.order-card .action-buttons[data-v-12bc2a79] {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.order-card .action-buttons[data-v-12bc2a79] .u-button {
|
|
|
+ flex: 1;
|
|
|
+ margin: 0 0.3125rem;
|
|
|
+ height: 1.875rem;
|
|
|
+ font-size: 0.8125rem;
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 这里是uni-app内置的常用样式变量
|
|
|
+ *
|
|
|
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
|
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
|
+ *
|
|
|
+ */
|
|
|
+/**
|
|
|
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
|
+ *
|
|
|
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
|
+ */
|
|
|
+/* 颜色变量 */
|
|
|
+/* 行为相关颜色 */
|
|
|
+/* 文字基本颜色 */
|
|
|
+/* 背景颜色 */
|
|
|
+/* 边框颜色 */
|
|
|
+/* 尺寸变量 */
|
|
|
+/* 文字尺寸 */
|
|
|
+/* 图片尺寸 */
|
|
|
+/* Border Radius */
|
|
|
+/* 水平间距 */
|
|
|
+/* 垂直间距 */
|
|
|
+/* 透明度 */
|
|
|
+/* 文章场景相关 */
|
|
|
+.search-area {
|
|
|
+ padding: 0.75rem;
|
|
|
+ background-color: #ffffff;
|
|
|
+ z-index: 9;
|
|
|
+}
|