|
@@ -0,0 +1,746 @@
|
|
|
+@charset "UTF-8";
|
|
|
+.scrollbar-none::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+body {
|
|
|
+ color: #171826;
|
|
|
+ line-height: 1.6;
|
|
|
+}
|
|
|
+
|
|
|
+input,
|
|
|
+textarea {
|
|
|
+ caret-color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+.error-tip {
|
|
|
+ display: none;
|
|
|
+ color: #FB483D;
|
|
|
+ font-size: .24rem;
|
|
|
+}
|
|
|
+
|
|
|
+/*禁止长按复制 加给body*/
|
|
|
+.no-touch {
|
|
|
+ -webkit-touch-callout: none;
|
|
|
+ -webkit-user-select: none;
|
|
|
+ -khtml-user-select: none;
|
|
|
+ -moz-user-select: none;
|
|
|
+ -ms-user-select: none;
|
|
|
+ user-select: none;
|
|
|
+}
|
|
|
+
|
|
|
+.j-pd {
|
|
|
+ padding-left: 0.32rem;
|
|
|
+ padding-right: 0.32rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-arrow {
|
|
|
+ display: inline-block;
|
|
|
+ width: 0.26rem;
|
|
|
+ height: 0.26rem;
|
|
|
+ border: 2px solid #5f5e64;
|
|
|
+ border-bottom-color: transparent;
|
|
|
+ border-right-color: transparent;
|
|
|
+ background: 0 0;
|
|
|
+ transform: rotate(-45deg);
|
|
|
+}
|
|
|
+
|
|
|
+.highlight-text {
|
|
|
+ color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+.j-container {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-header {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ min-height: 0.88rem;
|
|
|
+ padding: 26px 0.24rem 6px;
|
|
|
+ padding: 30px 0.24rem 0.14rem;
|
|
|
+ font-size: 0.36rem;
|
|
|
+ font-size: 17px;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.j-header:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 1px;
|
|
|
+ background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 65%, transparent 35%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-header .header-left,
|
|
|
+.j-header .header-title,
|
|
|
+.j-header .header-right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.j-header .header-left {
|
|
|
+ color: #5f5e64;
|
|
|
+ color: #444;
|
|
|
+ font-size: 0.4rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-header .header-title {
|
|
|
+ color: #171826;
|
|
|
+}
|
|
|
+
|
|
|
+.j-header .header-right {
|
|
|
+ height: 100%;
|
|
|
+ min-width: 0.4rem;
|
|
|
+ font-size: 0.3rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-body {
|
|
|
+ flex: 1;
|
|
|
+ overflow-y: scroll;
|
|
|
+ overflow-x: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.j-footer {
|
|
|
+ box-shadow: 0px -2px 8px rgba(54, 147, 179, 0.051);
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes ballRotate {
|
|
|
+ 0% {
|
|
|
+ transform: rotate(0);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: rotate(360deg);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.ball-clip-rotate {
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ top: 50%;
|
|
|
+ z-index: 2;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+
|
|
|
+.ball-clip-rotate .ball {
|
|
|
+ display: inline-block;
|
|
|
+ width: 26px;
|
|
|
+ height: 26px;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 3px solid #fff;
|
|
|
+ border-bottom-color: transparent;
|
|
|
+ background: 0 0;
|
|
|
+ -webkit-animation: ballRotate 0.75s 0s linear infinite;
|
|
|
+ animation: ballRotate 0.75s 0s linear infinite;
|
|
|
+}
|
|
|
+
|
|
|
+.j-mask {
|
|
|
+ position: fixed;
|
|
|
+ z-index: 1000;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.black {
|
|
|
+ background: rgba(0, 0, 0, 0.6);
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading .j-toast {
|
|
|
+ position: fixed;
|
|
|
+ top: 45%;
|
|
|
+ left: 50%;
|
|
|
+ z-index: 1001;
|
|
|
+ padding: 0.2rem;
|
|
|
+ min-width: 2.2rem;
|
|
|
+ max-width: 6.2rem;
|
|
|
+ width: auto;
|
|
|
+ height: auto;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 0.28rem;
|
|
|
+ text-align: center;
|
|
|
+ background: rgba(18, 18, 18, 0.7);
|
|
|
+ border-radius: 5px;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading .j-toast.icon {
|
|
|
+ padding: 0.5rem 0.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading .j-toast.icon .j-toast_icon {
|
|
|
+ display: inline-block;
|
|
|
+ width: 38px;
|
|
|
+ height: 38px;
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading .j-toast .j-toast_icon {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading .j-toast .j-toast_content {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.j-loading-icon {
|
|
|
+ display: inline-block;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ vertical-align: baseline;
|
|
|
+ background: transparent url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E9E9E9' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23989697' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%239B999A' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23A3A1A2' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23ABA9AA' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23B2B2B2' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23BAB8B9' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23C2C0C1' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23CBCBCB' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23D2D2D2' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23DADADA' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='%23E2E2E2' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E") no-repeat;
|
|
|
+ background-size: 100%;
|
|
|
+ -webkit-animation: ballRotate 1s steps(12) infinite;
|
|
|
+ animation: ballRotate 1s steps(12) infinite;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-group {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ padding: 0.16rem 0.32rem 0.24rem;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-confirm, .j-picker .weui-half-screen-dialog__ft .weui-picker__btn,
|
|
|
+.j-button-cancel {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex: 1;
|
|
|
+ width: 100%;
|
|
|
+ height: 0.92rem;
|
|
|
+ font-size: 0.32rem;
|
|
|
+ line-height: inherit;
|
|
|
+ text-align: center;
|
|
|
+ border-radius: 0.16rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-cancel {
|
|
|
+ margin-right: 0.26rem;
|
|
|
+ color: #5f5e64;
|
|
|
+ background-color: #edeff2;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-confirm, .j-picker .weui-half-screen-dialog__ft .weui-picker__btn {
|
|
|
+ color: #fff;
|
|
|
+ background-color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+button[disabled] {
|
|
|
+ opacity: 0.5;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ font-size: 0.32rem;
|
|
|
+ background-color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells:before, .j-cells:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 1px;
|
|
|
+ background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 70%, transparent 30%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells:before {
|
|
|
+ top: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells:after {
|
|
|
+ bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding-left: 0.32rem;
|
|
|
+ width: 100%;
|
|
|
+ min-height: 1.08rem;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell .j-cell_left {
|
|
|
+ margin-right: 0.28rem;
|
|
|
+ white-space: nowrap;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell .j-cell_right {
|
|
|
+ padding-right: 0.32rem;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex: 1;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell .j-cell_right:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 1.04rem;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 1px;
|
|
|
+ background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 80%, transparent 20%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell .j-cell_right .iconfont {
|
|
|
+ margin-left: 0.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell .j-cell_right .j-cell_rl {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cell:last-of-type .j-cell_right:after {
|
|
|
+ height: 0;
|
|
|
+ border-top: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.without-icon .j-cell {
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.without-icon .j-cell_right:after {
|
|
|
+ left: 0.32rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.without-icon .j-cell_right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ max-width: 65%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.without-icon .j-cell_right:after {
|
|
|
+ left: 0.32rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info {
|
|
|
+ margin: 0.2rem 0.24rem;
|
|
|
+ width: auto;
|
|
|
+ border-radius: 0.16rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info:before, .j-cells.with-sub-info:after {
|
|
|
+ height: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .j-cell_right:after {
|
|
|
+ left: 0.32rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .j-cell {
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-top: 0.24rem;
|
|
|
+ padding-bottom: 0.24rem;
|
|
|
+ color: #9b9ca3;
|
|
|
+ font-size: 0.28rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .cell-hd {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .cell-ft {
|
|
|
+ padding-right: 0.32rem;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .j-cell_left {
|
|
|
+ color: #171826;
|
|
|
+ font-size: 0.36rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-cells.with-sub-info .j-cell_right {
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ justify-content: flex-end;
|
|
|
+ max-width: 65%;
|
|
|
+}
|
|
|
+
|
|
|
+.border-all {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.border-all:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ z-index: -1;
|
|
|
+ width: 200%;
|
|
|
+ height: 200%;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
+ -webkit-transform-origin: 0 0;
|
|
|
+ transform-origin: 0 0;
|
|
|
+ -webkit-transform: scale(0.5, 0.5);
|
|
|
+ transform: scale(0.5, 0.5);
|
|
|
+}
|
|
|
+
|
|
|
+.weui-dialog {
|
|
|
+ left: 0.72rem;
|
|
|
+ right: 0.72rem;
|
|
|
+ border-radius: 0.16rem;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn,
|
|
|
+.weui-dialog__btn {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ color: #2cb7ca;
|
|
|
+ font-size: 0.36rem;
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn {
|
|
|
+ border-left: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn:first-of-type {
|
|
|
+ border-left: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn:after,
|
|
|
+.weui-dialog__btn:after {
|
|
|
+ transform: scale(1);
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn:last-child {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn_default,
|
|
|
+.weui-dialog__btn_default {
|
|
|
+ color: #171826;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn_primary,
|
|
|
+.weui-dialog__btn_primary {
|
|
|
+ color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__btn_warning,
|
|
|
+.weui-dialog__btn_warning {
|
|
|
+ color: #fb483d;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__bd,
|
|
|
+.weui-dialog__bd {
|
|
|
+ margin: 0.44rem 0.4rem 0.44rem;
|
|
|
+ padding: 0;
|
|
|
+ min-height: auto;
|
|
|
+ font-size: 0.32rem;
|
|
|
+ color: #171826;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-dialog__bd:first-child {
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-skin_android .weui-dialog__ft,
|
|
|
+.weui-dialog__ft {
|
|
|
+ display: flex;
|
|
|
+ padding: 0;
|
|
|
+ height: 0.92rem;
|
|
|
+ border-top: 1px solid #efeffe;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.j-alert .weui-dialog__hd {
|
|
|
+ padding: 0.48rem 0.4rem 0;
|
|
|
+ color: #1d1d1d;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.j-alert .weui-dialog__hd .weui-dialog__title {
|
|
|
+ font-size: 0.34rem;
|
|
|
+ font-weight: 700;
|
|
|
+}
|
|
|
+
|
|
|
+.j-dialog .weui-dialog__hd {
|
|
|
+ background: #f5f4f9;
|
|
|
+ padding: 0.17rem 0;
|
|
|
+ color: #000;
|
|
|
+ font-size: 0.34rem;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.j-dialog .weui-dialog__ft:after {
|
|
|
+ border: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.weui-toast {
|
|
|
+ font-size: 0.3rem;
|
|
|
+ padding: 0.15rem 0.2rem;
|
|
|
+ max-width: 6rem;
|
|
|
+ min-height: 0;
|
|
|
+ width: auto;
|
|
|
+ height: auto;
|
|
|
+ top: 45%;
|
|
|
+ left: 50%;
|
|
|
+ margin-left: 0;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-toast .weui-icon_toast {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.j-toast .weui-toast__content {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-toast-icon .weui-toast {
|
|
|
+ width: 2.2rem;
|
|
|
+ height: 2.2rem;
|
|
|
+ padding: 0.2rem 0.2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-toast-icon .weui-icon_toast {
|
|
|
+ margin: 0.1rem 0 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-toast-icon .weui-toast__content {
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch {
|
|
|
+ box-sizing: border-box;
|
|
|
+ position: relative;
|
|
|
+ width: 1.04rem;
|
|
|
+ height: 0.64rem;
|
|
|
+ border: 2px solid #edeff2;
|
|
|
+ border-radius: 0.32rem;
|
|
|
+ background-color: #edeff2;
|
|
|
+ outline: 0;
|
|
|
+ -webkit-transition: background-color 0.1s, border 0.1s;
|
|
|
+ transition: background-color 0.1s, border 0.1s;
|
|
|
+ -webkit-appearance: none;
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+ border-radius: 0.32rem;
|
|
|
+ background-color: #edeff2;
|
|
|
+ -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.45, 1, 0.4, 1);
|
|
|
+ transition: -webkit-transform 0.35s cubic-bezier(0.45, 1, 0.4, 1);
|
|
|
+ transition: transform 0.35s cubic-bezier(0.45, 1, 0.4, 1);
|
|
|
+ transition: transform 0.35s cubic-bezier(0.45, 1, 0.4, 1), -webkit-transform 0.35s cubic-bezier(0.45, 1, 0.4, 1);
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 0.04rem;
|
|
|
+ margin-top: -0.26rem;
|
|
|
+ width: 0.52rem;
|
|
|
+ height: 0.52rem;
|
|
|
+ border-radius: 50%;
|
|
|
+ background-color: #fff;
|
|
|
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
|
|
|
+ -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
|
|
|
+ transition: -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
|
|
|
+ transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
|
|
|
+ transition: transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35), -webkit-transform 0.35s cubic-bezier(0.4, 0.4, 0.25, 1.35);
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch:checked {
|
|
|
+ border-color: #2cb7ca;
|
|
|
+ background-color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch:checked:before {
|
|
|
+ transform: scale(0);
|
|
|
+}
|
|
|
+
|
|
|
+.j-switch:checked:after {
|
|
|
+ transform: translateX(0.4rem);
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker.adaption .weui-half-screen-dialog__bd {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker.adaption .weui-half-screen-dialog__bd .weui-picker__bd {
|
|
|
+ height: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-picker {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0 0.32rem;
|
|
|
+ min-height: 6.24rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog {
|
|
|
+ max-height: 70%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__hd {
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 0.44rem 0.44rem 0.24rem 0;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__hd .weui-half-screen-dialog__hd__main {
|
|
|
+ flex: none;
|
|
|
+ order: 1;
|
|
|
+ padding: 0;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__hd .weui-half-screen-dialog__hd__main .weui-half-screen-dialog__title {
|
|
|
+ color: #171826;
|
|
|
+ font-size: 0.4rem;
|
|
|
+ font-weight: normal;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__hd .weui-half-screen-dialog__hd__side {
|
|
|
+ order: 2;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__hd .weui-half-screen-dialog__hd__side .weui-picker__btn {
|
|
|
+ color: #c0c4cc;
|
|
|
+ font-size: 0.42rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__bd {
|
|
|
+ font-size: 0.36rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__ft {
|
|
|
+ padding: 0.16rem 0 0.24rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-picker .weui-half-screen-dialog__ft .weui-picker__btn {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ color: #f7f9fa;
|
|
|
+ font-size: 0.36rem;
|
|
|
+ font-weight: 400;
|
|
|
+}
|
|
|
+
|
|
|
+.j-tab-triangle {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.j-tab-triangle:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ right: 0;
|
|
|
+ width: 0;
|
|
|
+ height: 0;
|
|
|
+ font-size: 0;
|
|
|
+ line-height: 0;
|
|
|
+ border-style: solid;
|
|
|
+ border-width: 0.1rem;
|
|
|
+ border-color: #aaa transparent transparent transparent;
|
|
|
+ transform: translate(140%, -30%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-tab-triangle.active:after {
|
|
|
+ border-color: transparent transparent #2cb7ca transparent;
|
|
|
+ transform: translate(140%, -70%);
|
|
|
+}
|
|
|
+
|
|
|
+.j-tab-triangle.current {
|
|
|
+ color: #2cb7ca;
|
|
|
+}
|
|
|
+
|
|
|
+.j-tab-triangle.current:after {
|
|
|
+ border-color: #2cb7ca transparent transparent transparent;
|
|
|
+}
|
|
|
+
|
|
|
+.checkbox {
|
|
|
+ width: 0.4rem;
|
|
|
+ height: 0.4rem;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-radius: 50%;
|
|
|
+ margin-right: 0.2rem;
|
|
|
+ -webkit-appearance: none;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.checkbox:checked {
|
|
|
+ border: 0;
|
|
|
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAACpElEQVRogc1asa2DMBBlhIyQMpKNxAiMwAiMwAhswAgZgQrOHSVwLhiBERghvwCSwMdgOzYG6aQUhLw7v3u+Z+J5Bq4g724U6pCUTeIznlGGHQHsKcOBAPbT544yntOiTSnUoYnf/Rm0X7YRAXxShgMFfCkH4zkBjE8HTos21QYtCJ/xzDpwAhgTwN4k8OWK4GBlRYK8u1HGc2vA/yfSPaC+GwFPoQ6tVn1vNQoMfgJPyiYxzXXl3ijbSA88YOwa/BzKfUEKDK4C/hOSe8cD6vv1wOOLMhykGvtUtVFPotunDmDsHORBCPth1PoLUmeDStvUKdrUObgxqinE9xRt+q/6TjarZWW79cZFGXaiVQjy7va+0S/byDX4LYUhZZOIvrPoBafKw7BbVFOW1ozn7pt3B/xe9ed4QH33KNSho+pXv4CngC9SNon0zVcDTwFHNTqb/wTwqcX5TQry3KNHmmswfMYzEXif8Uz5mQwHT1r/55MGC+AJ4FPruVIJrJwRhToUbjA74LeATxuoHvg5gSMJFf24bO9YAy+7AgTwuQVAirfrmeULvBHxYDhINTEpm0SYhGgMsQ1+LG4v3f17B09rCyqa2Y0fzzCeq8pXJUpiPB/F6jTwc1GVJ1GNQ6dp3lJSLqkEyjbSG+YYDrKnBA+o77a8xruQunK219yeN/aGNaM0j9NTAvpmXqA2VsHDSigMWMrFdDnt1vY8xtpSep4hUz+qTGXbIG1K+iWMvW7137x1Y27UQtBzHyqd6A80qi/00AsqXfKETuWFh0OjLwSv/KLjSkkcbZjXTYLhoA3eeRI6tBFd86h8Inhzr1m/L+v7xESZQ6m8XCJnARckoketca+paNGmVuiievllG032tKKjtezf1f36u43PeEYAY1PV/gMeU6lGAhyHxgAAAABJRU5ErkJggg==) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.checkbox.transparent:checked {
|
|
|
+ border: 0;
|
|
|
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHBSURBVHgBzZiPcYIwFIeDE7hB6QR1gzqCG2g3cAPtBLqBdoK6Ae0EXCd4bmA3+PW9JlxTJEJCgnx37xQSku9IyL9MeQIg558FxxPHnGNqQvjmOJv45DhlWXZWKWCRFUcBf0p5VsWCC5tzEPpDvcT44SnHDvGRMqe+Mjn0q04FQffFzjKE9FCrFHQzEYZDWuFf801qThuOXA3HzNR5DfRnfS/mlUdmCZEa9u3YnHkAfZQ/EyOzGkjmyPHWcD+HPUYh7SdesbXqOzakF1VijvRs7dfB1wdHvgdJXCMtdZnljbxryfCOccgIh1v9h6CbM3Qa8ZX5rVMyXtoKhB7Bfd5kiIxwUTcSCbW5hq/38JdZwAPVkk4NUlt0l5nB3QJOobYHqKNUbxmYJqMuGaWCWoX23HeMICOUrlHTxbKh4n0kGeEUMjA2LxdUlMXdOnTq2CSQEfKqsAL+7CLLlK4O6lUI9C4itM/YrMRlnAs0w4u6H6+Nd9FtaojN3qkJPYkOsXqsILTtYjGmjeKAUmVnmVrzpehTUqbfYUNNTMYoQn8I1oawN0YspMMX8DgXypQn+DvSe1Z6IJWwj/QkPji+VMCR3g//T7SIqLP6vQAAAABJRU5ErkJggg==) no-repeat center center;
|
|
|
+ background-size: 100% 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ height: 0.72rem;
|
|
|
+ padding: 0 0.2rem;
|
|
|
+ background-color: #f5f6f7;
|
|
|
+ color: #5f5e64;
|
|
|
+ border-radius: 0.08rem;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-item {
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ color: #171826;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-item.active {
|
|
|
+ color: #2abed1;
|
|
|
+ background-color: #e8fafd;
|
|
|
+}
|
|
|
+
|
|
|
+.j-button-item.active:after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 0.24rem;
|
|
|
+ height: 0.24rem;
|
|
|
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAKySURBVHgB7Zg/aNRQHMd/eXfWP6i9omJBhBOXa0W4bK6ni6Murro76Cgu1kF0aysOjnXTyTopLkEcHM8TxIMOHghFQfBAaUtp8/P9Qt+Rpnm99y+XBO6zXJJ7gc83v+S9XwIwZsyY0jIbdB54UFIuBF/mEfFu6QLUX7drR2qVeUC8RfulChDJT7KAbzbFsdIEaLxt19nBSL4eP16KADJ5ovAB9pMnCh1g9n276VVZgAA12RgGBaURdG4OkycKWYGZoHPHQ1hQGVu4CkSrq6I8UagKkDwgzOmcU5gAojUATXIPkGwNdMk1QFproEtuAYYtUKrkEsCVPDHyAC7liZEGUGkNdBnZQqbaGugykgrotAa6ZF4B3dZAlwpkiElrILg2PQVL/nm4ceYE/N3ahu6/jdRxmd1Cpq0BQfKPZs4O9inApY9fU8dWwTGiNUDD1iApT1AAGU4DDFoDRKPWIE2eePb9l/QcZ7eQ7QIlk7//7Qe8+flHep6TAHnJE9azUFJedfYQ2MgTVgGoNWAT7BPfnBbHnl6sw8mJA3C8WoErpyZhdWNTGsJWntM3XshkrQGJxyFBEk3iQJ7oGVWAWgOG8JxvHkr+93tzK7rycZKVcCTPn2B8px1gpzV4IvufJElWFqJx9LAbeU6IuKg1C+m0BrKrnIaJPLHmhVPKFaDWgMvfUx0vq0QSU3l++yyttPxXQ1dim9ZgeUdMVgljeU4I+JB+961A7KvBVTBEVgkbeURY7F5uvqRtaQVcvruKStw+dxqO8Wn28cqquTyfOtdZOCf2Ux9i1y/eriB59MJWt+X3xLE9C1mR5T0vvB6XJ3ZVIIuvBi5Iu/KCQQWy+mpgCz2w617op8kTUQWy/GpgSB8xfIEMFmTiAs/mxdshfX6te9zjM78pPqyx7eVey++rnPgfnLxxiLvERTEAAAAASUVORK5CYII=) no-repeat;
|
|
|
+ background-size: contain;
|
|
|
+}
|