将app合并
This commit is contained in:
parent
479031c68e
commit
2865ee97c5
@ -94,7 +94,7 @@ class WithdrawController
|
||||
public function submit(Request $request)
|
||||
{
|
||||
$money_no = $request->post('money');
|
||||
//不知道啥用
|
||||
//用户存了一个 转账信息 这里是用户转账信息的id
|
||||
$bank_id = $request->post('bank_id');
|
||||
$user_id = $request->data['id'];
|
||||
$user = User::find($user_id);
|
||||
|
1
public/.gitignore
vendored
Normal file
1
public/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
./node_modules
|
133
public/css/name-06ed8422.css
Normal file
133
public/css/name-06ed8422.css
Normal file
@ -0,0 +1,133 @@
|
||||
:root {
|
||||
--van-loading-text-color: var(--van-text-color-2);
|
||||
--van-loading-text-font-size: var(--van-font-size-md);
|
||||
--van-loading-spinner-color: var(--van-gray-5);
|
||||
--van-loading-spinner-size: 30px;
|
||||
--van-loading-spinner-duration: 0.8s;
|
||||
}
|
||||
.van-loading {
|
||||
position: relative;
|
||||
color: var(--van-loading-spinner-color);
|
||||
font-size: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.van-loading__spinner {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: var(--van-loading-spinner-size);
|
||||
max-width: 100%;
|
||||
height: var(--van-loading-spinner-size);
|
||||
max-height: 100%;
|
||||
vertical-align: middle;
|
||||
animation: van-rotate var(--van-loading-spinner-duration) linear infinite;
|
||||
}
|
||||
.van-loading__spinner--spinner {
|
||||
animation-timing-function: steps(12);
|
||||
}
|
||||
.van-loading__spinner--circular {
|
||||
animation-duration: 2s;
|
||||
}
|
||||
.van-loading__line {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.van-loading__line:before {
|
||||
display: block;
|
||||
width: 2px;
|
||||
height: 25%;
|
||||
margin: 0 auto;
|
||||
background-color: currentColor;
|
||||
border-radius: 40%;
|
||||
content: " ";
|
||||
}
|
||||
.van-loading__circular {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.van-loading__circular circle {
|
||||
animation: van-circular 1.5s ease-in-out infinite;
|
||||
stroke: currentColor;
|
||||
stroke-width: 3;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
.van-loading__text {
|
||||
display: inline-block;
|
||||
margin-left: var(--van-padding-xs);
|
||||
color: var(--van-loading-text-color);
|
||||
font-size: var(--van-loading-text-font-size);
|
||||
vertical-align: middle;
|
||||
}
|
||||
.van-loading--vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.van-loading--vertical .van-loading__text {
|
||||
margin: var(--van-padding-xs) 0 0;
|
||||
}
|
||||
@keyframes van-circular {
|
||||
0% {
|
||||
stroke-dasharray: 1, 200;
|
||||
stroke-dashoffset: 0;
|
||||
}
|
||||
50% {
|
||||
stroke-dasharray: 90, 150;
|
||||
stroke-dashoffset: -40;
|
||||
}
|
||||
to {
|
||||
stroke-dasharray: 90, 150;
|
||||
stroke-dashoffset: -120;
|
||||
}
|
||||
}
|
||||
.van-loading__line--1 {
|
||||
transform: rotate(30deg);
|
||||
opacity: 1;
|
||||
}
|
||||
.van-loading__line--2 {
|
||||
transform: rotate(60deg);
|
||||
opacity: 0.9375;
|
||||
}
|
||||
.van-loading__line--3 {
|
||||
transform: rotate(90deg);
|
||||
opacity: 0.875;
|
||||
}
|
||||
.van-loading__line--4 {
|
||||
transform: rotate(120deg);
|
||||
opacity: 0.8125;
|
||||
}
|
||||
.van-loading__line--5 {
|
||||
transform: rotate(150deg);
|
||||
opacity: 0.75;
|
||||
}
|
||||
.van-loading__line--6 {
|
||||
transform: rotate(180deg);
|
||||
opacity: 0.6875;
|
||||
}
|
||||
.van-loading__line--7 {
|
||||
transform: rotate(210deg);
|
||||
opacity: 0.625;
|
||||
}
|
||||
.van-loading__line--8 {
|
||||
transform: rotate(240deg);
|
||||
opacity: 0.5625;
|
||||
}
|
||||
.van-loading__line--9 {
|
||||
transform: rotate(270deg);
|
||||
opacity: 0.5;
|
||||
}
|
||||
.van-loading__line--10 {
|
||||
transform: rotate(300deg);
|
||||
opacity: 0.4375;
|
||||
}
|
||||
.van-loading__line--11 {
|
||||
transform: rotate(330deg);
|
||||
opacity: 0.375;
|
||||
}
|
||||
.van-loading__line--12 {
|
||||
transform: rotate(360deg);
|
||||
opacity: 0.3125;
|
||||
}
|
175
public/css/name-0793238c.css
Normal file
175
public/css/name-0793238c.css
Normal file
@ -0,0 +1,175 @@
|
||||
:root {
|
||||
--van-field-label-width: 6.2em;
|
||||
--van-field-label-color: var(--van-text-color);
|
||||
--van-field-label-margin-right: var(--van-padding-sm);
|
||||
--van-field-input-text-color: var(--van-text-color);
|
||||
--van-field-input-error-text-color: var(--van-danger-color);
|
||||
--van-field-input-disabled-text-color: var(--van-text-color-3);
|
||||
--van-field-placeholder-text-color: var(--van-text-color-3);
|
||||
--van-field-icon-size: 18px;
|
||||
--van-field-clear-icon-size: 18px;
|
||||
--van-field-clear-icon-color: var(--van-gray-5);
|
||||
--van-field-right-icon-color: var(--van-gray-6);
|
||||
--van-field-error-message-color: var(--van-danger-color);
|
||||
--van-field-error-message-font-size: 12px;
|
||||
--van-field-text-area-min-height: 60px;
|
||||
--van-field-word-limit-color: var(--van-gray-7);
|
||||
--van-field-word-limit-font-size: var(--van-font-size-sm);
|
||||
--van-field-word-limit-line-height: 16px;
|
||||
--van-field-disabled-text-color: var(--van-text-color-3);
|
||||
--van-field-required-mark-color: var(--van-red);
|
||||
}
|
||||
.van-field {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.van-field__label {
|
||||
flex: none;
|
||||
box-sizing: border-box;
|
||||
width: var(--van-field-label-width);
|
||||
margin-right: var(--van-field-label-margin-right);
|
||||
color: var(--van-field-label-color);
|
||||
text-align: left;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.van-field__label--center {
|
||||
text-align: center;
|
||||
}
|
||||
.van-field__label--right {
|
||||
text-align: right;
|
||||
}
|
||||
.van-field__label--top {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
margin-bottom: var(--van-padding-base);
|
||||
word-break: break-word;
|
||||
}
|
||||
.van-field__label--required:before {
|
||||
margin-right: 2px;
|
||||
color: var(--van-field-required-mark-color);
|
||||
content: "*";
|
||||
}
|
||||
.van-field--disabled .van-field__label {
|
||||
color: var(--van-field-disabled-text-color);
|
||||
}
|
||||
.van-field__value {
|
||||
overflow: visible;
|
||||
}
|
||||
.van-field__body {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.van-field__control {
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: var(--van-field-input-text-color);
|
||||
line-height: inherit;
|
||||
text-align: left;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
resize: none;
|
||||
-webkit-user-select: auto;
|
||||
user-select: auto;
|
||||
}
|
||||
.van-field__control::-webkit-input-placeholder {
|
||||
color: var(--van-field-placeholder-text-color);
|
||||
}
|
||||
.van-field__control::placeholder {
|
||||
color: var(--van-field-placeholder-text-color);
|
||||
}
|
||||
.van-field__control:read-only {
|
||||
cursor: default;
|
||||
}
|
||||
.van-field__control:disabled {
|
||||
color: var(--van-field-input-disabled-text-color);
|
||||
cursor: not-allowed;
|
||||
opacity: 1;
|
||||
-webkit-text-fill-color: var(--van-field-input-disabled-text-color);
|
||||
}
|
||||
.van-field__control--center {
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
.van-field__control--right {
|
||||
justify-content: flex-end;
|
||||
text-align: right;
|
||||
}
|
||||
.van-field__control--custom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: var(--van-cell-line-height);
|
||||
}
|
||||
.van-field__control--error::-webkit-input-placeholder {
|
||||
color: var(--van-field-input-error-text-color);
|
||||
-webkit-text-fill-color: currentColor;
|
||||
}
|
||||
.van-field__control--error,
|
||||
.van-field__control--error::placeholder {
|
||||
color: var(--van-field-input-error-text-color);
|
||||
-webkit-text-fill-color: currentColor;
|
||||
}
|
||||
.van-field__control--min-height {
|
||||
min-height: var(--van-field-text-area-min-height);
|
||||
}
|
||||
.van-field__control[type="date"],
|
||||
.van-field__control[type="time"],
|
||||
.van-field__control[type="datetime-local"] {
|
||||
min-height: var(--van-cell-line-height);
|
||||
}
|
||||
.van-field__control[type="search"] {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.van-field__clear,
|
||||
.van-field__icon,
|
||||
.van-field__button,
|
||||
.van-field__right-icon {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.van-field__clear,
|
||||
.van-field__right-icon {
|
||||
margin-right: calc(var(--van-padding-xs) * -1);
|
||||
padding: 0 var(--van-padding-xs);
|
||||
line-height: inherit;
|
||||
}
|
||||
.van-field__clear {
|
||||
color: var(--van-field-clear-icon-color);
|
||||
font-size: var(--van-field-clear-icon-size);
|
||||
cursor: pointer;
|
||||
}
|
||||
.van-field__left-icon .van-icon,
|
||||
.van-field__right-icon .van-icon {
|
||||
display: block;
|
||||
font-size: var(--van-field-icon-size);
|
||||
line-height: inherit;
|
||||
}
|
||||
.van-field__left-icon {
|
||||
margin-right: var(--van-padding-base);
|
||||
}
|
||||
.van-field__right-icon {
|
||||
color: var(--van-field-right-icon-color);
|
||||
}
|
||||
.van-field__button {
|
||||
padding-left: var(--van-padding-xs);
|
||||
}
|
||||
.van-field__error-message {
|
||||
color: var(--van-field-error-message-color);
|
||||
font-size: var(--van-field-error-message-font-size);
|
||||
text-align: left;
|
||||
}
|
||||
.van-field__error-message--center {
|
||||
text-align: center;
|
||||
}
|
||||
.van-field__error-message--right {
|
||||
text-align: right;
|
||||
}
|
||||
.van-field__word-limit {
|
||||
margin-top: var(--van-padding-base);
|
||||
color: var(--van-field-word-limit-color);
|
||||
font-size: var(--van-field-word-limit-font-size);
|
||||
line-height: var(--van-field-word-limit-line-height);
|
||||
text-align: right;
|
||||
}
|
116
public/css/name-0ab4e26d.css
Normal file
116
public/css/name-0ab4e26d.css
Normal file
@ -0,0 +1,116 @@
|
||||
:root {
|
||||
--van-popup-background: var(--van-background-2);
|
||||
--van-popup-transition: transform var(--van-duration-base);
|
||||
--van-popup-round-radius: 16px;
|
||||
--van-popup-close-icon-size: 22px;
|
||||
--van-popup-close-icon-color: var(--van-gray-5);
|
||||
--van-popup-close-icon-margin: 16px;
|
||||
--van-popup-close-icon-z-index: 1;
|
||||
}
|
||||
.van-overflow-hidden {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
.van-popup {
|
||||
position: fixed;
|
||||
max-height: 100%;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
background: var(--van-popup-background);
|
||||
transition: var(--van-popup-transition);
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.van-popup--center {
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width: -webkit-fit-content;
|
||||
width: fit-content;
|
||||
max-width: calc(100vw - var(--van-padding-md) * 2);
|
||||
margin: 0 auto;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.van-popup--center.van-popup--round {
|
||||
border-radius: var(--van-popup-round-radius);
|
||||
}
|
||||
.van-popup--top {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.van-popup--top.van-popup--round {
|
||||
border-radius: 0 0 var(--van-popup-round-radius) var(--van-popup-round-radius);
|
||||
}
|
||||
.van-popup--right {
|
||||
top: 50%;
|
||||
right: 0;
|
||||
transform: translate3d(0, -50%, 0);
|
||||
}
|
||||
.van-popup--right.van-popup--round {
|
||||
border-radius: var(--van-popup-round-radius) 0 0 var(--van-popup-round-radius);
|
||||
}
|
||||
.van-popup--bottom {
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.van-popup--bottom.van-popup--round {
|
||||
border-radius: var(--van-popup-round-radius) var(--van-popup-round-radius) 0 0;
|
||||
}
|
||||
.van-popup--left {
|
||||
top: 50%;
|
||||
left: 0;
|
||||
transform: translate3d(0, -50%, 0);
|
||||
}
|
||||
.van-popup--left.van-popup--round {
|
||||
border-radius: 0 var(--van-popup-round-radius) var(--van-popup-round-radius) 0;
|
||||
}
|
||||
.van-popup-slide-top-enter-active,
|
||||
.van-popup-slide-left-enter-active,
|
||||
.van-popup-slide-right-enter-active,
|
||||
.van-popup-slide-bottom-enter-active {
|
||||
transition-timing-function: var(--van-ease-out);
|
||||
}
|
||||
.van-popup-slide-top-leave-active,
|
||||
.van-popup-slide-left-leave-active,
|
||||
.van-popup-slide-right-leave-active,
|
||||
.van-popup-slide-bottom-leave-active {
|
||||
transition-timing-function: var(--van-ease-in);
|
||||
}
|
||||
.van-popup-slide-top-enter-from,
|
||||
.van-popup-slide-top-leave-active {
|
||||
transform: translate3d(0, -100%, 0);
|
||||
}
|
||||
.van-popup-slide-right-enter-from,
|
||||
.van-popup-slide-right-leave-active {
|
||||
transform: translate3d(100%, -50%, 0);
|
||||
}
|
||||
.van-popup-slide-bottom-enter-from,
|
||||
.van-popup-slide-bottom-leave-active {
|
||||
transform: translate3d(0, 100%, 0);
|
||||
}
|
||||
.van-popup-slide-left-enter-from,
|
||||
.van-popup-slide-left-leave-active {
|
||||
transform: translate3d(-100%, -50%, 0);
|
||||
}
|
||||
.van-popup__close-icon {
|
||||
position: absolute;
|
||||
z-index: var(--van-popup-close-icon-z-index);
|
||||
color: var(--van-popup-close-icon-color);
|
||||
font-size: var(--van-popup-close-icon-size);
|
||||
}
|
||||
.van-popup__close-icon--top-left {
|
||||
top: var(--van-popup-close-icon-margin);
|
||||
left: var(--van-popup-close-icon-margin);
|
||||
}
|
||||
.van-popup__close-icon--top-right {
|
||||
top: var(--van-popup-close-icon-margin);
|
||||
right: var(--van-popup-close-icon-margin);
|
||||
}
|
||||
.van-popup__close-icon--bottom-left {
|
||||
bottom: var(--van-popup-close-icon-margin);
|
||||
left: var(--van-popup-close-icon-margin);
|
||||
}
|
||||
.van-popup__close-icon--bottom-right {
|
||||
right: var(--van-popup-close-icon-margin);
|
||||
bottom: var(--van-popup-close-icon-margin);
|
||||
}
|
40
public/css/name-113f42f4.css
Normal file
40
public/css/name-113f42f4.css
Normal file
@ -0,0 +1,40 @@
|
||||
[data-v-88338670] .van-field__body {
|
||||
height: 100%;
|
||||
font-size: 14px;
|
||||
}
|
||||
.text-gradient[data-v-88338670] {
|
||||
background: linear-gradient(to right, #ff7e5f, #feb47b);
|
||||
-webkit-background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
.text-main[data-v-88338670] {
|
||||
color: #000;
|
||||
}
|
||||
.logo2[data-v-88338670] {
|
||||
height: 50px;
|
||||
}
|
||||
.bg_form[data-v-88338670] {
|
||||
background: #fff;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.van-cell[data-v-88338670] {
|
||||
background: inherit;
|
||||
border: 1px solid #ccc;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
}
|
||||
.van-button--round[data-v-88338670] {
|
||||
border-radius: 8px;
|
||||
}
|
||||
.disblock[data-v-88338670] {
|
||||
display: inline-block;
|
||||
margin: 0 12px;
|
||||
}
|
||||
.disblock img[data-v-88338670] {
|
||||
height: 30px;
|
||||
width: auto;
|
||||
}
|
||||
.borderR[data-v-88338670] {
|
||||
border-right: 1px solid #aaa;
|
||||
}
|
43
public/css/name-167ab3eb.css
Normal file
43
public/css/name-167ab3eb.css
Normal file
@ -0,0 +1,43 @@
|
||||
.calendar[data-v-9ae0d32f] {
|
||||
width: 100%;
|
||||
border-radius: 8px;
|
||||
background-color: #fff;
|
||||
}
|
||||
header[data-v-9ae0d32f] {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.nav-button[data-v-9ae0d32f] {
|
||||
background-color: #007bff;
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
padding: 5px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.nav-button[data-v-9ae0d32f]:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
.month-year[data-v-9ae0d32f] {
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
.grid[data-v-9ae0d32f] {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
}
|
||||
.date[data-v-9ae0d32f] {
|
||||
transition: background-color 0.2s;
|
||||
cursor: pointer;
|
||||
}
|
||||
.date[data-v-9ae0d32f]:hover {
|
||||
background-color: #e0f7fa;
|
||||
}
|
||||
.today[data-v-9ae0d32f] {
|
||||
background-image: linear-gradient(180deg, #ffb84d, #fffbf7);
|
||||
}
|
||||
.bq[data-v-9ae0d32f] {
|
||||
background: linear-gradient(180deg, #fff268, #faa600);
|
||||
}
|
53
public/css/name-16e9d6f9.css
Normal file
53
public/css/name-16e9d6f9.css
Normal file
@ -0,0 +1,53 @@
|
||||
.notice[data-v-86571ae9] {
|
||||
background: #fff;
|
||||
border-radius: 14px;
|
||||
}
|
||||
.bowhat[data-v-49647315] {
|
||||
position: relative;
|
||||
}
|
||||
.bowhat .rightwhat[data-v-49647315] {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
}
|
||||
.borders[data-v-49647315] {
|
||||
border: 1px solid #fdab5a;
|
||||
}
|
||||
.mainpos[data-v-49647315] {
|
||||
position: relative;
|
||||
top: -10rem;
|
||||
}
|
||||
.mainpos .borderrdu[data-v-49647315] {
|
||||
border-radius: 10px;
|
||||
}
|
||||
.disblocks[data-v-49647315] {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.textrights[data-v-49647315] {
|
||||
text-align: right;
|
||||
}
|
||||
.disblock[data-v-49647315] {
|
||||
display: inline-block;
|
||||
}
|
||||
.btn1[data-v-49647315] {
|
||||
background: url(/png/name-960f206d.png) no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.btn2[data-v-49647315] {
|
||||
background: url(/png/name-6087a1db.png) no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.amount-wrapper[data-v-49647315] {
|
||||
box-shadow: 0 0.08rem 0.06rem 0.03rem #ececec;
|
||||
}
|
||||
.topr[data-v-49647315] {
|
||||
border-bottom-left-radius: 20px;
|
||||
border-bottom-right-radius: 20px;
|
||||
}
|
||||
.borderR[data-v-49647315] {
|
||||
border-radius: 2px;
|
||||
}
|
||||
.van-notice-bar[data-v-49647315] {
|
||||
width: 70%;
|
||||
left: 10%;
|
||||
}
|
11436
public/css/name-23972771.css
Normal file
11436
public/css/name-23972771.css
Normal file
File diff suppressed because one or more lines are too long
51
public/css/name-24ee41ea.css
Normal file
51
public/css/name-24ee41ea.css
Normal file
@ -0,0 +1,51 @@
|
||||
:root {
|
||||
--van-image-placeholder-text-color: var(--van-text-color-2);
|
||||
--van-image-placeholder-font-size: var(--van-font-size-md);
|
||||
--van-image-placeholder-background: var(--van-background);
|
||||
--van-image-loading-icon-size: 32px;
|
||||
--van-image-loading-icon-color: var(--van-gray-4);
|
||||
--van-image-error-icon-size: 32px;
|
||||
--van-image-error-icon-color: var(--van-gray-4);
|
||||
}
|
||||
.van-image {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.van-image--round {
|
||||
overflow: hidden;
|
||||
border-radius: var(--van-radius-max);
|
||||
}
|
||||
.van-image--round .van-image__img {
|
||||
border-radius: inherit;
|
||||
}
|
||||
.van-image--block {
|
||||
display: block;
|
||||
}
|
||||
.van-image__img,
|
||||
.van-image__error,
|
||||
.van-image__loading {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.van-image__error,
|
||||
.van-image__loading {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--van-image-placeholder-text-color);
|
||||
font-size: var(--van-image-placeholder-font-size);
|
||||
background: var(--van-image-placeholder-background);
|
||||
}
|
||||
.van-image__loading-icon {
|
||||
color: var(--van-image-loading-icon-color);
|
||||
font-size: var(--van-image-loading-icon-size);
|
||||
}
|
||||
.van-image__error-icon {
|
||||
color: var(--van-image-error-icon-color);
|
||||
font-size: var(--van-image-error-icon-size);
|
||||
}
|
105
public/css/name-274176de.css
Normal file
105
public/css/name-274176de.css
Normal file
@ -0,0 +1,105 @@
|
||||
:root {
|
||||
--van-nav-bar-height: 46px;
|
||||
--van-nav-bar-background: var(--van-background-2);
|
||||
--van-nav-bar-arrow-size: 16px;
|
||||
--van-nav-bar-icon-color: var(--van-primary-color);
|
||||
--van-nav-bar-text-color: var(--van-primary-color);
|
||||
--van-nav-bar-title-font-size: var(--van-font-size-lg);
|
||||
--van-nav-bar-title-text-color: var(--van-text-color);
|
||||
--van-nav-bar-z-index: 1;
|
||||
--van-nav-bar-disabled-opacity: var(--van-disabled-opacity);
|
||||
}
|
||||
.van-nav-bar {
|
||||
position: relative;
|
||||
z-index: var(--van-nav-bar-z-index);
|
||||
line-height: var(--van-line-height-lg);
|
||||
text-align: center;
|
||||
background: var(--van-nav-bar-background);
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.van-nav-bar--fixed {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.van-nav-bar--safe-area-inset-top {
|
||||
padding-top: constant(safe-area-inset-top);
|
||||
padding-top: env(safe-area-inset-top);
|
||||
}
|
||||
.van-nav-bar .van-icon {
|
||||
color: var(--van-nav-bar-icon-color);
|
||||
}
|
||||
.van-nav-bar__content {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: var(--van-nav-bar-height);
|
||||
}
|
||||
.van-nav-bar__arrow {
|
||||
margin-right: var(--van-padding-base);
|
||||
font-size: var(--van-nav-bar-arrow-size);
|
||||
}
|
||||
.van-nav-bar__title {
|
||||
max-width: 60%;
|
||||
margin: 0 auto;
|
||||
color: var(--van-nav-bar-title-text-color);
|
||||
font-weight: var(--van-font-bold);
|
||||
font-size: var(--van-nav-bar-title-font-size);
|
||||
}
|
||||
.van-nav-bar__left,
|
||||
.van-nav-bar__right {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 var(--van-padding-md);
|
||||
font-size: var(--van-font-size-md);
|
||||
}
|
||||
.van-nav-bar__left--disabled,
|
||||
.van-nav-bar__right--disabled {
|
||||
cursor: not-allowed;
|
||||
opacity: var(--van-nav-bar-disabled-opacity);
|
||||
}
|
||||
.van-nav-bar__left {
|
||||
left: 0;
|
||||
}
|
||||
.van-nav-bar__right {
|
||||
right: 0;
|
||||
}
|
||||
.van-nav-bar__text {
|
||||
color: var(--van-nav-bar-text-color);
|
||||
}
|
||||
.wdis[data-v-21daf3cf] {
|
||||
display: inline-block;
|
||||
margin-top: 3rem;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
.listS[data-v-21daf3cf] {
|
||||
position: absolute;
|
||||
right: 3rem;
|
||||
}
|
||||
.listS div[data-v-21daf3cf] {
|
||||
display: inline-block;
|
||||
background: #5b56e8;
|
||||
color: #fff;
|
||||
height: 8rem;
|
||||
line-height: 8rem;
|
||||
}
|
||||
[data-v-21daf3cf] .van-cell__title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.linear[data-v-21daf3cf] {
|
||||
background: linear-gradient(to bottom, #d6d4fe, #f1f1f1);
|
||||
}
|
||||
.bggr[data-v-21daf3cf] {
|
||||
background: #d6d4fe;
|
||||
}
|
||||
.bgmain[data-v-21daf3cf] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #f1f1f1;
|
||||
}
|
268
public/css/name-2dd09d1b.css
Normal file
268
public/css/name-2dd09d1b.css
Normal file
@ -0,0 +1,268 @@
|
||||
@charset "UTF-8";
|
||||
:root {
|
||||
--van-action-bar-background: var(--van-background-2);
|
||||
--van-action-bar-height: 50px;
|
||||
}
|
||||
.van-action-bar {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: content-box;
|
||||
height: var(--van-action-bar-height);
|
||||
background: var(--van-action-bar-background);
|
||||
}
|
||||
:root {
|
||||
--van-action-bar-button-height: 40px;
|
||||
--van-action-bar-button-warning-color: var(--van-gradient-orange);
|
||||
--van-action-bar-button-danger-color: var(--van-gradient-red);
|
||||
}
|
||||
.van-action-bar-button {
|
||||
flex: 1;
|
||||
height: var(--van-action-bar-button-height);
|
||||
font-weight: var(--van-font-bold);
|
||||
font-size: var(--van-font-size-md);
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
.van-action-bar-button--first {
|
||||
margin-left: 5px;
|
||||
border-top-left-radius: var(--van-radius-max);
|
||||
border-bottom-left-radius: var(--van-radius-max);
|
||||
}
|
||||
.van-action-bar-button--last {
|
||||
margin-right: 5px;
|
||||
border-top-right-radius: var(--van-radius-max);
|
||||
border-bottom-right-radius: var(--van-radius-max);
|
||||
}
|
||||
.van-action-bar-button--warning {
|
||||
background: var(--van-action-bar-button-warning-color);
|
||||
}
|
||||
.van-action-bar-button--danger {
|
||||
background: var(--van-action-bar-button-danger-color);
|
||||
}
|
||||
@media (max-width: 321px) {
|
||||
.van-action-bar-button {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
:root {
|
||||
--van-dialog-width: 320px;
|
||||
--van-dialog-small-screen-width: 90%;
|
||||
--van-dialog-font-size: var(--van-font-size-lg);
|
||||
--van-dialog-transition: var(--van-duration-base);
|
||||
--van-dialog-radius: 16px;
|
||||
--van-dialog-background: var(--van-background-2);
|
||||
--van-dialog-header-font-weight: var(--van-font-bold);
|
||||
--van-dialog-header-line-height: 24px;
|
||||
--van-dialog-header-padding-top: 26px;
|
||||
--van-dialog-header-isolated-padding: var(--van-padding-lg) 0;
|
||||
--van-dialog-message-padding: var(--van-padding-lg);
|
||||
--van-dialog-message-font-size: var(--van-font-size-md);
|
||||
--van-dialog-message-line-height: var(--van-line-height-md);
|
||||
--van-dialog-message-max-height: 60vh;
|
||||
--van-dialog-has-title-message-text-color: var(--van-gray-7);
|
||||
--van-dialog-has-title-message-padding-top: var(--van-padding-xs);
|
||||
--van-dialog-button-height: 48px;
|
||||
--van-dialog-round-button-height: 36px;
|
||||
--van-dialog-confirm-button-text-color: var(--van-primary-color);
|
||||
}
|
||||
.van-dialog {
|
||||
top: 45%;
|
||||
width: var(--van-dialog-width);
|
||||
overflow: hidden;
|
||||
font-size: var(--van-dialog-font-size);
|
||||
background: var(--van-dialog-background);
|
||||
border-radius: var(--van-dialog-radius);
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
transition: var(--van-dialog-transition);
|
||||
transition-property: transform, opacity;
|
||||
}
|
||||
@media (max-width: 321px) {
|
||||
.van-dialog {
|
||||
width: var(--van-dialog-small-screen-width);
|
||||
}
|
||||
}
|
||||
.van-dialog__header {
|
||||
color: var(--van-text-color);
|
||||
padding-top: var(--van-dialog-header-padding-top);
|
||||
font-weight: var(--van-dialog-header-font-weight);
|
||||
line-height: var(--van-dialog-header-line-height);
|
||||
text-align: center;
|
||||
}
|
||||
.van-dialog__header--isolated {
|
||||
padding: var(--van-dialog-header-isolated-padding);
|
||||
}
|
||||
.van-dialog__content--isolated {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: 104px;
|
||||
}
|
||||
.van-dialog__message {
|
||||
color: var(--van-text-color);
|
||||
flex: 1;
|
||||
max-height: var(--van-dialog-message-max-height);
|
||||
padding: 26px var(--van-dialog-message-padding);
|
||||
overflow-y: auto;
|
||||
font-size: var(--van-dialog-message-font-size);
|
||||
line-height: var(--van-dialog-message-line-height);
|
||||
white-space: pre-wrap;
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.van-dialog__message--has-title {
|
||||
padding-top: var(--van-dialog-has-title-message-padding-top);
|
||||
color: var(--van-dialog-has-title-message-text-color);
|
||||
}
|
||||
.van-dialog__message--left {
|
||||
text-align: left;
|
||||
}
|
||||
.van-dialog__message--right {
|
||||
text-align: right;
|
||||
}
|
||||
.van-dialog__message--justify {
|
||||
text-align: justify;
|
||||
}
|
||||
.van-dialog__footer {
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.van-dialog__confirm,
|
||||
.van-dialog__cancel {
|
||||
flex: 1;
|
||||
height: var(--van-dialog-button-height);
|
||||
margin: 0;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
.van-dialog__confirm,
|
||||
.van-dialog__confirm:active {
|
||||
color: var(--van-dialog-confirm-button-text-color);
|
||||
}
|
||||
.van-dialog--round-button .van-dialog__footer {
|
||||
position: relative;
|
||||
height: auto;
|
||||
padding: var(--van-padding-xs) var(--van-padding-lg) var(--van-padding-md);
|
||||
}
|
||||
.van-dialog--round-button .van-dialog__message {
|
||||
padding-bottom: var(--van-padding-md);
|
||||
color: var(--van-text-color);
|
||||
}
|
||||
.van-dialog--round-button .van-dialog__confirm,
|
||||
.van-dialog--round-button .van-dialog__cancel {
|
||||
height: var(--van-dialog-round-button-height);
|
||||
}
|
||||
.van-dialog--round-button .van-dialog__confirm {
|
||||
color: var(--van-white);
|
||||
}
|
||||
.van-dialog--round-button .van-action-bar-button--first {
|
||||
border-top-left-radius: var(--van-radius-max);
|
||||
border-bottom-left-radius: var(--van-radius-max);
|
||||
}
|
||||
.van-dialog--round-button .van-action-bar-button--last {
|
||||
border-top-right-radius: var(--van-radius-max);
|
||||
border-bottom-right-radius: var(--van-radius-max);
|
||||
}
|
||||
.van-dialog-bounce-enter-from {
|
||||
transform: translate3d(0, -50%, 0) scale(0.7);
|
||||
opacity: 0;
|
||||
}
|
||||
.van-dialog-bounce-leave-active {
|
||||
transform: translate3d(0, -50%, 0) scale(0.9);
|
||||
opacity: 0;
|
||||
}
|
||||
.table-container[data-v-df311e97] {
|
||||
overflow-x: auto;
|
||||
max-width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
table[data-v-df311e97] {
|
||||
width: 100%;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
background-color: #fff;
|
||||
}
|
||||
th[data-v-df311e97],
|
||||
td[data-v-df311e97] {
|
||||
border: 1px solid #ebeef5;
|
||||
padding: 12px 8px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.frozen[data-v-df311e97] {
|
||||
position: sticky;
|
||||
background-color: #fff;
|
||||
z-index: 2;
|
||||
}
|
||||
td[data-v-df311e97]:first-child,
|
||||
th[data-v-df311e97]:first-child {
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
box-shadow: 3px 0 5px rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
td[data-v-df311e97]:last-child,
|
||||
th[data-v-df311e97]:last-child {
|
||||
right: 0;
|
||||
z-index: 3;
|
||||
box-shadow: -3px 0 5px rgba(0, 0, 0, 0.06);
|
||||
}
|
||||
th[data-v-df311e97]:first-child,
|
||||
th[data-v-df311e97]:last-child {
|
||||
z-index: 4;
|
||||
}
|
||||
[data-v-df311e97] .van-popup .van-button__text {
|
||||
font-size: 14px !important;
|
||||
}
|
||||
[data-v-df311e97] .van-popup .van-dialog__header {
|
||||
padding-top: 13px;
|
||||
}
|
||||
[data-v-df311e97] .van-popup .van-cell__title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
[data-v-df311e97] .van-popup .van-cell {
|
||||
padding: 4px 0 16px;
|
||||
font-size: 14px !important;
|
||||
}
|
||||
[data-v-df311e97] .van-popup .van-cell .van-cell__value {
|
||||
padding: 10px;
|
||||
background: #f3f3f3;
|
||||
}
|
||||
.whatbgvideo[data-v-9591394d] {
|
||||
display: block;
|
||||
}
|
||||
.whatbgvideonone[data-v-9591394d] {
|
||||
display: none;
|
||||
}
|
||||
[data-v-9591394d] .van-cell {
|
||||
font-size: 15px;
|
||||
}
|
||||
.bordersd[data-v-9591394d] {
|
||||
border: 1px solid #5b56e8;
|
||||
padding: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
.whatbgs[data-v-9591394d] {
|
||||
position: relative;
|
||||
}
|
||||
.whatbgs .whatbg[data-v-9591394d] {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #e8e7fe;
|
||||
z-index: 10;
|
||||
}
|
||||
.whatbgs .whatbg .cens[data-v-9591394d] {
|
||||
display: inline-block;
|
||||
border: 1px solid #5b56e8;
|
||||
}
|
||||
.whatbgnone[data-v-9591394d] {
|
||||
display: none;
|
||||
}
|
28
public/css/name-5987bc0e.css
Normal file
28
public/css/name-5987bc0e.css
Normal file
@ -0,0 +1,28 @@
|
||||
:root {
|
||||
--van-cell-group-background: var(--van-background-2);
|
||||
--van-cell-group-title-color: var(--van-text-color-2);
|
||||
--van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);
|
||||
--van-cell-group-title-font-size: var(--van-font-size-md);
|
||||
--van-cell-group-title-line-height: 16px;
|
||||
--van-cell-group-inset-padding: 0 var(--van-padding-md);
|
||||
--van-cell-group-inset-radius: var(--van-radius-lg);
|
||||
--van-cell-group-inset-title-padding: var(--van-padding-md)
|
||||
var(--van-padding-md);
|
||||
}
|
||||
.van-cell-group {
|
||||
background: var(--van-cell-group-background);
|
||||
}
|
||||
.van-cell-group--inset {
|
||||
margin: var(--van-cell-group-inset-padding);
|
||||
border-radius: var(--van-cell-group-inset-radius);
|
||||
overflow: hidden;
|
||||
}
|
||||
.van-cell-group__title {
|
||||
padding: var(--van-cell-group-title-padding);
|
||||
color: var(--van-cell-group-title-color);
|
||||
font-size: var(--van-cell-group-title-font-size);
|
||||
line-height: var(--van-cell-group-title-line-height);
|
||||
}
|
||||
.van-cell-group__title--inset {
|
||||
padding: var(--van-cell-group-inset-title-padding);
|
||||
}
|
20
public/css/name-637923f5.css
Normal file
20
public/css/name-637923f5.css
Normal file
@ -0,0 +1,20 @@
|
||||
.turntable-wrapper[data-v-3959e504] {
|
||||
background: url(/png/name-bf46b280.png);
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
.bottom_a[data-v-3959e504] {
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
}
|
||||
.bottom_p[data-v-3959e504] {
|
||||
position: relative;
|
||||
top: -50px;
|
||||
z-index: 0;
|
||||
}
|
||||
.bottom_p div[data-v-3959e504] {
|
||||
position: relative;
|
||||
top: -36px;
|
||||
}
|
||||
.mar[data-v-3959e504] {
|
||||
margin-top: -58px;
|
||||
}
|
54
public/css/name-687f91a4.css
Normal file
54
public/css/name-687f91a4.css
Normal file
@ -0,0 +1,54 @@
|
||||
.item[data-v-6360e5a5] {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.item[data-v-6360e5a5]:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
[data-v-63ce0f1e] .van-tab__text {
|
||||
font-weight: 400;
|
||||
}
|
||||
.contentx[data-v-63ce0f1e] {
|
||||
text-indent: 2em;
|
||||
}
|
||||
.disblocks[data-v-63ce0f1e] {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
top: -5px;
|
||||
left: 5px;
|
||||
}
|
||||
.list .buttonsitem[data-v-63ce0f1e] {
|
||||
position: relative;
|
||||
margin: 5px 0;
|
||||
height: 22px;
|
||||
}
|
||||
.list .buttonsitem div[data-v-63ce0f1e] {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 0;
|
||||
display: inline-block;
|
||||
}
|
||||