
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 100;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
}
60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
}
60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
}
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
        opacity: 1;
}
25%, 75% {
        opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
        opacity: 1;
}
25%, 75% {
        opacity: 0;
}
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
}
100% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
@keyframes pulse {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
}
100% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
}
40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
}
60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
}
100% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
@keyframes rubberBand {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
30% {
        -webkit-transform: scaleX(1.25) scaleY(0.75);
        transform: scaleX(1.25) scaleY(0.75);
}
40% {
        -webkit-transform: scaleX(0.75) scaleY(1.25);
        transform: scaleX(0.75) scaleY(1.25);
}
60% {
        -webkit-transform: scaleX(1.15) scaleY(0.85);
        transform: scaleX(1.15) scaleY(0.85);
}
100% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
}
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes swing {
20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
}
40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
}
60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
}
80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
}
100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
}
}
@keyframes swing {
20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
}
40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
}
60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
}
80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
}
100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
}
}
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
@-webkit-keyframes tada {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
}
100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
}
100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
}
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
}
15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
}
30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
}
45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
}
60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
}
75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
}
100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
}
}
@keyframes wobble {
0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
}
15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
}
30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
}
45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
}
60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
}
75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
}
100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
}
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
}
50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
}
70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
}
100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
@keyframes bounceIn {
0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
}
50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
}
70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
}
100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
}
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
}
80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
}
80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
}
80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
}
80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
}
80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
}
80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
}
80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
}
80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
}
50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
}
100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
        -webkit-transform: scale(1);
        transform: scale(1);
}
25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
}
50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
}
100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
}
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
        opacity: 0;
}
100% {
        opacity: 1;
}
}
@keyframes fadeIn {
0% {
        opacity: 0;
}
100% {
        opacity: 1;
}
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
        opacity: 1;
}
100% {
        opacity: 0;
}
}
@keyframes fadeOut {
0% {
        opacity: 1;
}
100% {
        opacity: 0;
}
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
}
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
}
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
}
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
}
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
}
40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
}
50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
}
40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
}
50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
}
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
}
40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
}
70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
}
100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
}
}
@keyframes flipInX {
0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
}
40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
}
70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
}
100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
}
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
}
40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
}
70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
}
100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
}
}
@keyframes flipInY {
0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
}
40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
}
70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
}
100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
}
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
}
}
@keyframes flipOutX {
0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
}
}
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
}
}
@keyframes flipOutY {
0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
}
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
}
60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
}
80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
}
100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
}
60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
}
80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
}
100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
}
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
}
100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
}
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
@keyframes rotateIn {
0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
}
}
@keyframes rotateOut {
0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
}
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
}
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
}
100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
}
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
}
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
}
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
}
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
@-webkit-keyframes slideOutDown {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
@keyframes slideOutDown {
0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
}
100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
}
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes hinge {
0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
}
100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
}
}
@keyframes hinge {
0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
}
80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
}
100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
}
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
}
100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
}
100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
#tp-watermark div:nth-child(2n) {
  padding-left: 150px;
}
#app {
  /* font-family: 'Avenir', Helvetica, Arial, sans-serif; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: PingFangSC-Regular;
  src: url('https://guango.oss-cn-shenzhen.aliyuncs.com/a/PingFangSC-Regular.ttf');
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tc {
  text-align: center;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.text-color {
  color: #5681fe;
}
.text-red-color {
  color: #c01824;
}
a,
abbr,
address,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
label,
legend,
li,
object,
ol,
p,
pre,
q,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul {
  border: 0;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Y方向的边框，左或右 */
.border-left-1px::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px solid #f0f0f0;
}
.border-right-1px::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  border-right: 1px solid #f0f0f0;
}
@media only screen and (-webkit-device-pixel-ratio: 2) {
.border-left-1px::before {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
}
.border-right-1px::before {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
}
}
@media only screen and (-webkit-device-pixel-ratio: 3) {
.border-left-1px::before {
    -webkit-transform: scaleX(0.3333);
            transform: scaleX(0.3333);
}
.border-right-1px::before {
    -webkit-transform: scaleX(0.3333);
            transform: scaleX(0.3333);
}
}

/* X方向的边框，上或下 */
.border-top-1px::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #f0f0f0;
}
.border-bottom-1px::after {
  content: '';
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #f0f0f0;
}
@media only screen and (-webkit-device-pixel-ratio: 2) {
.border-top-1px::before {
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
}
.border-bottom-1px::after {
    -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
}
}
@media only screen and (-webkit-device-pixel-ratio: 3) {
.border-top-1px::before {
    -webkit-transform: scaleY(0.3333);
            transform: scaleY(0.3333);
}
.border-bottom-1px::after {
    -webkit-transform: scaleY(0.3333);
            transform: scaleY(0.3333);
}
}
.van-uploader__input {
  position: absolute;
  opacity: 0;
  z-index: 2000;
}
.fade-enter-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fade-enter {
  opacity: 0;
}
.group-shadow {
  -webkit-box-shadow: 0px 4px 12px #ddd;
  box-shadow: 0px 4px 12px #ddd;
}
input::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: #d1d1d1 !important;
}
.van-uploader {
  position: relative;
  display: inline-block;
}
.van-uploader__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.van-uploader__upload {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1.21rem !important;
  height: 1.21rem !important;
  margin: 0 8px 8px 0;
  background-color: #fff;
  /* border: 1px dashed #D1D8F4;
  border-radius: 10px; */
}
.van-uploader__upload-icon {
  width: 1.21rem;
  height: 1.21rem;
  color: #969799;
  font-size: 24px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAC2CAMAAABDLoc2AAAAAXNSR0IArs4c6QAAAsRQTFRFAAAAAAD/////AID/////VVWqqv//QIC/v7//zMz/K4DV1dX/SW2229v/39//OXHGM4DMzMz/LnTRQIC/1dXqO3bEN23IyNvtM3fMzN3uQHC/z9/vPHjD0tLwOXHGNnnJ19fyM3PMzNnyztvzOnTF0dzzN3rI09P01dX0zNb1O3bEOXHGN3bI1NT2OnPFztb3OHjHz9f30dj3PHjD0tr4OnXF1dXxN3XIz9bxNnLJO3bEN3PIztvzO3fE0NXzOnTF0dbzOXfG0tf0N3TI09j0PHfD1Nn0OnXFz9r0OXLG0Nv1OHXH0db10tf1O3bE09j1z9n1OXbG0Nn2OHTH0dr2O3bE0db2OHXHN3fI0NnyO3XEOnPF0trzOXXGOHTHO3bEOXbGOHTHN3bIOnXFOXfG0Nf0OXXG0dj0OHPHOnTFz9r1OXXGOHbHOnTFOXbGOXTGOHbHOnXFOXXG0tjz0NjzOHXHOnTFOXXGOXTG0tf0OHbH0Nj0OnbF0Nn0OXXG0dn00df0OHXHOnbFOXXGOnTF0tf1OXTGOHbH0Nj10djzOnbFOXXGOXbGOnTF0djzOXXGOXTGOHXH0tn0OHTH0Nn0OnbFOXXG0df0OHXH0tj00tj0OXXGOXbGOHXHOHTHOnXFOXTG0Nj1OXXG0Nn1OHTHOnbF0tfz0tf00Nj00Nj00dj00dn00tf00dj00dj00dj00tn10Nn10Nf10dj10dj10tjz0Nnz0dfz0dn00dj00dj10dj10dn10tfz0djz0djz0dj00dn00tf00dj00dj00dj00dj00dj10dj00df00dj00Nj00dj00dj00dj00dn00tf00dj00dj00dj00dj00dj10djz0dj00dj00dj00dj00dj00dj00dj00dj00dj00dj00dj10dj00dj00dj00dj00dj00dj00dj00dj00dj00dj0ZyOc0AAAAOt0Uk5TAAEBAgIDAwQEBQYGBwcICQoKCwwMDQ4ODw8QEBEREhMTFBQVFhYXFxgZGhscHh8fICAhIiIjJCUlJicqKisrLCwtLS4uLy8wMDExMjIzNDQ1NjY3Nzg4Ozw8PT4+P0BBQ0RFRkdHSEhJS0tMTk9QUVJTVVVWV1hZWlpbXF1dXl5fYGFiZWZnaGhpamtsbm5vcHFxcnJzdHR2dnd4eXp7fH19fn5/gIGHiImKjI2PkJGSk5SVlpiZmqaoqqutrrCxsrO0tbi9wMPNzs/Q0dLT1NXW19na3N3h6err7O3u7/Dy8/T19/j6+/z9/hGdHRcAAAY6SURBVHja7Z39W1RFFMePbijxapqIqKkhmfgShmYlEqICZln4kkIqL5FpKqGmkJqmqJRoSOS2aQtIS6GlgZGVvZj2au+WWpRkkLnK+Sf6wTu76+7ee9l1uJyhOT/NM2fmeT53du6Z75yZfS5AF7EXj58+j8z6A8AFnfJoAPjNh3IyAPygU84AgK8REfFi0wJd5O4A8CG6WOdjX63/oCFFFTrp+PMAkLE+bQihHz8sJhCg3yVs+zTZqz/0TTt+S3XmJh9uRXtdmKfjju/w8pEYuq9cTMMV/Gase+1DTfjrI7Rjxawz+Kxb1YMX8IsB1GPcgE3uNSO+/+hGEaN1v0AxOIe/Gyzi8H6FB1gx8bnuwmDPsdsTlOJxfEWc4T6CJ68WpuLfMeJgR7fg/QAA0Ij1Is3uenwfAKDHeUwUCTsB/wwEgAz8Uaxgcvrs3QDwOr4tFvbNAADwMT4jYgBPWz8CpHW8dR+bKCL2DYhCDjciABw7JiS2eEMusSV2V8U+d05IbOeQi2erV0u9YIiNGyentdQkcrmR2BJbahIZvKUmkZpEahIZtyW2xJbYUpP4ZVklKpZFWZPk1KpaDt0fToOaJ/egQcZRc+Tm+zbqUPPjRgSAo0cNoubGzTNut4OaFzdH7HZRc+L2F3tkTr6brattp61z75kz0ijs3FqulmsM9qRazjbJR4DmZn+wN/DG3mBI8N7FG3uXP9jbtvnYYTdv7N2GKI9Ox/ZPk3Q6tn8rTbuw9xSvLShYW7ynw7B91iS62CXZ8SGscUh8dkmHYPs85NrY1rxh7h2G5VmJY1dmhXvrEp5VSRm7aKBap4FFZLGr07W6pVfTxLaM0u43ysIJ2z9NooJdMViv4+AKjqskJ2yLG3Wv2Li42F5u3BZ+2Hw0SZWr2u85caX5arW5YGJP1/1FFTFNMtMFer7Z1WOe7wI+k5YmWeN0x5W5O8vinN41lDSJNcLhzbR5um3zHO4IKyFNkulw5nkPFo85H4tO3LYEMd+jakuK48GCLGSwHVng8TY1bNt4Ry6ZDHYUG8kKdeFRzn6RKCrYW5hnkZY8XcRabSGCzeJEyD4t7H1suOcR0SSxiiNVexOTqjSLpaFJqk2KQycRWKQ0M1WT0CQ7GI721qvWyh5vBwlNwhb2wXpb3VtUFvjO0SQrlPoJetgTlIYrSGiSxe3NxLLM6mISmoRhT9bDvo8n9nVHkuVK/b162PcoDZeTwF6l1N+mh83yPqtIYG9nu5pqbeqqAKXhdhLYVubYrI29mbWz0tAkQxXHXG3suUqzoUQ0CUtG9a7SnCO9WXqKSJ6EiQ1YpoW9jLUqIpInqWFZnD6vaejWPizvU0MlT8JmLcxQx54Oqm9AZ2GXM23nITc8hAuYyunkSRxDGVDonbqQxWyYzinhUFd3/dhmx1lNwFPeqPMd1CFmSvntJS5pPo/dgtUlQbiEVlp+gtMfmX9NrKjJd2bavGvyTsS2RLq0iFpYouR5bCULo1wckRZqhyCl16bgw8dMmz172phrz816ldI7u9kartcxfCvFI6fSCO1+EaU8bzjwO+Azx2t1izdzvZixdy8v7FpbbpBap6BcG+H7JOWTu3nr0m1yOfFrMDtneIx40IydAtwnqVw5pa+zdd8pKys74mIGD03iOVk2Ls3OzMxeurG8o67BcL5PYtSlI4lNGruMN3aZIdjFvLGLDcFO542dbogmMRXypS40GaJJwJRauJmbFaaaQBphE/lfcD5rEhrY8m+eEltiS+z/bfD2XZNIk5pEahIZACW2xJbYMnhLTSLNWGtuFvdtFG9uy7gtsbs09iUMFRG7GYcIhh04CAB+whQRg/dLr94uF14DbHSgkNi/tEwVkDoB/woFAHjgxCGRsOvxPQAASGxruVUc6uiWNuXbgSexURzsBvxcKSXZL88ShXrOZbvju1lv4dn+gmB/ggcd5eBT+KUg3/a86Q0XBXVX08WHRQzhcx4XAHLAy14/lhpNfGjP4H4v1Un/NBCO3zH1V/DUWC+OF+zYeiiZJnTy4Va0Hwjz6ks60Yb48zt3kgIOGx4G0OMPbPtMXUClNJ5HTAHfPhmv9vl4tfKTAHDSh/ITAHCwIU3z4YIX7A8khf3v7093na3Cf/oy5x3qBeoKAAAAAElFTkSuQmCC) no-repeat;
  background-size: 100%;
}
.van-uploader__preview {
  position: relative;
  margin: 0 8px 8px 0;
}
.van-uploader__preview-image {
  display: block;
  /* width: 80px;
  height: 80px; */
  width: 1.21rem !important;
  height: 1.21rem !important;
  border-radius: .27rem;
}
.van-uploader__preview-delete{
    width: 0.28rem;
    height: 0.28rem;
    background-color: #fff !important;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAAXNSR0IArs4c6QAAAEhQTFRFAAAAmczMqqrVn7/fmbvdk7rilbjjl7ffl7fhmbbimbbgmbbil7bimLXgmLbhl7bimLbhmLXimLbhmLbhmLbhmLbhmLbhmLbhycXYIAAAABd0Uk5TAAUGCA8aJEBnaYSTpaaytsHQ3ezy9Pyk0hZQAAAA5UlEQVQ4y5WVxxKEMAxDRegtsDT9/5/uAVg8hKLVKRMe8dixFcAqyqtumMl56Ko8wp2yeqTRWGeXWNosPGlp0pArJl5oKk5Y3PJGbWy5pOet+sSc98CR/XFmy0e1vzz4oi2jdHoDp7VKDV/VAEBm6/y5XHLJANRmo3R+X3pXmg81EJn7LYGd9A4w5BghN8EcdtI7AM5Ez1GZAH4n/fHLpgodQzLk2GFgSIYcB8wMyZDjjHNtV/LMkTooh5aTkcsjF1y+Qrkp5DbTG1ceBX245HHVDUC3FNmkdNvTjfQPa9bN/uX5+ALC2GQdCIxOswAAAABJRU5ErkJggg==) no-repeat;
    background-size: 100%;
    background-position: center;
    border-radius: 50% !important;
    -webkit-transform: translate(20%,-20%);
            transform: translate(20%,-20%);
}
.van-icon-photograph::before{
  content: '' !important;
  display: none !important;
}
.van-uploader__preview-delete .van-icon-photograph::before {
    content: '' !important;
    display: none !important;
}
.van-uploader__preview-delete .van-icon-cross::before{
    content: '' !important;
    display: none !important;
}
.van-image__error,
.van-image__img,
.van-image__loading {
  display: block;
  width: 100%;
  height: 100%;
}
.paperview-input-text >>> .el-input__inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 0px;
  width: 100%;
}
.van-dialog__confirm,
.van-dialog__confirm:active {
  color: #5681fe;
}

.sync-loding[data-v-4ccba3f5],
.loding[data-v-4ccba3f5] {
  width: 16rem;
  height: 100%;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 0;
  margin-left: -8rem;
  -webkit-overflow-scrolling: none;
  pointer-events: auto;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
.sync-loding .loading[data-v-4ccba3f5],
.loding .loading[data-v-4ccba3f5] {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid #fff;
  top: 50%;
  left: 50%;
  margin-left: -0.4rem;
  margin-top: -0.6rem;
  position: absolute;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: rotate 0.5s linear infinite;
          animation: rotate 0.5s linear infinite;
}
.sync-loding .text[data-v-4ccba3f5],
.loding .text[data-v-4ccba3f5] {
  position: absolute;
  bottom: 6px;
  width: 100%;
  text-align: center;
  font-size: 0.6rem;
}
.sync-loding .ldbox[data-v-4ccba3f5],
.loding .ldbox[data-v-4ccba3f5] {
  font-size: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  border-radius: 5px;
  text-align: center;
}
.sync-loding .ldbox[data-v-4ccba3f5],
.loding .ldbox[data-v-4ccba3f5] {
  width: 2.16rem;
  height: 2.16rem;
  border-radius: 7px;
  position: relative;
}
.sync-loding img[data-v-4ccba3f5],
.loding img[data-v-4ccba3f5] {
  width: 1.2rem;
  height: 1.2rem;
  background-size: 100% 100%;
  padding: 0.2rem;
}
.sync-loding .loading_character[data-v-4ccba3f5],
.loding .loading_character[data-v-4ccba3f5] {
  position: absolute;
  left: 23%;
  bottom: 20%;
  font-size: 0.3rem;
  display: -moz-inline-box;
}

.dragIcon[data-v-47c47104] {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 100;
}
.v-enter[data-v-47c47104] {
  opacity: 1;
}
.v-leave-to[data-v-47c47104] {
  opacity: 0;
}
.v-enter-active[data-v-47c47104],
.v-leave-active[data-v-47c47104] {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.home-icon[data-v-47c47104] {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.notice-box[data-v-11c3170f] {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.dragIcon[data-v-35665933] {
  position: fixed;
  width: 56px;
  height: 58px;
  line-height: 40px;
  text-align: center;
  z-index: 100;
}
.v-enter[data-v-35665933] {
  opacity: 1;
}
.v-leave-to[data-v-35665933] {
  opacity: 0;
}
.v-enter-active[data-v-35665933],
.v-leave-active[data-v-35665933] {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.home-icon[data-v-35665933] {
  width: 100%;
  height: 100%;
}

.dragIcon[data-v-7da18b4d] {
  position: fixed;
  width: 56px;
  height: 60px;
  line-height: 40px;
  text-align: center;
  z-index: 100;
}
.v-enter[data-v-7da18b4d] {
  opacity: 1;
}
.v-leave-to[data-v-7da18b4d] {
  opacity: 0;
}
.v-enter-active[data-v-7da18b4d],
.v-leave-active[data-v-7da18b4d] {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.home-icon[data-v-7da18b4d] {
  width: 100%;
  height: 100%;
}

html[data-v-25adb996] {
  background-color: #ffffff;
}
.start-page[data-v-25adb996] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: #fff;
}
.home-create[data-v-25adb996] {
  height: 100vh;
}
.home-create .van-cell[data-v-25adb996] {
    border-top: 1px solid #f7f8fc;
    border-radius: 0;
}
.home-create[data-v-25adb996] .van-field__control {
    background: #fff !important;
    font-weight: 400;
}
.home-create[data-v-25adb996] input:-internal-autofill-selected {
    background-color: #fff !important;
}
.btn-wrap .submit-btn[data-v-25adb996] {
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
  background-color: #7497fb;
  width: 100%;
  border: none;
}

.autoLogin_container[data-v-1fd9e42c] {
  background: #f7f8fc;
  min-height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.autoLogin_container .autoLogin_container-subTitle[data-v-1fd9e42c] {
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
}
.autoLogin_container .autoLogin_container-head[data-v-1fd9e42c] {
    margin: 33px 0 12px -40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.autoLogin_container .autoLogin_container-head .autoLogin_container-title[data-v-1fd9e42c] {
      font-size: 0.65rem;
      font-weight: 800;
      color: #4575c7;
      line-height: 1.3rem;
      margin-right: 8px;
}
.autoLogin_container .desc-ctn[data-v-1fd9e42c] {
    font-weight: 500;
    font-size: 14px;
    color: #4575C7;
    background: #D7E3F4;
    border-radius: 5px;
    margin: 0 23px 10px;
    padding: 15px;
    line-height: 1.5;
}
.autoLogin_container .autoLogin_container-group[data-v-1fd9e42c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0.41rem;
    margin-bottom: 2.21rem;
}
.autoLogin_container .autoLogin_container-group .autoLogin_container-item[data-v-1fd9e42c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0.2rem;
      padding-bottom: 0.53rem;
      border-radius: 0.1rem;
      border: 1px solid #fff;
      background: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: all 0.1s linear 0s;
      transition: all 0.1s linear 0s;
      position: relative;
}
.autoLogin_container .autoLogin_container-group .autoLogin_container-item .autoLogin_container-img[data-v-1fd9e42c] {
        width: 1.46rem;
        margin: 0.53rem 0.53rem 0.26rem;
}
.autoLogin_container .autoLogin_container-group .autoLogin_container-item .check-img[data-v-1fd9e42c] {
        position: absolute;
        top: 62px;
        right: 24px;
        width: 17px;
}
.autoLogin_container .autoLogin_container-group .autoLogin_container-item .suggest-img[data-v-1fd9e42c] {
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
}
.autoLogin_container .autoLogin_container-group .active[data-v-1fd9e42c] {
      border: 1px solid #3975c6;
      -webkit-box-shadow: 0px 0px 13px 0px rgba(69, 117, 199, 0.44);
              box-shadow: 0px 0px 13px 0px rgba(69, 117, 199, 0.44);
}
.autoLogin_container .autoLogin_container-group .active .autoLogin_container-subTitle[data-v-1fd9e42c] {
        color: #4575c7;
}
.autoLogin_container .autoLogin_container-footer[data-v-1fd9e42c] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99;
}
.autoLogin_container .autoLogin_container-footer .autoLogin_container-btn[data-v-1fd9e42c] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0 0.4rem;
}
.autoLogin_container[data-v-1fd9e42c] .van-grid-item__text {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #333333;
}

.authLogin_content[data-v-68b1e11e] {
  height: 30vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.authLogin_content .authLogin_title[data-v-68b1e11e] {
    font-size: 18px;
    color: #adadad;
}
.authLogin_content .authLogin_subTitle[data-v-68b1e11e] {
    font-size: 12px;
    margin-top: 12px;
    color: #3975c6;
}

@charset "UTF-8";
.verify-mobile[data-v-51cc2d42] {
  position: relative;
  background: #fff;
  height: 100vh;
  overflow: hidden;
}
.verify-mobile .top-ctn[data-v-51cc2d42] {
    margin-top: 1.11rem;
    margin-left: 0.96rem;
}
.verify-mobile .top-ctn img[data-v-51cc2d42] {
      width: 1.23rem;
}
.verify-mobile .top-ctn .top-title[data-v-51cc2d42] {
      font-size: 0.65rem;
      font-weight: 800;
      color: #4575c7;
}
.verify-mobile .top-ctn .top-remark[data-v-51cc2d42] {
      font-size: 0.38rem;
      font-weight: 500;
      color: #333333;
      margin-top: 0.3rem;
}
.verify-mobile .form-ctn[data-v-51cc2d42] {
    margin-left: 0.96rem;
    margin-top: 0.8rem;
    margin-right: 0.96rem;
}
.verify-mobile .form-ctn .form-item[data-v-51cc2d42] {
      margin-bottom: 0.42rem;
}
.verify-mobile .form-ctn .form-item .van-field__right-icon[data-v-51cc2d42] {
        color: #999;
}
.verify-mobile .form-ctn .label[data-v-51cc2d42] {
      font-size: 0.38rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #333333;
}
.verify-mobile .form-ctn .split-line[data-v-51cc2d42] {
      height: 0.01rem;
      background: #ebebeb;
      margin-right: 0.96rem;
}
.verify-mobile .form-ctn .tips[data-v-51cc2d42] {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #da291c;
      margin-top: 0.27rem;
}
.verify-mobile .form-ctn .van-cell[data-v-51cc2d42] {
      padding: 10px 0;
      font-size: 0.38rem !important;
      font-weight: 500 !important;
      color: #999999 !important;
}
.verify-mobile .button-ctn[data-v-51cc2d42] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 0.03rem solid #f0f0f2;
}
.verify-mobile .button-ctn .botton-item[data-v-51cc2d42] {
      margin: 0.54rem 0.41rem;
      background: #3975c6;
      border-radius: 0.53rem;
      padding: 0.25rem 0;
      font-size: 0.41rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #ffffff;
      text-align: center;
}
.verify-mobile .van-field__control[data-v-51cc2d42]::-webkit-input-placeholder {
    /* placeholder颜色  */
    color: #999 !important;
}

.title[data-v-e9aab2cc] {
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.van-search[data-v-e9aab2cc] {
  padding: 0 15px;
}
.van-search > .van-search__content .van-cell .van-field__left-icon[data-v-e9aab2cc] {
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search > .van-search__content .van-cell .van-field__left-icon .search-icon[data-v-e9aab2cc] {
      width: 14px;
      height: 14px;
}
.van-picker[data-v-e9aab2cc] .van-picker__toolbar {
  position: fixed;
  bottom: 40px;
  width: 100%;
  left: 0;
  display: block;
}
.van-picker[data-v-e9aab2cc] .van-picker__toolbar .btn-box {
    padding: 0 7.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 20px 0;
}
.van-picker[data-v-e9aab2cc] .van-picker__columns {
  margin-bottom: 90px;
}
.van-picker[data-v-e9aab2cc] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
.van-picker[data-v-e9aab2cc] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
.btn[data-v-e9aab2cc] {
  width: 95%;
  text-align: center;
  padding: 10px 0;
  background: #d9e4f2;
  border-radius: 20px;
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #4378be;
}
.confirm_btn[data-v-e9aab2cc] {
  background: #4378be !important;
  color: #ffffff;
}
.empty-box[data-v-e9aab2cc] {
  padding: 100px 0 200px;
  text-align: center;
}

.start-page[data-v-e33a22e4] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: #fff;
}

.loading-ctn[data-v-5263e8ba] {
  margin-top: calc(50vh + 20px);
  text-align: center;
  color: #1989fa;
}

@charset "UTF-8";
.line[data-v-393a564c] {
  width: 100%;
  height: 1px;
  background: #f7f8fc;
}
.app_container[data-v-393a564c] {
  height: 100vh;
  background: #3975c6;
  position: relative;
  overflow: hidden;
}
.app_container .app_wrap[data-v-393a564c] {
    width: 100%;
    height: calc(100vh - 1.63rem);
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
.tabs-wrap[data-v-393a564c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 15px 12px;
  font-size: 13px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  line-height: 13px;
}
.tabs-wrap .tab-item[data-v-393a564c] {
    position: relative;
}
.tabs-wrap .tab-active[data-v-393a564c] {
    color: #3975c6;
}
.tabs-wrap .tab-active[data-v-393a564c]::after {
      content: '';
      position: absolute;
      bottom: -12px;
      width: 16px;
      height: 2px;
      background: #3975c6;
      border-radius: 1px;
      left: calc(50% - 8px);
}
.van-tabs[data-v-393a564c] {
  width: 100%;
}
.van-tabs[data-v-393a564c] .van-tabs__wrap {
    display: none;
}
.select-wrap[data-v-393a564c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.select-wrap .drop-width[data-v-393a564c] {
    max-width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.select-wrap .drop-width .van-icon[data-v-393a564c] {
      color: #999999;
}
.select-wrap .drop-width .star-text-defalt[data-v-393a564c] {
      color: #666666;
}
.select-wrap .drop-width .star-text-check[data-v-393a564c] {
      color: #fcb620;
}
.select-wrap .c-t-select[data-v-393a564c] {
    max-width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #666666;
}
.van-list[data-v-393a564c] {
  height: auto !important;
}
/* items */
.app_items[data-v-393a564c] {
  background: #f7f8fc;
}
.app_items .scrollBox[data-v-393a564c] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.app_items .scrollBox .report_inner[data-v-393a564c] {
      height: 100%;
}
.app-item-inner[data-v-393a564c] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.app-item-inner .app-item-inner-title[data-v-393a564c] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #666666;
    line-height: 13px;
    margin: 10px 0;
}
.app-item-inner .app_item[data-v-393a564c] {
    width: 100%;
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
}
.app-item-inner .app_item .item_top[data-v-393a564c] {
      padding: 15px 10px;
}
.app-item-inner .app_item .item_top .item-top-id[data-v-393a564c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 12px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-person[data-v-393a564c] {
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
          line-height: 13px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-person .item-type[data-v-393a564c] {
            font-size: 12px;
            font-weight: 500;
            color: #3975c6;
            border: 1px solid #3975c6;
            border-radius: 3px;
            padding: 2px 3px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-approval[data-v-393a564c] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #ffffff;
          line-height: 13px;
          padding: 5px 6px;
          background: #3975c6;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          border-radius: 5px;
}
.app-item-inner .app_item .item_top .item-top-id .approval-accept[data-v-393a564c] {
          background: #24b277;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.app-item-inner .app_item .item_top .item-top-id .approval-reback[data-v-393a564c] {
          background: #e2e2e2;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(201, 201, 201, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(201, 201, 201, 0.31);
          color: #666666 !important;
}
.app-item-inner .app_item .item_top .item_content[data-v-393a564c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.app-item-inner .app_item .item_top .item_content .content_title[data-v-393a564c] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          line-height: 24px;
}
.app-item-inner .app_item .item_top .item_content .content_value[data-v-393a564c] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
          line-height: 24px;
}
.app-item-inner .app_item .report_bottom[data-v-393a564c] {
      padding: 11px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.app-item-inner .app_item .report_bottom .bottom_time[data-v-393a564c] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        line-height: 13px;
}
.app-item-inner .app_item .report_bottom .bottom_r[data-v-393a564c] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        line-height: 13px;
        margin-right: 7px;
}
.app-item-inner .app_item .report_bottom .bottom_r .star-img-box[data-v-393a564c] {
          width: 0.45rem;
          height: 0.44rem;
}
.app-item-inner .app_item .report_bottom .bottom_r .star-img-box .star-img[data-v-393a564c] {
            width: 100%;
            height: 100%;
}
.line[data-v-393a564c] {
  height: 1px;
  background: #f7f8fc;
  width: 100%;
}
/* 搜索框 */
.van-search[data-v-393a564c] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-393a564c] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-393a564c] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-393a564c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-393a564c] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-393a564c] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-393a564c] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-393a564c]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-393a564c]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-393a564c]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-393a564c]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}

.foot-tab[data-v-37165fb9] {
  width: 100%;
  height: 2.5rem;
}
.foot-tab > .van-tabbar[data-v-37165fb9] {
    height: 1.6rem;
    z-index: 999;
}
.foot-tab > .van-tabbar .van-tabbar-item[data-v-37165fb9] {
      -webkit-box-pack: normal !important;
          -ms-flex-pack: normal !important;
              justify-content: normal !important;
      padding: 0.25rem 0;
}
.foot-tab > .van-tabbar .van-tabbar-item .van-tabbar-item__icon[data-v-37165fb9] {
        margin-bottom: 0.15rem;
}
.foot-tab > .van-tabbar .van-tabbar-item .van-tabbar-item__icon .svg-icon[data-v-37165fb9] {
          font-size: 0.55rem;
}
.foot-tab > .van-tabbar .van-tabbar-item .item-title[data-v-37165fb9] {
        font-size: 0.32rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.foot-tab > .van-tabbar .van-tabbar-item--active[data-v-37165fb9] {
      color: #333333 !important;
}
.foot-tab > .van-tabbar[data-v-37165fb9]::after {
      border: 0.03rem solid #f0f0f2;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] {
      width: 1.5rem;
      height: 1.9rem;
      position: relative;
      bottom: calc(0.5rem - 0.03rem);
      z-index: 2;
      padding: 0;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] .van-tabbar-item__icon {
        width: 1.7rem;
        height: 1.7rem;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 50%;
        position: relative;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] .van-tabbar-item__icon .icon-box {
          position: absolute;
          z-index: 6;
          width: 1.4rem;
          height: 1.4rem;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] .van-tabbar-item__icon .icon-box img {
            width: 100%;
            height: 100%;
            margin-top: 0.07rem;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] .van-tabbar-item__icon .circle {
          position: absolute;
          top: 0;
          height: 0.5rem;
          z-index: 5;
}
.foot-tab > .van-tabbar .add-item[data-v-37165fb9] .van-tabbar-item__icon .circle-line {
          height: 0.03rem;
          position: absolute;
          top: calc(0.5rem - 0.02rem);
          width: 1.8rem;
          background: #ffffff;
          z-index: 5;
}

.svg-icon[data-v-1ad05212] {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.svg-external-icon[data-v-1ad05212] {
  background-color: currentColor;
  -webkit-mask-size: cover !important;
          mask-size: cover !important;
  display: inline-block;
}

.drop-container[data-v-4898f15b] {
  position: relative;
}
.drop-top[data-v-4898f15b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  position: relative;
}
.drop-box[data-v-4898f15b] {
  position: absolute;
  z-index: 10;
  width: 100%;
  -webkit-box-shadow: 0 2px 12px rgb(100 101 102);
          box-shadow: 0 2px 12px rgb(100 101 102);
}
.mask[data-v-4898f15b] {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2001;
}
.drop-content[data-v-4898f15b] {
  background: #ffffff;
  min-height: 20px;
  z-index: 2008;
  position: absolute;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.demo-box-item[data-v-4898f15b] {
  padding: 0.15rem 0 0;
}
.drop-text[data-v-4898f15b] {
  margin-right: 5px;
  font-family: PingFang SC;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  max-width: 90px;
}
/* /deep/ .van-icon__image{
   width: .19rem;
   height: .13rem;
 }  */

.inner[data-v-14476248] {
  padding: 0.25rem;
}
.pop-time[data-v-14476248] {
  padding: 0.2rem 0;
}
.pop-time-title[data-v-14476248] {
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.pop-time-box[data-v-14476248] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.4rem;
}
.pop-startend-time[data-v-14476248] {
  width: 4.24rem;
  height: 0.92rem;
  background: #fefefe;
  border: 1px solid #b8b8b8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.pop-time-line[data-v-14476248] {
  width: 0.2rem;
  height: 1px;
  background: #999999;
}
.van-search[data-v-14476248] {
  width: 100%;
  padding: 0;
  border: 1px solid #b8b8b8;
  background: #fefefe;
}
.right[data-v-14476248] {
  margin-right: 0.1rem;
}
.right-icon[data-v-14476248] {
  font-size: 12px;
}
.pop-peopleList[data-v-14476248] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
#peopleList[data-v-14476248] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  width: 100%;
  padding: 0.2rem 0;
}
.people-item[data-v-14476248] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.pop-people-content[data-v-14476248] {
  padding: 0.2rem 0;
  max-height: 6rem;
  overflow: hidden;
}
.pop-people-content-inner[data-v-14476248] {
  width: 100%;
  max-height: 6rem;
  overflow-y: scroll;
}
.people-content-item[data-v-14476248] {
  padding: 0.3rem 0;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pop-bottom[data-v-14476248] {
  padding: 0.4rem 0;
}
.btn-box[data-v-14476248] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-box-item[data-v-14476248] {
  width: 4.53rem;
}
.btn-style[data-v-14476248] {
  width: 100%;
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 400;
  border-radius: 5px;
}
.btn-l[data-v-14476248] {
  background: #c5daff;
  color: #5076b8;
}
.btn-r[data-v-14476248] {
  background: #5076b8;
  color: #ffffff;
}

.dic-container[data-v-14512e42] {
  padding: 0.2rem 0;
}
.dic-name[data-v-14512e42] {
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.dic-content[data-v-14512e42] {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-item[data-v-14512e42] {
  width: 32%;
  margin-bottom: 0.24rem;
}
.item-inner[data-v-14512e42] {
  border: 1px solid #eeeeee;
  background: #eeeeee;
  border-radius: 5px;
  padding: 0.2rem;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.active[data-v-14512e42] {
  border: 1px solid #5177b8;
  color: #5177b8;
  background: #f1f5fe;
}

.font-style[data-v-304a7abc], .home-container .home-wrap .home-content .home-top .home-top-wrap .time div[data-v-304a7abc], .home-container .home-wrap .home-content .home-top .home-top-wrap .verb[data-v-304a7abc] {
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.home-container[data-v-304a7abc] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f8fc;
}
.home-container .home-wrap[data-v-304a7abc] {
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), to(#f7f8fc));
    background: linear-gradient(#3975c6, #f7f8fc);
    background-size: 100% 50%;
    background-repeat: no-repeat;
    overflow-y: scroll;
}
.home-container .home-wrap .home-content[data-v-304a7abc] {
      padding: 0 0.27rem;
}
.home-container .home-wrap .home-content .home-top .home-top-wrap[data-v-304a7abc] {
        padding: 0.35rem 0.07rem;
}
.home-container .home-wrap .home-content .home-top .home-top-wrap .time[data-v-304a7abc] {
          margin-bottom: 0.1rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.home-container .home-wrap .home-content .home-top .home-top-wrap .time div[data-v-304a7abc] {
            font-size: 0.53rem;
            color: #ffffff;
}
.home-container .home-wrap .home-content .home-top .home-top-wrap .time img[data-v-304a7abc] {
            width: 0.43rem;
            height: 0.47rem;
}
.home-container .home-wrap .home-content .home-top .home-top-wrap .verb[data-v-304a7abc] {
          font-weight: 300;
          font-size: 0.37rem;
          color: #ffffff;
          float: left;
}
.home-container .home-wrap .home-content .guobu-banner-ctn[data-v-304a7abc] {
        height: 60px;
        background: url(../../static/img/banner.2a0d6d8.png) no-repeat;
        background-size: 100% 100%;
        margin-bottom: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 90px 20px 0;
}
.home-container .home-wrap .home-content .guobu-banner-ctn .entry-item[data-v-304a7abc] {
          width: calc(50% - 5px);
          background: #4FD043;
          border-radius: 9px;
          text-align: center;
          font-weight: bold;
          font-size: 15px;
          color: #FFFFFF;
          padding: 8px 0;
          margin-right: 10px;
}
.home-container .home-wrap .home-content .guobu-banner-ctn .entry-item1[data-v-304a7abc] {
          background: #28A7E9;
          margin-right: 0;
}
.home-container .home-wrap .notify-popup[data-v-304a7abc] {
      background: rgba(0, 0, 0, 0);
}
.finished-text-box[data-v-304a7abc] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.finished-text-box .bottom-line[data-v-304a7abc] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-304a7abc] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}

.home_commission-grid[data-v-730f5c98] {
  background: #ffffff;
  border-radius: 0.18rem;
  width: 100%;
  padding-bottom: 0.18rem;
  margin-bottom: 0.27rem;
  overflow: hidden;
}
.home_commission-grid h4[data-v-730f5c98] {
    font-size: 0.43rem;
    font-family: PingFang-SC-Bold, PingFang-SC;
    font-weight: bold;
    color: #333333;
    margin: 0.37rem;
}
.home_commission-grid .commission_item[data-v-730f5c98] {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.home_commission-grid .commission_item .commission_item-amount[data-v-730f5c98] {
      padding-left: 0.28rem;
      font-size: 0.49rem;
      font-weight: 800;
      font-family: PingFang SC;
      line-height: 0.5rem;
}
.home_commission-grid .commission_item .commission_item-title[data-v-730f5c98] {
      padding-left: 0.28rem;
      font-size: 0.32rem;
      color: #333;
      line-height: 0.5rem;
}
.home_commission-grid[data-v-730f5c98] .van-grid {
    margin: 0 0.24rem;
}
.home_commission-grid[data-v-730f5c98] .van-grid-item__content {
    background: transparent;
    padding: 0;
    margin: 0 0.17rem 0.27rem;
    height: 1.62rem;
    background: #f7f8fc;
    border-radius: 0.27rem;
}

.home_btn_box[data-v-479ee774] {
  background: #ffffff;
  border-radius: 0.2rem;
  width: 100%;
  padding-bottom: 0.4rem;
  overflow: hidden;
}
.home_btn_box h4[data-v-479ee774] {
    font-size: 0.43rem;
    font-family: PingFang-SC-Bold, PingFang-SC;
    font-weight: bold;
    color: #333333;
    margin: 0.37rem;
}
.home_btn_box[data-v-479ee774] .van-grid-item__content {
    padding: 0.2rem;
}
.home_btn_box[data-v-479ee774] .van-grid-item__content .van-grid-item__icon {
      line-height: 0;
}
.home_btn_box[data-v-479ee774] .van-grid-item__content .van-grid-item__text {
      margin-top: 0;
}
.home_btn_box .dialog-ctn .dialog-header-ctn[data-v-479ee774] {
    text-align: center;
    position: relative;
    padding: 26px;
    font-size: 17px;
    font-weight: 500;
    color: #333333;
}
.home_btn_box .dialog-ctn .dialog-header-ctn img[data-v-479ee774] {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 12px;
      height: 12px;
}
.home_btn_box .dialog-ctn .main-select-ctn[data-v-479ee774] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 60px 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
}
.home_btn_box .dialog-ctn .main-select-ctn .select-item[data-v-479ee774] {
      position: relative;
}
.home_btn_box .dialog-ctn .main-select-ctn .select-item img[data-v-479ee774] {
        width: 70px;
        height: 70px;
}
.home_btn_box .dialog-ctn .main-select-ctn .select-item div[data-v-479ee774] {
        margin-top: 14px;
        font-size: 14px;
        font-weight: 500;
        color: #666666;
}
.home_btn_box .dialog-ctn .main-select-ctn .select-item .check-text[data-v-479ee774] {
        color: #333333;
}
.home_btn_box .dialog-ctn .main-select-ctn .select-item .check-img[data-v-479ee774] {
        position: absolute;
        top: 50px;
        right: 0;
        width: 22px;
        height: 22px;
}
.home_btn_box .dialog-ctn .bottom-btn-ctn[data-v-479ee774] {
    padding: 15px 0;
    text-align: center;
    background: #4378be;
    font-size: 17px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
}

.home_btn_box[data-v-a97b4f4c] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 0.27rem;
  background: #ffffff;
  border-radius: 0.2rem;
  width: 100%;
  padding: 0.37rem;
  overflow: hidden;
}
.home_btn_box *[data-v-a97b4f4c] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.home_btn_box .title-ctn[data-v-a97b4f4c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.37rem;
}
.home_btn_box .title-ctn .hone_channel_btn_first[data-v-a97b4f4c] {
      background: #548CDF;
      font-size: 10px;
      font-weight: 500;
      color: #FFFFFF;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 3px 5px;
      border-radius: 5px;
}
.home_btn_box .title-ctn .hone_channel_btn_first img[data-v-a97b4f4c] {
        width: 11px;
        height: 11px;
        margin-right: 3px;
}
.home_btn_box h4[data-v-a97b4f4c] {
    font-size: 0.43rem;
    font-family: PingFang-SC-Bold, PingFang-SC;
    font-weight: bold;
    color: #333333;
}
.home_btn_box .home_btn_fullBox[data-v-a97b4f4c] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.home_btn_box .hone_channel_box[data-v-a97b4f4c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.home_btn_box .hone_channel_box > .hone_channel_btn[data-v-a97b4f4c]:nth-of-type(3) {
      margin-right: 0;
}
.home_btn_box .hone_channel_box > .hone_channel_btn[data-v-a97b4f4c]:nth-of-type(6) {
      margin-right: 0;
}
.home_btn_box .hone_channel_box .hone_channel_btn[data-v-a97b4f4c] {
      margin-right: .32rem;
      font-size: 0.32rem;
      font-weight: bold;
      height: 1.81rem;
      color: #FFFFFF;
      padding: 0.27rem;
      margin-bottom: 0.32rem;
      width: calc((100% - 0.64rem) / 3);
      border-radius: 5px;
}
.home_btn_box .hone_channel_box .hone_channel_btn div + div[data-v-a97b4f4c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.home_btn_box .hone_channel_box .hone_channel_btn img[data-v-a97b4f4c] {
        width: 0.35rem;
        height: 0.35rem;
        margin-right: 4px;
}
.home_btn_box .hone_channel_box .hone_channel_btn .first-item[data-v-a97b4f4c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 16px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.home_btn_box .hone_channel_box .hone_channel_btn .first-item .hone_channel_btn_title[data-v-a97b4f4c] {
          color: #548CDF;
}
.home_btn_box .hone_channel_box .hone_channel_btn .hone_channel_btn_title[data-v-a97b4f4c] {
        font-weight: 800;
}
.home_btn_box .hone_channel_box .hone_channel_btn .hone_channel_btn_top[data-v-a97b4f4c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 10px;
}
.home_btn_box .hone_channel_box .hone_channel_btn .hone_channel_btn_count[data-v-a97b4f4c] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #FFFFFF;
}

.line[data-v-36addc6b] {
  width: 1px;
  height: 1.41rem;
  background: #f1f3f8;
}
.home_totalMoney_box[data-v-36addc6b] {
  background: #ffffff;
  border-radius: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.27rem;
  width: 100%;
  text-align: center;
}
.home_totalMoney_box .home_money_item[data-v-36addc6b] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.52rem 0;
}
.home_totalMoney_box .home_money_item .img-box[data-v-36addc6b] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.home_totalMoney_box .home_money_item .img-box img[data-v-36addc6b] {
        width: .4rem;
        height: .4rem;
        margin-right: .13rem;
}
.home_totalMoney_box .home_money_item .img-box span[data-v-36addc6b] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
}
.home_totalMoney_box .home_money_item .money_item_num[data-v-36addc6b] {
      font-size: 0.48rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      margin-top: .32rem;
}

.new-container[data-v-e35aecd8] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.c-inner[data-v-e35aecd8] {
  padding: 0.35rem;
}
.c-t[data-v-e35aecd8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drop-box[data-v-e35aecd8] {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drop-width[data-v-e35aecd8] {
  max-width: 25%;
}
.c-t-select[data-v-e35aecd8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-t-select-text[data-v-e35aecd8] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-c[data-v-e35aecd8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.3rem;
}
.c-c-item[data-v-e35aecd8] {
  width: 31%;
  border-radius: 5px;
}
.item-inner[data-v-e35aecd8] {
  padding: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item-people[data-v-e35aecd8] {
  background: #eef3fc;
}
.item-money[data-v-e35aecd8] {
  background: #fef6ea;
}
.item-contract[data-v-e35aecd8] {
  background: #eff7f3;
}
.icon-people[data-v-e35aecd8] {
  width: 0.44rem;
  margin-bottom: 0.12rem;
}
.icon-money[data-v-e35aecd8] {
  width: 0.29rem;
  margin-bottom: 0.12rem;
}
.icon-contract[data-v-e35aecd8] {
  width: 0.33rem;
  margin-bottom: 0.12rem;
}
.item-num[data-v-e35aecd8] {
  font-size: 0.48rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  margin-bottom: 0.12rem;
}
.item-text[data-v-e35aecd8] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}

.chart-container[data-v-4013800b] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.c-top[data-v-4013800b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem;
}
.c-top-l[data-v-4013800b] {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-tips[data-v-4013800b] {
  margin-left: 0.15rem;
  width: 0.3rem;
  height: 0.3rem;
}
.c-top-r[data-v-4013800b] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.c-select[data-v-4013800b] {
  padding: 0 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select-l[data-v-4013800b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
.c-select-r[data-v-4013800b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drop-l[data-v-4013800b] {
  margin-right: 0.63rem;
}
.c-select-l-l[data-v-4013800b] {
  margin-right: 1rem;
}
.c-content[data-v-4013800b] {
  padding: 0.4rem;
}
.c-content-top[data-v-4013800b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-bottom[data-v-4013800b] {
  width: 90%;
  margin: auto;
  padding: 0.4rem 0;
}
.c-bottom-item[data-v-4013800b] {
  border: 1px solid #e9ecf7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.3rem;
  border-radius: 7px;
}
.c-b-i-l[data-v-4013800b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-b-i-l img[data-v-4013800b] {
  width: 0.4rem;
}
.b-i-text[data-v-4013800b] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-left: 0.2rem;
}

.chart-container[data-v-67cc70a6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chart-content[data-v-67cc70a6] {
  width: 55%;
}
.chart-legend[data-v-67cc70a6] {
  width: 45%;
}
.legend-item[data-v-67cc70a6] {
  margin-bottom: 0.2rem;
  padding: 10px 16px;
}
.legend-inner[data-v-67cc70a6] {
  padding: 0 0 0 0.2rem;
}
.item-title[data-v-67cc70a6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.1rem;
}
.item-color[data-v-67cc70a6] {
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.2rem;
}
.item-text[data-v-67cc70a6] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
}
.item-value[data-v-67cc70a6] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.child-ctn[data-v-67cc70a6]{
  margin-top: 0.2rem;
  border-top: 1px solid #fff;
  padding-top: 0.2rem;
}
.child-item[data-v-67cc70a6]{
  margin-bottom: 0.2rem;
}

.achievements_card {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.achievements_card .achievements_card-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem;
}
.achievements_card .achievements_card-head .achievements_card-title {
      font-size: 0.43rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.achievements_card .achievements_card-head .achievements_card-title .achievements_card-tips {
        margin-left: 0.15rem;
        width: 0.3rem;
        height: 0.3rem;
}
.achievements_card .achievements_card-head .achievements_card-info {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #999999;
}
.achievements_card .achievements_card-select {
    padding: 0 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.achievements_card .achievements_card-select .achievements_select-main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 80%;
}
.achievements_card .achievements_card-select .achievements_select-main .drop-l {
        margin-right: 0.63rem;
}
.achievements_card .achievements_card-select .achievements_select-other {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.achievements_card .achievements_card-content {
    padding: 0.27rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f7f8fc;
    border-radius: 0.14rem;
    margin: 0.4rem;
}
.achievements_card .achievements_card-content .achievements_card-form {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.achievements_card .achievements_card-content .achievements_card-form .achievements_card-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.11rem;
        margin-bottom: 0.22rem;
}
.achievements_card .achievements_card-content .achievements_card-form .achievements_form-title {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #666666;
}
.achievements_card .achievements_card-content .achievements_card-form .achievements_form-subTitle {
        margin-top: 0.28rem;
}
.achievements_card .achievements_card-content .achievements_card-form .achievements_form-subTitle .achievements_form-price {
          font-size: 0.49rem;
          font-family: PingFang SC;
          font-weight: 800;
          color: #333333;
}
.achievements_card .achievements_card-content .achievements_card-form .achievements_form-subTitle .achievements_form-percent {
          display: inline-block;
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAcCAMAAABBJv+bAAAAAXNSR0IArs4c6QAAAM9QTFRFAAAAAP8AAICAAKpVQL+AM5lmIL+AGrOAK6qAJLZ/IK9wJrNzJLZ5IrJ3IbVzI7F4IrN1JrN5I7R6JbV1I7R4JrR1I7F2JLJ4IrN5JLF4JbN3I7F2JLN4JLF3JbN2I7F4JbF2I7N4JLJ3JLJ2I7J4JLN4JLN3JLJ2I7J2JLN3JLJ3I7N3JLJ3JLJ3JLN3I7F4JLJ3JLJ3JLJ3JLJ3JLJ3JLJ2I7N3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLN3JLJ3JLJ3JLJ3JLJ3JLJ30OKqEQAAAER0Uk5TAAECAwQFCAoMDhAUFR4fJCUoLDAzPUFGSlVaX2RpbnN9goeMkZOWm6aqr7S2ub7CzdDU1+Hi5ufq7O/x9ff4+vv8/f6tA8f+AAAAp0lEQVQoz6XJRRLCQAAEwMHdHYK7uzvM/9/EAYjupoqirw38wNF22nWJis36N9wG5N0g2ZRu7ELyGpf1gCQ5lGyOb3nhuhefXnpEXeFXVbChg9rHsLU71HQtm7rr+pE294R6U4dxCzQqGta7MvXap+8azeq6jZwsfY5q3aNVX93MU9DMftY5Ey3nrncrFCsDAII7Se+DANCkTAtA4irtWxIYUW6M/7wA1nRgTvdzRwYAAAAASUVORK5CYII=);
          background-repeat: no-repeat;
          background-position: left center;
          background-size: 0.2rem;
          color: #24b277;
          text-indent: 0.25rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.achievements_card .achievements_card-divider {
    padding: 0 0.4rem;
}
.achievements_card .achievements_card-list {
    padding: 0 0.41rem 0.42rem;
}
.achievements_card .achievements_card-list .achievements_list-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      line-height: 1rem;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-left {
        width: 1rem;
        margin-right: 0.24rem;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-left .achievements_list-img {
          width: 1rem;
          height: 1rem;
          background: #eee;
          border-radius: 50%;
          display: block;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-right {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-right .achievements_list-info {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-right .achievements_list-info .achievements_list-title {
            font-size: 0.38rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #333333;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-right .achievements_list-info .achievements_list-percent {
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #666666;
}
.achievements_card .achievements_card-list .achievements_list-item .achievements_list-right .achievements_list-info .achievements_list-price {
            font-size: 0.38rem;
            font-family: PingFang SC;
            font-weight: bold;
            color: #548cdf;
}
.achievements_card .achievements_card-list .achievements_list-item + .achievements_list-item {
        margin-top: 0.55rem;
}

.chart-container[data-v-4e236fba] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.c-top[data-v-4e236fba] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem;
}
.c-top-l[data-v-4e236fba] {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-tips[data-v-4e236fba] {
  margin-left: 0.15rem;
  width: 0.3rem;
  height: 0.3rem;
}
.c-top-r[data-v-4e236fba] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.c-select[data-v-4e236fba] {
  padding: 0 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select-l[data-v-4e236fba] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
.c-select-r[data-v-4e236fba] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drop-l[data-v-4e236fba] {
  margin-right: 0.63rem;
}
.c-select-l-l[data-v-4e236fba] {
  margin-right: 1rem;
}
.c-content[data-v-4e236fba] {
  padding: 0.4rem;
}
.c-content-top[data-v-4e236fba] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-botton-btn[data-v-4e236fba] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
.btn-line[data-v-4e236fba] {
  width: 1px;
  height: inherit;
  background: #548cdf;
}
.btn-style[data-v-4e236fba] {
  text-align: center;
}
.btn-left-style[data-v-4e236fba] {
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: #999999;
  border-radius: 7px 0 0 7px;
}
.btn-right-style[data-v-4e236fba] {
  border-style: solid solid solid none;
  border-width: 1px;
  border-color: #999999;
  border-radius: 0 7px 7px 0;
}
.btn-text[data-v-4e236fba] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  padding: 0.13rem 0.2rem;
}
.active[data-v-4e236fba], .btn-left-active .btn-text[data-v-4e236fba], .btn-right-active .btn-text[data-v-4e236fba] {
  color: #548cdf !important;
}
.btn-left-active[data-v-4e236fba] {
  border-radius: 7px 0 0 7px;
  background: #eef3fc !important;
  border-color: #548cdf;
}
.btn-right-active[data-v-4e236fba] {
  border-radius: 0 7px 7px 0;
  background: #eef3fc !important;
  border-color: #548cdf;
}

.chart-container[data-v-0b0711af] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chart-content[data-v-0b0711af] {
  width: 60%;
}
.chart-legend[data-v-0b0711af] {
  width: 40%;
}
.legend-item[data-v-0b0711af] {
  margin-bottom: 0.2rem;
}
.legend-inner[data-v-0b0711af] {
  padding: 0 0 0 0.2rem;
}
.item-title[data-v-0b0711af] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.1rem;
}
.item-color[data-v-0b0711af] {
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.2rem;
}
.item-text[data-v-0b0711af] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
}
.item-value[data-v-0b0711af] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}

.backlog_box[data-v-4ff413b7] {
  margin-top: 0.27rem;
  background: #ffffff;
  border-radius: 0.2rem;
}
.backlog_inner[data-v-4ff413b7] {
  padding: 0.4rem 0.36rem;
}
.backlog_box_top[data-v-4ff413b7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.36rem;
}
.backlog_l[data-v-4ff413b7] {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.backlog_r[data-v-4ff413b7] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.backlog_r .icon[data-v-4ff413b7] {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
}
.home_tab[data-v-4ff413b7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab_item[data-v-4ff413b7] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  height: 0.68rem;
  margin-right: 0.84rem;
}
.active[data-v-4ff413b7] {
  color: #548cdf;
  border-bottom: solid 2px;
}
.tab_content_top[data-v-4ff413b7] {
  margin-top: 0.42rem;
}
.tab_content_top_l[data-v-4ff413b7] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.tab_content_top_r[data-v-4ff413b7] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #5681fe;
}
.home_tab_content[data-v-4ff413b7] {
  margin-top: 0.42rem;
}
.tab_content_item[data-v-4ff413b7] {
  position: relative;
  background: #f7f8fc;
  border-radius: 5px;
  margin-bottom: 0.19rem;
}
.tab_content_item_wrap[data-v-4ff413b7] {
  padding: 0.35rem 0.5rem 0.1rem;
}
.content_item_time[data-v-4ff413b7] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.item_time_span[data-v-4ff413b7] {
  position: relative;
  top: -0.1rem;
}
.content_item_info[data-v-4ff413b7] {
  padding: 0.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_name[data-v-4ff413b7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 45%;
  margin-right: 1rem;
}
.info_name img[data-v-4ff413b7] {
    width: 0.27rem;
    height: 0.33rem;
    margin-right: 0.15rem;
}
.info_name span[data-v-4ff413b7] {
    font-size: 0.37rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.info_follow[data-v-4ff413b7] {
  background: #ffffff;
  border: 0.03px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.29rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #b0b0b0;
  text-align: center;
  padding: 0.1rem;
}
.info_tel[data-v-4ff413b7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 45%;
}
.info_tel img[data-v-4ff413b7] {
    width: 0.27rem;
    height: 0.27rem;
    margin-right: 0.15rem;
}
.info_tel span[data-v-4ff413b7] {
    font-size: 0.37rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.info_address[data-v-4ff413b7] {
  width: 5.21rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flex[data-v-2a99a7b4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.work_box[data-v-2a99a7b4] {
  background: #ffffff;
  border-radius: 0.2rem;
  margin-top: 0.27rem;
}
.work_box .backlog_inner[data-v-2a99a7b4] {
    padding: 0.45rem 0.39rem;
}
.work_box .backlog_inner .backlog_box_top[data-v-2a99a7b4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.work_box .backlog_inner .backlog_box_top .backlog_l[data-v-2a99a7b4] {
        font-size: 0.43rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
}
.work_box .backlog_inner .backlog_box_top .backlog_r[data-v-2a99a7b4] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #999999;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.work_box .backlog_inner .backlog_box_top .backlog_r .icon[data-v-2a99a7b4] {
          -webkit-transform: scale(0.75);
                  transform: scale(0.75);
}
.work_box .backlog_inner .backlog_box_content .work_box_item[data-v-2a99a7b4] {
      margin-bottom: 0.3rem;
      background: #f7f8fc;
      border-radius: 7px;
}
.work_box .backlog_inner .backlog_box_content .work_box_item .work_box_item_content[data-v-2a99a7b4] {
        padding: 0.31rem 0.27rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.work_box .backlog_inner .backlog_box_content .work_box_item .work_box_item_content .work_box_item_l[data-v-2a99a7b4] {
          width: 70%;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.work_item_img[data-v-2a99a7b4] {
  width: 1.01rem;
  height: 1.01rem;
  border-radius: 50%;
}
.work_item_l_info[data-v-2a99a7b4] {
  margin-left: 0.29rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work_item_l_info_name[data-v-2a99a7b4] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
}
.work_item_l_info_creat[data-v-2a99a7b4] {
  margin-top: 0.14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.info_creat_l[data-v-2a99a7b4] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.info_creat_r[data-v-2a99a7b4] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #5681fe;
}
.work_box_item_r[data-v-2a99a7b4] {
  font-size: 0.29rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.work_box_item_r_time[data-v-2a99a7b4] {
  margin-right: 0.15rem;
}
.block-wrap[data-v-2a99a7b4] {
  line-height: 25px;
  background-color: #3975c6;
  color: #ffffff;
}
.cusInfo-text[data-v-2a99a7b4] {
  font-size: 0.38rem;
}
.btn-block-wrap[data-v-2a99a7b4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 20px;
  margin: 0px 15px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 8px -1px #a7caff;
          box-shadow: 0 2px 8px -1px #a7caff;
  background-color: #fff;
}
.backlog_inner[data-v-2a99a7b4] {
  padding: 0.4rem 0.36rem;
}

.chart-container[data-v-d3268658] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.c-top[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem;
}
.c-top-l[data-v-d3268658] {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-top-tag[data-v-d3268658] {
  color: #548CDF;
  font-size: 0.3rem;
  background: #EEF3FC;
  margin-left: 0.32rem;
  border-radius: 3px;
  display: inline-block;
  padding: 3px 4px;
}
.img-tips[data-v-d3268658] {
  margin-left: 0.11rem;
  width: 0.3rem;
  height: 0.3rem;
}
.c-top-r[data-v-d3268658] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.c-select[data-v-d3268658] {
  padding-left: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select-l[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}
.c-select-r[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drop-l[data-v-d3268658] {
  margin-right: 0.63rem;
}
.c-select-l-l[data-v-d3268658] {
  margin-right: 1rem;
}
.c-content[data-v-d3268658] {
  /* margin-top: -1rem; */
  padding: 0rem 0.4rem 0.4rem 0.4rem;
}
.c-content-top[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-bottom[data-v-d3268658] {
  width: 90%;
  margin: auto;
  padding: 0.4rem 0;
}
.c-bottom-item[data-v-d3268658] {
  border: 1px solid #e9ecf7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.3rem;
  border-radius: 7px;
}
.c-b-i-l[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-b-i-l img[data-v-d3268658] {
  width: 0.4rem;
}
.b-i-text[data-v-d3268658] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-left: 0.2rem;
}
.c-statistic[data-v-d3268658] {
  margin: 20px 16px;
  margin-bottom: 0;
  z-index: 1;
}
.statistic-wrap[data-v-d3268658] {
  padding: 15px 0;
  background: #f7f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.statistic-item[data-v-d3268658] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33%;
}
.item_gk[data-v-d3268658] {
  /*background: #f7f8fc;*/
  border-left: 1px solid #FFFFFF;
}
.item-title[data-v-d3268658] {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-bottom: 10px;
}
.item-title-y[data-v-d3268658] {
  color: #F5AB32;
}
.item-title-b[data-v-d3268658] {
  color: #548CDF;
}
.item-money[data-v-d3268658] {
  font-size: 0.48rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.vxe-table--render-default[data-v-d3268658] {
  overflow: hidden;
  color: #333333;
}
[data-v-d3268658] .vxe-icon--caret-bottom:before {
  top: 0.20em;
}
.c-content[data-v-d3268658] .vxe-table--render-default.border--inner .vxe-table--border-line {
  border: none;
}
.c-content[data-v-d3268658] .vxe-table--render-default .vxe-table--border-line {
  border: none;
}
.c-content[data-v-d3268658] .vxe-table .vxe-body--column.col-noneBorder {
  background-size: 0;
}
[data-v-d3268658] .vxe-icon--caret-top:before,[data-v-d3268658] .vxe-icon--caret-bottom:before {
  border-bottom-width: 0.4em;
  border-left-width: 0.3em;
  border-right-width: 0.3em;
}

.collect-card[data-v-04eee1d5] {
  background-color: #ffffff;
  border-radius: 0.1333rem;
  margin: 0.2667rem auto;
  padding: 0.4rem 0.37rem;
  position: relative;
}
.collect-card .card-header[data-v-04eee1d5] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.collect-card .card-header .title-ctn[data-v-04eee1d5] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-size: 0.43rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      height: 0.56rem;
      line-height: 0.56rem;
}
.collect-card .card-header .more-detail[data-v-04eee1d5] {
      width: 1.0667rem;
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
      height: 0.56rem;
      line-height: 0.56rem;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collect-card .card-header .more-detail .arrow-icon[data-v-04eee1d5] {
        margin-left: 0.0553rem;
}
.collect-card .card-foot[data-v-04eee1d5] {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.collect-card .card-foot .select-month[data-v-04eee1d5] {
      display: inline-block;
      border: 1px solid #999;
      color: #999;
      padding: 0.1067rem 0.1333rem;
      border-top-left-radius: 0.1067rem;
      border-bottom-left-radius: 0.1067rem;
}
.collect-card .card-foot .select-year[data-v-04eee1d5] {
      display: inline-block;
      border: 0.0267rem solid #999;
      color: #999;
      padding: 0.1067rem 0.1333rem;
      border-top-right-radius: 0.1067rem;
      border-bottom-right-radius: 0.1067rem;
      margin-left: -0.1067rem;
}
.collect-card .card-foot .active[data-v-04eee1d5] {
      color: #60b28e;
      border-color: #60b28e;
      background: #eff7f3;
}
.collect-card .card-foot .inactive-left[data-v-04eee1d5] {
      border-right: none;
}
.collect-card .card-foot .inactive-right[data-v-04eee1d5] {
      border-left: none;
}

.charts-ctn[data-v-6608c092] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.65rem 0 0.2133rem;
  height: 3.733rem;
}
.charts-ctn .left-charts[data-v-6608c092] {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
}
.charts-ctn .right-content[data-v-6608c092] {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding-top: 0.1067rem;
    color: #666;
    font-size: 0.32rem;
}
.charts-ctn .right-content .target[data-v-6608c092] {
      margin-bottom: 0.4267rem;
}
.charts-ctn .right-content .target .target-text[data-v-6608c092] {
        margin-bottom: 0.1067rem;
}
.charts-ctn .right-content .target .target-value[data-v-6608c092] {
        color: #333;
        font-size: 0.3733rem;
        font-weight: 600;
}
.charts-ctn .right-content .target .target-value .edit-png[data-v-6608c092] {
          width: 0.2933rem;
          margin-left: 0.1067rem;
}
.charts-ctn .right-content .target .target-value .blue-text[data-v-6608c092] {
          color: #3975c6;
}
.charts-ctn .right-content .target .target-value .gray-text[data-v-6608c092] {
          color: #999;
}
.charts-ctn .right-content .finish .finish-text[data-v-6608c092] {
      margin-bottom: 0.1067rem;
}
.charts-ctn .right-content .finish .finish-value[data-v-6608c092] {
      color: #333;
      font-size: 0.3733rem;
      font-weight: 600;
}
.charts-ctn .right-content .finish .finish-value .detail-ctn[data-v-6608c092] {
        font-size: 0.32rem;
        font-weight: 500;
        text-decoration: underline;
        color: #3975C6;
        margin-left: 2px;
}
.charts-ctn .right-content .finish .yellow-text[data-v-6608c092] {
      color: #60b28e;
}
.charts-ctn .right-content .finish .green-text[data-v-6608c092] {
      color: #f5ab32;
}

.input-ctn[data-v-42647cc4] {
  width: 90%;
  margin: 0 auto;
}
.van-dialog__header[data-v-42647cc4] {
  padding-top: 0.72rem;
}
.van-cell[data-v-42647cc4] {
  padding: 0.22rem 0.53rem;
  margin: 0.5rem 0;
  border-bottom: 0.0267rem solid #dedfe2;
  border-radius: 0;
}
.van-dialog__footer[data-v-42647cc4] {
  border-top: 0.0267rem solid #dedfe2;
}
.van-dialog__cancel[data-v-42647cc4] {
  border-right: 0.0267rem solid #dedfe2;
}
[data-v-42647cc4] .van-dialog__confirm,[data-v-42647cc4] .van-dialog__confirm:active {
  color: #5681fe;
}

.dialog-ctn[data-v-28fc663b] {
  padding: 0 0.4rem;
  height: 7.5rem;
  overflow-y: auto;
}
.dialog-ctn[data-v-28fc663b]::-webkit-scrollbar {
    width: 0 !important;
}
.dialog-ctn .static-ctn[data-v-28fc663b] {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    margin-top: 0.5rem;
    font-size: 0.32rem;
    font-weight: 500;
    color: #ffffff;
    padding: 0.36rem;
    height: 1.14rem;
    width: calc(100% - 0.72rem);
}
.dialog-ctn .static-ctn .static-data[data-v-28fc663b] {
      font-weight: 800;
      font-size: 0.37rem;
}
.dialog-ctn .static-ctn .static-data span[data-v-28fc663b] {
        font-size: 0.32rem;
}
.dialog-ctn .list-ctn[data-v-28fc663b] {
    margin-top: 0.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.dialog-ctn .list-ctn .item-ctn[data-v-28fc663b] {
      background: #F7F8FC;
      border-radius: 0.13rem;
      margin-bottom: 0.3rem;
      padding: 0.4rem 0;
      width: calc(50% - 0.14rem);
}
.dialog-ctn .list-ctn .item-ctn[data-v-28fc663b]:nth-child(odd) {
        margin-right: 0.28rem;
}
.dialog-ctn .list-ctn .item-ctn div[data-v-28fc663b] {
        margin-left: 0.4rem;
        font-size: 0.32rem;
        font-weight: 500;
        color: #666666;
}
.dialog-ctn .list-ctn .item-ctn .num-ctn[data-v-28fc663b] {
        font-size: 0.32rem;
        font-weight: 800;
        color: #333333;
        margin-top: 0.17rem;
}

.tabs-ctn[data-v-fe8eb29e] {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.tabs-ctn .tabs-list[data-v-fe8eb29e] {
    overflow-x: auto;
}
.tabs-ctn .tabs-list[data-v-fe8eb29e]::-webkit-scrollbar {
      display: none;
}
.tabs-ctn .tabs-list .tabs-item[data-v-fe8eb29e] {
      position: relative;
      height: 1.0667rem;
      line-height: 1.0667rem;
      display: inline-block;
      margin-right: 0.5333rem;
      color: #333;
      font-size: 0.32rem;
}
.tabs-ctn .tabs-list .tabs-item .item_line[data-v-fe8eb29e] {
        display: inline-block;
        width: 0.5rem;
        height: 0.08rem;
        background: #3975c6;
        position: absolute;
        bottom: 0.1rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        border-radius: 3px;
}

.collect-card[data-v-dd887e0c] {
  background-color: #ffffff;
  border-radius: 0.13rem;
  margin: 0.26rem auto;
  padding: 0.4rem 0.37rem;
  position: relative;
}
.collect-card .card-header[data-v-dd887e0c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.collect-card .card-header .title-ctn[data-v-dd887e0c] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      font-size: 0.43rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      height: 0.56rem;
      line-height: 0.56rem;
}
.collect-card .card-header .more-detail[data-v-dd887e0c] {
      width: 1.0667rem;
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
      height: 0.56rem;
      line-height: 0.56rem;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collect-card .card-header .more-detail .arrow-icon[data-v-dd887e0c] {
        margin-left: 0.053rem;
}
.collect-card .card-foot[data-v-dd887e0c] {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.collect-card .card-foot .select-month[data-v-dd887e0c] {
      display: inline-block;
      border: 1px solid #999;
      color: #999;
      padding: 0.1067rem 0.1333rem;
      border-top-left-radius: 0.1067rem;
      border-bottom-left-radius: 0.1067rem;
}
.collect-card .card-foot .select-year[data-v-dd887e0c] {
      display: inline-block;
      border: 1px solid #999;
      color: #999;
      padding: 0.1067rem 0.1333rem;
      border-top-right-radius: 0.1067rem;
      border-bottom-right-radius: 0.1067rem;
      margin-left: -0.1067rem;
}
.collect-card .card-foot .active[data-v-dd887e0c] {
      color: #f5ab32;
      border-color: #f5ab32;
      background: #fef6ea;
}
.collect-card .card-foot .inactive-left[data-v-dd887e0c] {
      border-right: none;
}
.collect-card .card-foot .inactive-right[data-v-dd887e0c] {
      border-left: none;
}

.notify-ctn[data-v-1ff750e4] {
  width: 8.27rem;
}
.notify-ctn .bg-ctn[data-v-1ff750e4] {
    background-color: rgba(0, 0, 0, 0);
    height: 1rem;
}
.notify-ctn .header-ctn[data-v-1ff750e4] {
    position: relative;
    height: 2.35rem;
    background-color: #3975c6;
    padding-left: 0.62rem;
    color: #fff;
    border-top-left-radius: 0.14rem;
    border-top-right-radius: 0.14rem;
}
.notify-ctn .header-ctn .first-title[data-v-1ff750e4] {
      padding-top: 0.7rem;
      font-size: 0.46rem;
}
.notify-ctn .header-ctn .second-title[data-v-1ff750e4] {
      font-size: 0.32rem;
      margin-top: 0.2rem;
}
.notify-ctn .header-ctn img[data-v-1ff750e4] {
      width: 3rem;
      position: absolute;
      right: 0.55rem;
      top: -0.97rem;
}
.notify-ctn .main-ctn[data-v-1ff750e4] {
    height: 8rem;
    background: #fff;
    position: relative;
    border-bottom-left-radius: 0.14rem;
    border-bottom-right-radius: 0.14rem;
}
.notify-ctn .main-ctn .main-content[data-v-1ff750e4] {
      height: 6.27rem;
      overflow-y: auto;
}
.notify-ctn .main-ctn .main-content .content-ctn[data-v-1ff750e4] {
        margin: 0.47rem;
        font-size: 0.38rem;
        color: #333;
        line-height: 1.8;
}
.notify-ctn .main-ctn .main-btn[data-v-1ff750e4] {
      width: 100%;
      height: 1.73rem;
      position: absolute;
      bottom: 0;
      text-align: center;
}
.notify-ctn .main-ctn .main-btn button[data-v-1ff750e4] {
        width: 5.57rem;
        font-size: 0.38rem;
        border-radius: 0.14rem;
        margin-top: 0.43rem;
        height: 0.92rem;
        background: #3975c6;
        border-color: #3975c6;
}
[data-v-1ff750e4].van-popup {
  background: unset;
}

.ranking-wrap[data-v-651057da] {
  background-color: #ffffff;
  border-radius: 5px;
  margin: 10px auto;
  padding: 0.4rem 0.37rem;
}
.ranking-wrap .ranking-top .top-title[data-v-651057da] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.ranking-wrap .ranking-top .top-title .top-title-l[data-v-651057da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.ranking-wrap .ranking-top .top-title .top-title-l span[data-v-651057da] {
        font-size: .43rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
}
.ranking-wrap .ranking-top .top-title .top-title-l img[data-v-651057da] {
        width: .27rem;
        height: .29rem;
        margin-left: .16rem;
}
.ranking-wrap .ranking-top .top-title .top-title-r[data-v-651057da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.ranking-wrap .ranking-top .top-title .top-title-r span[data-v-651057da] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
}
.ranking-wrap .ranking-top .top-title .top-title-r img[data-v-651057da] {
        width: .11rem;
        height: 7px;
        margin-left: 5px;
}
.ranking-wrap .ranking-nav[data-v-651057da] {
    width: 100%;
    border-radius: .27rem;
    background-color: #F7F8FC;
    margin-top: .37rem;
}
.ranking-wrap .ranking-nav .ranking-nav-item[data-v-651057da] {
      width: 100%;
      height: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow-x: scroll;
      scrollbar-width: none;
      /* firefox */
      -ms-overflow-style: none;
      /* IE 10+ */
}
.ranking-wrap .ranking-nav .ranking-nav-item[data-v-651057da]::-webkit-scrollbar {
        display: none;
}
.ranking-wrap .ranking-nav .nav-item[data-v-651057da] {
      border-radius: .27rem;
      padding: 9px .59rem;
      text-align: center;
      white-space: nowrap;
      font-size: .37rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #3975C6;
      position: relative;
}
.ranking-wrap .ranking-nav .item-active[data-v-651057da] {
      background: #3975c6;
      color: #fff;
      border-radius: 10px;
}
.ranking-list[data-v-651057da] {
  margin-top: .59rem;
}
.popup-title[data-v-651057da] {
  text-align: center;
  font-size: .43rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  margin-top: .48rem;
}
.popup-type[data-v-651057da] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-type .popup-type-border[data-v-651057da] {
    width: 4.37rem;
    padding: .37rem 0 12px 0;
    margin-top: .77rem;
}
.popup-type img[data-v-651057da] {
    width: 1.47rem;
    height: 1.36rem;
}
.popup-type span[data-v-651057da] {
    display: block;
    font-size: .32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-top: 8px;
}
.select-type[data-v-651057da] {
  background: #F8FBFF;
  border: 1px dashed  #4378BE;
  border-radius: 5px;
}
.popup-btn[data-v-651057da] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-btn button[data-v-651057da] {
    margin-top: .48rem;
    margin-bottom: .64rem;
    width: 4.37rem;
    height: 1.04rem;
    border: none;
    border-radius: 20px;
    font-size: .4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    padding: 0;
}
.popup-btn .popuop-btn-l[data-v-651057da] {
    background: rgba(67, 120, 190, 0.2);
    color: #4378BE;
    margin-right: .4rem;
}
.popup-btn .popuop-btn-r[data-v-651057da] {
    background: #4378BE;
    color: #ffffff;
}

.rankingList[data-v-07d5bbeb] {
  background-color: #ffffff;
}
.rankingList .rl-topbar[data-v-07d5bbeb] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.rankingList .rl-topbar .rl-top[data-v-07d5bbeb] {
      text-align: center;
}
.rankingList .rl-topbar .rl-top .rl-top-head[data-v-07d5bbeb] {
        width: 61px;
        height: 83px;
        position: relative;
        margin: 0 auto;
}
.rankingList .rl-topbar .rl-top .rl-top-head img[data-v-07d5bbeb] {
          width: 61px;
}
.rankingList .rl-topbar .rl-top .rl-top-head .rl-user-head .rl-user-head-bg[data-v-07d5bbeb] {
          width: 61px;
          height: 83px;
          position: absolute;
          bottom: 0px;
          left: 0px;
}
.rankingList .rl-topbar .rl-top .rl-top-head .rl-user-head .img-head[data-v-07d5bbeb] {
          width: 58px;
          height: 58.75px;
          position: absolute;
          border-radius: 50%;
          left: 50%;
          -webkit-transform: translate(-50%);
                  transform: translate(-50%);
          bottom: 1px;
          z-index: 1;
          -webkit-box-sizing: border-box;
                  box-sizing: border-box;
}
.rankingList .rl-topbar .rl-top .rl-top-head .rl-user-head-1 .rl-user-head-bg[data-v-07d5bbeb] {
          width: 70px;
          height: 94px;
          position: absolute;
          bottom: 0px;
          left: 0px;
}
.rankingList .rl-topbar .rl-top .rl-top-head .rl-user-head-1 .img-head[data-v-07d5bbeb] {
          width: 66.75px;
          height: 66.75px;
          position: absolute;
          border-radius: 50%;
          z-index: 1;
}
.rankingList .rl-topbar .rl-top .rl-top-sign[data-v-07d5bbeb] {
        margin: 0 auto;
        margin-top: 3px;
        height: .72rem;
}
.rankingList .rl-topbar .rl-top .rl-top-name[data-v-07d5bbeb] {
        font-size: .37rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
        max-width: 65px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.rankingList .rl-topbar .rl-top .rl-top-money[data-v-07d5bbeb] {
        font-size: .4rem;
        font-family: PingFang SC;
        font-weight: 800;
        color: #333333;
        margin-top: 3px;
}
.rankingList .rl-list[data-v-07d5bbeb] {
    margin-top: .64rem;
}
.rankingList .rl-list .rl-list-item[data-v-07d5bbeb] {
      background-color: #F7F8FC;
      border-radius: 5px;
      padding: .32rem .37rem .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .19rem;
}
.rankingList .rl-list .rl-list-item .item-left[data-v-07d5bbeb] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-num[data-v-07d5bbeb] {
          font-size: .4rem;
          font-family: PingFang SC;
          font-weight: 800;
          color: #999999;
          margin-right: .45rem;
          margin-top: .27rem;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-content[data-v-07d5bbeb] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-content .item-content-head[data-v-07d5bbeb] {
            width: 1.15rem;
            height: 1.15rem;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-content .item-content-head img[data-v-07d5bbeb] {
              width: 100%;
              height: 100%;
              border-radius: 50%;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-content .item-content-deal[data-v-07d5bbeb] {
            font-size: .37rem;
            font-family: PingFang SC;
            font-weight: bold;
            color: #333333;
            margin-left: 10px;
}
.rankingList .rl-list .rl-list-item .item-left .item-left-content .item-content-deal span[data-v-07d5bbeb] {
              margin-left: 2px;
}
.rankingList .rl-list .rl-list-item .item-right[data-v-07d5bbeb] {
        font-size: .37rem;
        font-family: PingFang SC;
        font-weight: 800;
        color: #548CDF;
        margin-top: .27rem;
}
.sign-1[data-v-07d5bbeb] {
  height: .56rem;
}
.sign-2[data-v-07d5bbeb] {
  height: .56rem;
}
.sign-3[data-v-07d5bbeb] {
  height: .56rem;
}
.sign-4[data-v-07d5bbeb] {
  height: .59rem;
}
.sign-5[data-v-07d5bbeb] {
  height: .67rem;
}
.sign-6[data-v-07d5bbeb] {
  height: .72rem;
}

.title[data-v-2269fcef] {
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.van-search[data-v-2269fcef] {
  padding: 0 15px;
}
.van-search > .van-search__content .van-cell .van-field__left-icon[data-v-2269fcef] {
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search > .van-search__content .van-cell .van-field__left-icon .search-icon[data-v-2269fcef] {
      width: 14px;
      height: 14px;
}
.van-picker[data-v-2269fcef] .van-picker__toolbar {
  position: fixed;
  bottom: 40px;
  width: 100%;
  left: 0;
  display: block;
}
.van-picker[data-v-2269fcef] .van-picker__toolbar .btn-box {
    padding: 0 7.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 20px 0;
}
.van-picker[data-v-2269fcef] .van-picker__columns {
  margin-bottom: 90px;
}
.van-picker[data-v-2269fcef] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
.van-picker[data-v-2269fcef] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
.btn[data-v-2269fcef] {
  width: 95%;
  text-align: center;
  padding: 10px 0;
  background: #d9e4f2;
  border-radius: 20px;
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #4378be;
}
.confirm_btn[data-v-2269fcef] {
  background: #4378be !important;
  color: #ffffff;
}
.empty-box[data-v-2269fcef] {
  padding: 100px 0 200px;
  text-align: center;
}

.chart-container[data-v-d3f19004] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.chart-container .c-top[data-v-d3f19004] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem;
}
.chart-container .c-top .c-top-l[data-v-d3f19004] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn[data-v-d3f19004] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 3px 9px;
      border: 1px solid #1967e8;
      background: #1967e8;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn .export-img[data-v-d3f19004] {
        width: 12px;
        height: 11px;
        margin-right: 4px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAsBAMAAADROCZUAAAAAXNSR0IArs4c6QAAACpQTFRFAAAA////////////////////////////////////////////////////hrvKLwAAAA10Uk5TAAgeLFdYXW+Dr8vv/pSieZkAAACVSURBVDjLY2AgAnA04JDovYFDw9272LX03r17A4cG7Fp6QRI3cGjApqUXInEDhwZMLb0wiRs4NKBr6UVI3MChAVVLL7IEshZBEBC7ezcRzEB3MevduwFYA3EAJGLvXsWUAAkOPwmm0FAFrBJowTHAErdmYoC1YAms4CqDL3aJKww22CUOM7DvxSZ+u4CBgVEQCxBgAACBRxqwTE4txgAAAABJRU5ErkJggg==);
        background-repeat: no-repeat;
        background-size: cover;
}
.chart-container .c-content[data-v-d3f19004] {
    padding: 0.4rem 0.4rem 0;
}
.chart-container .c-bottom[data-v-d3f19004] {
    width: 90%;
    margin: auto;
    padding: 0.4rem 0;
}
.chart-container .c-bottom .c-bottom-item[data-v-d3f19004] {
      border: 1px solid #e9ecf7;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0.3rem;
      border-radius: 7px;
}
.chart-container .c-bottom .c-bottom-item .c-b-i-l[data-v-d3f19004] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.chart-container .c-bottom .c-bottom-item .c-b-i-l img[data-v-d3f19004] {
          width: 0.4rem;
}
.chart-container .c-bottom .c-bottom-item .b-i-text[data-v-d3f19004] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        margin-left: 0.2rem;
}

.c-select[data-v-643c4a3c] {
  padding: 0 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select .c-select-l[data-v-643c4a3c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
}
.c-select .c-select-l .drop-l[data-v-643c4a3c] {
      margin-right: 0.63rem;
}
.c-select .c-select-r[data-v-643c4a3c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.c-select .c-select-r div[data-v-643c4a3c] {
      margin-right: 0.1rem;
}
.c-select .c-select-r img[data-v-643c4a3c] {
      width: 0.29rem;
      height: 0.29rem;
}

.chart-ctn .chart-main[data-v-f4e8af60] {
  height: 5.3333rem;
}
.chart-ctn .charts-legend[data-v-f4e8af60] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: .4rem;
}
.chart-ctn .charts-legend .charts-legend-item[data-v-f4e8af60] {
    text-align: center;
}
.chart-ctn .charts-legend .charts-legend-item .charts-legend-title[data-v-f4e8af60] {
      font-size: .32rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-ctn .charts-legend .charts-legend-item .charts-legend-title .charts-legend-tag[data-v-f4e8af60] {
        width: .1867rem;
        height: .1867rem;
        margin-right: .2133rem;
}
.chart-ctn .charts-legend .charts-legend-item .charts-legend-price[data-v-f4e8af60] {
      font-size: .48rem;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
}

.review_dialog[data-v-03ac2168] {
  width: 300px;
  background: #ffffff;
  border-radius: 20px;
}
.review_dialog .review_dialog-head[data-v-03ac2168] {
    padding: 30px 0 17.5px;
    position: relative;
    text-align: center;
}
.review_dialog .review_dialog-head .review_dialog-title[data-v-03ac2168] {
      font-size: 18px;
      font-weight: 800;
      color: #333333;
}
.review_dialog .review_dialog-head .review_dialog-close[data-v-03ac2168] {
      position: absolute;
      right: 0;
      top: 0;
      width: 57px;
      height: 58px;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAQ9JREFUSEvFlj0OwjAMhd/bGBAH4ERcg6W9AFRCAhZ+hOgFnEjcjYWZgQMEBQEKIW3TVIUOHVr1fbH9bJciMiF5AjACsMvz/IAOl4isSRYAriSnVEpdAIxfmiS3WZatUhha69IYM3O+PVvADcDQFUyBBMSt5JUisiC590/cBlIhbiUL2rvWemOMWaZAqsRfB3wAUiFN4lb3DWgLiRH/AsRCYsWDAPtQREqSrt0eabR5BTDwrPh+F7L3R4rcItc446tF6hxXCXimy2+cVuKVKYqNJKZXaiNoiqIzIKYOTZD/FFkpdQQwD42OzjaNmUvJjRYj7syuoIX9mvxm2LU5uV+XpnT1v3B6X5m9L/2+f1vuZPsZkvBX9SEAAAAASUVORK5CYII=) no-repeat;
      background-size: 12px;
      background-position: center;
}
.review_dialog .review_dialog-info[data-v-03ac2168] {
    text-align: center;
}
.review_dialog .review_dialog-info .review_dialog-text[data-v-03ac2168] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
}
.review_dialog .review_dialog-info .review_dialog-speText[data-v-03ac2168] {
      color: #1967e8;
}
.review_dialog .review_dialog-info .review_dialog-bg[data-v-03ac2168] {
      width: 269px;
      height: 300px;
      margin: 25px auto 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: url(https://oss.guango.com.cn/common/qw/applet/export-bg.png);
      background-repeat: no-repeat;
      background-size: contain;
}
.review_dialog .review_dialog-info .review_dialog-bg .review_dialog-btn[data-v-03ac2168] {
        width: 130px;
        height: 33px;
        line-height: 33px;
        margin-bottom: 18px;
        background: #1967e8;
        -webkit-box-shadow: 0 0 7px 1px rgba(25, 103, 232, 0.2);
                box-shadow: 0 0 7px 1px rgba(25, 103, 232, 0.2);
        border-radius: 16px;
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
}

.search-index-ctn[data-v-4f16bb81] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
  padding: 0 0.4rem;
}
.search-index-ctn .header-ctn[data-v-4f16bb81] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
}
.search-index-ctn .header-ctn .header-title[data-v-4f16bb81] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.search-index-ctn .header-ctn .export-more[data-v-4f16bb81] {
      font-size: 0.32rem;
      font-weight: 400;
      color: #999999;
}
.search-index-ctn .input-ctn[data-v-4f16bb81] {
    padding-bottom: 0.4rem;
}
.search-index-ctn .input-ctn[data-v-4f16bb81] .van-search {
      padding: 0;
}
.search-index-ctn .input-ctn[data-v-4f16bb81] .van-search__content {
      background: #f7f8fc;
      border-radius: 5px;
}
.search-index-ctn .input-ctn[data-v-4f16bb81] .van-field__control {
      font-size: 14px;
      font-weight: 500;
      color: #999999;
}
.search-index-ctn .input-ctn[data-v-4f16bb81] .van-field__right-icon .van-icon {
      color: #4378BE;
      font-size: 18px;
      font-weight: bold;
}
.search-index-ctn .main-list[data-v-4f16bb81] {
    padding-bottom: 8px;
}

.list-item[data-v-4b644a96] {
  padding: 15px 10px 1px;
  background: #F7F8FC;
  margin-bottom: 10px;
}
.list-item .item-top[data-v-4b644a96] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.list-item .item-top .top-l[data-v-4b644a96] {
      width: 1.2rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-right: 9px;
}
.list-item .item-top .top-l .top-l-img[data-v-4b644a96] {
        width: 1.2rem;
        height: 1.2rem;
        position: relative;
}
.list-item .item-top .top-l .top-l-img img[data-v-4b644a96] {
          width: 100%;
          height: 100%;
}
.list-item .item-top .top-l .top-l-img .tip-circle[data-v-4b644a96] {
          width: 0.21rem;
          height: 0.21rem;
          background: #DB1717;
          border-radius: 50%;
          display: inline-block;
          position: absolute;
          top: -2px;
          right: -2px;
}
.list-item .item-top .top-r[data-v-4b644a96] {
      width: calc(100% - 1.2rem - 9px);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list-item .item-top .top-r .top-r-top[data-v-4b644a96] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.list-item .item-top .top-r .top-r-top .top-l-info-top[data-v-4b644a96] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: baseline;
              -ms-flex-align: baseline;
                  align-items: baseline;
          margin-bottom: 5px;
}
.list-item .item-top .top-r .top-r-top .top-l-info-top .name[data-v-4b644a96] {
            font-size: 0.43rem;
            font-family: PingFang SC;
            font-weight: bold;
            color: #333333;
            margin-right: 0.09rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 2rem;
}
.list-item .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-4b644a96] {
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #666666;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-4b644a96] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #666666;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-4b644a96] {
          margin-right: 0.37rem;
          max-width: 40%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-4b644a96] {
            width: 0.3rem;
            height: 0.3rem;
            margin-right: 0.08rem;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom .people[data-v-4b644a96] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-4b644a96] {
            width: 0.23rem;
            height: 0.29rem;
            margin-right: 0.08rem;
}
.list-item .item-top .top-r .top-r-bottom .top-l-info-bottom .people span[data-v-4b644a96] {
            line-height: 10px;
}
.list-item .item-top .top-r .top-r-tip span[data-v-4b644a96] {
        font-size: 0.27rem;
        padding: 0.02rem 0.09rem;
        border-radius: 0.11rem;
        margin-right: 0.1rem;
}
.list-item .item-top .top-r .top-r-tip span[data-v-4b644a96]:last-of-type {
          margin-right: 0;
}
.list-item .item-top .top-r .top-r-tip .dell-cls[data-v-4b644a96] {
        color: #24B277;
        border: 1px solid #24B277;
}
.list-item .bottom-item[data-v-4b644a96] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    line-height: 10px;
    font-size: 0.32rem;
    font-weight: 500;
    color: #666;
    margin-left: 3px;
    margin-bottom: 15px;
}
.list-item .bottom-item .value-item[data-v-4b644a96] {
      color: #333;
}
.white-bg[data-v-4b644a96] {
  background: #fff;
}
.border-r[data-v-4b644a96] {
  border-radius: 12px;
}
.item-ctn[data-v-4b644a96] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.32rem;
  font-weight: 500;
  color: #333;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: .2667rem;
}
.item-ctn img[data-v-4b644a96] {
    width: 0.27rem;
    height: 0.28rem;
    margin-right: 0.1rem;
}

.chart-container[data-v-31799d96] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.chart-container .c-top[data-v-31799d96] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem;
}
.chart-container .c-top .c-top-l[data-v-31799d96] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn[data-v-31799d96] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 3px 9px;
      border: 1px solid #1967e8;
      background: #1967e8;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn .export-img[data-v-31799d96] {
        width: 12px;
        height: 11px;
        margin-right: 4px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAsBAMAAADROCZUAAAAAXNSR0IArs4c6QAAACpQTFRFAAAA////////////////////////////////////////////////////hrvKLwAAAA10Uk5TAAgeLFdYXW+Dr8vv/pSieZkAAACVSURBVDjLY2AgAnA04JDovYFDw9272LX03r17A4cG7Fp6QRI3cGjApqUXInEDhwZMLb0wiRs4NKBr6UVI3MChAVVLL7IEshZBEBC7ezcRzEB3MevduwFYA3EAJGLvXsWUAAkOPwmm0FAFrBJowTHAErdmYoC1YAms4CqDL3aJKww22CUOM7DvxSZ+u4CBgVEQCxBgAACBRxqwTE4txgAAAABJRU5ErkJggg==);
        background-repeat: no-repeat;
        background-size: cover;
}
.chart-container .charts-ctn[data-v-31799d96] {
    height: 200px;
    padding: 0.4rem;
}
.chart-container .c-bottom[data-v-31799d96] {
    width: 90%;
    margin: auto;
    padding: 0.4rem 0;
}
.chart-container .c-bottom .c-bottom-item[data-v-31799d96] {
      border: 1px solid #e9ecf7;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0.3rem;
      border-radius: 7px;
}
.chart-container .c-bottom .c-bottom-item .c-b-i-l[data-v-31799d96] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.chart-container .c-bottom .c-bottom-item .c-b-i-l img[data-v-31799d96] {
          width: 0.4rem;
}
.chart-container .c-bottom .c-bottom-item .b-i-text[data-v-31799d96] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        margin-left: 0.2rem;
}

.chart-container[data-v-daebfc6c] {
  background: #ffffff;
  border-radius: 10px;
  margin-top: 0.27rem;
}
.chart-container .c-top[data-v-daebfc6c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0.4rem 0.3rem;
}
.chart-container .c-top .c-top-l[data-v-daebfc6c] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn[data-v-daebfc6c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 3px 9px;
      border: 1px solid #1967e8;
      background: #1967e8;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.chart-container .c-top .export-btn .export-img[data-v-daebfc6c] {
        width: 12px;
        height: 11px;
        margin-right: 4px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAsBAMAAADROCZUAAAAAXNSR0IArs4c6QAAACpQTFRFAAAA////////////////////////////////////////////////////hrvKLwAAAA10Uk5TAAgeLFdYXW+Dr8vv/pSieZkAAACVSURBVDjLY2AgAnA04JDovYFDw9272LX03r17A4cG7Fp6QRI3cGjApqUXInEDhwZMLb0wiRs4NKBr6UVI3MChAVVLL7IEshZBEBC7ezcRzEB3MevduwFYA3EAJGLvXsWUAAkOPwmm0FAFrBJowTHAErdmYoC1YAms4CqDL3aJKww22CUOM7DvxSZ+u4CBgVEQCxBgAACBRxqwTE4txgAAAABJRU5ErkJggg==);
        background-repeat: no-repeat;
        background-size: cover;
}
.chart-container .active-item[data-v-daebfc6c] {
    padding: 0 0.4rem 0.3rem;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}
.chart-container .charts-ctn[data-v-daebfc6c] {
    height: 200px;
    padding: 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.chart-container .charts-ctn .charts-item[data-v-daebfc6c] {
      height: 200px;
      width: 50%;
}
.chart-container .charts-ctn .tips-ctn[data-v-daebfc6c] {
      width: 50%;
      padding-top: 10px;
      padding-left: 20px;
}
.chart-container .charts-ctn .tips-ctn .tips-item[data-v-daebfc6c] {
        margin-bottom: 20px;
}
.chart-container .charts-ctn .tips-ctn .tips-item .tips-one[data-v-daebfc6c] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-weight: 500;
          font-size: 14px;
          color: #333333;
}
.chart-container .charts-ctn .tips-ctn .tips-item .tips-one .circle-ctn[data-v-daebfc6c] {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-right: 6px;
}
.chart-container .charts-ctn .tips-ctn .tips-item .tips-one .number-ctn[data-v-daebfc6c] {
            font-weight: 800;
            font-size: 18px;
            margin-left: 10px;
}
.chart-container .charts-ctn .tips-ctn .tips-item .tips-two[data-v-daebfc6c] {
          font-weight: 400;
          font-size: 12px;
          color: #666666;
          padding-left: 12px;
}
.chart-container .c-bottom[data-v-daebfc6c] {
    width: 90%;
    margin: auto;
    padding: 0.4rem 0;
}
.chart-container .c-bottom .item-ctn[data-v-daebfc6c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 12px;
      margin-bottom: 14px;
}
.chart-container .c-bottom .item-ctn .left-ctn[data-v-daebfc6c] {
        color: #3975C6;
        border-radius: 4px 4px 4px 4px;
        border: 1px solid #3975C6;
        padding: 2px 7px;
}
.chart-container .c-bottom .item-ctn .right-ctn[data-v-daebfc6c] {
        color: #666666;
}

.dialog-ctn[data-v-e2ef942c] {
  background: rgba(255, 255, 255, 0);
  border-radius: unset;
}
.little-dialog[data-v-e2ef942c] {
  position: relative;
  text-align: center;
}
.little-dialog .dialog-main[data-v-e2ef942c] {
    border-radius: 5px;
    text-align: left;
}
.little-dialog .dialog-main img[data-v-e2ef942c] {
      width: 100%;
}
.little-dialog .dialog-main .bottom-ctn[data-v-e2ef942c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 10px 0 10px 10px;
}
.little-dialog .dialog-main .bottom-ctn .bottom-left .bottom-title[data-v-e2ef942c] {
        font-size: 18px;
        font-weight: bold;
        color: #333333;
        margin-bottom: 4px;
}
.little-dialog .dialog-main .bottom-ctn .bottom-left .bottom-sub-title[data-v-e2ef942c] {
        font-size: 14px;
        font-weight: 500;
        color: #666666;
}
.little-dialog .dialog-main .bottom-ctn .right-btn[data-v-e2ef942c] {
        background: #3975c6;
        border-radius: 5px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
}
.little-dialog .close-btn[data-v-e2ef942c] {
    width: 22px;
    height: 22px;
    margin-top: 30px;
}

.dialog-ctn .dialog-header-ctn[data-v-05631e1e] {
  text-align: center;
  position: relative;
  padding: 26px;
  font-size: 17px;
  font-weight: 500;
  color: #333333;
}
.dialog-ctn .dialog-header-ctn img[data-v-05631e1e] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
}
.dialog-ctn .main-select-ctn[data-v-05631e1e] {
  padding: 0 15px 10px;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row[data-v-05631e1e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 13px 0;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item[data-v-05631e1e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 20px 14px;
      margin-bottom: 10px;
      border-radius: 10px;
      width: calc(50% - 33px);
      margin-right: 10px;
      background: #5E809B;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-left[data-v-05631e1e] {
        font-weight: bold;
        font-size: 14px;
        color: #FFFFFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-left .left-top[data-v-05631e1e] {
          margin-right: 4px;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-left .state-btn[data-v-05631e1e] {
          background: #FFFFFF;
          border-radius: 5px;
          padding: 4px 6px;
          font-weight: 500;
          font-size: 12px;
          color: #333333;
          margin-left: 4px;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-right[data-v-05631e1e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-right img[data-v-05631e1e] {
          width: 4px;
          height: 7px;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row .select-item .item-right .icon-item[data-v-05631e1e] {
          width: 27px;
          height: 27px;
          margin-right: 3px;
}
.dialog-ctn .main-select-ctn .select-ctn .select-row > .select-item[data-v-05631e1e]:nth-child(2n) {
      margin-right: 0 !important;
}

.big-shop[data-v-553159c6] {
  background: #ffffff;
  border-radius: 0.18rem;
  padding: 17px 14px 4px;
  margin-bottom: 0.27rem;
}
.big-shop h4[data-v-553159c6] {
    font-size: 0.43rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 13px;
}
.big-shop .list-ctn[data-v-553159c6] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.big-shop .list-ctn .list-item[data-v-553159c6] {
      width: calc((100% - 13px - 46px) / 2);
      margin-right: 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 8px 15px 15px;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAADdFJREFUeF7tnUtsXcUZx/9z7vXr2kl4CRUUiIFILUisAhvYtN2wqCJB4rQLYIVoCLRsSlClotaoXdDa2bQqygO6AaSqLaQV6oJN2w0rYFWhUDXEBiGCaBsSx+/rc6cdN4nycPD8z5lz7sz1f6QsIs/9ZuY35/vm8X0zY1Akjdts9/D0vZnBNyzMDovO1wCz1QCbADSKiNRvREAERGCVgLXLMJixwGcG2QcG9r2OxV9fnxt9B+Omw1IyzA92TZ7YlsE8aYFHDXAT81vlFQEREIEyBCxw0gCvdGBffOOZ2z/yleVl5B6aOH5jwzSeB+xjgOnzFa58IiACIhCegG0D5uXc5j85un/75+vJX9fIPTT54cMNZL8EcN16wvR3ERABEaiRwKkcnaePPnPHa19W5lWN3I5D7/bdNnPDr2Hs4zVWWkWJgAiIAEfAmCNTI/9+6r2997TX+uGaRm7n+Ket/pGlNwzwAFeacouACIhA/QQs8Nby7MCuN8dvnr+89CuMnJvBjZ69/k0ZuPo7SiWKgAgUJ+AM3fSm/+y8fEZ3hZHbPXHisDFGS9TirPVLERCBLhGwxhx5/Qej3724+EuM3Dknw6tdqp+KFQEREIHSBHJ0HrnYGXHByJ0LEzkmL2ppxhIgAiLQXQKncpvfeT685IKRG5uYOgiDvd2tm0oXAREQgQAELA79Yf9tTzhJq0Zuzwsf3mqb5rgCfQPAlQgREIEICNi2WbHbf//DOz5eNXJjk1M/B/BsBDVTFURABEQgCAFr7cTr+29/1sAdth+Z/kRnUYNwlRAREIFICLizrnfPjm41Yy8cvw/NxtuR1EvVEAEREIFwBFby+83uA9M/Mtb+LJxUSRIBERCBOAhYY54zeyanjlrgwTiqpFqIgAiIQDgCBvijGZuceh/AXeHESpIIiIAIxEHAWhxzRu4LANfEUSXVQgREQASCEjhtxian24BtBhUrYSIgAiIQB4HczeRsHHVRLURABEQgPAEZufBMJVEERCAiAjJyEXWGqiICIhCegIxceKaSKAIiEBEBGbmIOkNVEQERCE9ARi48U0kUARGIiICMXESdoarEQ6CZAZtajXgqFKAm1gKdjkU7t1hsW7j/F019DYORoazoz2v9nYxcrbhVWCoE+hsGw4kocRGmzsAtLHew1C5m6QaaBq1BGbki7PUbEYiCwECfQWsgDSUuA2xhqbM6q2PTUL/BYH8afDSTY3tX+TcEgZSUuGyHnJ3vYKXDGTo3ALiBIIUkI5dCL6mOtRMYHsjQn4gSl4WzklucXehQYkYGM/Q1ZeQoaMosAjERSEmJQ3A7M5eDmcxtHsrQaMjIhWAvGSLQFQKbWxkaWRpKHALQ3GIHyyv+S9ZrhhswieDRcjXEFyIZPUcgJSUOAZ91QFw7kk54jYxciC9EMnqKgJugXJOQEoeAP7/YwZLnTM5NcLcMy8iF4C4ZItAVAqkpcQhIswud1SBhn5RaoLRmcj69qjwbikCzYbCphwOB1+rMs/M5VjwdrP1Ng+FEAoFdW2XkNpT6qrE+BFJTYp82rZeH8a4O9hkMJRQoLSO3Xu/r7xuOAKvELs7M/YslZcbQMX6nZ3P4toANlM7deVnP/b4qGMrIVUFVMpMm0Oo3GCCOLLGeyarhsMttd4719FzuXS02UHpxuYOFZV8T6l0N74wyct6olHGjEHD7TW7J6pvYGDNfuUXzscttdzPJmXnPDTlgdb/SGVLf1O1BQEbOt6eUb8MQYJWY8UzWAbHIcps51rWllSEjAqW7PQjIyNXx1amMpAiwSjwznyP3nwhVzoJdbrv9stlF/wawgdLOgHZzz1JGrvJPTgWkRoBVYrefVeYCytB82OW2u1NufsnPyBUJlJ6Zy9FNv4yMXOgvTPKSJuDOYzoj55vYTXtfuWXyscttxjHQyIDN5I3JjOe2TLuv9lsZuSqoSmayBFglZjft6wDDLrfdLM73hmD22vMYBgEZuTq+OpWRDAFWiYvcxVY1DHa5zTgGqvbcVsFGRq4KqpKZLAH27QJ2074OMM5QM8ndCuy7p1i155apt29eGTlfUsq3IQgM9hsMEYHAS+0O5pe6F+had6ew1567O+rcTLGbSUaum/RVdnQEWCXudqBr3QDZG5MZp0ZVbZGRq4qs5CZJgFVi5h62JIFcVmn22vMYBgEZuV748tSGYARYJY7ttEMwEFcRxHpuGadGVXWXkauKrOQmSYD1TMZ22qFq6Ne6GELCr9Ht0w6Oh4xc1V+F5CdFgH27ILbTDlXCLnJjcgyDgIxclV+FZCdFgFXiGAJd6wTMBkq7unX7tINmcnV+ISoregLs2wUxnnaoEjIbKB3LIKCZXJVfhWQnRYCN5o/xtEOVwAf6DFyIjW+KZRCQkfPtMeXreQKsEsd42qHKTmKvPY9lEJCRq/KrkOykCLBKzFxRlBSIq1SWvfY8htMO2pPrhS9PbQhGgFXiheUOFku+XeA287uZmMs+2UDppeUO5kvyCcFGM7kQFCWjJwiw97CVPe3AenOrgPzFrP8DNptbGRrEtecxnHbQTK6Kr0YykyXAKnHZ0w7NhnsUxv+CztBgWe8nGygdw2kHGbnQX43kJU2AVeKyga6sNzc0XPce6oznK11Frj0vOwiEaq+Wq6FISk7SBIoocdnTDuzdbKEBM97PIkvrsoNAqPbKyIUiKTlJE6Cj+S3wBfEg81pwWG9uaMDLbYs5zwds2AerXV3LDgKh2isjF4qk5CRNgI3mDxHoyr6qFRowc9cbu7Rm9/tCt+1ieTJyVdKV7GQIsEqc5xYzC+VuvGW9uaFhMt5PdmkdYhAI1V4ZuVAkJSdpAqwShzjtwN7NFhow4/1kl9bMfl/odl0uT0auasKSnwSB1oDBQJ9/ZG6I0w6sNzc0SOauN3ZpHctpB8dMRi70lyN5SRJglbjsaQf2EesqoDLeT3ZpHdMDPzJyVXw9kpkcAVaJy552oL25FRBlvJ/s0prZ76ugaZeIlJGrmrDkJ0GAVeKyga6sNzc0RNb7yS6tmf2+0G3TnlzVRCU/SQLs2wXMUm8tIFkGsI9AfxlY5x12sWy+ifF+Fllalx0EfNvhk08zOR9KytPTBIoo8Zm5HJ2I3pRmbwhhvJ9FltZlB4GQH5yMXEiakpUkAVqJA5x2CA2KfUqRCYEpsrRm9vtCs9BytWqikp8cAVaJOx3gzLz/FUV1AGH3zJgQmIGmQWvQP7yG3e+rmo9mclUTlvzoCbBKHOK0Q0goRS4XYEJgBvsNhvr9jRyz3xeSw9VkycjVQVllRE2AjeZnlnp1NJxebgNgQmDc4zXu/QvfxOz3+cosk09Grgw9/bYnCLBKzCz16gDELrddnRjvJ+vUiG0QkJGr4ytUGVETYJWYWerV0XB2ue3qxHg/WadGTKcdXFudkVsEMFBHZ6gMEYiRAKvEzFKvjvayy21XJyYEZkurARfX55tiOu0AIDdjk9P/AuwNvg1QPhHoNQKsZ5JZ6tXBin1lzNWJecDm2hHuHYrIBoHTbib3PoC76ugMlSECMRJglZhZ6tXRXvbcLRPiUeTa85gGAWtxzOyZnDpqgQfr6AyVIQKxESiixMxSr472sudumRCYZgZsanEzuagGAYs/mV2TJ57LYH5aR2eoDBGIjUARJWaWenW0l11uM97P/obB8BCxIRfR2w6OvTXmOTN2YPo+WPt2HZ2hMkQgNgLsteexnXYocu6WecDGxce5EBvvFNuRt5X8fjM+brO/j0x/YoCbvBuijCLQIwTYa8+ZpV4diIoEAjMP2LCe25hOO1jg5N2zo1tXw5h3T5z4hTFmfx2dojJEICYCRZTYXe0dS8oyAzcbZRIT4sF6bjvWws0UY0gWmHj16dFnV+nseeHDW23THAdMXwyVUx1EoC4CrBLXVa8qy2EutGQDpausNyfbto3p2354780fXxgCxiamDsJgLydIuUUgbQJs+EXarf1/7ZkHbDa3MjScCzq1ZO2hI/u2PeGqfaH2D00cv7FhGscAXJdae1RfEShKgA2/KFpOTL+bmcuRe64oWc9tJO081bD9dx7c95XPLzFy7j9jk9MPA/bVSCqqaohA5QQSVeJSXE7P5vC0cWADpUtVLNSPrXnkyL5bXjsv7op56O4D04eNtY+HKk9yRCBmAkkqcQmgzGmHIuEpJaoW5KfW2pde2rftEvt1hZHbcejdvtGz179pgAeClCohIhAxgS3DGTKnzRsksSEeic103zLm852H997Tvrg71+zdneOftgZGln8H2G9tkL5XMzcogXS9h8U6jL3QMh3HjPmzMY1vH9578/zlZK46hH193DavH5n+lQFWPRRKItCLBIpcOJkyBxfj50JIfBN94sFXcNh8B//52S3f/9u4WVlL7Lrz9D0Hpr5jLV6U1zVsr0haPATSma2UZ1bkQsuIw0hOweKpI/tu/e2XkVnXyLkfnwsveR6wjylguPyHJglxEXBhYM7QudMDvZ6Y0w7nWbijY46PiWbv0rZh8ZtFtH/8yr7tq2EipY3ceQG7Jk9sy2CetMCjOuu6Hlr9PSUCzr4ND2bUK/Qpte98XYteaOkMnePT5cDgkzDmlU67/eLL37v9I1/+xYau/x3q3z08fa9B55sWZgcMvgoYdxB2EwDu8infmiqfCNRAwJ0Ddf+aDYNoJi4B2132Qkv3nkRf9XxcrPJZWHxiYP8Bg/dWTPaXbSe3vjM+bvw3FM9x+y+R/YP5M2Nk5gAAAABJRU5ErkJggg==);
      background-size: 100% 100%;
      border-radius: 10px;
      margin-bottom: 13px;
}
.big-shop .list-ctn .list-item .item-left[data-v-553159c6] {
        font-weight: 800;
        font-size: 12px;
        color: #FFFFFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.big-shop .list-ctn .list-item .item-left img[data-v-553159c6] {
          width: 20px;
          height: 20px;
          margin-right: 6px;
}
.big-shop .list-ctn .list-item .item-right[data-v-553159c6] {
        color: #fff;
        font-size: 8px;
}
.big-shop .list-ctn .second-item[data-v-553159c6] {
      margin-right: 0;
}
.big-shop .list-ctn .bg2[data-v-553159c6] {
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATkAAABkCAYAAAD9hkdsAAAAAXNSR0IArs4c6QAADf5JREFUeF7tnU2MHMUVx/+vZ2ZndtfrLwwSkQUXpASDLHstLnAJuXAAR8iSyQHIBREjUHILl6DEKLkk3BIFYUhyCCBFOwkkQjnYiiAXTsgmQnGcSFxABkfEWX/u7O7MTr/QA3b8sbD1uqu7q2b/fZ3qV69+U/W6q99HCXJcehDJ+Tt33tVIG/cmgj2q8jUItgOYAdDIIZK3kAAJkMDnBLSvKucF+LeI/jNVHB0mw7c2/v29d+QgUismsdyw+OruW3VCnlTgUQA3W+5lWxIgARIoSOCUAC9LX5+ffPjdD1xlORm5C7/deVMy2XgWKo9B0HIVznYkQAIk4J2AYgDRX6eLwx/NfPu9T9aSv6aRu9jd9TAgPxfI1rWE8XcSIAESqI6Aziv0exv2/+3VL+vzC42cHtrT6m3VXwJ4vDql2RMJkAAJmAm8NDUvT8mBo4PV7lzVyH18aM/Upi36GgT3mbvjDSRAAiRQNQHF4XNnZN9XDhztXdv1dUZu9Aa3Rd+ggav6X2J/JEAChQgoDk+dkb3XvtFdZ+QWurMvcotaCDVvJgESqI/AS9P7j33nyu6vMnKZk0GQvFKffuyZBEiABIoRUKSPXOmMuGzkPg8TOfGpJ5Ve1GKMeTcJkECtBHQ+bQxvn9n3WXjJZSO30N39AiAHatWNnZMACZCAFwJ6aHr/u09cNnKLcztuSdF5n4G+XuhSCAmQQN0EFIMES7dNPvSPD0dvcr3u7E8VeLpuvdg/CZAACfgioIrnNjx07GnJku17d8yeZC6qL7SUQwIkEAiBU1PHj22X891ddzeQvB2IUlSDBEiABLwRGCK9RxZ+P/sDKH7iTSoFkQAJkEAoBATPyMLc7OsQPBiKTtSDBEiABLwRUPxRFrqzxwHs8CaUgkiABEggEAKqOJEZuTMANgeiE9UgARIgAZ8EzkqvOztQoOlTKmWRAAmQQCAEhtmbnAaiDNUgARIgAe8EaOS8I6VAEiCBkAjQyIX0b1AXEiAB7wRo5LwjpUASIIGQCNDIhfRvUBcSIAHvBGjkvCOlQBIggZAI0MiF9G9Ql3AISBPS2RKOPj40UQV0CB32geEioObD6P+vRTIBaW/yoVXpMmjkSkfMDqIkkLQh7Y1Rqu6ktCp0cBEYLjk1v65RowOZmMl3b8V30chVDJzdRUKgMQmZ2BCJsvnVHBm6lUW7gOYUpDVtv6+GO2jkaoDOLiMg0JyGtKYiULSgitkbXf8ckK56LvMXC2/NQJqdgp1XczuNXDWc2UtsBCJaxEXRambgls/axExsgjQmbPfU1JpGribw7DZwAhEtYh8kdWl+5JRwvaS9BUjiSHmnkXP9V9luXRGQ9lYgaaybMWv/PDBcdh6vdG4AJHFuX2dDGrk66bPvYAlIZxsgV529HqyuPhSzOSAEMrnNR7eVyKCRqwQzO4mLQFyL2Adb7V9wDyeRBqQTzxn0NHI+ZghljBeByBaxD/i6fB5IHberSQvSjqfOLo2cjxlCGeNFILJF7AO+Zt5V1zCSRhsyEU+gNI2cjxlCGeNFILJF7AO+ybsaWaA0jZyPGUIZ40XAGM2v6Yr7W1AlpMQcqKuLpwE4FglvTUOa7oHSdfOhkatk0rGTqAi0NkCak84q62ABWOk5ty+9oXW7nWU9LGVGzvFqbYQ0246NAc3SxrL0sZouGrmawLPbgAlMbIQ0DIvY4pmsYtjW7XY6hC7PO2smE5uBRsu5vS08xVmsc0MaOWdUbLheCJgX8XKW+9kPB49xu505HEaOB8fLGihtDTR2VMO5GY2cMyo2XC8EzIt46Uy2JwsHj3W7nWU6ZBkPjpc1UNrkuXXUwdKMRs5Ci23XBQHzIl78L4ACBSh9U7Vut1eWgMEFRy3sgdImz62jFpZmNHIWWmy7DggkkMkb3Mdp/WjvLjl3S/N2e9ADVhbc+ssRKG3y3LppYWpFI2fCxcZjT8Ba9tz40b4Kfubtdj+rEOxYONNa9jyAhwCNXBWzjn3EQ8C6iI0f7asAYd5uWyqQWMueB/AQoJGrYtaxj3gIGBexGj/aVwIiMRazHKVzOQYCWz23wwG07+65LYMPjVwZVCkzXgLGRVx3oGvloK2e25VlYODuuS1jPDRyZVClzHgJGMueB5ftUDZ5s+e23myHDAeNXNmTgvLjImAse26qwxYXiVW1tZY9D+EhQCM3BhOPQ/BHwLyIQ8t28IdidSNnLHsewkOARq7kSUHxcRGwnl2goWU7lIzb7Lm11KkrSXcauZLAUmycBKRzI2A42kFDy3YoFbsxUDrz2RpPAStDfRq5MqhSZpwEJMHoTc71CiDQ1VVVL+2sgdKZkbPUqfOi5PVCaORKAkuxERKw1mFLU+hylre6Ti5roHQgDwEauXUyPzlMBwJJG9I2nF0QYLaDwyjzN7GWPQ8g2yEbLI1c/r+cd44bAeMiDjLbocz/pDkNabmXPUcA2Q40cmVOCMqOj4BxEa+/bIcZ09kRoTwE+CYX31KkxmURqCPbQRpljcZNrg7d2mWtrIHSNZ/tcGlgNHLufzFbjjkBcx22omc75KjN5vsvsHg/zYHSgRzwQyPne9ZQXrQEzHXYimY7WL25vskavZ/mQOCiDwFP46WR8wSSYuInYF7ERbMdrKdq+UZs8n7mKHte9CHgabw0cp5AUkzsBHIs4qLZDkZvrnfCFu9njq11KClvNHLeZw4FRknAuoiNW71VmRhrs/nmqpYDbHJsrS3f+3yP7Up5NHJl0qXseAhYF7Gm0KWC2Q7Gk+h9w9SVHpA5B1wu69bax0PARS+HNjRyDpDYZB0QMJY9R7oCXT5TCIzVm1uos1VuNp1sb91am773+R7Z1fJo5MrlS+mxELCWPfdwtoPVm+sbpelke+vW2vK9z/fArpFHI1cyYIqPhIBxEfvIdrB6c32TNJ1sb9xah5LtkDGjkfM9cygvTgLWswsKB7ravbm+wVpqvVm31j4eAr7GSyPniyTlRE1A2puBpOU8hsJlvXPUZnNWzrGhxftp3VqHcLbDJQw0co4Tgs3Gm4B5ERcNdLXWZvON3+j9tG6tCz8EPI6XRs4jTIqKl4B5ERfNdsgS8xvGQ6C/DG8W4mF4E4XJ+2nfWmvRh4DHqUQj5xEmRcVKIMfZBUWzHXyjMlYIgaXgZ46tdSjZDnQ8+J5olBcnAesiNm71qoBirhBiCYHJsbUO6YAfvslVMQPZR9gErIvYR7aDZyLm7bal1ps1UDqwhwCNnOfJRnERErAuYg/ZDn4p5fhmZgmBMQZK2773+SWxmjQaufIZs4fQCRgXsQ77QP9cOKOyFhfIjgq01HozBkqbvvdVQJFGrgLI7CJwAtay55atXhVDt263MyNn8X4anRohZTvQ8VDFBGQf4ROwLmLLVq+K0Vu326OT7c8AuuKkndmpEdhDQHrd3UsKaTuNlo1IYAwJmBexZatXBS/jdjtTaVQmSlMn7aRzAyCJU9uR7LAeAsNsu/ofANucR8CGJDBmBMyL2LLVq4KVcbs9MkSL2bJ3u6RzIyBubUeyw3oInM2M3HEAO9yHwJYkME4EcngmDVu9SkgZt9vZG5xzwU9JMHoIGC7T9z6D3FxNFSdkYW72dQgezCWAN5FA7ATyeCYNW70q8Fjzbk0FP62B0sbvfeXz0T/JQnf3M4D8uPzO2AMJBEjAXPZcoUungxqIORDYEgKTtCHtjabxhpTtAMEz0uvuuluRvG0aBRuTwLgQMJ9dYNjqVcIoR96t5QAba9nzwLIdhkjvET2IpHfH7EkAN1fyn7ATEgiJgHURh5btkGc7OegBK44H2DSnIa0p938sTaHLBQ/4ce9trZanpo4f2z7ymVycm/2ZCL6/1h38nQTGjkBrGtI0LGIdYpTxEMqVOQYatggw7V8EhotuI7B6bjOnRpb8H8AlGD439eDbT4+M3OLcjltSdN6HwL00agCDoAokUJiA8eyCwv0FIMB0gI3VcxvA+D5TQQeSprdNfvMvH16Oflno7n4BkAPB6EhFSKACAtazCypQqfQuLAfYmD23pWvv1oFCD00/cOSJrPVlI3fhtZ03JcPGCUC2uolhKxKIn0Csi7gIedMBNp1tgBgigYso5u/e+WFLb5+578gnVxm50ba1u+vhFMkr/vqiJBIIm4A1/CLs0bhp536AjT1Q2k2DcluJ6iOTe4+8eqmX60z0Qnf2RQCPl6sGpZNAGARk8sYwFKlKC1OIR3xGThW/mt57+Cr7dZ2R00N7Wr0t+gYE91XFnf2QQF0ErHmrdenprV/TATZATG+6AhzufHR6rxw4OriS16qb7Y8P7ZnatFXnANzvDS4FkUCIBKL1HuaEORxA+2fdb25vtp0C5i7Za0sB/tzR0w/J3qO9awV/4RdFfevrzd7pc78AZOSh4EUCY0mgMQGZ2DSWQ1ttUOaCltZg6RpIiuCFztTyd+Xev65aIG9Nt0lvbvZbKvo8va41/HvsshoCkbyt+ICheQpatrdAkqaP7n3LmAf0qakHjvzuywSvaeSymz8PL3kWKo8xYNj3/0R5tRPIsgbamz+tU9GoXZWyFchV0DKr1DLi4144s9xx6ECB36R9/HBm32dhIoWN3CUBi3/Yfaum8qQCjzLXdS20/D0qAtkCntgYxfenIlxzF7TMHgAjPrW+0Z2C4GXB4PnJ+9/8wJWD05vctcKypP7FO3felWryDVHZA8hXIdgOYAbA+D8OXemyXXwEsjzQ7MyEbDEH8+biD2PhgpaNDpBVbimXz1BVL0BwUhT/SoGjSYI3J9858o4chFvN9iuQ/Q99KRhJFxliuQAAAABJRU5ErkJggg==);
      background-size: 100% 100%;
}

@charset "UTF-8";
.list-container[data-v-7ed70d92] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list-container .list-wrap[data-v-7ed70d92] {
    width: 100%;
    height: 100%;
}
.list-container .list-wrap .top-content[data-v-7ed70d92] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list-container .list-wrap .top-content .search-box[data-v-7ed70d92] {
        width: 100%;
}
.list-container .list-wrap .top-content .search-box[data-v-7ed70d92] .van-field__control {
          font-weight: 500;
}
.list-container .list-wrap .top-content .add-box[data-v-7ed70d92] {
        width: 1rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap[data-v-7ed70d92] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-right: 0.4rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap img[data-v-7ed70d92] {
            width: 0.5rem;
            height: 0.5rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap div[data-v-7ed70d92] {
            white-space: nowrap;
            -webkit-transform: scale(0.9);
                    transform: scale(0.9);
            font-size: 0.27rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
}
.list-container .list-wrap .content-content[data-v-7ed70d92] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list-container .list-wrap .content-content .content-filter[data-v-7ed70d92] {
        width: 100%;
        height: 2.5rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap[data-v-7ed70d92] {
          overflow-y: hidden;
          padding: 0.52rem 0 0.4rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter[data-v-7ed70d92] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.4rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .month-filter[data-v-7ed70d92] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box[data-v-7ed70d92] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box span[data-v-7ed70d92] {
                margin-right: 0.09rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box .show-img[data-v-7ed70d92] {
                width: 0.17rem;
                height: 0.12rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-7ed70d92] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            padding-bottom: 40px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-7ed70d92]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list-container .list-wrap .content-content .list-content[data-v-7ed70d92] {
        z-index: 2;
        width: 100%;
        height: calc(100% - 2.5rem);
        background: #f7f8fc;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.list-container .list-wrap .content-content .list-content .list-total[data-v-7ed70d92] {
          height: 1rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          padding: 0 0.41rem;
          line-height: 1rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap[data-v-7ed70d92] {
          width: 100%;
          height: calc(100% - 1rem);
          overflow-y: scroll;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list[data-v-7ed70d92] {
            width: 100%;
            height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item[data-v-7ed70d92] {
              background: #fff;
              margin: 0 10px;
              margin-bottom: 0.19rem;
              border-radius: 7px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap[data-v-7ed70d92] {
                padding: 15px 10px 0 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top[data-v-7ed70d92] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  margin-bottom: 0.32rem;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l[data-v-7ed70d92] {
                    width: 1.2rem;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    margin-right: 9px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img[data-v-7ed70d92] {
                      width: 1.2rem;
                      height: 1.2rem;
                      position: relative;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img img[data-v-7ed70d92] {
                        width: 100%;
                        height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img .tip-circle[data-v-7ed70d92] {
                        width: 0.21rem;
                        height: 0.21rem;
                        background: #DB1717;
                        border-radius: 50%;
                        display: inline-block;
                        position: absolute;
                        top: -2px;
                        right: -2px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r[data-v-7ed70d92] {
                    width: calc(100% - 1.2rem - 9px);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                            flex-direction: column;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top[data-v-7ed70d92] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      -webkit-box-align: center;
                          -ms-flex-align: center;
                              align-items: center;
                      -webkit-box-pack: justify;
                          -ms-flex-pack: justify;
                              justify-content: space-between;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top[data-v-7ed70d92] {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: baseline;
                            -ms-flex-align: baseline;
                                align-items: baseline;
                        margin-bottom: 5px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .name[data-v-7ed70d92] {
                          font-size: 0.43rem;
                          font-family: PingFang SC;
                          font-weight: bold;
                          color: #333333;
                          margin-right: 0.09rem;
                          overflow: hidden;
                          text-overflow: ellipsis;
                          white-space: nowrap;
                          max-width: 2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-7ed70d92] {
                          font-size: 0.32rem;
                          font-family: PingFang SC;
                          font-weight: 500;
                          color: #666666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-7ed70d92] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      font-size: 0.32rem;
                      font-family: PingFang SC;
                      font-weight: 500;
                      color: #666666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-7ed70d92] {
                        margin-right: 0.37rem;
                        max-width: 40%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                            -ms-flex-align: center;
                                align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-7ed70d92] {
                          width: 0.3rem;
                          height: 0.3rem;
                          margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people[data-v-7ed70d92] {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                            -ms-flex-align: center;
                                align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-7ed70d92] {
                          width: 0.23rem;
                          height: 0.29rem;
                          margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people span[data-v-7ed70d92] {
                          line-height: 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip span[data-v-7ed70d92] {
                      font-size: 0.27rem;
                      padding: 0.02rem 0.09rem;
                      border-radius: 0.11rem;
                      margin-right: 0.1rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip span[data-v-7ed70d92]:last-of-type {
                        margin-right: 0;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip .pay-cls[data-v-7ed70d92] {
                      color: #3975C6;
                      border: 1px solid #3975C6;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip .dell-cls[data-v-7ed70d92] {
                      color: #24B277;
                      border: 1px solid #24B277;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .company[data-v-7ed70d92] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: baseline;
                      -ms-flex-align: baseline;
                          align-items: baseline;
                  margin-bottom: 0.2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .company img[data-v-7ed70d92] {
                    width: 0.27rem;
                    height: 0.28rem;
                    margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .company span[data-v-7ed70d92] {
                    line-height: 10px;
                    font-size: 0.32rem;
                    font-weight: 500;
                    color: #333;
                    margin-left: 3px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address[data-v-7ed70d92] {
                  width: 100%;
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  margin-bottom: 0.27rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address img[data-v-7ed70d92] {
                    width: 0.29rem;
                    height: 0.35rem;
                    margin-right: 0.13rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address div[data-v-7ed70d92] {
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    font-size: 0.32rem;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #333333;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips[data-v-7ed70d92] {
                  width: 100%;
                  overflow: hidden;
                  margin-bottom: 0;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips .tips-item[data-v-7ed70d92] {
                    width: 53px;
                    white-space: nowrap;
                    padding: 4px 11px;
                    background: #eeeeee;
                    border-radius: 15px;
                    margin-right: 3px;
                    float: left;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    text-align: center;
                    color: #666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .line[data-v-7ed70d92] {
                width: 100%;
                height: 1px;
                background: #f7f8fc;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap[data-v-7ed70d92] {
                padding: 0.27rem 10px;
                font-size: 0.32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #999999;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
/* 搜索框 */
.van-search[data-v-7ed70d92] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-7ed70d92] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-7ed70d92] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-7ed70d92] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-7ed70d92] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-7ed70d92] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-7ed70d92] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7ed70d92]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7ed70d92]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7ed70d92]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7ed70d92]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.green[data-v-7ed70d92] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-7ed70d92] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.delete-button[data-v-7ed70d92] {
  width: 100%;
  height: 100%;
  border: none;
  background: #3975c6;
  color: #fff;
}
.finished-text-box[data-v-7ed70d92] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.finished-text-box .bottom-line[data-v-7ed70d92] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-7ed70d92] {
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}
.guide-class[data-v-7ed70d92] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  padding: 0.11rem 0.28rem;
  border-radius: 5px;
  color: #666666;
  font-size: .32rem;
  width: 1.4rem;
  margin-left: 0.4rem;
  margin-bottom: 0.2rem;
}
.guide-class img[data-v-7ed70d92] {
    width: 0.19rem;
    height: 0.13rem;
    margin-left: 0.1rem;
}
.changeClose[data-v-7ed70d92] {
  margin-left: 0.4rem;
}
.changeClose .changeClose-wrap[data-v-7ed70d92] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    max-width: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 0.11rem;
    margin-bottom: 0.2rem;
    color: #666666;
    font-family: PingFang SC;
    font-size: .32rem;
}
.active[data-v-7ed70d92] {
  color: #3975c6 !important;
}
.popup-wrap[data-v-7ed70d92] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-7ed70d92] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-7ed70d92] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-7ed70d92] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-7ed70d92] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-7ed70d92] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-7ed70d92] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-7ed70d92] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-7ed70d92] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-7ed70d92] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-7ed70d92] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-7ed70d92] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-7ed70d92] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: Source Han Sans CN;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-7ed70d92] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-7ed70d92] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-7ed70d92] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}

.dropDown-container[data-v-66b08b1c] {
  position: relative;
}
.dropDown-container .show-content[data-v-66b08b1c] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dropDown-container .show-content .show-text[data-v-66b08b1c] {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #666666;
      margin-right: 0.09rem;
}
.dropDown-container .show-content .show-img[data-v-66b08b1c] {
      width: 0.17rem;
      height: 0.12rem;
}
.dropDown-container .value-content[data-v-66b08b1c] {
    width: 100%;
    max-height: 4rem;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
    background: #fff;
    border-radius: 0 0 15px 15px;
    position: fixed;
    left: 0;
    overflow: hidden;
    z-index: 10;
}
.dropDown-container .value-content .value-content-wrap[data-v-66b08b1c] {
      overflow-y: scroll;
      max-height: 3.4rem;
      width: 100%;
      margin-top: 0.44rem;
      padding-bottom: 0.2rem;
}
.dropDown-container .value-content .value-content-wrap .drop-item[data-v-66b08b1c] {
        padding: 0 0.4rem 0.44rem;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.open[data-v-66b08b1c] {
  max-height: 4rem !important;
}
.hidden[data-v-66b08b1c] {
  max-height: 0;
}
.checkActive[data-v-66b08b1c] {
  color: #3975c6 !important;
}

.dropDown-sec-container[data-v-6d83f9ea] {
  position: relative;
  margin-left: 0.4rem;
}
.dropDown-sec-container .show-content[data-v-6d83f9ea] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eeeeee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    color: #666666;
    font-family: PingFang SC;
    font-size: .32rem;
}
.dropDown-sec-container .show-content .show-text[data-v-6d83f9ea] {
      max-width: 2rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-right: 0.11rem;
}
.dropDown-sec-container .show-content .show-img[data-v-6d83f9ea] {
      width: 0.16rem;
      height: 0.09rem;
}
.dropDown-sec-container .show-content-1[data-v-6d83f9ea] {
    background: unset !important;
    padding: 0 !important;
    margin-right: 5px !important;
}
.dropDown-sec-container .shadow-content[data-v-6d83f9ea] {
    width: 100%;
    height: 0.2rem;
    background: #fff;
    position: relative;
}
.dropDown-sec-container .show-content-content[data-v-6d83f9ea] {
    border-radius: 5px 5px 0 0 !important;
}
.dropDown-sec-container .show-shadow-content[data-v-6d83f9ea] {
    width: 100%;
    height: 0.2rem;
    position: relative;
    background: #eeeeee;
}
.dropDown-sec-container .value-content[data-v-6d83f9ea] {
    width: 100%;
    position: fixed;
    background: #eeeeee;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 5;
}
.dropDown-sec-container .value-content .value-wrap[data-v-6d83f9ea] {
      padding: 0.4rem;
}
.dropDown-sec-container .value-content .value-wrap .select-content[data-v-6d83f9ea] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.dropDown-sec-container .value-content .value-wrap .select-content .select-item[data-v-6d83f9ea] {
          width: 48%;
          margin-bottom: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
}
.dropDown-sec-container .value-content .value-wrap .btn-content[data-v-6d83f9ea] {
        width: 100%;
        height: 0.9rem;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 1rem;
        border: 1px solid #3975c6;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn[data-v-6d83f9ea] {
          width: 50%;
          height: 100%;
          border: 0;
          border-radius: 1rem;
          background: #fff;
          color: #3975c6;
          font-size: 0.37rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn-right[data-v-6d83f9ea] {
          background: #3975c6;
          color: #fff;
}
.dropDown-sec-container .value-content-1[data-v-6d83f9ea] {
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
}
.active[data-v-6d83f9ea] {
  color: #3975c6;
}
.content-active[data-v-6d83f9ea] {
  background: #d9e4f2 !important;
  color: #3975c6 !important;
}
@-webkit-keyframes slide-down-data-v-6d83f9ea {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
@keyframes slide-down-data-v-6d83f9ea {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
.show-img-2[data-v-6d83f9ea] {
  width: .19rem;
  height: .13rem;
}

.dropDown-sec-container[data-v-b2d05426] {
  position: relative;
  margin-left: 0.4rem;
}
.dropDown-sec-container .show-content[data-v-b2d05426] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eeeeee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    color: #666666;
    font-family: PingFang SC;
    font-size: .32rem;
}
.dropDown-sec-container .show-content .show-text[data-v-b2d05426] {
      max-width: 2rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-right: 0.11rem;
}
.dropDown-sec-container .show-content .show-img[data-v-b2d05426] {
      width: 0.16rem;
      height: 0.09rem;
}
.dropDown-sec-container .shadow-content[data-v-b2d05426] {
    width: 100%;
    height: 0.2rem;
    background: #fff;
    position: relative;
}
.dropDown-sec-container .show-content-content[data-v-b2d05426] {
    border-radius: 5px 5px 0 0 !important;
}
.dropDown-sec-container .show-shadow-content[data-v-b2d05426] {
    width: 100%;
    height: 0.2rem;
    position: relative;
    background: #eeeeee;
}
.dropDown-sec-container .value-content[data-v-b2d05426] {
    width: 100%;
    position: fixed;
    background: #eeeeee;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 5;
}
.dropDown-sec-container .value-content .value-wrap[data-v-b2d05426] {
      padding: 0.4rem;
}
.dropDown-sec-container .value-content .value-wrap .select-content[data-v-b2d05426] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.dropDown-sec-container .value-content .value-wrap .select-content .select-item[data-v-b2d05426] {
          width: 48%;
          margin-bottom: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
}
.dropDown-sec-container .value-content .value-wrap .btn-content[data-v-b2d05426] {
        width: 100%;
        height: 0.9rem;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 1rem;
        border: 1px solid #3975c6;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn[data-v-b2d05426] {
          width: 50%;
          height: 100%;
          border: 0;
          border-radius: 1rem;
          background: #fff;
          color: #3975c6;
          font-size: 0.37rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn-right[data-v-b2d05426] {
          background: #3975c6;
          color: #fff;
}
.active[data-v-b2d05426] {
  color: #3975c6;
}
.content-active[data-v-b2d05426] {
  background: #d9e4f2 !important;
  color: #3975c6 !important;
}
@-webkit-keyframes slide-down-data-v-b2d05426 {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
@keyframes slide-down-data-v-b2d05426 {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
.show-img-2[data-v-b2d05426] {
  width: .19rem;
  height: .13rem;
}

.drop-down-branch[data-v-3259500a] {
  position: relative;
  margin-left: 0.4rem;
}
.drop-down-branch .show-content[data-v-3259500a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eeeeee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    color: #666666;
    font-family: PingFang SC;
    font-size: 0.32rem;
}
.drop-down-branch .show-content .show-text[data-v-3259500a] {
      max-width: 2rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-right: 0.11rem;
}
.drop-down-branch .show-content .show-img[data-v-3259500a] {
      width: 0.16rem;
      height: 0.09rem;
}
.drop-down-branch .content-active[data-v-3259500a] {
    background: #d9e4f2 !important;
    color: #3975c6 !important;
}
.drop-down-branch .show-content-content[data-v-3259500a] {
    border-radius: 5px 5px 0 0 !important;
}
.drop-down-branch .shadow-content[data-v-3259500a] {
    width: 100%;
    height: 0.2rem;
    background: #fff;
    position: relative;
}
.drop-down-branch .show-shadow-content[data-v-3259500a] {
    width: 100%;
    height: 0.2rem;
    position: relative;
    background: #eeeeee;
}
.drop-down-branch .value-content[data-v-3259500a] {
    width: 100%;
    position: fixed;
    background: #eeeeee;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 5;
}
.drop-down-branch .value-content .list-ctn[data-v-3259500a] {
      padding: 0.4rem;
}
.drop-down-branch .value-content .list-ctn .select-ctn[data-v-3259500a] {
        height: 30vh;
        overflow: auto;
}
.drop-down-branch .value-content .list-ctn .select-ctn .first-item .item-name[data-v-3259500a] {
          margin-bottom: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
}
.drop-down-branch .value-content .list-ctn .select-ctn .first-item .van-icon-arrow-down[data-v-3259500a] {
          font-size: 12px;
          margin-left: 0.1rem;
          -webkit-transform: scale(0.8);
                  transform: scale(0.8);
}
.drop-down-branch .value-content .list-ctn .select-ctn .first-item .active[data-v-3259500a] {
          color: #3975c6;
}
.drop-down-branch .value-content .list-ctn .btn-content[data-v-3259500a] {
        width: 100%;
        height: 0.9rem;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 1rem;
        border: 1px solid #3975c6;
}
.drop-down-branch .value-content .list-ctn .btn-content .btn[data-v-3259500a] {
          width: 50%;
          height: 100%;
          border: 0;
          border-radius: 1rem;
          background: #fff;
          color: #3975c6;
          font-size: 0.37rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.drop-down-branch .value-content .list-ctn .btn-content .btn-right[data-v-3259500a] {
          background: #3975c6;
          color: #fff;
}
.drop-down-branch .show-img-2[data-v-3259500a] {
    width: .19rem;
    height: .13rem;
}

.dropDown-sec-container[data-v-cf09cefc] {
  position: relative;
  margin-left: 0.4rem;
}
.dropDown-sec-container .show-content[data-v-cf09cefc] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eeeeee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    color: #666666;
    font-family: PingFang SC;
    font-size: .32rem;
}
.dropDown-sec-container .show-content .show-text[data-v-cf09cefc] {
      max-width: 2rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-right: 0.11rem;
}
.dropDown-sec-container .show-content .show-img[data-v-cf09cefc] {
      width: 0.16rem;
      height: 0.09rem;
}
.dropDown-sec-container .shadow-content[data-v-cf09cefc] {
    width: 100%;
    height: 0.2rem;
    background: #fff;
    position: relative;
}
.dropDown-sec-container .show-content-content[data-v-cf09cefc] {
    border-radius: 5px 5px 0 0 !important;
}
.dropDown-sec-container .show-shadow-content[data-v-cf09cefc] {
    width: 100%;
    height: 0.2rem;
    position: relative;
    background: #eeeeee;
}
.dropDown-sec-container .value-content[data-v-cf09cefc] {
    width: 100%;
    position: fixed;
    background: #eeeeee;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 5;
}
.dropDown-sec-container .value-content .value-wrap[data-v-cf09cefc] {
      padding: 0.4rem;
}
.dropDown-sec-container .value-content .value-wrap .select-content[data-v-cf09cefc] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        max-height: calc(100vh - 9rem);
        overflow-y: auto;
}
.dropDown-sec-container .value-content .value-wrap .select-content[data-v-cf09cefc]::-webkit-scrollbar {
          width: 0 !important;
          height: 0 !important;
}
.dropDown-sec-container .value-content .value-wrap .select-content .select-item[data-v-cf09cefc] {
          width: 48%;
          margin-bottom: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
}
.dropDown-sec-container .value-content .value-wrap .btn-content[data-v-cf09cefc] {
        width: 100%;
        height: 0.9rem;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 1rem;
        border: 1px solid #3975c6;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn[data-v-cf09cefc] {
          width: 50%;
          height: 100%;
          border: 0;
          border-radius: 1rem;
          background: #fff;
          color: #3975c6;
          font-size: 0.37rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn-right[data-v-cf09cefc] {
          background: #3975c6;
          color: #fff;
}
.active[data-v-cf09cefc] {
  color: #3975c6;
}
.no-Select[data-v-cf09cefc] {
  color: #999 !important;
}
.content-active[data-v-cf09cefc] {
  background: #d9e4f2 !important;
  color: #3975c6 !important;
}
@-webkit-keyframes slide-down-data-v-cf09cefc {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
@keyframes slide-down-data-v-cf09cefc {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
.show-img-2[data-v-cf09cefc] {
  width: .19rem;
  height: .13rem;
}

@charset "UTF-8";
.list-container[data-v-2f440771] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list-container .list-wrap[data-v-2f440771] {
    width: 100%;
    height: 100%;
}
.list-container .list-wrap .top-content[data-v-2f440771] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.list-container .list-wrap .top-content .search-box[data-v-2f440771] {
        width: 100%;
}
.list-container .list-wrap .top-content .add-box[data-v-2f440771] {
        width: 1rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap[data-v-2f440771] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-right: 0.4rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap img[data-v-2f440771] {
            width: 0.5rem;
            height: 0.5rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap div[data-v-2f440771] {
            white-space: nowrap;
            -webkit-transform: scale(0.9);
                    transform: scale(0.9);
            font-size: 0.27rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
}
.list-container .list-wrap .content-content[data-v-2f440771] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list-container .list-wrap .content-content .content-filter[data-v-2f440771] {
        width: 100%;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap[data-v-2f440771] {
          overflow-y: hidden;
          padding: 0 0 0.4rem;
          border-radius: 0.27rem 0.27rem 0px 0px;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter[data-v-2f440771] {
            margin-top: 0.4rem;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.4rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .month-filter[data-v-2f440771] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box[data-v-2f440771] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box span[data-v-2f440771] {
                margin-right: 0.09rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box .show-img[data-v-2f440771] {
                width: 0.17rem;
                height: 0.12rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-2f440771] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            padding-bottom: 35px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
            font-size: 0.32rem;
            font-family: PingFang SC;
            color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-2f440771]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list-container .list-wrap .content-content .list-content[data-v-2f440771] {
        z-index: 2;
        width: 100%;
        height: calc(100% - 2.5rem);
        background: #f7f8fc;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        line-height: 0.37rem;
}
.list-container .list-wrap .content-content .list-content .list-total[data-v-2f440771] {
          height: 1rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          padding: 0 0.41rem;
          line-height: 1rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap[data-v-2f440771] {
          width: 100%;
          height: calc(100% - 1rem);
          overflow-y: scroll;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list[data-v-2f440771] {
            width: 100%;
            height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item[data-v-2f440771] {
              background: #fff;
              margin: 0 10px;
              margin-bottom: 0.19rem;
              border-radius: 7px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap[data-v-2f440771] {
                padding: 15px 10px 0 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top[data-v-2f440771] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  margin-bottom: 0.32rem;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l[data-v-2f440771] {
                    width: 1.2rem;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    margin-right: 9px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img[data-v-2f440771] {
                      width: 1.2rem;
                      height: 1.2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img img[data-v-2f440771] {
                        width: 100%;
                        height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r[data-v-2f440771] {
                    width: calc(100% - 1.2rem - 9px);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                            flex-direction: column;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top[data-v-2f440771] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      -webkit-box-align: center;
                          -ms-flex-align: center;
                              align-items: center;
                      -webkit-box-pack: justify;
                          -ms-flex-pack: justify;
                              justify-content: space-between;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top[data-v-2f440771] {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: baseline;
                            -ms-flex-align: baseline;
                                align-items: baseline;
                        margin-bottom: 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .name[data-v-2f440771] {
                          font-size: 0.43rem;
                          font-family: PingFang SC;
                          font-weight: bold;
                          color: #333333;
                          margin-right: 0.09rem;
                          overflow: hidden;
                          text-overflow: ellipsis;
                          white-space: nowrap;
                          max-width: 2rem;
                          height: 0.51rem;
                          line-height: 0.51rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-2f440771] {
                          font-size: 0.32rem;
                          font-family: PingFang SC;
                          font-weight: 500;
                          color: #666666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-2f440771] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      font-size: 0.32rem;
                      font-family: PingFang SC;
                      font-weight: 500;
                      color: #666666;
                      -webkit-box-align: center;
                          -ms-flex-align: center;
                              align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-2f440771] {
                        margin-right: 0.37rem;
                        max-width: 40%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                            -ms-flex-align: center;
                                align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-2f440771] {
                          width: 0.3rem;
                          height: 0.3rem;
                          margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people[data-v-2f440771] {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                            -ms-flex-align: center;
                                align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-2f440771] {
                          width: 0.23rem;
                          height: 0.29rem;
                          margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people span[data-v-2f440771] {
                          line-height: 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address[data-v-2f440771] {
                  width: 100%;
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: end;
                      -ms-flex-align: end;
                          align-items: flex-end;
                  margin-bottom: 0.27rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address img[data-v-2f440771] {
                    width: 0.29rem;
                    height: 0.35rem;
                    margin-right: 0.13rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address div[data-v-2f440771] {
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    font-size: 0.32rem;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #333333;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips[data-v-2f440771] {
                  width: 100%;
                  max-height: 0.75rem;
                  overflow: hidden;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips .tips-item[data-v-2f440771] {
                    height: 0.51rem;
                    line-height: 0.51rem;
                    background: #eeeeee;
                    border-radius: 10px;
                    margin-right: 5px;
                    margin-bottom: 10px;
                    padding: 0 10px;
                    float: left;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    text-align: center;
                    font-size: 0.27rem;
                    color: #666666;
                    font-family: PingFang SC;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .line[data-v-2f440771] {
                width: 100%;
                height: 1px;
                background: #f7f8fc;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap[data-v-2f440771] {
                padding: 0.2rem 10px 0.27rem;
                font-size: 0.32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #999999;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom-l[data-v-2f440771] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  -webkit-box-pack: justify;
                      -ms-flex-pack: justify;
                          justify-content: space-between;
                  margin-bottom: 0.41rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom-l .bottom-l-lable[data-v-2f440771] {
                    margin-left: 0.19rem;
                    width: 0.8rem;
                    height: 0.37rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom_r[data-v-2f440771] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-pack: end;
                      -ms-flex-pack: end;
                          justify-content: flex-end;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom_r .bottom-r-inner[data-v-2f440771] {
                    padding: 5px 8px;
                    border: 1px solid #3976c7;
                    border-radius: 5px;
                    font-size: 10px;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #3975c6;
                    line-height: 13px;
                    margin-left: 0.2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom_r .top-r-tip[data-v-2f440771] {
                    padding: 5px 7px;
                    color: #fff;
                    font-size: 0.27rem;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #ffffff;
                    border-radius: 5px;
                    margin-left: 0.2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom_r .blue[data-v-2f440771] {
                    background: #3975c6;
                    -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                            box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap .bottom_r .yellow[data-v-2f440771] {
                    background: #f5ab32;
                    -webkit-box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
                            box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
}
/* 搜索框 */
.van-search[data-v-2f440771] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-2f440771] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-2f440771] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-2f440771] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-2f440771] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-2f440771] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-2f440771] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f440771]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f440771]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f440771]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f440771]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.green[data-v-2f440771] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-2f440771] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.delete-button[data-v-2f440771] {
  width: 100%;
  height: 100%;
  border: none;
  background: #3975c6;
  color: #fff;
}
.finished-text-box[data-v-2f440771] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.finished-text-box .bottom-line[data-v-2f440771] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-2f440771] {
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}
.changeClose[data-v-2f440771] {
  margin-left: 0.4rem;
}
.changeClose .changeClose-wrap[data-v-2f440771] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    max-width: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 0.11rem;
    margin-bottom: 0.2rem;
    color: #666666;
    font-family: PingFang SC;
    font-size: 0.32rem;
}
.active[data-v-2f440771] {
  color: #3975c6 !important;
}
.popup-wrap[data-v-2f440771] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-2f440771] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-2f440771] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-2f440771] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-2f440771] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-2f440771] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-2f440771] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-2f440771] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-2f440771] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-2f440771] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-2f440771] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-2f440771] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-2f440771] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: Source Han Sans CN;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-2f440771] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-2f440771] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-2f440771] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}
[data-v-2f440771] .van-tab {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #f7f8fc;
}
[data-v-2f440771] .van-field__control {
  font-weight: 500;
}

.dropDown-container[data-v-b99bf260] {
  position: relative;
}
.dropDown-container .show-content[data-v-b99bf260] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dropDown-container .show-content .show-text[data-v-b99bf260] {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #666666;
      margin-right: 0.09rem;
}
.dropDown-container .show-content .show-img[data-v-b99bf260] {
      width: 0.17rem;
      height: 0.12rem;
}
.dropDown-container .value-content[data-v-b99bf260] {
    width: 100%;
    max-height: 4rem;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
    background: #fff;
    border-radius: 0 0 15px 15px;
    position: fixed;
    left: 0;
    overflow: hidden;
    z-index: 10;
}
.dropDown-container .value-content .value-content-wrap[data-v-b99bf260] {
      overflow-y: scroll;
      max-height: 3.4rem;
      width: 100%;
      margin-top: 0.44rem;
      padding-bottom: 0.2rem;
}
.dropDown-container .value-content .value-content-wrap .drop-item[data-v-b99bf260] {
        padding: 0 0.4rem 0.44rem;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.open[data-v-b99bf260] {
  max-height: 4rem !important;
}
.hidden[data-v-b99bf260] {
  max-height: 0;
}
.checkActive[data-v-b99bf260] {
  color: #3975c6 !important;
}

@charset "UTF-8";
/*
 * @Description: 弹窗样式（布局见turnto.vue）
 * @Autor: xiong
 * @Date: 2021-11-09 15:27:55
 */
[data-v-1e6e5cc4] .van-dialog {
  border-radius: .13rem;
}
[data-v-1e6e5cc4] .van-dialog__header {
  font-size: .45rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #333333;
}
.dialog[data-v-1e6e5cc4] {
  margin: .61rem 0 .96rem 0;
}
.dialog .dialog-line[data-v-1e6e5cc4] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: .32rem 0;
    margin: 0 .43rem;
    border-bottom: 1px solid rgba(222, 223, 226, 0.5);
}
.dialog .dialog-line .dialog-line-l[data-v-1e6e5cc4] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
}
.dialog .dialog-line .dialog-line-l span[data-v-1e6e5cc4] {
        color: #DB1717;
}
.dialog .dialog-line .dialog-line-r[data-v-1e6e5cc4] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 400;
      color: #999999;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.dialog .dialog-line .dialog-line-r img[data-v-1e6e5cc4] {
        margin-left: .27rem;
        width: .13rem;
        height: .21rem;
}

.hall-popup .head-ctn {
  position: relative;
  text-align: center;
  padding-top: 0.41rem;
  font-size: 0.43rem;
  color: #333;
  font-weight: 800;
}
.hall-popup .head-ctn .van-icon-arrow-left {
  position: absolute;
  top: 0.41rem;
  left: 0.41rem;
  font-size: 0.4267rem;
  color: rgb(153, 153, 153);
}
.hall-popup .van-popup__close-icon {
  color: rgb(153, 153, 153);
}

.permission-ctn[data-v-294241a5] {
  height: calc(100% - 1.0667rem);
}
.permission-ctn .permission-list[data-v-294241a5] {
    height: calc(100% - 2rem);
    overflow: auto;
}
.permission-ctn .permission-list[data-v-294241a5]::-webkit-scrollbar {
      display: none;
}
.permission-ctn .permission-list .first-level .second-level[data-v-294241a5] {
      padding-left: 0.63rem;
}
.permission-ctn .permission-list .first-level .van-radio[data-v-294241a5] {
      padding: 0.35rem 0;
      position: relative;
      border-bottom: 1px solid rgba(238, 238, 238, 0.6);
      margin: 0 0.41rem;
}
.permission-ctn .permission-list .first-level .van-radio .van-icon-arrow[data-v-294241a5] {
        position: absolute;
        right: 0;
        top: 0.6rem;
}
.permission-ctn .permission-list .first-level .img-icon[data-v-294241a5] {
      width: 0.38rem;
      height: 0.38rem;
}
.permission-ctn .permission-list .first-level .book-class[data-v-294241a5] {
      width: 0.38rem;
      height: 0.38rem;
      margin-right: 0.2rem;
      margin-top: 0.16rem;
}
.permission-ctn .permission-list .first-level .van-radio__label[data-v-294241a5] {
      font-size: 0.38rem;
      color: #333;
}
.permission-ctn .permission-select .left-select-ctn[data-v-294241a5] {
    white-space: nowrap;
    overflow: auto;
    margin-left: 0.41rem;
    margin-top: 0.6rem;
    text-align: left;
}
.permission-ctn .permission-select[data-v-294241a5] .van-tag {
    padding: 0.24rem;
    font-size: 0.38rem;
    border-radius: 0.14rem;
    margin-right: 0.22rem;
}
.permission-ctn .permission-select .right-button[data-v-294241a5] {
    margin-top: 0.6rem;
}
.permission-ctn .permission-select .right-button .van-button[data-v-294241a5] {
      font-size: 0.38rem;
      height: 0.86rem;
      padding: 0 0.34rem;
}

@charset "UTF-8";
.to-btn[data-v-2f7472be] {
  background-color: #ffffff;
  width: 100%;
  height: 2.21rem;
  position: fixed;
  bottom: 0;
  left: 0;
}
.to-btn .to-btn-content[data-v-2f7472be] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .53rem;
}
.to-btn .to-btn-content .to-btn-content-l[data-v-2f7472be] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.to-btn .to-btn-content img[data-v-2f7472be] {
      width: .4rem;
      height: .4rem;
}
.to-btn .to-btn-content span[data-v-2f7472be] {
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #333333;
      margin: 0 12px 0 5px;
}
.to-btn .to-btn-content button[data-v-2f7472be] {
      width: 7.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      border: none;
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #FFFFFF;
}
.choose[data-v-2f7472be] {
  border: 1px solid #3975C6;
}
.turnReferenceList[data-v-2f7472be] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: .4rem;
  padding-bottom: 2.67rem;
}
.referenceList[data-v-2f7472be] {
  margin: 0 .27rem;
}
.referenceList .list-item[data-v-2f7472be] {
    background-color: #fff;
    border-radius: 5px;
    padding: .45rem .37rem;
    padding-bottom: .13rem;
    margin-bottom: .19rem;
}
.referenceList .list-item .list-item-title[data-v-2f7472be] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .8rem;
}
.referenceList .list-item .list-item-title .title-l[data-v-2f7472be] {
        font-size: .37rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.referenceList .list-item .list-item-title .title-r[data-v-2f7472be] {
        font-size: 10px;
        display: inline-block;
        padding: .08rem .16rem;
        color: #ffffff;
        border-radius: 5px;
}
.referenceList .list-item .list-item-row[data-v-2f7472be] {
      margin-bottom: .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: .32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #333333;
}
.referenceList .list-item .list-item-row .row-l[data-v-2f7472be] {
        color: #666666;
}
.line[data-v-2f7472be] {
  width: 100%;
  height: 1px;
  background: #ECF0F9;
  margin: 10px 0;
}
.green[data-v-2f7472be] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-2f7472be] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.brown[data-v-2f7472be] {
  background: #e0e0e0;
  color: #999999;
}
.red[data-v-2f7472be] {
  background: red;
}
.top-content[data-v-2f7472be] {
  width: 100%;
  height: 61.88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-content .search-box[data-v-2f7472be] {
    width: 100%;
}
.top-content .search-box[data-v-2f7472be] .van-field__control {
      font-weight: 500;
}
.top-content .add-box[data-v-2f7472be] {
    width: 37.5px;
}
.top-content .add-box .add-box-wrap[data-v-2f7472be] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-right: 15px;
}
.top-content .add-box .add-box-wrap img[data-v-2f7472be] {
        width: 18.75px;
        height: 18.75px;
}
.top-content .add-box .add-box-wrap div[data-v-2f7472be] {
        white-space: nowrap;
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        font-size: 10.13px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #ffffff;
}
/* 搜索框 */
.van-search[data-v-2f7472be] {
  height: 61.12px;
  width: 100%;
}
.van-search .van-search__action[data-v-2f7472be] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-2f7472be] {
    height: 34.88px;
}
.van-search .van-search__content .van-cell[data-v-2f7472be] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-2f7472be] .van-field__left-icon {
      width: 15px;
      height: 15px;
      margin: 3px 9.38px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-2f7472be] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-2f7472be] {
      margin-left: 15px;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f7472be]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f7472be]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f7472be]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2f7472be]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.turnOpportunityList[data-v-2f7472be] {
  background-color: #3975c6;
  width: 100%;
}
.static-data[data-v-2f7472be] {
  margin: 0 10px;
  padding: 10px 0 0;
  font-size: 0.32rem;
  font-weight: 400;
  color: #666666;
}
.to-list[data-v-2f7472be] {
  margin: 0 10.13px;
  padding-top: 15px;
}
.to-list-item[data-v-2f7472be] {
  background-color: #ffffff;
  border-radius: 0.13rem;
  padding: 13.88px 10.13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 7.13px;
}
.to-list-item .list-item-top[data-v-2f7472be] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.to-list-item .list-item-top .top-head[data-v-2f7472be] {
      width: 45px;
      height: 45px;
}
.to-list-item .list-item-top .item-top-info[data-v-2f7472be] {
      width: 100%;
      margin-left: 0.21rem;
}
.to-list-item .list-item-top .item-top-info .info-t[data-v-2f7472be] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.to-list-item .list-item-top .item-top-info .info-t .info-t-r[data-v-2f7472be] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end;
}
.to-list-item .list-item-top .item-top-info .info-t .name[data-v-2f7472be] {
          font-size: 16.13px;
          font-family: PingFang;
          font-weight: bold;
          color: #333333;
          max-width: 2.13rem;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
}
.to-list-item .list-item-top .item-top-info .info-t .phone[data-v-2f7472be] {
          font-size: 0.32rem;
          font-family: PingFang;
          font-weight: 500;
          color: #666666;
          margin-left: 0.08rem;
}
.to-list-item .list-item-top .item-top-info .info-t .sign span[data-v-2f7472be] {
          font-size: 0.27rem;
          padding: 0.02rem 0.09rem;
          border-radius: 0.11rem;
          margin-right: 0.1rem;
}
.to-list-item .list-item-top .item-top-info .info-t .sign span[data-v-2f7472be]:last-of-type {
            margin-right: 0;
}
.to-list-item .list-item-top .item-top-info .info-t .sign .pay-cls[data-v-2f7472be] {
          color: #3975c6;
          border: 1px solid #3975c6;
}
.to-list-item .list-item-top .item-top-info .info-t .sign .dell-cls[data-v-2f7472be] {
          color: #24b277;
          border: 1px solid #24b277;
}
.to-list-item .list-item-top .item-top-info .info-b[data-v-2f7472be] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 4.88px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign[data-v-2f7472be] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-right: 13.88px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign img[data-v-2f7472be] {
            height: 10.88px;
            margin-right: 3px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign span[data-v-2f7472be] {
            font-size: 12px;
            font-family: PingFang;
            font-weight: 500;
            color: #666666;
}
.to-list-item .item-address[data-v-2f7472be] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 13.13px;
}
.to-list-item .item-address img[data-v-2f7472be] {
      width: 10.13px;
      height: 12px;
      margin-right: 4.88px;
}
.to-list-item .item-address span[data-v-2f7472be] {
      font-size: 12px;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
      display: inline-block;
      max-width: 90%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}
.to-list-item .item-tips[data-v-2f7472be] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.to-list-item .item-tips .item-tips-item[data-v-2f7472be] {
      background: #eeeeee;
      border-radius: 0.27rem;
      padding: 0.11rem 0.32rem;
      margin: 0.27rem 0.13rem 0 0;
      color: #666666;
      height: 0.4rem;
      line-height: 0.4rem;
}
.to-list-item .item-line[data-v-2f7472be] {
    width: 100%;
    height: 0.03rem;
    background: #f7f8fc;
    margin: 0.27rem 0;
}
.to-list-item .item-time[data-v-2f7472be] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 12px;
    font-family: PingFang;
    font-weight: 500;
    color: #999999;
}
.choose-class[data-v-2f7472be] {
  background: #eef3fc;
  border: 1px solid #3975c6;
}

@charset "UTF-8";
.dropDown-sec-container[data-v-7b89e83e] {
  margin-left: unset !important;
}
.line[data-v-7b89e83e] {
  width: 100%;
  height: 1px;
  background: #f7f8fc;
}
.app_container[data-v-7b89e83e] {
  height: 100vh;
  background: #3975c6;
  position: relative;
  overflow: hidden;
}
.app_container .app_wrap[data-v-7b89e83e] {
    width: 100%;
    height: calc(100vh - 1.63rem);
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
.tabs-wrap[data-v-7b89e83e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 15px 12px;
  font-size: 13px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  line-height: 13px;
}
.tabs-wrap .tab-item[data-v-7b89e83e] {
    position: relative;
}
.tabs-wrap .tab-active[data-v-7b89e83e] {
    color: #3975c6;
}
.tabs-wrap .tab-active[data-v-7b89e83e]::after {
      content: "";
      position: absolute;
      bottom: -12px;
      width: 16px;
      height: 2px;
      background: #3975c6;
      border-radius: 1px;
      left: calc(50% - 8px);
}
.van-tabs[data-v-7b89e83e] {
  width: 100%;
  background-color: #f7f8fc;
}
.van-tabs[data-v-7b89e83e] .van-tabs__wrap {
    display: none;
}
.van-tabs[data-v-7b89e83e] .van-tabs__content {
    height: 100%;
}
.select-wrap[data-v-7b89e83e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.select-wrap .drop-width[data-v-7b89e83e] {
    max-width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.select-wrap .drop-width .van-icon[data-v-7b89e83e] {
      color: #999999;
}
.select-wrap .drop-width .star-text-defalt[data-v-7b89e83e] {
      color: #666666;
}
.select-wrap .drop-width .star-text-check[data-v-7b89e83e] {
      color: #fcb620;
}
.select-wrap .c-t-select[data-v-7b89e83e] {
    max-width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #666666;
}
.van-list[data-v-7b89e83e] {
  height: auto !important;
}
/* items */
.app_items[data-v-7b89e83e] {
  height: calc(100vh - 91px - 1.6rem);
  background: #f7f8fc;
}
.app_items .scrollBox[data-v-7b89e83e] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.app_items .scrollBox .report_inner[data-v-7b89e83e] {
      height: 100%;
}
.app-item-inner[data-v-7b89e83e] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.app-item-inner .app-item-inner-title[data-v-7b89e83e] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #666666;
    line-height: 13px;
    margin: 10px 0;
}
.app-item-inner .app_item[data-v-7b89e83e] {
    width: 100%;
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
}
.app-item-inner .app_item .item_top[data-v-7b89e83e] {
      padding: 15px 10px;
}
.app-item-inner .app_item .item_top .item-top-id[data-v-7b89e83e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 12px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-person[data-v-7b89e83e] {
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
          line-height: 13px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-person .item-type[data-v-7b89e83e] {
            font-size: 12px;
            font-weight: 500;
            color: #3975c6;
            border: 1px solid #3975c6;
            border-radius: 3px;
            padding: 2px 3px;
}
.app-item-inner .app_item .item_top .item-top-id .item-top-approval[data-v-7b89e83e] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #ffffff;
          line-height: 13px;
          padding: 5px 6px;
          background: #3975c6;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          border-radius: 5px;
}
.app-item-inner .app_item .item_top .item-top-id .approval-accept[data-v-7b89e83e] {
          background: #24b277;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.app-item-inner .app_item .item_top .item-top-id .approval-reback[data-v-7b89e83e] {
          background: #e2e2e2;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(201, 201, 201, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(201, 201, 201, 0.31);
          color: #666666 !important;
}
.app-item-inner .app_item .item_top .item_content[data-v-7b89e83e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.app-item-inner .app_item .item_top .item_content .content_title[data-v-7b89e83e] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          line-height: 24px;
}
.app-item-inner .app_item .item_top .item_content .content_value[data-v-7b89e83e] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
          line-height: 24px;
}
.app-item-inner .app_item .report_bottom[data-v-7b89e83e] {
      padding: 11px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.app-item-inner .app_item .report_bottom .bottom_time[data-v-7b89e83e] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        line-height: 13px;
}
.app-item-inner .app_item .report_bottom .bottom_r[data-v-7b89e83e] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        line-height: 13px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.app-item-inner .app_item .report_bottom .bottom_r .star-img-box[data-v-7b89e83e] {
          width: 13px;
          height: 12px;
          margin-left: 7px;
}
.app-item-inner .app_item .report_bottom .bottom_r .star-img-box .star-img[data-v-7b89e83e] {
            width: 100%;
            height: 100%;
}
/* 搜索框 */
.van-search[data-v-7b89e83e] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-7b89e83e] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-7b89e83e] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-7b89e83e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-7b89e83e] .van-field__value {
      font-weight: 400;
}
.van-search .van-search__content .van-cell[data-v-7b89e83e] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-7b89e83e] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-7b89e83e] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7b89e83e]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7b89e83e]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7b89e83e]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7b89e83e]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}

.tab_padding[data-v-6c74b13d] {
  padding: 0 0.3rem;
}
.tab_content_top[data-v-6c74b13d] {
  margin-top: 0.42rem;
}
.tab_content_top_l[data-v-6c74b13d] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.tab_content_top_r[data-v-6c74b13d] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #5681fe;
}
.home_tab_content[data-v-6c74b13d] {
  margin-top: 0.42rem;
}
.tab_content_item[data-v-6c74b13d] {
  position: relative;
  background: white;
  border-radius: 0.2rem;
  margin-bottom: 0.25rem;
}
.tab_content_item_inner[data-v-6c74b13d] {
  padding: 0.3rem;
}
.follow_tab[data-v-6c74b13d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_item_time[data-v-6c74b13d] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.item_time_span[data-v-6c74b13d] {
  margin-left: 0.39rem;
  position: relative;
}
.content_item_info[data-v-6c74b13d] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-top: 0.29rem;
}
.info_name[data-v-6c74b13d] {
  margin-left: 0.39rem;
}
.info_follow[data-v-6c74b13d] {
  background: #ffffff;
  border: 0.03px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.29rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #b0b0b0;
  text-align: center;
  padding: 0.1rem;
}
.info_tel[data-v-6c74b13d] {
  margin-right: 0.2rem;
}
.info_address[data-v-6c74b13d] {
  width: 5.21rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.van-pull-refresh[data-v-6c74b13d] .van-pull-refresh__track {
  min-height: 75vh;
}

.work-container[data-v-23fe3718] {
  height: 100vh;
  overflow: hidden;
}
.top-t[data-v-23fe3718] {
  height: 1.28rem;
  background: #ffffff;
}
.top-t-inner[data-v-23fe3718] {
  padding: 0.4rem 0.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-t-select[data-v-23fe3718] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-t-select-text[data-v-23fe3718] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.backlog_inner[data-v-23fe3718] {
  height: 100%;
  margin: 0 0.3rem;
  overflow-y: scroll;
}
.flex[data-v-23fe3718] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.work_box[data-v-23fe3718] {
  background: #f1f1f1;
  margin: auto;
  height: calc(100vh - 1.28rem);
  overflow-y: hidden;
}
.work_box_item[data-v-23fe3718] {
  margin-top: 0.3rem;
  background: white;
  border-radius: 0.15rem;
}
.work_box_inner[data-v-23fe3718] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem;
}
.work_item_img[data-v-23fe3718] {
  width: 1.01rem;
  height: 1.01rem;
  border-radius: 50%;
}
.work_item_l_info[data-v-23fe3718] {
  margin-left: 0.29rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.work_item_l_info_name[data-v-23fe3718] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
}
.work_item_l_info_creat[data-v-23fe3718] {
  margin-top: 0.14rem;
}
.info_creat_l[data-v-23fe3718] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.info_creat_r[data-v-23fe3718] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #5681fe;
}
.work_box_item_r[data-v-23fe3718] {
  font-size: 0.29rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.work_box_item_r_time[data-v-23fe3718] {
  margin-right: 0.15rem;
}
.block-wrap[data-v-23fe3718] {
  line-height: 25px;
  background-color: #4575c7;
  color: #ffffff;
}
.cusInfo-text[data-v-23fe3718] {
  font-size: 0.38rem;
}
.btn-block-wrap[data-v-23fe3718] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 20px;
  margin: 0px 15px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 8px -1px #a7caff;
          box-shadow: 0 2px 8px -1px #a7caff;
  background-color: #fff;
}
.bottom[data-v-23fe3718] {
  font-size: 0.29rem;
  font-family: PingFang SC;
  font-weight: 400;
  margin-top: 0.25rem;
}
.btn_box_item_wait_num[data-v-23fe3718] {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 0;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 12px;
  color: #ffffff;
  border-radius: 15px;
  background-color: red;
}
.box_top[data-v-23fe3718] {
  text-align: center;
  width: 100%;
}
.box_bottom[data-v-23fe3718] {
  text-align: center;
  width: 100%;
}
.box_font[data-v-23fe3718] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
}
.no-more-class[data-v-23fe3718]{
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  margin: 10px 0;
}
.box_icon_box[data-v-23fe3718] {
  width: 1.39rem;
  height: 1.39rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2.8rem;
  right: 0.37rem;
}
.box_icon[data-v-23fe3718] {
  width: 100%;
  height: 100%;
}

.business-container[data-v-46012905] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #3975c6 0%, #ffffff 70%);
}
.business-container .business-wrap[data-v-46012905] {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.business-container .business-wrap .content[data-v-46012905] {
      background: url("https://oss.guango.com.cn/common/qw/images/background.png");
      background-repeat: no-repeat;
      background-size: contain;
      width: 100%;
      height: 100%;
      position: relative;
}
.business-container .business-wrap .content .title-content[data-v-46012905] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 2.23rem 0 1rem 0.68rem;
}
.business-container .business-wrap .content .title-content .title-top[data-v-46012905] {
          font-size: 0.8rem;
          font-family: Source Han Sans CN;
          font-weight: bold;
          color: #ffffff;
          margin-bottom: 0.2rem;
}
.business-container .business-wrap .content .title-content .title-bottom[data-v-46012905] {
          font-size: 0.38rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #ffffff;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          opacity: 0.9;
}
.business-container .business-wrap .content .title-content .title-bottom .left[data-v-46012905] {
            margin-right: 0.5rem;
}
.business-container .business-wrap .content .content-content[data-v-46012905] {
        position: fixed;
        width: calc(100% - 1.82rem);
        height: 100%;
        background: #fff;
        border-radius: 15px 15px 0 0;
        padding: 1rem 0.91rem 0;
}
.business-container .business-wrap .content .content-content .content-title[data-v-46012905] {
          font-size: 0.37rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #999999;
}
.business-container .business-wrap .content .content-content .content-input[data-v-46012905] {
          border-bottom: 1px solid #e5e5e5;
          margin-bottom: 0.83rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.business-container .business-wrap .content .content-content .content-input .select-item[data-v-46012905] {
            color: #666;
            font-size: 0.37rem;
            font-weight: 500;
            margin-right: 16px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.business-container .business-wrap .content .content-content .content-input .select-item img[data-v-46012905] {
              width: 8px;
              height: 5px;
              margin-left: 3px;
}
.business-container .business-wrap .content .content-content .content-input input[data-v-46012905] {
            width: 100%;
            border: none;
            font-size: 0.37rem;
            font-weight: 400;
            padding: 0.6rem 0;
            color: #333;
}
.business-container .business-wrap .content .content-content .content-input input[data-v-46012905]::-webkit-input-placeholder {
              color: #666 !important;
}
.business-container .business-wrap .content .content-content .content-input input[data-v-46012905]::-moz-placeholder {
              color: #666 !important;
}
.business-container .business-wrap .content .content-content .content-input input[data-v-46012905]::-ms-input-placeholder {
              color: #666 !important;
}
.business-container .business-wrap .content .content-content .content-input input[data-v-46012905]::placeholder {
              color: #666 !important;
}
.business-container .business-wrap .content .content-content .content-btn[data-v-46012905] {
          background: #4378be;
          border-radius: 1rem;
          border: none;
          font-size: 0.38rem;
          font-weight: 400;
          color: #ffffff;
          height: 1.12rem;
          width: 100%;
}

.title-ctn[data-v-1a15f1c4] {
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.van-search[data-v-1a15f1c4] {
  padding: 0 15px;
}
.van-search > .van-search__content .van-cell .van-field__left-icon[data-v-1a15f1c4] {
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search > .van-search__content .van-cell .van-field__left-icon .search-icon[data-v-1a15f1c4] {
      width: 14px;
      height: 14px;
}
.van-picker[data-v-1a15f1c4] .van-picker-column__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 32px;
}
.van-picker[data-v-1a15f1c4] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
.van-picker[data-v-1a15f1c4] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
.btn-box[data-v-1a15f1c4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 20px 30px;
}
.btn-box .btn-item[data-v-1a15f1c4] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
}
.btn-box .reset-btn[data-v-1a15f1c4] {
    color: #4378BE;
    background: rgba(67, 120, 190, 0.2);
    margin-right: 15px;
}
.btn-box .confirm_btn[data-v-1a15f1c4] {
    color: #fff;
    background: #4378be;
}

.color-warn[data-v-c76bf91c] {
  color: #db1b1b;
  font-size: 0.32rem;
  line-height: 0.49rem;
}
.report-ctn[data-v-c76bf91c] {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.input-icon[data-v-c76bf91c] {
  margin-right: 0.2rem;
}
.opportunity-create[data-v-c76bf91c] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
}
.opportunity-create[data-v-c76bf91c]::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.opportunity-create .custom-img[data-v-c76bf91c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0.23rem;
    width: 0.43rem;
}
.opportunity-create .check-approval-container[data-v-c76bf91c] {
    margin: 0.4rem 0.27rem 0;
}
.opportunity-create .opportunity_footer[data-v-c76bf91c] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.opportunity-create .opportunity_footer .opportunity_footer-btn[data-v-c76bf91c] {
      height: 2.48rem;
      background: #ffffff;
      padding: 0.53rem 0.4rem 0.64rem;
}
.opportunity-create .popup_search-company .popup_search-head[data-v-c76bf91c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 1.17rem;
    padding: 0 .43rem;
    color: #969799;
    font-size: 14px;
}
.opportunity-create .popup_search-company .popup_search-head .head-title[data-v-c76bf91c] {
      color: #333;
      font-size: 16px;
}
.opportunity-create .popup_search-company .popup_search-head .confirm-btn[data-v-c76bf91c] {
      color: #576b95;
}
.opportunity-create .popup_search-company .popup_search-head .onlyR-btn[data-v-c76bf91c] {
      color: #4378be !important;
      opacity: .6;
}
.opportunity-create .popup_search-company .popup_search-input[data-v-c76bf91c] .van-cell {
    font-size: .32rem;
}
.opportunity-create .popup_search-company .popup_search-input[data-v-c76bf91c] .van-field__left-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.opportunity-create .popup_search-company .empty-box[data-v-c76bf91c] {
    text-align: center;
    height: 5rem;
    font-size: .32rem;
    color: #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.opportunity-create .popup_search-company .btn-group[data-v-c76bf91c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.3rem 0;
}
.opportunity-create .popup_search-company .btn-group .btn-canel[data-v-c76bf91c] {
      width: 4.46rem;
      height: 1.05rem;
      background: #eeeeee;
      border-radius: 1rem;
      font-size: 0.41rem;
      font-weight: 500;
      color: #666666;
}
.opportunity-create .popup_search-company .btn-group .btn-submit[data-v-c76bf91c] {
      width: 4.46rem;
      height: 1.05rem;
      background: #4378be !important;
      border-radius: 1rem;
      font-size: 0.41rem;
      font-weight: 500;
      color: #ffffff;
}
.opportunity-create .progress-ctn-main[data-v-c76bf91c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 16px 10px;
}
.opportunity-create .progress-ctn-main .item-ctn[data-v-c76bf91c] {
      background: #eeeeee;
      border-radius: 4px;
      padding: 5px 17px;
      font-size: 12px;
      font-weight: 500;
      margin-right: 7px;
      margin-bottom: 10px;
      color: #666666;
}
.opportunity-create .progress-ctn-main .active-item[data-v-c76bf91c] {
      background: rgba(67, 120, 190, 0.2);
      color: #4378be;
}
.opportunity-create[data-v-c76bf91c] .van-cell--required::before {
    display: none;
}
.opportunity-create[data-v-c76bf91c] .van-cell,
  .opportunity-create[data-v-c76bf91c] .van-field__body {
    font-weight: 400 !important;
}
.opportunity-create[data-v-c76bf91c] .van-cell {
    font-size: 0.38rem;
}
.opportunity-create[data-v-c76bf91c] .van-icon-info-o {
    margin-right: 0.1rem;
}
.opportunity-create[data-v-c76bf91c] .van-cell__value {
    white-space: nowrap;
    overflow: initial;
}
.opportunity-create[data-v-c76bf91c] .van-cell__value input::-webkit-input-placeholder {
      color: #999 !important;
}
.opportunity-create[data-v-c76bf91c] .van-field__control::-webkit-input-placeholder {
    color: #999 !important;
}
.opportunity-create[data-v-c76bf91c] .van-field__label {
    color: #333;
}
.opportunity-create[data-v-c76bf91c] .van-cell-group--inset {
    margin-left: 0.27rem;
    margin-right: 0.27rem;
}
.opportunity-create[data-v-c76bf91c] .van-cell-group__title--inset {
    padding: 0.53rem 0.34rem 0.41rem;
}

.font[data-v-70748e22], .employ-left .employ-title[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-title[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-title[data-v-70748e22], .employ-left .employ-type[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-type[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-type[data-v-70748e22], .employ-box .employ-name[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right .employ-name[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right .employ-name[data-v-70748e22], .checkApproval_container .title-wrap .title-content .title-title[data-v-70748e22], .checkApproval_container .title-wrap .title-content .title-link[data-v-70748e22] {
  font-family: Source Han Sans CN;
  font-weight: 500;
}
.circle-box[data-v-70748e22] {
  width: 0.58rem;
  height: auto;
  position: relative;
}
.circle-box .circle[data-v-70748e22] {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: #cad6ea;
    position: relative;
    margin-top: 0.1rem;
}
.employ-left[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content[data-v-70748e22] {
  width: 35%;
}
.employ-left .employ-title[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-title[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-title[data-v-70748e22] {
    font-size: 0.37rem;
    color: #333333;
    margin-bottom: 0.1rem;
}
.employ-left .employ-type[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-type[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-type[data-v-70748e22] {
    font-size: 0.3rem;
    color: #999999;
}
.employ-box[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right[data-v-70748e22] {
  margin-left: 0.3rem;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.employ-box .img-box[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right .img-box[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right .img-box[data-v-70748e22] {
    position: relative;
    width: 0.93rem;
    height: 0.93rem;
}
.employ-box .img-box .employ-img[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right .img-box .employ-img[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right .img-box .employ-img[data-v-70748e22] {
      width: 0.93rem;
      height: 0.93rem;
      border-radius: 5px;
      position: absolute;
}
.employ-box .img-box .img-close[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right .img-box .img-close[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right .img-box .img-close[data-v-70748e22] {
      position: absolute;
      width: 0.3rem;
      height: 0.3rem;
      top: -0.1rem;
      right: -0.1rem;
}
.employ-box .employ-name[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right .employ-name[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right .employ-name[data-v-70748e22] {
    font-size: 0.27rem;
    color: #333;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    width: 1rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.empty-box[data-v-70748e22] {
  width: 0.93rem;
  margin-left: 0.3rem;
}
.empty-box img[data-v-70748e22] {
    width: 0.93rem;
    height: 0.93rem;
}
.checkApproval_container .title-wrap[data-v-70748e22] {
  margin-bottom: 0.32rem;
}
.checkApproval_container .title-wrap .title-content[data-v-70748e22] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.checkApproval_container .title-wrap .title-content .title-title[data-v-70748e22] {
      font-size: 0.4rem;
      font-weight: bold;
      color: #333333;
}
.checkApproval_container .title-wrap .title-content .title-link[data-v-70748e22] {
      font-size: 0.32rem;
      color: #5076b8;
}
.checkApproval_container .main-wrap[data-v-70748e22] {
  background: #fff;
  border-radius: 7px;
}
.checkApproval_container .main-wrap .main-content[data-v-70748e22] {
    padding: 0.43rem 0.4rem 0;
}
.checkApproval_container .main-wrap .main-content .employ-wrap[data-v-70748e22] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.checkApproval_container .main-wrap .main-content .employ-wrap .employ-content[data-v-70748e22] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: calc(100% - 0.58rem);
}
.checkApproval_container .main-wrap .main-content .employ-wrap .employ-content .employ-right[data-v-70748e22] {
          width: 60%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: end;
          -webkit-box-orient: inherit;
          -webkit-box-direction: inherit;
              -ms-flex-direction: inherit;
                  flex-direction: inherit;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
}
.checkApproval_container .main-wrap .main-content .employ-wrap .circle-box .circle[data-v-70748e22]::before {
        content: '';
        position: absolute;
        width: 0.16rem;
        height: 0.16rem;
        background: #5076b8;
        border-radius: 50%;
        top: 0.07rem;
        left: 0.07rem;
}
.checkApproval_container .main-wrap .main-content .employ-wrap .circle-box[data-v-70748e22]::before {
        content: '';
        position: absolute;
        width: 0.03rem;
        height: 100%;
        background: #5076b8;
        top: 0.17rem;
        left: 0.135rem;
        z-index: 2;
}
.checkApproval_container .main-wrap .main-content .copy-wrap[data-v-70748e22] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.checkApproval_container .main-wrap .main-content .copy-wrap .copy-content[data-v-70748e22] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: calc(100% - 0.58rem);
}
.checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-left[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .employ-wrap .employ-content[data-v-70748e22], .checkApproval_container .main-wrap .main-content .employ-wrap .copy-wrap .copy-content .employ-content[data-v-70748e22], .checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-content[data-v-70748e22] {
          width: 30%;
}
.checkApproval_container .main-wrap .main-content .copy-wrap .copy-content .copy-right[data-v-70748e22] {
          width: 65%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: inherit;
          -webkit-box-direction: inherit;
              -ms-flex-direction: inherit;
                  flex-direction: inherit;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
}
.checkApproval_container .main-wrap .main-content .copy-wrap .circle-box .circle[data-v-70748e22]::before {
        content: '';
        position: absolute;
        width: 0.16rem;
        height: 0.16rem;
        background: #5076b8;
        border-radius: 50%;
        top: 0.07rem;
        left: 0.07rem;
}










































































































































































































/* 导航 */
.search-tab[data-v-134fe355] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(57, 117, 198);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-box[data-v-134fe355] {
  width: 5%;
  color: white;
  font-size: 0.5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-cell .van-cell__title[data-v-134fe355] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom-title[data-v-134fe355] {
  margin-left: 10px;
}
/* 搜索框 */
.search-box[data-v-134fe355] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-134fe355] {
  height: 1.63rem;
  width: 95%;
}
.van-search[data-v-134fe355] .van-search__action {
  color: #ffffff;
}
.van-search[data-v-134fe355] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-134fe355] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-134fe355] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-134fe355] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* 搜索历史 */
.search_info[data-v-134fe355] {
  border-radius: 10px;
  background: white;
  height: 100%;
}
.no_info[data-v-134fe355] {
  text-align: left;
  padding: 0.3rem 0.2rem 0;
  font-size: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.no-info-delete[data-v-134fe355] {
  font-size: 0.3rem;
  color: rgb(57, 117, 198);
}
.search_history[data-v-134fe355] {
  padding: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.history_item[data-v-134fe355] {
  border: #5076b8 solid 1px;
  border-radius: 1rem;
  margin: 0.2rem 0.3rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history_item span[data-v-134fe355] {
  padding: 0.1rem 0.3rem;
}

.label-required[data-v-77e60b54] {
  position: relative;
}
.label-required[data-v-77e60b54]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.opportunity_list_box[data-v-77e60b54] {
  width: 8.27rem;
  border-radius: 0rem;
  min-height: 7.33rem;
  background: #f7f8fc;
  overflow: hidden;
}
.opportunity_list_box h3[data-v-77e60b54] {
    font-size: 0.45rem;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0.6rem 0 0.3rem 0;
}
.opportunity_list_box .opportunity_search-icon[data-v-77e60b54] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
.opportunity_list_box .opportunity_search-icon .search-left-icon[data-v-77e60b54] {
      width: .38rem;
}
.opportunity_list_box .opportunity_list_box_list[data-v-77e60b54] {
    height: 10.05rem;
    overflow-y: auto;
}
.opportunity_list_box .opportunity_list_box_list_none[data-v-77e60b54] {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 3.5rem;
    text-align: center;
}
.opportunity_list_box .btn_group[data-v-77e60b54] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1.2rem;
    width: 100%;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.opportunity_list_box .btn_group > *[data-v-77e60b54] {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
}
.opportunity_list_box .btn_group[data-v-77e60b54] .van-button {
      height: 100%;
}
.opportunity_list_box .btn_group[data-v-77e60b54] .van-button .van-button__text {
        font-weight: bold;
        font-family: PingFang SC;
        font-size: 0.42rem;
}
[data-v-77e60b54] .van-popup {
  border-radius: 0.18rem;
}
[data-v-77e60b54] .van-field__error-message {
  text-align: right;
}
[data-v-77e60b54] .van-button--default {
  border-color: transparent;
}
[data-v-77e60b54] .van-button--default + .van-button--default {
    border-left-color: #ebedf0;
}
[data-v-77e60b54] .van-button--info {
  background: #3975c6;
  border-color: #3975c6;
}
[data-v-77e60b54] .van-search {
  background: transparent;
}
[data-v-77e60b54] .van-search .van-search__content {
    background: #fff;
}
[data-v-77e60b54] .van-search .van-search__content .van-cell {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
[data-v-77e60b54] .van-search .van-search__content .van-cell .van-icon-search {
        color: #6691ca;
}

.select[data-v-bdb5d108] {
  background: #EEF3FC !important;
  border-color: #3975C6 !important;
}
.no-margin[data-v-bdb5d108] {
  margin: 0 !important;
  margin-bottom: 0.19rem !important;
}
.list_card[data-v-bdb5d108] {
  background: #fff;
  margin: 0 10px;
  margin-bottom: 0.19rem;
  border-radius: 7px;
  border: 0.03rem solid #fff;
}
.list_card .list_card-content .list_card-contentWrap[data-v-bdb5d108] {
    padding: 0.28rem;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem[data-v-bdb5d108] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 0.32rem;
      font-weight: 400;
      color: #666666;
      line-height: 0.65rem;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-title[data-v-bdb5d108] {
        font-size: 0.38rem;
        font-weight: 600;
        color: #333333;
        white-space: nowrap;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .phone-class[data-v-bdb5d108] {
        font-weight: 400;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-tag[data-v-bdb5d108] {
        background: #3975C6;
        -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
                box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
        border-radius: .18rem;
        padding: 0 .26rem;
        height: 0.58rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-tag .list_card-tagTxt[data-v-bdb5d108] {
          font-size: 0.32rem;
          color: #ffffff;
          letter-spacing: 1px;
          font-weight: 400;
          white-space: nowrap;
}
.list_card .line[data-v-bdb5d108] {
    width: 100%;
    height: 1px;
    background: #f7f8fc;
}
.list_card .list_card-footer .list_card-footerWrap[data-v-bdb5d108] {
    padding: 0.27rem 10px;
    font-size: 0.32rem;
    font-weight: 400;
    color: #999999;
    line-height: 0.35rem;
}
.list_card .list_card-footer .list_card-footerWrap .list_card-footerItem[data-v-bdb5d108] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}

.wrap[data-v-6e8f15da] {
  padding-top: .4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table[data-v-6e8f15da] {
  background: #ffffff;
  margin: 0 .27rem;
  border-radius: 5px;
}
.table .table-item[data-v-6e8f15da] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0.43rem;
    height: 1.2rem;
    line-height: 1.2rem;
    border-bottom: 1px solid #F7F8FC;
}
.table .table-item .table-item-l[data-v-6e8f15da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      font-size: .37rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #333333;
}
.table .table-item .table-item-l .item-l-must[data-v-6e8f15da] {
        color: #DB1717;
}
.table .table-item .table-item-r[data-v-6e8f15da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.table .table-item .table-item-r input[data-v-6e8f15da] {
        border: none;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
        height: 80%;
        width: 200px;
        text-align: right;
        margin-right: .16rem;
}
.table .table-item .table-item-r img[data-v-6e8f15da] {
        width: .13rem;
        height: .21rem;
}
.warn[data-v-6e8f15da] {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #db1717;
  margin-left: .43rem;
  margin-top: .16rem;
}
.submit[data-v-6e8f15da] {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 83px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
}
.submit button[data-v-6e8f15da] {
    border: none;
    width: 9.2rem;
    height: 1.04rem;
    background: #4378BE;
    border-radius: .53rem;
    font-size: .4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.wrap[data-v-f162930a] {
  background-color: #f7f8fc;
  padding-top: 0.4rem;
}
.wrap .labelling[data-v-f162930a] {
    margin: 0.4rem 0.27rem;
    margin-top: 0;
}
.wrap .labelling .lable-type[data-v-f162930a] {
      background-color: #ffffff;
      border-radius: 10px;
      margin-bottom: 10px;
}
.wrap .labelling .lable-type .lable-type-title[data-v-f162930a] {
        font-size: 0.37rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
        width: 100%;
        border-bottom: 1px solid #ecf0f9;
        padding: 0.48rem 0 0.32rem 0.35rem;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
}
.wrap .labelling .lable-type .lable-type-list[data-v-f162930a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 0.24rem;
        padding: 0 0.27rem 0.48rem 0.19rem;
}
.wrap .labelling .lable-type .lable-type-list .list-item[data-v-f162930a] {
          height: 23px;
          background: #eeeeee;
          line-height: 0.61rem;
          border-radius: 0.27rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          margin-left: 5px;
          margin-bottom: 0.19rem;
          padding: 0 0.19rem;
}
.wrap .labelling .lable-type .lable-type-list .list-item-active[data-v-f162930a] {
          background: rgba(57, 117, 198, 0.2);
          color: #3975c6;
}
.wrap .labelling .lable-type .lable-type-list .list-item-add[data-v-f162930a] {
          width: 62px;
          padding: 0;
          text-align: center;
}
.wrap .labelling .lable-type .lable-type-list .list-item-add img[data-v-f162930a] {
            width: 0.27rem;
            height: 0.27rem;
}
.save-btn[data-v-f162930a] {
  width: 100%;
  height: 2.21rem;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
}
.save-btn button[data-v-f162930a] {
    width: 9.2rem;
    height: 1.04rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #4378be;
    border-radius: 0.53rem;
    border: none;
    font-size: 0.4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
}
[data-v-f162930a] .van-dialog {
  border-radius: 5px;
}
[data-v-f162930a] .van-dialog__header {
  font-size: 0.45rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}
[data-v-f162930a] .van-field__control {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #dedfe2;
  margin-bottom: 0.4rem;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}
[data-v-f162930a] .van-button--default {
  font-size: 0.45rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}

.wrap[data-v-124fbeff] {
  padding: 10px;
}
.wrap .contractList[data-v-124fbeff] {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
}
.wrap .contractList .list-item .item-title[data-v-124fbeff] {
      font-size: 16px;
      color: #333333;
      margin-bottom: 10px;
}
.wrap .contractList .list-item .item[data-v-124fbeff] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-size: 14px;
      color: #666666;
      margin-bottom: 10px;
}
.wrap .contractList .list-item .item .item-r[data-v-124fbeff] {
        color: #333333;
}
.wrap .contractList .list-item .line[data-v-124fbeff] {
      width: 100%;
      height: 1px;
      background-color: #e6e6e6;
}
.wrap .contractList .list-item .item-time[data-v-124fbeff] {
      margin: 10px 0;
      color: #666666;
}

*[data-v-0df729b4] {
  margin: 0;
  padding: 0;
}
body[data-v-0df729b4] {
  height: 100%;
}
.price-apply[data-v-0df729b4] {
  width: 100%;
  height: 500pt;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.price-apply .header[data-v-0df729b4] {
    position: absolute;
    top: 300pt;
}
.price-apply .header .one[data-v-0df729b4] {
      padding-right: 75pt;
}
img[data-v-0df729b4] {
  display: table-cell;
}
.submit[data-v-0df729b4] {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 83px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
}
.submit button[data-v-0df729b4] {
    border: none;
    width: 9.2rem;
    height: 1.04rem;
    background: #4378BE;
    border-radius: .53rem;
    font-size: .4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.to-list[data-v-2778142f] {
  margin: 0 10.13px;
  margin-top: 15px;
  padding-bottom: 80px;
}
.to-list-item[data-v-2778142f] {
  background-color: #ffffff;
  border-radius: .13rem;
  padding: 13.88px 10.13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 7.13px;
}
.to-list-item .info-b-sign[data-v-2778142f] {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 13.88px;
    border-bottom: 0.5px solid #eee;
}
.name[data-v-2778142f] {
  font-size: 16.13px;
  font-family: PingFang;
  font-weight: bold;
  color: #333333;
  max-width: 2.13rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.activeCss[data-v-2778142f] {
  border: 1px solid #4378BE;
  color: #fff;
}
.submit[data-v-2778142f] {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 83px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
}
.submit button[data-v-2778142f] {
    border: none;
    width: 9.2rem;
    height: 1.04rem;
    background: #4378BE;
    border-radius: .53rem;
    font-size: .4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.state-block-content[data-v-2561f9b3] {
  padding: 17px 21px;
}
.state-block-content .state-block-content-wrap[data-v-2561f9b3] {
    width: 100%;
    height: 100%;
}
.state-block-content .state-block-content-wrap .state-content-item[data-v-2561f9b3] {
      margin-bottom: 15px;
}
.state-block-content .state-block-content-wrap .state-content-item .line[data-v-2561f9b3] {
        width: calc(100% - 16px);
        float: right;
        margin: 15px 0 0;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-2561f9b3] {
        border-left: 2px #d7e4f4 dashed;
        position: relative;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-2561f9b3]::after {
          content: '';
          width: 5px;
          height: 5px;
          background: #d7e4f4;
          position: absolute;
          border-radius: 50%;
          bottom: -1px;
          left: -3.5px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info[data-v-2561f9b3] {
          margin-left: 15px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .svg[data-v-2561f9b3] {
            position: absolute;
            left: -10px;
            color: #3975c6;
            background-color: #fff;
            font-size: 18px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top[data-v-2561f9b3] {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: end;
                -ms-flex-align: end;
                    align-items: end;
            margin-bottom: 20px;
            padding-top: 3px;
            position: relative;
            top: -2px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .time[data-v-2561f9b3] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
              line-height: 13px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .name[data-v-2561f9b3] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              line-height: 13px;
              color: #333333;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-type[data-v-2561f9b3] {
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #3976c6;
            margin-bottom: 10px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-phone[data-v-2561f9b3] {
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 400;
            line-height: 24px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box[data-v-2561f9b3] {
            margin-top: 10px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
            overflow: hidden;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box img[data-v-2561f9b3] {
              width: 45px;
              margin: 0 5px 0 0;
              border-radius: 5px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box[data-v-2561f9b3] {
            margin-top: 10px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap[data-v-2561f9b3] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -ms-flex-wrap: nowrap;
                  flex-wrap: nowrap;
              background: #f4f1fb;
              padding: 8px;
              border-radius: 5px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l[data-v-2561f9b3] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: nowrap;
                    flex-wrap: nowrap;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .link-svg[data-v-2561f9b3] {
                  font-size: 14px;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .text[data-v-2561f9b3] {
                  font-size: 12px;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #9571d3;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
}
.state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-r[data-v-2561f9b3] {
                font-size: 12px;
                font-family: PingFang SC;
                font-weight: 500;
                color: #666666;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
}
.file-container[data-v-2561f9b3] {
  width: 100%;
  min-height: 100vh;
  background: #f7f8fc;
}
.file-container .file-wrap[data-v-2561f9b3] {
    padding: 17px 10px;
}
.file-container .file-wrap .file-top-container[data-v-2561f9b3] {
      width: 100%;
      margin-bottom: 10px;
}
.file-container .file-wrap .file-top-container .file-top-wrap[data-v-2561f9b3] {
        padding: 15px 15px 5px;
        background: #fff;
        border-radius: 12px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info[data-v-2561f9b3] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin-bottom: 15px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l[data-v-2561f9b3] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l .photo[data-v-2561f9b3] {
              width: 50px;
              height: 50px;
              margin-right: 10px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l .client-info .info-box[data-v-2561f9b3] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 4px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l .client-info .info-box .name[data-v-2561f9b3] {
                margin-right: 6px;
                font-size: 18px;
                font-family: PingFang SC;
                font-weight: bold;
                color: #333333;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l .client-info .info-box .sex[data-v-2561f9b3] {
                width: 13px;
                height: 13px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-l .client-info .tel[data-v-2561f9b3] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
}
.file-container .file-wrap .file-top-container .file-top-wrap .filt-top-info .info-r[data-v-2561f9b3] {
            width: 34px;
            height: 34px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .tips-box[data-v-2561f9b3] {
          height: 1.1rem;
          overflow: hidden;
}
.file-container .file-wrap .file-top-container .file-top-wrap .tips-box .tips-wrap[data-v-2561f9b3] {
            padding: 11px 13px 4px 0;
            overflow: hidden;
}
.file-container .file-wrap .file-top-container .file-top-wrap .tips-box .tips-wrap .tip-item[data-v-2561f9b3] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
}
.file-container .file-wrap .file-top-container .file-top-wrap .tips-box .tips-wrap .tip-item .tip-item-span[data-v-2561f9b3] {
                padding: 0px 8px;
                color: #3975c6;
                margin-right: 5px;
                margin-bottom: 20px;
                background: rgba(57, 117, 198, 0.2);
                border-radius: .32rem;
                font-size: .32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #3975C6;
                height: 23px;
                line-height: 23px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .showAll[data-v-2561f9b3] {
          height: auto;
}
.file-container .file-wrap .file-top-container .file-top-wrap .open-box[data-v-2561f9b3] {
          float: right;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 3px;
          clear: both;
}
.file-container .file-wrap .file-top-container .file-top-wrap .open-box span[data-v-2561f9b3] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #3975c6;
            margin-right: 3px;
}
.file-container .file-wrap .file-top-container .file-top-wrap .open-box img[data-v-2561f9b3] {
            width: 4px;
            height: 7px;
            -webkit-transform: translateZ(180deg);
                    transform: translateZ(180deg);
}
.file-container .file-wrap .file-top-container .file-top-wrap .open-box .img-active[data-v-2561f9b3] {
            -webkit-transition: all 0.2s;
            transition: all 0.2s;
            -webkit-transform: rotateX(180deg);
                    transform: rotateX(180deg);
}
.file-container .file-wrap .file-tabs-container[data-v-2561f9b3] {
      background: #fff;
      border-radius: 15px;
}
.file-container .file-wrap .file-tabs-container .store-top[data-v-2561f9b3] {
        padding: 19px 13px 0;
}
.file-container .file-wrap .file-tabs-container .store-top .state-block-tabs[data-v-2561f9b3] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.file-container .file-wrap .file-tabs-container .store-top .state-block-tabs .tabs-item[data-v-2561f9b3] {
            padding: 0 0 15px;
            height: 14px;
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #666666;
            position: relative;
            margin-right: 20px;
}
.file-container .file-wrap .file-tabs-container .store-top .state-block-tabs .active-item[data-v-2561f9b3] {
            font-weight: bold;
            color: #333333;
}
.file-container .file-wrap .file-tabs-container .store-top .state-block-tabs .active-item[data-v-2561f9b3]::after {
              content: '';
              width: 24px;
              height: 3px;
              background: #3976c6;
              border-radius: 2px;
              position: absolute;
              bottom: 0;
              left: calc(50% - 12px);
}
.file-container .file-wrap .file-tabs-container .file-tabs-business[data-v-2561f9b3] {
        background: #f7f8fc;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item[data-v-2561f9b3] {
          background: #fff;
          border-radius: 15px;
          margin-bottom: .27rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap[data-v-2561f9b3] {
            padding: 15px 10px 0 10px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top[data-v-2561f9b3] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              margin-bottom: 0.32rem;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-l[data-v-2561f9b3] {
                width: 1.2rem;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                margin-right: 9px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img[data-v-2561f9b3] {
                  width: 1.2rem;
                  height: 1.2rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img img[data-v-2561f9b3] {
                    width: 100%;
                    height: 100%;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r[data-v-2561f9b3] {
                width: calc(100% - 1.2rem - 9px);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top[data-v-2561f9b3] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  -webkit-box-pack: justify;
                      -ms-flex-pack: justify;
                          justify-content: space-between;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top[data-v-2561f9b3] {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: baseline;
                        -ms-flex-align: baseline;
                            align-items: baseline;
                    margin-bottom: 5px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .name[data-v-2561f9b3] {
                      font-size: 0.43rem;
                      font-family: PingFang SC;
                      font-weight: bold;
                      color: #333333;
                      margin-right: 0.09rem;
                      overflow: hidden;
                      text-overflow: ellipsis;
                      white-space: nowrap;
                      max-width: 2rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-2561f9b3] {
                      font-size: 0.32rem;
                      font-family: PingFang SC;
                      font-weight: 500;
                      color: #666666;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-2561f9b3] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  font-size: 0.32rem;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #666666;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-2561f9b3] {
                    margin-right: 0.37rem;
                    max-width: 40%;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-2561f9b3] {
                      width: 0.3rem;
                      height: 0.3rem;
                      margin-right: 0.08rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people[data-v-2561f9b3] {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-2561f9b3] {
                      width: 0.23rem;
                      height: 0.29rem;
                      margin-right: 0.08rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip[data-v-2561f9b3] {
                  padding: 5px 8px;
                  border-radius: 7px;
                  color: #fff;
                  font-size: 12px;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #ffffff;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-address[data-v-2561f9b3] {
              width: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 0.27rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-address img[data-v-2561f9b3] {
                height: 0.31rem;
                margin-right: 0.13rem;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-address div[data-v-2561f9b3] {
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                font-size: 0.32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #333333;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-tips[data-v-2561f9b3] {
              width: 100%;
              overflow: hidden;
              margin-bottom: 10px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-content .list-item-content-wrap .item-tips .tips-item[data-v-2561f9b3] {
                width: 53px;
                white-space: nowrap;
                padding: 4px 11px;
                background: #eeeeee;
                border-radius: 15px;
                margin-right: 3px;
                float: left;
                text-overflow: ellipsis;
                overflow: hidden;
                text-align: center;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .line[data-v-2561f9b3] {
            width: 100%;
            height: 1px;
            background: #f7f8fc;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business .business-item .list-item-bottom .list-item-bottom-wrap[data-v-2561f9b3] {
            padding: 10px 12px 14px 12px;
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #999999;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.file-container .file-wrap .file-tabs-container .file-tabs-business[data-v-2561f9b3] :first-child {
          border-top-left-radius: 0;
          border-top-right-radius: 0;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content[data-v-2561f9b3] {
        padding-bottom: 10px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .tabs-content[data-v-2561f9b3] {
          padding: 9px 13px;
          margin-bottom: 10px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .tabs-content .tabs-wrap[data-v-2561f9b3] {
            width: 100%;
            height: 100%;
            background: #f7f8fc;
            border-radius: 10px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .tabs-content .tabs-wrap .tab-item[data-v-2561f9b3] {
              width: 25%;
              padding: 10px 0;
              text-align: center;
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              white-space: nowrap;
              position: relative;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .tabs-content .tabs-wrap .tab-item-active[data-v-2561f9b3] {
              background: #3975c6;
              color: #fff;
              border-radius: 10px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .tabs-content .tabs-wrap .tab-item-active[data-v-2561f9b3]::after {
                width: 0;
                height: 0;
                content: '';
                border-top: 6px #3975c6 solid;
                border-left: 8.6px solid transparent;
                border-right: 8.6px solid transparent;
                position: absolute;
                bottom: -5px;
                left: calc(50% - 6px);
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content[data-v-2561f9b3] {
          padding-left: 19px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item[data-v-2561f9b3] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding-left: 15px;
            margin-bottom: 14px;
            margin-top: 14px;
            position: relative;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-date[data-v-2561f9b3] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #333333;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 19px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-date[data-v-2561f9b3]::after {
                content: '';
                width: 6px;
                height: 6px;
                background: #5076b8;
                border-radius: 50%;
                position: absolute;
                left: -3px;
                z-index: 2;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-date[data-v-2561f9b3]::before {
                content: '';
                position: absolute;
                width: 12px;
                height: 12px;
                background: #cad6ea;
                border-radius: 50%;
                left: -6px;
                z-index: 2;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-content[data-v-2561f9b3] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-content img[data-v-2561f9b3] {
                width: 39px;
                height: 39px;
                border-radius: 5px;
                margin-right: 8px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-content .product-box[data-v-2561f9b3] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 400;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-content .product-box .product-name[data-v-2561f9b3] {
                  color: #3976c6;
                  margin-bottom: 5px;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item .content-item-content .item-content .product-box .product-remark[data-v-2561f9b3] {
                  color: #333333;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item[data-v-2561f9b3]::before {
              content: '';
              width: 5px;
              height: 5px;
              position: absolute;
              bottom: 0;
              left: -2.5px;
              background: #d7e4f4;
              border-radius: 50%;
}
.file-container .file-wrap .file-tabs-container .file-tabs-content .content-content .content-item[data-v-2561f9b3]::after {
              content: '';
              position: absolute;
              border-left: 2px #d7e4f4 dashed;
              height: calc(100% - 5px);
              left: -1px;
              top: 5px;
}
.line[data-v-2561f9b3] {
  width: 100%;
  height: 1px;
  background: #ecf0f9;
}
.clear[data-v-2561f9b3] {
  clear: both;
}
.finished-text-box[data-v-2561f9b3] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.finished-text-box .bottom-line[data-v-2561f9b3] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-2561f9b3] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}
.fixed-btn[data-v-2561f9b3] {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  background-color: #fff;
  z-index: 500;
}
.fixed-btn-inner[data-v-2561f9b3] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-2561f9b3] {
  width: 100%;
  height: 100%;
  background: #3975C6;
  border-color: #3975C6;
  letter-spacing: 1px;
}
.addTarget[data-v-2561f9b3] {
  margin-right: 5px;
  margin-bottom: 7px;
  background: #eeeeee;
  border-radius: .32rem;
  width: 62px;
  text-align: center;
  height: 23px;
  line-height: 23px;
}
.addTarget img[data-v-2561f9b3] {
    width: 0.27rem;
    height: 0.27rem;
}
.green[data-v-2561f9b3] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-2561f9b3] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
[data-v-2561f9b3] .state-block-content {
  padding-left: 0.29rem !important;
  padding-right: .11rem !important;
}

@charset "UTF-8";
.tips-content[data-v-8b2b6c28] {
  margin-left: .4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tips-content .tips-item[data-v-8b2b6c28] {
    height: .61rem;
    line-height: .61rem;
    background: rgba(57, 117, 198, 0.2);
    border-radius: .32rem;
    font-size: .32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #3975C6;
    padding: 0 .24rem;
    margin-right: 10px;
    margin-bottom: 10px;
}
.tips-content .active-item[data-v-8b2b6c28] {
    color: #3975c6;
    background: #d1def1;
}
.top-wrap[data-v-8b2b6c28] {
  border-bottom: 1px solid  #ECF0F9;
}
.top-l[data-v-8b2b6c28] {
  padding: 17px 14px .4rem .37rem;
  font-size: .37rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.line[data-v-8b2b6c28] {
  width: 100%;
  height: 1px;
  background: #ecf0f9;
}
.state-block[data-v-8b2b6c28] {
  margin: 10px 10px 0;
  background: #fff;
  border-radius: 10px;
}
.state-block .state-block-tabs[data-v-8b2b6c28] {
    padding-top: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.state-block .state-block-tabs .tabs-item[data-v-8b2b6c28] {
      padding: 13px 0;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      position: relative;
}
.state-block .state-block-tabs .active-item[data-v-8b2b6c28]::after {
      content: '';
      width: 24px;
      height: 3px;
      background: #3976c6;
      border-radius: 2px;
      position: absolute;
      bottom: 0;
      left: calc(50% - 12px);
}
.state-block .state-block-content[data-v-8b2b6c28] {
    padding: 17px 13px  0 13px;
}
.state-block .state-block-content .state-block-content-wrap[data-v-8b2b6c28] {
      width: 100%;
      height: 100%;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item[data-v-8b2b6c28] {
        margin-bottom: 15px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .line[data-v-8b2b6c28] {
          width: calc(100% - 16px);
          float: right;
          margin: 15px 0 0;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-8b2b6c28] {
          border-left: 2px #d7e4f4 dashed;
          position: relative;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-8b2b6c28]::after {
            content: '';
            width: 5px;
            height: 5px;
            background: #d7e4f4;
            position: absolute;
            border-radius: 50%;
            bottom: -1px;
            left: -3.5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info[data-v-8b2b6c28] {
            margin-left: 15px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .svg[data-v-8b2b6c28] {
              position: absolute;
              left: -10px;
              color: #3975c6;
              background-color: #fff;
              font-size: 18px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top[data-v-8b2b6c28] {
              width: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 3px;
              padding-top: 3px;
              position: relative;
              top: -5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .tag[data-v-8b2b6c28] {
                height: .53rem;
                line-height: .55rem;
                font-size: .32rem;
                border-radius: .13rem;
                background: #3975C6;
                color: #ffffff;
                padding: 0 .16rem;
                margin-left: 7px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .time[data-v-8b2b6c28] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                color: #666666;
                line-height: 13px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .name[data-v-8b2b6c28] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                line-height: 13px;
                color: #333333;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .name .nameTitle[data-v-8b2b6c28] {
                  display: inline-block;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
                  max-width: 1.33rem;
                  height: .53rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-type[data-v-8b2b6c28] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #3976c6;
              margin-bottom: 10px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state[data-v-8b2b6c28] {
              background: #F7F8FC;
              border-radius: 5px;
              padding: .29rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state[data-v-8b2b6c28] {
                font-size: 12px;
                font-family: PingFang SC;
                font-weight: 500;
                line-height: 24px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .item-state-l[data-v-8b2b6c28] {
                  font-weight: 500;
                  display: inline-block;
                  width: 3rem;
                  color: #666666;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .item-state-r[data-v-8b2b6c28] {
                  font-weight: 500;
                  color: #333333;
                  text-align: right;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .view-audio[data-v-8b2b6c28] {
                  background: #3975C6;
                  padding: 0px 7px;
                  border-radius: 5px;
                  font-size: 10px;
                  font-weight: 500;
                  color: #FFFFFF;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state-img[data-v-8b2b6c28] {
                display: unset;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box[data-v-8b2b6c28] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
              overflow: hidden;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box img[data-v-8b2b6c28] {
                width: 1.16rem;
                border-radius: 0.14rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box[data-v-8b2b6c28] {
              margin-top: 10px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap[data-v-8b2b6c28] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: nowrap;
                    flex-wrap: nowrap;
                background: #f4f1fb;
                padding: 8px;
                border-radius: 5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l[data-v-8b2b6c28] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -ms-flex-wrap: nowrap;
                      flex-wrap: nowrap;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .link-svg[data-v-8b2b6c28] {
                    font-size: 14px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .text[data-v-8b2b6c28] {
                    font-size: 12px;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #9571d3;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-r[data-v-8b2b6c28] {
                  font-size: 12px;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #666666;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
}
.state-block .info-content[data-v-8b2b6c28] {
    padding: 20px 13px;
}
.state-block .info-content .info-content-wrap[data-v-8b2b6c28] {
      width: 100%;
      height: 100%;
}
.state-block .info-content .info-content-wrap .info-table[data-v-8b2b6c28] {
        width: 100%;
        border-collapse: collapse;
}
.state-block .info-content .info-content-wrap .info-table td[data-v-8b2b6c28] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 400;
          padding: 10px 11px;
          border: 1px solid #e8eaf6;
}
.state-block .info-content .info-content-wrap .info-table .title[data-v-8b2b6c28] {
          color: #999999;
          white-space: nowrap;
          text-align: right;
          padding: 10px 10px !important;
}
.state-block .info-content .info-content-wrap .info-table .head-title[data-v-8b2b6c28] {
          white-space: nowrap;
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.state-block .info-content .info-content-wrap .info-table .value[data-v-8b2b6c28] {
          color: #333333;
          white-space: nowrap;
          width: 100%;
}
.state-block .order-content .order-content-wrap[data-v-8b2b6c28] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.state-block .order-content .order-content-wrap img[data-v-8b2b6c28] {
      width: 147px;
      height: 118px;
      margin: 55px 0 29px;
}
.state-block .order-content .order-content-wrap span[data-v-8b2b6c28] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
      line-height: 12px;
}
.state-block .order-content .order-content-wrap span[data-v-8b2b6c28]:nth-child(3) {
      margin-top: 10px;
      margin-bottom: 63px;
}
.audio-popup-ctn[data-v-8b2b6c28] {
  padding: .6933rem .4rem;
}
.audio-popup-ctn .title-ctn[data-v-8b2b6c28] {
    text-align: center;
    font-size: .48rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.69rem;
}
.audio-popup-ctn .audio-ctn[data-v-8b2b6c28] {
    max-height: 400px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.audio-popup-ctn .audio-ctn[data-v-8b2b6c28]::-webkit-scrollbar {
      display: none;
      width: 0 !important;
      height: 0 !important;
}
.audio-popup-ctn .audio-ctn .audio-item .audio-item-title[data-v-8b2b6c28] {
      font-size: .3733rem;
      font-weight: bold;
      color: #333333;
      margin: .5333rem 0 .2667rem;
}
.clearfix[data-v-8b2b6c28] {
  zoom: 1;
}
/*zooom 属性：IE 浏览器的专用属性。这一句是专门针对老版本的IE浏览器所写的，为了兼容*/
.clearfix[data-v-8b2b6c28]:after {
  /* :after伪对象选择符---在这个对象被浏览器渲染后添加一定的内容*/
  content: '.';
  /*content属性：添加的内容即为这个属性的值。这个属性是专门与伪对象搭配使用的*/
  display: block;
  /*将添加进去的内容转换为块状元素*/
  visibility: hidden;
  /*visibility：可视化属性，控制元素是否可见，但无论是否隐藏都保留物理空间。{与display:none的比较}*/
  height: 0;
  /*将添加进去的内容高度设置为0，消除其占位*/
  clear: both;
  /*将添加进去的内容作为清除浮动的对象，实现外围容器中有内容存在，因此可以自动判定高度，解决塌陷*/
}
.typeClue[data-v-8b2b6c28] {
  color: #3875C6 !important;
  border-color: #d7e4f4 !important;
}
.typeClue[data-v-8b2b6c28]::after {
    background: #d7e4f4 !important;
}
.type-operation[data-v-8b2b6c28] {
  color: #4CBCC7 !important;
  border-color: #d7e4f4 !important;
}
.type-operation[data-v-8b2b6c28]::after {
    background: #d7e4f4 !important;
}
.type0[data-v-8b2b6c28] {
  color: #3975c6 !important;
  border-color: #d7e4f4 !important;
}
.type0[data-v-8b2b6c28]::after {
    background: #d7e4f4 !important;
}
.type2[data-v-8b2b6c28] {
  color: #60b28e !important;
  border-color: #dff0e8 !important;
}
.type2[data-v-8b2b6c28]::after {
    background: #dff0e8 !important;
}
.type3[data-v-8b2b6c28] {
  color: #3975c6 !important;
  border-color: #d7e4f4 !important;
}
.type3[data-v-8b2b6c28]::after {
    background: #d7e4f4 !important;
}
.type4[data-v-8b2b6c28] {
  color: #f5ab32 !important;
  border-color: #fdeed6 !important;
}
.type4[data-v-8b2b6c28]::after {
    background: #fdeed6 !important;
}
.type5[data-v-8b2b6c28] {
  color: #3975c6 !important;
  border-color: #d7e4f4 !important;
}
.type5[data-v-8b2b6c28]::after {
    background: #d7e4f4 !important;
}
.type6[data-v-8b2b6c28] {
  color: #f25a73 !important;
  border-color: #fcdee3 !important;
}
.type6[data-v-8b2b6c28]::after {
    background: #fcdee3 !important;
}
.follow-style[data-v-8b2b6c28] {
  color: #9571d3 !important;
  border-color: #eae3f6 !important;
}
.follow-style[data-v-8b2b6c28]::after {
    background: #eae3f6 !important;
}
.record .record-tag[data-v-8b2b6c28] {
  background: #4CBCC7 !important;
}
.record-tips .tips-item[data-v-8b2b6c28] {
  background: #DAF2F4 !important;
  color: #4CBCC7 !important;
}
.record-state-item-body[data-v-8b2b6c28] {
  border-left: 2px #DAF2F4 dashed !important;
}
.record-state-item-body[data-v-8b2b6c28]::after {
    background: #DAF2F4 !important;
}

.audio-container[data-v-6f47fa51] {
  background: #f7f8fc;
  border-radius: 0.2667rem;
  padding: 0.72rem 0.2667rem;
}
.audio-container .slider-ctn .slider-img[data-v-6f47fa51] {
    width: 0.54rem;
    height: 0.54rem;
}
.audio-container .slider-ctn .time-value-ctn[data-v-6f47fa51] {
    margin-top: 0.2667rem;
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.5333rem;
}
.audio-container .play-ctn[data-v-6f47fa51] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.audio-container .play-ctn .play-item .arrow[data-v-6f47fa51] {
      width: 0.4267rem;
      height: 0.2667rem;
}
.audio-container .play-ctn .play-item .play[data-v-6f47fa51] {
      width: 1.7333rem;
      height: 1.7333rem;
}

.detial-container[data-v-731e1615] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f8fc;
}
.detial-container .detial-wrap[data-v-731e1615] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(70%, #f7f8fc));
    background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 70%);
}
.detial-container .detial-wrap .finished-text-box[data-v-731e1615] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding-bottom: 83px;
}
.detial-container .detial-wrap .finished-text-box .bottom-line[data-v-731e1615] {
        width: 0.99rem;
        height: 1px;
        background: #999999;
}
.detial-container .detial-wrap .finished-text-box .finished-text[data-v-731e1615] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #999999;
        line-height: 13px;
        margin: 0 0.2rem;
        padding: 0.35rem 0;
}

.card-wrap[data-v-05c47636] {
  margin: 0.4533rem 0.2667rem 0.2667rem;
  padding: 0.4rem 0.3733rem;
  background: #ffffff;
  border-radius: 0.2667rem;
}
.card-wrap .card-info[data-v-05c47636] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0.3rem;
}
.card-wrap .card-info .card-info-l[data-v-05c47636] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.card-wrap .card-info .card-info-l .img-box[data-v-05c47636] {
        position: relative;
        width: 1.33rem;
        height: 1.33rem;
        margin-right: 0.2667rem;
}
.card-wrap .card-info .card-info-l .img-box .head-icon[data-v-05c47636] {
          width: 100%;
          height: 100%;
          position: absolute;
}
.card-wrap .card-info .card-info-l .img-box .edit-box[data-v-05c47636] {
          position: relative;
          width: 0;
          height: 0;
          border-bottom: 0.5333rem solid #fff;
          border-left: 0.5333rem solid transparent;
          margin-left: 0.8;
          margin-top: 0.8;
}
.card-wrap .card-info .card-info-l .img-box .edit-img[data-v-05c47636] {
          width: 0.2933rem;
          height: 0.2933rem;
          position: absolute;
          right: 0;
          bottom: 0;
}
.card-wrap .card-info .card-info-l .card-info-l-box[data-v-05c47636] {
        font-family: PingFang SC;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.card-wrap .card-info .card-info-l .card-info-l-box .name[data-v-05c47636] {
          font-size: 0.48rem;
          font-weight: bold;
          color: #333333;
          margin-bottom: 0.1rem;
}
.card-wrap .card-info .card-info-l .card-info-l-box .mobile-class[data-v-05c47636] {
          white-space: nowrap;
          font-size: 0.38rem;
          font-weight: 500;
          color: #333;
}
.card-wrap .card-info .card-info-l .card-info-l-box .card-type[data-v-05c47636] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.card-wrap .card-info .card-info-l .card-info-l-box .card-type .card-type-item[data-v-05c47636] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            font-size: 0.3733rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #333333;
            margin-right: 0.4267rem;
}
.card-wrap .card-info .card-info-l .card-info-l-box .card-type .card-type-item .svgIcon[data-v-05c47636] {
              font-size: 0.4267rem;
              margin-right: 0.08rem;
              color: #548cdf !important;
}
.card-wrap .card-info .card-info-l .card-info-l-box .card-type .card-type-item .people[data-v-05c47636] {
              width: 0.4267rem;
              height: 0.4267rem;
}
.card-wrap .card-info .card-info-r .type[data-v-05c47636] {
      border-radius: 0.1333rem;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
}
.card-wrap .card-info .card-info-r .type .type-text[data-v-05c47636] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #ffffff;
        padding: 0.08rem 0.1333rem 0.1067rem;
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
}
.card-wrap .card-info .card-info-r .green[data-v-05c47636] {
      background: #24b277;
      -webkit-box-shadow: 0 0.0533rem 0.1333rem 0 rgba(36, 178, 119, 0.31);
              box-shadow: 0 0.0533rem 0.1333rem 0 rgba(36, 178, 119, 0.31);
}
.card-wrap .card-info .card-info-r .blue[data-v-05c47636] {
      border-radius: 0.1333rem;
      background: #3975c6;
      -webkit-box-shadow: 0 0.0533rem 0.1333rem 0 rgba(57, 117, 198, 0.31);
              box-shadow: 0 0.0533rem 0.1333rem 0 rgba(57, 117, 198, 0.31);
}
.card-wrap .card-address[data-v-05c47636] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.card-wrap .card-address .svgIcon[data-v-05c47636] {
      font-size: 0.4267rem;
      margin-right: 0.08rem;
      color: #548cdf !important;
}
.card-wrap .card-address .address[data-v-05c47636] {
      font-size: 0.3733rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #333333;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}
.card-wrap .tips-box[data-v-05c47636] {
    overflow: hidden;
    margin-top: 0.38rem;
}
.card-wrap .tips-box .tips-wrap[data-v-05c47636] {
      overflow: hidden;
      height: 25px;
}
.card-wrap .tips-box .tips-wrap .open-box[data-v-05c47636] {
        float: right;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 0.08rem;
}
.card-wrap .tips-box .tips-wrap .open-box span[data-v-05c47636] {
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #3975c6;
          margin-right: 0.08rem;
}
.card-wrap .tips-box .tips-wrap .open-box img[data-v-05c47636] {
          width: 0.1067rem;
          height: 0.1867rem;
          -webkit-transform: translateZ(180deg);
                  transform: translateZ(180deg);
}
.card-wrap .tips-box .tips-wrap .open-box .img-active[data-v-05c47636] {
          -webkit-transition: all 0.2s;
          transition: all 0.2s;
          -webkit-transform: rotateX(180deg);
                  transform: rotateX(180deg);
}
.card-wrap .tips-box .tips-wrap .tip-item[data-v-05c47636] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.card-wrap .tips-box .tips-wrap .tip-item .tip-item-span[data-v-05c47636] {
          padding: 0 0.2133rem;
          color: #3975c6;
          margin-right: 0.1333rem;
          background: rgba(57, 117, 198, 0.2);
          border-radius: 0.32rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #3975c6;
          height: 0.6133rem;
          line-height: 0.6133rem;
}
.card-wrap .showAll[data-v-05c47636] {
    height: auto !important;
}

.statics-container[data-v-b5f3e6fe] {
  margin: 0 0.2667rem;
  border-radius: 0.2667rem;
}
.statics-container .statics-ctn[data-v-b5f3e6fe] {
    border-radius: 0.2667rem;
    padding: 0.38rem 0.22rem 0.11rem;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.statics-container .statics-ctn[data-v-b5f3e6fe]:first-of-type {
      margin-bottom: 0.27rem;
}
.statics-container .statics-ctn > div[data-v-b5f3e6fe]:last-of-type {
      margin-right: 0;
}
.statics-container .statics-ctn .svg-icon[data-v-b5f3e6fe] {
      width: 0.38rem;
      height: 0.38rem;
      vertical-align: middle;
}
.statics-container .statics-ctn .red-class[data-v-b5f3e6fe] {
      color: #f25a73;
      background: #fdeef1;
}
.statics-container .statics-ctn .green-class[data-v-b5f3e6fe] {
      color: #60b28e;
      background: #eff7f3;
}
.statics-container .statics-ctn .statics-item[data-v-b5f3e6fe] {
      width: 1.65rem;
      padding: 0.22rem;
      border-radius: 0.14rem;
      margin-right: 0.2rem;
      margin-bottom: 0.27rem;
}
.statics-container .statics-ctn .statics-item .factory-bill[data-v-b5f3e6fe] {
        color: #60b28e;
        font-size: 0.38rem !important;
}
.statics-container .statics-ctn .statics-item .item-top img[data-v-b5f3e6fe] {
        width: 0.38rem;
        height: 0.38rem;
        vertical-align: middle;
}
.statics-container .statics-ctn .statics-item .item-top span[data-v-b5f3e6fe] {
        font-size: 0.38rem;
        color: #333333;
        vertical-align: middle;
        display: inline-block;
}
.statics-container .statics-ctn .statics-item .item-botton[data-v-b5f3e6fe] {
        font-size: 0.4267rem;
        margin-top: 0.1333rem;
}
.statics-container .statics-ctn .statics-item .item-botton .unit[data-v-b5f3e6fe] {
          font-size: 0.32rem;
          margin-left: 0.0533rem;
}
.statics-container .statics-ctn .statics-item .item-botton .tip-class[data-v-b5f3e6fe] {
          font-size: 0.38rem;
}
.statics-container .statics-ctn > .statics-item[data-v-b5f3e6fe]:nth-of-type(4n+4) {
      margin-right: 0;
}
.dialog-ctn .dialog-header-ctn[data-v-b5f3e6fe] {
  text-align: center;
  position: relative;
  padding: 26px;
  font-size: 17px;
  font-weight: 500;
  color: #333333;
}
.dialog-ctn .dialog-header-ctn img[data-v-b5f3e6fe] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
}
.dialog-ctn .main-ctn[data-v-b5f3e6fe] {
  margin: 0 15px 20px;
}
.dialog-ctn .main-ctn .item-ctn[data-v-b5f3e6fe] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #EEF3FC;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 10px;
}
.dialog-ctn .main-ctn .item-ctn .item-left[data-v-b5f3e6fe] {
      font-weight: 400;
      font-size: 12px;
      color: #666666;
}
.dialog-ctn .main-ctn .item-ctn .item-left .item-title[data-v-b5f3e6fe] {
        font-weight: 400;
        font-size: 15px;
        color: #3975C6;
        margin-bottom: 4px;
}
.dialog-ctn .main-ctn .item-ctn img[data-v-b5f3e6fe] {
      width: 5px;
}
.dialog-ctn .main-ctn .item2[data-v-b5f3e6fe] {
    background: #FEF6EA;
}
.dialog-ctn .main-ctn .item2 .item-title[data-v-b5f3e6fe] {
      color: #F5AB32 !important;
}

.follow-ctn[data-v-1d00726b] {
  margin: 0.2667rem;
  background: #ffffff;
  border-radius: 0.2667rem;
}
.follow-ctn .follow-title-ctn[data-v-1d00726b] {
    font-size: 0.38rem;
    color: #333333;
    font-weight: bold;
    border-bottom: 1px solid #f5f6f9;
    padding: 0.34rem;
}
.follow-ctn .follow-main-ctn[data-v-1d00726b] {
    padding: 0.54rem 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.follow-ctn .follow-main-ctn .item-ctn[data-v-1d00726b] {
      padding: 0.23rem 0.45rem;
      text-align: center;
      background: #f7f8fc;
      border-radius: 0.27rem;
      padding: 0.23rem 0;
      text-align: center;
      background: #f7f8fc;
      border-radius: 0.27rem;
      margin-right: 0.14rem;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.follow-ctn .follow-main-ctn .item-ctn img[data-v-1d00726b] {
        width: 0.46rem;
        height: 0.46rem;
}
.follow-ctn .follow-main-ctn .item-ctn div[data-v-1d00726b] {
        color: #333;
        font-size: 0.32rem;
}
.follow-ctn .follow-main-ctn .last-item[data-v-1d00726b] {
      margin-right: 0;
}

.dialog-ctn[data-v-a6ef43f8] .van-dialog__header {
  font-size: 0.46rem;
  font-weight: bold;
  color: #333;
}
.dialog-ctn[data-v-a6ef43f8] .van-dialog__content {
  height: 12rem;
  position: relative;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] {
  margin-top: 0.4rem;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs__nav--card .van-tab.van-tab--active {
    background-color: #3975c6;
    color: #fff;
    border-radius: 0.14rem;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs__nav--card {
    border: none;
    background: #f7f8fc;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs__nav--card .van-tab {
    border-right: none;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs__nav--card .van-tab {
    color: #3975c6;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs--card > .van-tabs__wrap {
    height: 37px;
}
.dialog-ctn .tabs-ctn[data-v-a6ef43f8] .van-tabs__nav--card {
    height: 37px;
}
.dialog-ctn .appoint-ctn .van-cell[data-v-a6ef43f8] {
  display: unset;
  padding: 0;
}
.dialog-ctn .appoint-ctn[data-v-a6ef43f8] .van-field__label {
  margin: 0.43rem;
}
.dialog-ctn .appoint-ctn[data-v-a6ef43f8] .van-cell__value {
  margin: 0 0.41rem;
  background: #f7f8fc;
  padding: 0.26rem 0.36rem;
  border-radius: 0.14rem;
  color: #999;
}
.dialog-ctn .appoint-ctn[data-v-a6ef43f8] .van-field__control {
  color: #333;
}
.dialog-ctn .appoint-ctn[data-v-a6ef43f8] .van-icon-arrow {
  color: #d0d0d7;
}
.dialog-ctn .appoint-ctn .follow-content-ctn[data-v-a6ef43f8] {
  padding: 0.41rem 0.41rem 0.2rem;
}
.dialog-ctn .appoint-ctn .content-title[data-v-a6ef43f8] {
  margin: 0.4rem;
  margin-bottom: 0.2rem;
  font-size: 0.38rem !important;
  font-weight: 500 !important;
  color: #333;
}
.dialog-ctn .appoint-ctn .content-items-ctn[data-v-a6ef43f8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.36rem;
}
.dialog-ctn .appoint-ctn .content-items-ctn .content-item[data-v-a6ef43f8] {
    padding: 0.3rem 0.35rem;
    border-radius: 0.14rem;
    background: #eee;
    color: #666;
    font-size: 0.38rem;
}
.dialog-ctn .appoint-ctn .content-items-ctn .active-content[data-v-a6ef43f8] {
    background: #d7e3f4;
    color: #3975c6;
}
.dialog-ctn .appoint-ctn .personal-label[data-v-a6ef43f8] {
  margin-bottom: 0.51rem;
}
.cell-title-required[data-v-a6ef43f8] {
  position: relative;
  font-size: 0.38rem !important;
  color: #333 !important;
  font-weight: 500 !important;
  font-family: -apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Segoe UI,Arial,Roboto,'PingFang SC',miui,'Hiragino Sans GB','Microsoft Yahei',sans-serif !important;
}
.cell-title-required[data-v-a6ef43f8]::after {
    position: absolute;
    top: 0.0267rem;
    right: -0.2667rem;
    color: #ee0a24;
    font-size: 0.3733rem;
    content: "*";
}
[data-v-a6ef43f8] .van-dialog__confirm {
  color: #5681fe;
}
[data-v-a6ef43f8] .van-cell::after {
  border-bottom: none;
}
[data-v-a6ef43f8] .van-field__control::-webkit-input-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-a6ef43f8] .van-field__control::-moz-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-a6ef43f8] .van-field__control::-ms-input-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-a6ef43f8] .van-field__control::placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}

[data-v-c2765f90] .van-cell__value {
  margin: 0 !important;
}
[data-v-c2765f90] .van-field__control::-webkit-input-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-c2765f90] .van-field__control::-moz-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-c2765f90] .van-field__control::-ms-input-placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
[data-v-c2765f90] .van-field__control::placeholder {
  font-size: 0.38rem !important;
  color: #999 !important;
  font-weight: 500;
}
.input-ctn[data-v-c2765f90] {
  position: relative;
}
.img-ctns[data-v-c2765f90] {
  position: absolute;
  bottom: 0.41rem;
  right: 0.82rem;
  width: calc(100% - 1.6rem);
}
.img-ctns .btn-ctn[data-v-c2765f90] {
    text-align: right;
    margin-bottom: 0.2rem;
}
.img-ctns .btn-ctn[data-v-c2765f90] .van-uploader__upload-icon {
      background: none;
}
.img-ctns .btn-ctn[data-v-c2765f90] .van-uploader__upload {
      background-color: none !important;
      width: 0.47rem !important;
      height: 0.47rem !important;
}
.img-ctns .btn-ctn[data-v-c2765f90] .van-uploader__upload-icon {
      width: 0.47rem;
      height: 0.47rem;
}
.img-ctns .btn-ctn[data-v-c2765f90] .van-icon__image {
      width: 0.47rem !important;
      height: 0.47rem !important;
}
.img-ctns .btn-ctn img[data-v-c2765f90] {
      width: 0.47rem;
}
.img-ctns .img-items[data-v-c2765f90] {
    height: 50px;
    overflow-x: scroll;
    white-space: nowrap;
    overflow-y: hidden;
    width: 100%;
    text-align: left;
}
.img-ctns .img-items[data-v-c2765f90]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.img-ctns .img-items .img-item[data-v-c2765f90] {
      position: relative;
      margin-right: 0.23rem;
      display: inline-block;
      vertical-align: top;
      margin-top: 0.2rem;
}
.img-ctns .img-items .img-item .delete-img[data-v-c2765f90] {
        position: absolute;
        right: -8px;
        top: -8px;
        display: inline-block;
        font-size: unset;
}
.img-ctns .img-items .img-item img[data-v-c2765f90] {
        width: 1.08rem;
        height: 1.08rem;
        border-radius: 0.14rem;
        background: #ccc;
}
.img-ctns .img-items .img-item .van-icon[data-v-c2765f90] {
        background: #98b6e1;
        padding: 0.1rem;
        border-radius: 50%;
        -webkit-transform: scale(0.6);
                transform: scale(0.6);
}
[data-v-c2765f90] .van-cell::after {
  border-bottom: none;
}

[data-v-39c9d6dc] .van-cell__value {
  padding: 0;
}
.title[data-v-39c9d6dc] {
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.van-search[data-v-39c9d6dc] {
  padding: 0 15px;
}
.van-search > .van-search__content .van-cell .van-field__left-icon[data-v-39c9d6dc] {
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search > .van-search__content .van-cell .van-field__left-icon .search-icon[data-v-39c9d6dc] {
      width: 14px;
      height: 14px;
}
[data-v-39c9d6dc] .van-checkbox__label {
  color: #333;
  font-weight: 500;
  font-size: 0.38rem;
}
.van-picker[data-v-39c9d6dc] .van-picker__toolbar {
  position: fixed;
  bottom: 40px;
  width: 100%;
  left: 0;
  display: block;
}
.van-picker[data-v-39c9d6dc] .van-picker__toolbar .btn-box {
    padding: 0 7.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 20px 0.41rem;
}
.van-picker[data-v-39c9d6dc] .van-picker__columns {
  margin-bottom: 90px;
}
.van-picker[data-v-39c9d6dc] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
.van-picker[data-v-39c9d6dc] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
.btn[data-v-39c9d6dc] {
  width: 2.84rem;
  text-align: center;
  padding: 10px 0;
  background: #d9e4f2;
  border-radius: 20px;
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #4378be;
}
.confirm_btn[data-v-39c9d6dc] {
  background: #4378be !important;
  color: #ffffff;
}
.empty-box[data-v-39c9d6dc] {
  padding: 100px 0 200px;
  text-align: center;
}
input[data-v-39c9d6dc]::-webkit-input-placeholder {
  font-size: 0.38rem;
  font-weight: 500;
  color: red;
}
input[data-v-39c9d6dc]::-moz-placeholder {
  font-size: 0.38rem;
  font-weight: 500;
  color: red;
}
input[data-v-39c9d6dc]::-ms-input-placeholder {
  font-size: 0.38rem;
  font-weight: 500;
  color: red;
}
input[data-v-39c9d6dc]::placeholder {
  font-size: 0.38rem;
  font-weight: 500;
  color: red;
}
.img-icon[data-v-39c9d6dc] {
  width: 0.48rem;
  height: 0.48rem;
}

.label-container .label-ctns[data-v-1d42ab11] {
  padding: 0 0.41rem;
  max-height: 9rem;
  overflow: auto;
}
.label-container .label-ctns[data-v-1d42ab11]::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}
.label-container .label-ctns .label-ctn .label-title[data-v-1d42ab11] {
    font-size: 0.38rem;
    color: #333;
    font-weight: 500;
    padding: 0.51rem 0;
}
.label-container .label-ctns .label-ctn .labels[data-v-1d42ab11] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.label-container .label-ctns .label-ctn .labels span[data-v-1d42ab11] {
      font-size: 0.32rem;
      padding: 0.12rem 0.2rem;
      margin: 0.1rem 0.1rem;
      border-radius: 0.31rem;
      color: #666;
      background: #eee;
}
.label-container .label-ctns .label-ctn .labels .active-label[data-v-1d42ab11] {
      color: #3975c6;
      background: #d7e3f4;
}
.label-container .add-label-ctn[data-v-1d42ab11] {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__body {
    background: #f7f8fc;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__control {
    padding: 0.14rem 0.28rem;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__control::-webkit-input-placeholder {
    color: #999;
    font-size: 0.38rem;
    font-weight: 500;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__control::-moz-placeholder {
    color: #999;
    font-size: 0.38rem;
    font-weight: 500;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__control::-ms-input-placeholder {
    color: #999;
    font-size: 0.38rem;
    font-weight: 500;
}
.label-container .add-label-ctn[data-v-1d42ab11] .van-field__control::placeholder {
    color: #999;
    font-size: 0.38rem;
    font-weight: 500;
}
.label-container .add-label-ctn .van-button--small[data-v-1d42ab11] {
    padding: 0.5rem 0.2rem;
    font-size: 0.38rem;
    font-weight: 500;
    background: #3975c6;
    border-top-right-radius: 0.14rem;
    border-bottom-right-radius: 0.14rem;
}

@charset "UTF-8";
.dynamic-ctn[data-v-7ee80f72] {
  margin: 0.2667rem;
  background: #ffffff;
  border-radius: 0.2667rem;
}
.dynamic-ctn .dynamic-ctn-title[data-v-7ee80f72] {
    font-size: 0.38rem;
    color: #333333;
    font-weight: bold;
    border-bottom: 1px solid #f5f6f9;
    padding: 0.34rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.dynamic-ctn .dynamic-ctn-title .right-items[data-v-7ee80f72] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.dynamic-ctn .dynamic-ctn-title .right-items[data-v-7ee80f72] > :first-of-type {
        margin-right: 8px;
}
.dynamic-ctn .dynamic-ctn-title .right-items .tab-item[data-v-7ee80f72] {
        font-size: 12px;
        font-weight: 500;
        color: #999999;
        background: rgba(160, 160, 160, 0.2);
        border-radius: 4px;
        padding: 2px 9px;
        text-align: center;
}
.dynamic-ctn .dynamic-ctn-title .right-items .active-item[data-v-7ee80f72] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.dynamic-ctn .dynamic-ctn-main[data-v-7ee80f72] {
    padding: 0.54rem 0.4rem 0.54rem 0.54rem;
    background: #fff;
    border-radius: 10px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap[data-v-7ee80f72] {
      width: 100%;
      height: 100%;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item[data-v-7ee80f72] {
        margin-bottom: 15px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .line[data-v-7ee80f72] {
          width: calc(100% - 16px);
          float: right;
          margin: 15px 0 0;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body[data-v-7ee80f72] {
          border-left: 2px #dae3f4 dashed;
          position: relative;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body[data-v-7ee80f72]::after {
            content: "";
            width: 5px;
            height: 5px;
            background: #d7e4f4;
            position: absolute;
            border-radius: 50%;
            bottom: -1px;
            left: -3.5px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info[data-v-7ee80f72] {
            margin-left: 15px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .svg[data-v-7ee80f72] {
              position: absolute;
              left: -10px;
              color: #3975c6;
              background-color: #fff;
              font-size: 18px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-top[data-v-7ee80f72] {
              width: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 20px;
              padding-top: 3px;
              position: relative;
              top: -3px;
              height: 20px;
              line-height: 20px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-top .time[data-v-7ee80f72] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                color: #666666;
                line-height: 13px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-top .name[data-v-7ee80f72] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                line-height: 13px;
                color: #333333;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-type[data-v-7ee80f72] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #3976c6;
              margin-bottom: 10px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-phone[data-v-7ee80f72],
            .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .item-time[data-v-7ee80f72] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              line-height: 24px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .img-box[data-v-7ee80f72] {
              margin-top: 10px;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
              overflow: hidden;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .img-box img[data-v-7ee80f72] {
                width: 45px;
                margin: 0 5px 0 0;
                border-radius: 5px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box[data-v-7ee80f72] {
              margin-top: 10px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap[data-v-7ee80f72] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: nowrap;
                    flex-wrap: nowrap;
                background: #f4f1fb;
                padding: 8px;
                border-radius: 5px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l[data-v-7ee80f72] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -ms-flex-wrap: nowrap;
                      flex-wrap: nowrap;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .link-svg[data-v-7ee80f72] {
                    font-size: 14px;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .text[data-v-7ee80f72] {
                    font-size: 12px;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #9571d3;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-r[data-v-7ee80f72] {
                  font-size: 12px;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #666666;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type0[data-v-7ee80f72] {
          color: #3975c6 !important;
          border-color: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type0[data-v-7ee80f72]::after {
            background: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type1[data-v-7ee80f72] {
          color: #9571d3 !important;
          border-color: #eae3f6 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type1[data-v-7ee80f72]::after {
            background: #eae3f6 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type2[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type21[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type22[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type50[data-v-7ee80f72] {
          color: #60b28e !important;
          border-color: #dff0e8 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type2[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type21[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type22[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type50[data-v-7ee80f72]::after {
            background: #dff0e8 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type3[data-v-7ee80f72] {
          color: #3d78c7 !important;
          border-color: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type3[data-v-7ee80f72]::after {
            background: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type4[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type8[data-v-7ee80f72] {
          color: #f5ab32 !important;
          border-color: #fdeed6 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type4[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type8[data-v-7ee80f72]::after {
            background: #fdeed6 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type5[data-v-7ee80f72] {
          color: #3975c6 !important;
          border-color: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type5[data-v-7ee80f72]::after {
            background: #d7e4f4 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type6[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type11[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type12[data-v-7ee80f72],
        .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type13[data-v-7ee80f72] {
          color: #f25a73 !important;
          border-color: #fcdee3 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type6[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type11[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type12[data-v-7ee80f72]::after,
          .dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .type13[data-v-7ee80f72]::after {
            background: #fcdee3 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .follow-style[data-v-7ee80f72] {
          color: #9571d3 !important;
          border-color: #eae3f6 !important;
}
.dynamic-ctn .dynamic-ctn-main .state-block-content-o-wrap .state-content-item .follow-style[data-v-7ee80f72]::after {
            background: #eae3f6 !important;
}
.dynamic-ctn .dynamic-ctn-main .info-content[data-v-7ee80f72] {
      padding: 20px 13px;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap[data-v-7ee80f72] {
        width: 100%;
        height: 100%;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap .info-table[data-v-7ee80f72] {
          width: 100%;
          border-collapse: collapse;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap .info-table td[data-v-7ee80f72] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 400;
            padding: 10px 11px;
            border: 1px solid #e8eaf6;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap .info-table .title[data-v-7ee80f72] {
            color: #999999;
            white-space: nowrap;
            text-align: right;
            padding: 10px 10px !important;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap .info-table .head-title[data-v-7ee80f72] {
            white-space: nowrap;
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: bold;
            color: #333333;
}
.dynamic-ctn .dynamic-ctn-main .info-content .info-content-wrap .info-table .value[data-v-7ee80f72] {
            color: #333333;
            white-space: nowrap;
            width: 100%;
}
.dynamic-ctn .dynamic-ctn-main .order-content .order-content-wrap[data-v-7ee80f72] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.dynamic-ctn .dynamic-ctn-main .order-content .order-content-wrap img[data-v-7ee80f72] {
        width: 147px;
        height: 118px;
        margin: 55px 0 29px;
}
.dynamic-ctn .dynamic-ctn-main .order-content .order-content-wrap span[data-v-7ee80f72] {
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
        line-height: 12px;
}
.dynamic-ctn .dynamic-ctn-main .order-content .order-content-wrap span[data-v-7ee80f72]:nth-child(3) {
        margin-top: 10px;
        margin-bottom: 63px;
}
.dynamic-ctn .construction-list[data-v-7ee80f72] {
    padding: 0;
}
.dynamic-ctn .construction-list .dynamic-list[data-v-7ee80f72] {
      padding: 0.54rem 0.2rem 0.54rem 0.2rem;
}
.dynamic-ctn .construction-list .dynamic-tabs[data-v-7ee80f72] {
      padding: 0 16px;
}
.dynamic-ctn .construction-list[data-v-7ee80f72] .van-tabs__nav--complete {
      padding-left: 0;
}
.line[data-v-7ee80f72] {
  width: 100%;
  height: 1px;
  background: #ecf0f9;
}
.clearfix[data-v-7ee80f72] {
  zoom: 1;
}
/*zooom 属性：IE 浏览器的专用属性。这一句是专门针对老版本的IE浏览器所写的，为了兼容*/
.clearfix[data-v-7ee80f72]:after {
  /* :after伪对象选择符---在这个对象被浏览器渲染后添加一定的内容*/
  content: ".";
  /*content属性：添加的内容即为这个属性的值。这个属性是专门与伪对象搭配使用的*/
  display: block;
  /*将添加进去的内容转换为块状元素*/
  visibility: hidden;
  /*visibility：可视化属性，控制元素是否可见，但无论是否隐藏都保留物理空间。{与display:none的比较}*/
  height: 0;
  /*将添加进去的内容高度设置为0，消除其占位*/
  clear: both;
  /*将添加进去的内容作为清除浮动的对象，实现外围容器中有内容存在，因此可以自动判定高度，解决塌陷*/
}
[data-v-7ee80f72] .state-block-content {
  padding: 0 !important;
}
[data-v-7ee80f72] .state-block {
  margin: 0 !important;
}
[data-v-7ee80f72] .van-tabs__line {
  background-color: #3975C6;
}
[data-v-7ee80f72] .van-tabs__nav--complet {
  padding-left: 0.34rem;
  padding-right: 0.34rem;
}
[data-v-7ee80f72] .van-tab {
  padding: 0 12px 0 0;
}

@charset "UTF-8";
.tips-content[data-v-37d6c212] {
  margin-left: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tips-content .tips-item[data-v-37d6c212] {
    height: 0.61rem;
    line-height: 0.61rem;
    background: rgba(57, 117, 198, 0.2);
    border-radius: 0.32rem;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #3975c6;
    padding: 0 0.24rem;
    margin-right: 10px;
    margin-bottom: 10px;
}
.tips-content .active-item[data-v-37d6c212] {
    color: #3975c6;
    background: #d1def1;
}
.top-wrap[data-v-37d6c212] {
  border-bottom: 1px solid #ecf0f9;
}
.top-l[data-v-37d6c212] {
  padding: 17px 14px 0.4rem 0.37rem;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.line[data-v-37d6c212] {
  width: 100%;
  height: 1px;
  background: #ecf0f9;
}
.state-block[data-v-37d6c212] {
  margin: 10px 10px 0;
  background: #fff;
  border-radius: 10px;
}
.state-block .state-block-tabs[data-v-37d6c212] {
    padding-top: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.state-block .state-block-tabs .tabs-item[data-v-37d6c212] {
      padding: 13px 0;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      position: relative;
}
.state-block .state-block-tabs .active-item[data-v-37d6c212]::after {
      content: "";
      width: 24px;
      height: 3px;
      background: #3976c6;
      border-radius: 2px;
      position: absolute;
      bottom: 0;
      left: calc(50% - 12px);
}
.state-block .state-block-content[data-v-37d6c212] {
    padding: 17px 13px 0 13px;
}
.state-block .state-block-content .state-block-content-wrap[data-v-37d6c212] {
      width: 100%;
      height: 100%;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item[data-v-37d6c212] {
        margin-bottom: 15px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .line[data-v-37d6c212] {
          width: calc(100% - 16px);
          float: right;
          margin: 15px 0 0;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-37d6c212] {
          border-left: 2px #d7e4f4 dashed;
          position: relative;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body[data-v-37d6c212]::after {
            content: "";
            width: 5px;
            height: 5px;
            background: #d7e4f4;
            position: absolute;
            border-radius: 50%;
            bottom: -1px;
            left: -3.5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info[data-v-37d6c212] {
            margin-left: 15px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .svg[data-v-37d6c212] {
              position: absolute;
              left: -10px;
              color: #3975c6;
              background-color: #fff;
              font-size: 18px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top[data-v-37d6c212] {
              width: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 3px;
              padding-top: 3px;
              position: relative;
              top: -5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .tag[data-v-37d6c212] {
                height: 0.53rem;
                line-height: 0.55rem;
                font-size: 0.32rem;
                border-radius: 0.13rem;
                background: #3975c6;
                color: #ffffff;
                padding: 0 0.16rem;
                margin-left: 7px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .time[data-v-37d6c212] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                color: #666666;
                line-height: 13px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .name[data-v-37d6c212] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 500;
                line-height: 13px;
                color: #333333;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-top .name .nameTitle[data-v-37d6c212] {
                  display: inline-block;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
                  max-width: 1.33rem;
                  height: 0.53rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .item-type[data-v-37d6c212] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #3976c6;
              margin-bottom: 10px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state[data-v-37d6c212] {
              background: #f7f8fc;
              border-radius: 5px;
              padding: 0.29rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state[data-v-37d6c212] {
                font-size: 12px;
                font-family: PingFang SC;
                font-weight: 500;
                line-height: 24px;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .item-state-l[data-v-37d6c212] {
                  font-weight: 500;
                  display: inline-block;
                  width: 3rem;
                  color: #666666;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .item-state-r[data-v-37d6c212] {
                  font-weight: 500;
                  color: #333333;
                  text-align: right;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state .view-audio[data-v-37d6c212] {
                  background: #3975C6;
                  padding: 0px 7px;
                  border-radius: 5px;
                  font-size: 10px;
                  font-weight: 500;
                  color: #FFFFFF;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .state .item-state-img[data-v-37d6c212] {
                display: unset;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box[data-v-37d6c212] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
              overflow: hidden;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .img-box img[data-v-37d6c212] {
                width: 1.16rem;
                border-radius: 0.14rem;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box[data-v-37d6c212] {
              margin-top: 10px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap[data-v-37d6c212] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-wrap: nowrap;
                    flex-wrap: nowrap;
                background: #f4f1fb;
                padding: 8px;
                border-radius: 5px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l[data-v-37d6c212] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -ms-flex-wrap: nowrap;
                      flex-wrap: nowrap;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .link-svg[data-v-37d6c212] {
                    font-size: 14px;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-l .text[data-v-37d6c212] {
                    font-size: 12px;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #9571d3;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
}
.state-block .state-block-content .state-block-content-wrap .state-content-item .state-item-body .state-item-info .file-box .file-box-wrap .wrap-r[data-v-37d6c212] {
                  font-size: 12px;
                  font-family: PingFang SC;
                  font-weight: 500;
                  color: #666666;
                  overflow: hidden;
                  text-overflow: ellipsis;
                  white-space: nowrap;
}
.state-block .audio-popup-ctn[data-v-37d6c212] {
    padding: .6933rem .4rem;
}
.state-block .audio-popup-ctn .title-ctn[data-v-37d6c212] {
      text-align: center;
      font-size: .48rem;
      font-weight: bold;
      color: #333333;
      margin-bottom: 0.6933rem;
}
.state-block .audio-popup-ctn .audio-ctn[data-v-37d6c212] {
      max-height: 400px;
      overflow: auto;
}
.state-block .audio-popup-ctn .audio-ctn[data-v-37d6c212]::-webkit-scrollbar {
        display: none;
        width: 0 !important;
        height: 0 !important;
}
.state-block .audio-popup-ctn .audio-ctn .audio-item .audio-item-title[data-v-37d6c212] {
        font-size: .3733rem;
        font-weight: bold;
        color: #333333;
        margin: .5333rem 0 .2667rem;
}
.state-block .info-content[data-v-37d6c212] {
    padding: 20px 13px;
}
.state-block .info-content .info-content-wrap[data-v-37d6c212] {
      width: 100%;
      height: 100%;
}
.state-block .info-content .info-content-wrap .info-table[data-v-37d6c212] {
        width: 100%;
        border-collapse: collapse;
}
.state-block .info-content .info-content-wrap .info-table td[data-v-37d6c212] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 400;
          padding: 10px 11px;
          border: 1px solid #e8eaf6;
}
.state-block .info-content .info-content-wrap .info-table .title[data-v-37d6c212] {
          color: #999999;
          white-space: nowrap;
          text-align: right;
          padding: 10px 10px !important;
}
.state-block .info-content .info-content-wrap .info-table .head-title[data-v-37d6c212] {
          white-space: nowrap;
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.state-block .info-content .info-content-wrap .info-table .value[data-v-37d6c212] {
          color: #333333;
          white-space: nowrap;
          width: 100%;
}
.state-block .order-content .order-content-wrap[data-v-37d6c212] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.state-block .order-content .order-content-wrap img[data-v-37d6c212] {
      width: 147px;
      height: 118px;
      margin: 55px 0 29px;
}
.state-block .order-content .order-content-wrap span[data-v-37d6c212] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
      line-height: 12px;
}
.state-block .order-content .order-content-wrap span[data-v-37d6c212]:nth-child(3) {
      margin-top: 10px;
      margin-bottom: 63px;
}
.clearfix[data-v-37d6c212] {
  zoom: 1;
}
/*zooom 属性：IE 浏览器的专用属性。这一句是专门针对老版本的IE浏览器所写的，为了兼容*/
.clearfix[data-v-37d6c212]:after {
  /* :after伪对象选择符---在这个对象被浏览器渲染后添加一定的内容*/
  content: ".";
  /*content属性：添加的内容即为这个属性的值。这个属性是专门与伪对象搭配使用的*/
  display: block;
  /*将添加进去的内容转换为块状元素*/
  visibility: hidden;
  /*visibility：可视化属性，控制元素是否可见，但无论是否隐藏都保留物理空间。{与display:none的比较}*/
  height: 0;
  /*将添加进去的内容高度设置为0，消除其占位*/
  clear: both;
  /*将添加进去的内容作为清除浮动的对象，实现外围容器中有内容存在，因此可以自动判定高度，解决塌陷*/
}
.typeClue[data-v-37d6c212] {
  color: #3875c6 !important;
  border-color: #d7e4f4 !important;
}
.typeClue[data-v-37d6c212]::after {
    background: #d7e4f4 !important;
}
.type-operation[data-v-37d6c212] {
  color: #4cbcc7 !important;
  border-color: #d7e4f4 !important;
}
.type-operation[data-v-37d6c212]::after {
    background: #d7e4f4 !important;
}
.tip-operation[data-v-37d6c212] {
  color: #9571d3 !important;
  border-color: #eae3f6 !important;
}
.tip-operation[data-v-37d6c212]::after {
    background: #eae3f6 !important;
}
.type0[data-v-37d6c212] {
  color: #3975c6 !important;
  border-color: #d7e4f4 !important;
}
.type0[data-v-37d6c212]::after {
    background: #d7e4f4 !important;
}
.type1[data-v-37d6c212] {
  color: #9571d3 !important;
  border-color: #eae3f6 !important;
}
.type1[data-v-37d6c212]::after {
    background: #eae3f6 !important;
}
.type2[data-v-37d6c212],
.type21[data-v-37d6c212],
.type22[data-v-37d6c212],
.type50[data-v-37d6c212] {
  color: #60b28e !important;
  border-color: #dff0e8 !important;
}
.type2[data-v-37d6c212]::after,
  .type21[data-v-37d6c212]::after,
  .type22[data-v-37d6c212]::after,
  .type50[data-v-37d6c212]::after {
    background: #dff0e8 !important;
}
.type3[data-v-37d6c212] {
  color: #3d78c7 !important;
  border-color: #d7e4f4 !important;
}
.type3[data-v-37d6c212]::after {
    background: #d7e4f4 !important;
}
.type4[data-v-37d6c212],
.type8[data-v-37d6c212] {
  color: #f5ab32 !important;
  border-color: #fdeed6 !important;
}
.type4[data-v-37d6c212]::after,
  .type8[data-v-37d6c212]::after {
    background: #fdeed6 !important;
}
.type5[data-v-37d6c212] {
  color: #3975c6 !important;
  border-color: #d7e4f4 !important;
}
.type5[data-v-37d6c212]::after {
    background: #d7e4f4 !important;
}
.type6[data-v-37d6c212],
.type11[data-v-37d6c212],
.type12[data-v-37d6c212],
.type13[data-v-37d6c212] {
  color: #f25a73 !important;
  border-color: #fcdee3 !important;
}
.type6[data-v-37d6c212]::after,
  .type11[data-v-37d6c212]::after,
  .type12[data-v-37d6c212]::after,
  .type13[data-v-37d6c212]::after {
    background: #fcdee3 !important;
}
.follow-style[data-v-37d6c212] {
  color: #9571d3 !important;
  border-color: #eae3f6 !important;
}
.follow-style[data-v-37d6c212]::after {
    background: #eae3f6 !important;
}
.record .record-tag[data-v-37d6c212] {
  background: #4cbcc7 !important;
}
.record-tips .tips-item[data-v-37d6c212] {
  background: #eae3f6 !important;
  color: #9571d3 !important;
}
.record-state-item-body[data-v-37d6c212] {
  border-left: 2px #eae3f6 dashed;
}
.record-state-item-body[data-v-37d6c212]::after {
    background: #eae3f6;
}

.dynamic-item[data-v-ebeb686a] {
  position: relative;
  border-left: 1px dashed #e6e8ef;
  margin-left: 14px;
  padding-left: 20px;
}
.dynamic-item > div[data-v-ebeb686a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
}
.dynamic-item .name-class[data-v-ebeb686a] {
    font-size: 15px;
    font-weight: bold;
    color: #404449;
}
.dynamic-item .date-class[data-v-ebeb686a] {
    font-size: 14px;
    font-weight: 400;
    color: #9fa6af;
}
.dynamic-item .type-icon[data-v-ebeb686a] {
    position: absolute;
    width: 18px;
    height: 18px;
    left: -10px;
    background: #fff;
}
.dynamic-item .item-left[data-v-ebeb686a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #198efc;
    font-size: 14px;
    font-weight: 400;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.dynamic-item .item-left .error-class[data-v-ebeb686a] {
      color: #fba219;
      margin-right: 5px;
      padding-left: 5px;
}
.dynamic-item .item-left .normal-class[data-v-ebeb686a] {
      color: #404449;
      margin-left: 5px;
}
.dynamic-item .item-right[data-v-ebeb686a] {
    background: rgba(27, 196, 112, 0.1);
    color: #1bc470;
    padding: 4px 5px;
    font-size: 14px;
    border-radius: 6px;
}
.dynamic-item .item-right img[data-v-ebeb686a] {
      width: 10px;
      height: 6px;
      margin-right: 5px;
}
.dynamic-item .item-right .no-check[data-v-ebeb686a] {
      color: #fba219;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.dynamic-item .item-right .no-check img[data-v-ebeb686a] {
        width: 14px;
        height: 14px;
}
.dynamic-item .no-check-ctn[data-v-ebeb686a] {
    background: rgba(251, 162, 25, 0.15);
}
.dynamic-item .split-line[data-v-ebeb686a] {
    width: 100%;
    height: 1px;
    background: #f3f5f9;
    margin-top: 15px;
}

.content-ctn[data-v-68ee753e] {
  background: #f3f7fa;
  padding: 10px;
  border-radius: 6px;
  display: block !important;
}
.content-ctn .remark-ctn[data-v-68ee753e] {
    color: #198efc;
    font-size: 12px;
    font-weight: 400;
}
.content-ctn .remark-ctn .remark-class[data-v-68ee753e] {
      color: #404449;
      margin-left: 5px;
}
.content-ctn .create-ctn .create-item[data-v-68ee753e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    color: #9fa6af;
    margin-bottom: 6px;
}
.content-ctn .create-ctn .create-item[data-v-68ee753e]:last-of-type {
      margin-bottom: 0;
}
.content-ctn .create-ctn .create-item .content-text[data-v-68ee753e] {
      color: #404449;
}
.content-ctn .images-ctn[data-v-68ee753e] {
    margin-top: 10px;
}
.content-ctn .images-ctn .images-item[data-v-68ee753e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 10px;
      position: relative;
}
.content-ctn .images-ctn .images-item .file-title[data-v-68ee753e] {
        background: rgba(25, 142, 252, 0.15);
        border-radius: 6px;
        padding: 12px 6px;
        font-size: 12px;
        font-weight: 400;
        color: #198efc;
        border: 1px solid #198efc;
        margin-right: 8px;
}
.content-ctn .images-ctn .images-item img[data-v-68ee753e] {
        width: 43px;
        height: 43px;
        border-radius: 6px;
        margin-right: 8px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
}
.content-ctn .images-ctn .images-item .mask-ctn[data-v-68ee753e] {
        position: absolute;
        right: 16px;
        top: 0;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.61);
        color: #fff;
        text-align: center;
        line-height: 44px;
        border-radius: 6px;
}
.content-ctn .title-container[data-v-68ee753e] {
    font-size: 14px;
    font-weight: 400;
    color: #9fa6af;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 10px 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f3f7fa;
}
.content-ctn .title-container .name-class[data-v-68ee753e] {
      font-size: 15px;
      font-weight: bold;
      color: #404449;
}
.error-class[data-v-68ee753e] {
  background: #fff;
  border: 1px solid #f3f7fa;
}

.van-tabbar[data-v-3bacc525] {
  height: 1.6rem;
}
.van-tabbar .van-tabbar-item[data-v-3bacc525] {
    padding: 0.25rem 0;
}
.van-tabbar .van-tabbar-item > .van-tabbar-item__icon[data-v-3bacc525] {
      font-size: 24px;
      margin-bottom: 5px;
}
.van-tabbar .van-tabbar-item > .van-tabbar-item__text[data-v-3bacc525] {
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #000000;
}

@charset "UTF-8";
.line[data-v-75fd3a86] {
  width: 100%;
  height: 1px;
  background: #ecf0f9;
}
.detial-container[data-v-75fd3a86] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f8fc;
}
.detial-container .detial-wrap[data-v-75fd3a86] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(35%, #f7f8fc));
    background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 35%);
}
.finished-text-box[data-v-75fd3a86] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 83px;
}
.finished-text-box .bottom-line[data-v-75fd3a86] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-75fd3a86] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}
.van-tabbar[data-v-75fd3a86] {
  height: 1.6rem;
}
.van-tabbar .van-tabbar-item[data-v-75fd3a86] {
    padding: 0.25rem 0;
}
.van-tabbar .van-tabbar-item > .van-tabbar-item__icon[data-v-75fd3a86] {
      font-size: 24px;
      margin-bottom: 5px;
}
.van-tabbar .van-tabbar-item > .van-tabbar-item__text[data-v-75fd3a86] {
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #000000;
}
/* 关闭客户弹窗按钮样式 */
.dialog-btn-wrap[data-v-75fd3a86] {
  margin: 10px 0;
}
.dialog-cancel-btn[data-v-75fd3a86] {
  width: 42%;
  margin: 0 4% !important;
  font-size: 0.38rem;
}
.dialog-submit-btn[data-v-75fd3a86] {
  width: 42%;
  margin: 0 4% !important;
  font-size: 0.38rem;
  background-color: #7497fb;
  color: #fff;
}
.details-text[data-v-75fd3a86] {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
}
.details-text > div[data-v-75fd3a86] {
  height: 48px;
  line-height: 48px;
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
}
.details-contract-status[data-v-75fd3a86] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.42rem;
  height: 16px;
  line-height: 4px;
  color: #737373;
}
.details-wrap-btn[data-v-75fd3a86] {
  width: calc(100% / 2);
  margin: 12.5px 0;
}
[data-v-75fd3a86] .state-block-content {
  padding-left: .59rem !important;
  padding-right: .35rem !important;
}

.green[data-v-0d6b28ce] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-0d6b28ce] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.detial-top-container[data-v-0d6b28ce] {
  width: 100%;
}
.detial-top-container .detial-top-wrap[data-v-0d6b28ce] {
    padding: 17px 10px 10px;
}
.detial-top-container .detial-top-wrap .detial-top-content[data-v-0d6b28ce] {
      width: 100%;
      height: 100%;
      background: #e7eef8;
      border-radius: 10px;
      opacity: rgba(255, 255, 255, 0.5);
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card[data-v-0d6b28ce] {
        width: 100%;
        background: #ffffff;
        border-radius: 10px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap[data-v-0d6b28ce] {
          padding: 15px 14px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info[data-v-0d6b28ce] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 7px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l[data-v-0d6b28ce] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: start;
                  -ms-flex-align: start;
                      align-items: flex-start;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .img-box[data-v-0d6b28ce] {
                position: relative;
                width: 1.33rem;
                height: 1.33rem;
                margin-right: 10px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .img-box .head-icon[data-v-0d6b28ce] {
                  width: 100%;
                  height: 100%;
                  position: absolute;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .img-box .edit-box[data-v-0d6b28ce] {
                  position: relative;
                  width: 0;
                  height: 0;
                  border-bottom: 20px solid #fff;
                  border-left: 20px solid transparent;
                  margin-left: calc(1.33rem - 20px);
                  margin-top: calc(1.33rem - 20px);
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .img-box .edit-img[data-v-0d6b28ce] {
                  width: 11px;
                  height: 11px;
                  position: absolute;
                  right: 0;
                  bottom: 0;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .card-info-l-box[data-v-0d6b28ce] {
                font-family: PingFang SC;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                        flex-direction: column;
                margin-top: 2px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .card-info-l-box .name[data-v-0d6b28ce] {
                  font-size: 18px;
                  font-weight: bold;
                  color: #333333;
                  margin-bottom: 5px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .card-info-l-box .type[data-v-0d6b28ce] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  border-radius: 5px;
                  width: -webkit-fit-content;
                  width: -moz-fit-content;
                  width: fit-content;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-l .card-info-l-box .type .type-text[data-v-0d6b28ce] {
                    font-size: 12px;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #ffffff;
                    padding: 3px 5px 4px;
                    -webkit-transform: scale(0.9);
                            transform: scale(0.9);
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .phone-box img[data-v-0d6b28ce] {
              width: 1rem;
              height: 1rem;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-r[data-v-0d6b28ce] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-r img[data-v-0d6b28ce] {
                width: 0.11rem;
                height: 0.19rem;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-info .card-info-r span[data-v-0d6b28ce] {
                font-size: 13px;
                font-family: PingFang SC;
                font-weight: 500;
                color: #999999;
                margin-right: 4px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-type[data-v-0d6b28ce] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            margin-bottom: 7px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-type .card-type-item[data-v-0d6b28ce] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
              margin-right: 16px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-type .card-type-item .svgIcon[data-v-0d6b28ce] {
                font-size: 16px;
                margin-right: 3px;
                color: #548cdf !important;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-address[data-v-0d6b28ce] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            margin-bottom: 14px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-address .svgIcon[data-v-0d6b28ce] {
              font-size: 16px;
              margin-right: 3px;
              color: #548cdf !important;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-address .address[data-v-0d6b28ce] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .line[data-v-0d6b28ce] {
            width: 100%;
            height: 1px;
            background: #ecf0f9;
            margin-bottom: 12px;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-bottom[data-v-0d6b28ce] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-bottom .bottom-item[data-v-0d6b28ce] {
              width: 4.27rem;
              height: .67rem;
              line-height: 0.67rem;
              text-align: center;
              border: 1px solid #3875C6;
              border-radius: .35rem;
              font-family: PingFang SC;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-bottom .bottom-item .title[data-v-0d6b28ce] {
                font-size: .32rem;
                font-weight: 500;
                color: #3875C6;
}
.detial-top-container .detial-top-wrap .detial-top-content .top-card .card-wrap .card-bottom .bottom-item .value[data-v-0d6b28ce] {
                font-size: 15px;
                font-weight: 800;
                color: #333333;
}
.detial-top-container .detial-top-wrap .detial-top-content .open-box[data-v-0d6b28ce] {
        float: right;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 5px;
}
.detial-top-container .detial-top-wrap .detial-top-content .open-box span[data-v-0d6b28ce] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #3975c6;
          margin-right: 3px;
}
.detial-top-container .detial-top-wrap .detial-top-content .open-box img[data-v-0d6b28ce] {
          width: 7px;
          height: 4px;
          -webkit-transform: translateZ(180deg);
                  transform: translateZ(180deg);
}
.detial-top-container .detial-top-wrap .detial-top-content .open-box .img-active[data-v-0d6b28ce] {
          -webkit-transition: all 0.2s;
          transition: all 0.2s;
          -webkit-transform: rotateX(180deg);
                  transform: rotateX(180deg);
}
.detial-top-container .detial-top-wrap .detial-top-content .tips-box .tips-wrap[data-v-0d6b28ce] {
        padding: 11px 13px 4px;
        overflow: hidden;
}
.detial-top-container .detial-top-wrap .detial-top-content .tips-box .tips-wrap .tip-item[data-v-0d6b28ce] {
          padding: 6px 8px;
          background: #c3d6ee;
          color: #3975c6;
          border-radius: 12px;
          float: left;
          margin-right: 5px;
          margin-bottom: 7px;
}
.clear[data-v-0d6b28ce] {
  clear: both;
}

.btn-block[data-v-528140f8] {
  margin: 0 10px;
  border-radius: 10px;
}
.btn-block .btn-block-wrap[data-v-528140f8] {
    border-radius: 10px;
    padding: 19px 0;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.btn-block .btn-block-wrap .btn-block-item[data-v-528140f8] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.btn-block .btn-block-wrap .btn-block-item img[data-v-528140f8] {
        width: 1.47rem;
        height: 1.36rem;
        margin-bottom: 10px;
}
.btn-block .btn-block-wrap .btn-block-item div[data-v-528140f8] {
        font-size: .32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
}
.dialog_content[data-v-528140f8] {
  margin: 0 auto;
  padding: .61rem 0;
  text-align: center;
  font-size: .37rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
  margin-top: -2px;
}
[data-v-528140f8] .van-dialog__header {
  font-size: .45rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  background-color: #ffffff;
}
[data-v-528140f8] .van-button {
  background: #3875C6;
  font-size: .45rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 0px;
}
[data-v-528140f8] .van-dialog {
  border-radius: 5px;
}
.popUPList[data-v-528140f8] {
  margin: 0.27rem 0.4rem;
  background-color: #e6e6e6;
  padding: 0.27rem;
  border-radius: 0.13rem;
}
.popUPList .list-item[data-v-528140f8] {
    width: 100%;
}
.popUPList .list-item .item-top[data-v-528140f8] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
}
.popUPList .list-item .item-top .item-top-l[data-v-528140f8] {
        margin-right: 0.27rem;
}
.popUPList .list-item .item-top .item-top-l img[data-v-528140f8] {
          width: 1.07rem;
          height: 1.07rem;
}
.popUPList .list-item .item-top .item-top-r[data-v-528140f8] {
        font-size: 12px;
        color: #666666;
}
.popUPList .list-item .item-top .item-top-r .item-top-r-t[data-v-528140f8] {
          width: 7rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin-bottom: 0.13rem;
          font-size: 14px;
          color: #333333;
}
.popUPList .list-item .item-top .item-top-r .item-top-r-t .item-sign[data-v-528140f8] {
            color: #f0c67f;
            font-size: 12px;
}
.popUPList .list-item .item-bottom[data-v-528140f8] {
      margin: 5px 0;
      font-size: 14px;
}

.tips-content[data-v-7c967104] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 12px 0 7px;
}
.tips-content .tips-item[data-v-7c967104] {
    text-align: center;
    background: rgba(57, 117, 198, 0.2);
    border-radius: 0.32rem;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #3975c6;
    height: 0.61rem;
    line-height: 0.61rem;
    margin: 0 0 7px 5px;
    padding: 0 0.24rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.tips-content .active-item[data-v-7c967104] {
    color: #3975c6;
    background: #d1def1;
}
.follow-container[data-v-7c967104] {
  margin: 10px 10px 0;
  border-radius: 10px;
  background: #ffffff;
}
.follow-container .follow-wrap .follow-top .top-wrap[data-v-7c967104] {
    padding: 0.45rem 0.37rem 0.32rem 0.37rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #ecf0f9;
    margin-bottom: 9px;
}
.follow-container .follow-wrap .follow-top .top-wrap .top-l[data-v-7c967104] {
      font-size: 0.37rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
}
.follow-container .follow-wrap .follow-top .top-wrap .top-r[data-v-7c967104] {
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #666666;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.follow-container .follow-wrap .follow-top .top-wrap .top-r img[data-v-7c967104] {
        width: 7px;
        height: 4px;
        margin-left: 4px;
}
.follow-container .follow-wrap .follow-top .top-wrap .top-r .img-close[data-v-7c967104] {
        -webkit-transform: translateZ(180deg);
                transform: translateZ(180deg);
}
.follow-container .follow-wrap .follow-top .top-wrap .top-r .img-open[data-v-7c967104] {
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        -webkit-transform: rotateX(180deg);
                transform: rotateX(180deg);
}
.follow-container .follow-wrap .follow-content[data-v-7c967104] {
    width: 100%;
    background: #ffffff;
}
.follow-container .follow-wrap .follow-content .line[data-v-7c967104] {
      width: 100%;
      height: 1px;
      background: #ecf0f9;
}
.follow-container .follow-wrap .follow-content .tabs-content[data-v-7c967104] {
      padding: 9px 13px;
}
.follow-container .follow-wrap .follow-content .tabs-content .tabs-wrap[data-v-7c967104] {
        width: 100%;
        height: 100%;
        background: #f7f8fc;
        border-radius: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.follow-container .follow-wrap .follow-content .tabs-content .tabs-wrap .tab-item[data-v-7c967104] {
          width: 20%;
          padding: 10px 0;
          text-align: center;
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: 500;
          white-space: nowrap;
          position: relative;
}
.follow-container .follow-wrap .follow-content .tabs-content .tabs-wrap .tab-item-active[data-v-7c967104] {
          background: #3975c6;
          color: #fff;
          border-radius: 10px;
}
.follow-container .follow-wrap .follow-content .tabs-content .tabs-wrap .tab-item-active[data-v-7c967104]::after {
            width: 0;
            height: 0;
            content: "";
            border-top: 6px #3975c6 solid;
            border-left: 8.6px solid transparent;
            border-right: 8.6px solid transparent;
            position: absolute;
            bottom: -5px;
            left: calc(50% - 6px);
}
.follow-container .follow-wrap .follow-content .content-content[data-v-7c967104] {
      padding: 13px;
}
.follow-container .follow-wrap .follow-content .content-content .content-wrap[data-v-7c967104] {
        width: 100%;
        height: 100%;
}
.tips-btn[data-v-7c967104] {
  margin: 0.53rem 0.35rem 0 0.35rem;
}
.tips-btn button[data-v-7c967104] {
    width: 100%;
    text-align: center;
    height: 35px;
    background: #3875c6;
    border-radius: 5px;
    border: none;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.4rem;
}
.btn-content[data-v-7c967104] {
  width: 100%;
  margin-top: 7px;
}
.btn-content .btn-wrap[data-v-7c967104] {
    padding: 12px 0;
    background: #3975c6;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
}
 > .van-uploader .van-uploader__wrapper .van-uploader__upload[data-v-7c967104] {
  background: transparent;
}
 > .van-uploader .van-uploader__wrapper .van-uploader__upload .van-icon[data-v-7c967104] {
    color: #98b6e1;
}
 > .active-item[data-v-7c967104] {
  color: #333333;
}











































































































































































































































/* 客户商机列表 */
.decoration-wrap[data-v-373cc720]{
  background: #F7F8FC;
}
.box2[data-v-373cc720] {
  position: absolute;
  top: 1.44rem;
  width: 100%;
  height: calc(100% - 1.44rem);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
  background: #F7F8FC;
}
.customer-wrap[data-v-373cc720] {
  position: relative;
  margin: 0 10px 10px;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.34rem;
  color: #333333;
  background-color: #fff;
  overflow: hidden;
}
.selected-item[data-v-373cc720]{
  background-color: #EEF3FC;
  border: 1px solid #4575C7;
}
.reported-time[data-v-373cc720] {
  font-size: 10px;
  color: #999999;
}
.history-list-wrap[data-v-373cc720] {
  position: absolute;
  top: 53px;
  width: 100%;
  height: calc(100% - 53px);
  background-color: #ffffff;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
}
.clear-history[data-v-373cc720] {
  font-size: 12px;
  color: #999999;
}
.item-class[data-v-373cc720]{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-title[data-v-373cc720]{
  font-size: 0.38rem;
  margin-bottom: 15px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  font-weight: 600;
}
.item-foot[data-v-373cc720]{
  color: #999;
  margin-top: .5333rem;
}

*[data-v-66f550ee] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.collection-container[data-v-66f550ee] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-66f550ee] {
    position: relative;
}
.collection-container .cell-title-required[data-v-66f550ee]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.collection-container .delete[data-v-66f550ee] {
    float: right;
}
.collection-container .sub-btn-box[data-v-66f550ee] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .bussiness-info-title[data-v-66f550ee] {
    padding: 15px 16px 5px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
.collection-container .history-list[data-v-66f550ee] {
    background: #EEF3FC;
    border-radius: 5px;
    padding: 0 10px;
    margin-top: 10px;
}
.collection-container .history-list .history-item[data-v-66f550ee] {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      padding: 10px 0 5px;
}
.collection-container .history-list .list-title[data-v-66f550ee] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      padding-top: 15px;
}
.collection-container .adress-ctn[data-v-66f550ee] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-bottom: 5px;
}
.collection-container .update-ctn[data-v-66f550ee] {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 24px;
}
.collection-container .check-approval-container[data-v-66f550ee] {
    margin: 0.2rem 0.27rem 0;
}
.collection-container[data-v-66f550ee] .van-cell, .collection-container[data-v-66f550ee] .van-field__body {
    font-weight: 400 !important;
}
.collection-container[data-v-66f550ee] .van-cell {
    font-size: .38rem;
}
.collection-container[data-v-66f550ee] .van-cell__label {
    font-size: .38rem;
    color: #999;
}
.collection-container[data-v-66f550ee] .van-cell__value {
    color: #666;
}
.collection-container[data-v-66f550ee] .van-cell__value input::-webkit-input-placeholder {
      color: #999 !important;
}
.collection-container[data-v-66f550ee] .van-field__control::-webkit-input-placeholder {
    color: #999 !important;
}
.collection-container[data-v-66f550ee] .van-cell-group__title {
    color: #333333;
    font-size: 0.43rem;
    font-weight: bold;
}
.collection-container[data-v-66f550ee] .van-cell--required::before {
    display: none;
}
.collection-container[data-v-66f550ee] .van-cell-group--inset {
    margin-left: .27rem;
    margin-right: .27rem;
    border-radius: .18rem;
}
.collection-container[data-v-66f550ee] .van-cell-group__title--inset {
    padding: .53rem .34rem .41rem;
}
.collection-container[data-v-66f550ee] .van-field__error-message {
    text-align: right;
}
.collection-container[data-v-66f550ee] .van-field__label {
    width: 3rem;
}
.collection-container[data-v-66f550ee] .van-switch__node {
    top: 2px;
    left: 2px;
    width: 0.8em;
    height: 0.8em;
}
.collection-container[data-v-66f550ee] .van-checkbox__label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.collection-container .switch-ctn[data-v-66f550ee] {
    position: relative;
    font-size: 12px;
    color: #fff;
}
.collection-container .switch-ctn img[data-v-66f550ee] {
      width: 1.27rem;
      height: 0.57rem;
}
.collection-container .switch-ctn .selected[data-v-66f550ee] {
      position: absolute;
      left: 7px;
      color: #fff;
}
.collection-container .switch-ctn .no-selected[data-v-66f550ee] {
      position: absolute;
      right: 7px;
      color: #fff;
}
.collection-container .textarea-field[data-v-66f550ee] {
    display: block;
}
.collection-container .textarea-field[data-v-66f550ee] .van-field__label {
      margin-bottom: 5px;
}

.opportunity_list_box[data-v-3fa63df0] {
  width: 8.74rem;
  min-height: 7.2rem;
  background: #F7F8FC;
  border-radius: 0.13rem 0.13rem 0.13rem 0.13rem;
  overflow: hidden;
}
.opportunity_list_box h3[data-v-3fa63df0] {
    font-size: 0.45rem;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0.6rem 0 0.42rem 0;
}
.opportunity_list_box .opportunity_search-icon[data-v-3fa63df0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding-left: .3rem;
}
.opportunity_list_box .opportunity_search-icon .search-left-icon[data-v-3fa63df0] {
      width: .38rem;
}
.opportunity_list_box .opportunity_list_box_list[data-v-3fa63df0] {
    height: 10.05rem;
    overflow-y: auto;
}
.opportunity_list_box .opportunity_list_box_list_none[data-v-3fa63df0] {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 2.92rem;
    text-align: center;
    margin-bottom: 0.38rem;
}
.opportunity_list_box .btn_group[data-v-3fa63df0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}
.opportunity_list_box .btn_group > *[data-v-3fa63df0] {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
}
.opportunity_list_box .btn_group[data-v-3fa63df0]::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      background: #ebedf0;
      height: 1px;
      -webkit-transform: scaleY(0.5);
              transform: scaleY(0.5);
}
.opportunity_list_box .btn_group .btn_group-divider[data-v-3fa63df0] {
      width: 1px;
      background: #ebedf0;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-transform: scaleX(0.5);
              transform: scaleX(0.5);
}
.opportunity_list_box .btn_group .btn_group-submit[data-v-3fa63df0] {
      color: #4378BE;
}
.cell-title-required[data-v-3fa63df0] {
  position: relative;
}
.cell-title-required[data-v-3fa63df0]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: '*';
}
[data-v-3fa63df0] .van-field__error-message {
  text-align: right;
}
[data-v-3fa63df0] .van-popup {
  background: transparent;
}
[data-v-3fa63df0] .van-popup--center.van-popup--round {
  border-radius: .18rem;
}
[data-v-3fa63df0] .van-search {
  background: #F7F8FC;
  padding: 0 .41rem .38rem;
}
[data-v-3fa63df0] .van-search .van-search__content {
    background: #fff;
}
[data-v-3fa63df0] .van-search .van-search__content .van-cell {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
[data-v-3fa63df0] .van-search .van-search__content .van-cell .van-icon-search {
        color: #6691CA;
}
[data-v-3fa63df0] .van-button--default {
  border-color: transparent;
}



















































































































.list-item.select[data-v-ee1df5ae] {
  background: #EEF3FC;
  border-color: #3975C6;
}
.list-item[data-v-ee1df5ae] {
  background: #fff;
  margin: 0 .38rem;
  margin-bottom: 0.19rem;
  border-radius: 7px;
  border: 0.03rem solid #fff;
}
.list-item .list-item-content .list-item-content-wrap[data-v-ee1df5ae] {
    padding: 15px 10px 0 10px;
}
.list-item .list-item-content .list-item-content-wrap .item-top[data-v-ee1df5ae] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 0.32rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-l[data-v-ee1df5ae] {
        width: 1.2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-right: 9px;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img[data-v-ee1df5ae] {
          width: 1.2rem;
          height: 1.2rem;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img img[data-v-ee1df5ae] {
            width: 100%;
            height: 100%;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r[data-v-ee1df5ae] {
        width: calc(100% - 1.2rem - 9px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top[data-v-ee1df5ae] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top[data-v-ee1df5ae] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: baseline;
                -ms-flex-align: baseline;
                    align-items: baseline;
            margin-bottom: 5px;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .name[data-v-ee1df5ae] {
              font-size: 0.43rem;
              font-family: PingFang SC;
              font-weight: bold;
              color: #333333;
              margin-right: 0.09rem;
              overflow: hidden;
              text-overflow: ellipsis;
              white-space: nowrap;
              max-width: 2rem;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-ee1df5ae] {
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-ee1df5ae] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-ee1df5ae] {
            margin-right: 0.37rem;
            max-width: 40%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-ee1df5ae] {
              width: 0.3rem;
              height: 0.3rem;
              margin-right: 0.08rem;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people[data-v-ee1df5ae] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-ee1df5ae] {
              width: 0.23rem;
              height: 0.29rem;
              margin-right: 0.08rem;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people span[data-v-ee1df5ae] {
              line-height: 10px;
}
.list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip[data-v-ee1df5ae] {
          padding: 5px 8px;
          border-radius: 7px;
          color: #fff;
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #ffffff;
}
.list-item .list-item-content .list-item-content-wrap .item-address[data-v-ee1df5ae] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 0.27rem;
}
.list-item .list-item-content .list-item-content-wrap .item-address img[data-v-ee1df5ae] {
        width: 0.29rem;
        height: 0.35rem;
        margin-right: 0.13rem;
}
.list-item .list-item-content .list-item-content-wrap .item-address div[data-v-ee1df5ae] {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
}
.list-item .list-item-content .list-item-content-wrap .item-tips[data-v-ee1df5ae] {
      width: 100%;
      overflow: hidden;
      margin-bottom: 10px;
}
.list-item .list-item-content .list-item-content-wrap .item-tips .tips-item[data-v-ee1df5ae] {
        width: 53px;
        white-space: nowrap;
        padding: 4px 11px;
        background: #eeeeee;
        border-radius: 15px;
        margin-right: 3px;
        float: left;
        text-overflow: ellipsis;
        overflow: hidden;
        text-align: center;
}
.list-item .line[data-v-ee1df5ae] {
    width: 100%;
    height: 1px;
    background: #f7f8fc;
}
.list-item .list-item-bottom .list-item-bottom-wrap[data-v-ee1df5ae] {
    padding: 0.27rem 10px;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.list-item .green[data-v-ee1df5ae] {
    background: #24b277;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
            box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.list-item .blue[data-v-ee1df5ae] {
    background: #3975c6;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
            box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}

.input-align-bottom[data-v-3550e030] {
  padding-bottom: 0;
}
.cell-title-required[data-v-3550e030] {
  position: relative;
}
.cell-title-required[data-v-3550e030]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: '*';
}
[data-v-3550e030] .van-field__control {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
[data-v-3550e030] .van-radio--horizontal {
  margin-bottom: 0.2rem;
}
[data-v-3550e030] .van-cell--required::before {
  display: none;
}
[data-v-3550e030] .van-cell__label {
  color: #999 !important;
}
[data-v-3550e030] .van-cell::after {
  left: 0;
  right: 0;
}
[data-v-3550e030] .van-field__error-message {
  text-align: left !important;
}

.select-activity-ctn .tips-ctn[data-v-059e7e4f] {
  font-size: 0.32rem;
  font-weight: 500;
  color: #DA291C;
  padding: 0.4rem 0.27rem;
}
.select-activity-ctn .tips-ctn p[data-v-059e7e4f] {
    margin-bottom: 0.1rem;
}
.select-activity-ctn .tips-ctn .title[data-v-059e7e4f] {
    font-size: 0.43rem;
    font-weight: bold;
    color: #F5AB32;
    margin-bottom: 0.3rem;
}
.select-activity-ctn .order-list-ctn[data-v-059e7e4f] {
  margin: 0.4rem 0.27rem;
}
.select-activity-ctn .order-list-ctn .order-list[data-v-059e7e4f] {
    background: #FFFFFF;
    border-radius: 0.14rem;
    padding: 0.4rem 0.38rem;
}
.select-activity-ctn .order-list-ctn .order-list .order-item[data-v-059e7e4f] {
      border: 0.01rem solid #f0f2fa;
      padding: 0.53rem 0.28rem 0.23rem;
      margin-bottom: 0.2rem;
      border-radius: 0.14rem;
}
.select-activity-ctn .order-list-ctn .order-list .order-item .order-info[data-v-059e7e4f] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 0.32rem;
        font-weight: 500;
        color: #333333;
        margin-bottom: 0.3rem;
}
.select-activity-ctn .order-list-ctn .order-list .order-item .order-info .left[data-v-059e7e4f] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          color: #666;
}
.select-activity-ctn .order-list-ctn .order-list .order-item .order-info .left .left-title[data-v-059e7e4f] {
            font-size: 0.38rem;
            font-weight: bold;
            margin-right: 0.1rem;
}
.select-activity-ctn .order-list-ctn .order-list .order-item .order-info .left .type-ctn[data-v-059e7e4f] {
            color: #3975C6;
            padding: 0.05rem 0.11rem;
            border: 1px solid #3975C6;
            border-radius: 0.08rem;
}
.select-activity-ctn .order-list-ctn .order-list .order-item .order-info .order-type[data-v-059e7e4f] {
          color: #fff;
          padding: 0.05rem 0.15rem;
          background: #3975C6;
          border-radius: 0.11rem;
}
.select-activity-ctn .order-list-ctn .bottom-btn[data-v-059e7e4f] {
    padding: 0.19rem 0 0.1rem;
    text-align: center;
    color: #666666;
    font-size: 0.32rem;
}
.select-activity-ctn .order-list-ctn .bottom-btn .bottom-item img[data-v-059e7e4f] {
      width: 0.3rem;
      height: 0.27rem;
}
.select-activity-ctn .form-ctn[data-v-059e7e4f] {
  padding: 0 0.27rem 0.4rem;
}

.progress-ctn[data-v-04d12c4d] {
  padding: 10px 16px;
}
.progress-ctn .progress-ctn-title[data-v-04d12c4d] {
    color: #646566;
    font-size: 0.37rem !important;
    margin-bottom: 0.3rem;
}
.progress-ctn .progress-ctn-main[data-v-04d12c4d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.progress-ctn .progress-ctn-main .item-ctn[data-v-04d12c4d] {
      background: #eeeeee;
      border-radius: 4px;
      padding: 5px 17px;
      font-size: 12px;
      font-weight: 500;
      margin-right: 7px;
      margin-bottom: 10px;
      color: #666666;
}
.progress-ctn .progress-ctn-main .active-item[data-v-04d12c4d] {
      background: rgba(67, 120, 190, 0.2);
      color: #4378be;
}
.switch-ctn[data-v-04d12c4d] {
  position: relative;
  font-size: 12px;
  color: #fff;
}
.switch-ctn img[data-v-04d12c4d] {
    width: 1.27rem;
    height: 0.57rem;
}
.switch-ctn .selected[data-v-04d12c4d] {
    position: absolute;
    left: 7px;
    color: #fff;
}
.switch-ctn .no-selected[data-v-04d12c4d] {
    position: absolute;
    right: 7px;
    color: #fff;
}
.dialog-ctn[data-v-04d12c4d] {
  font-size: 0.38rem;
  color: #333333;
}
.dialog-ctn[data-v-04d12c4d] .van-dialog__header {
    font-size: 0.46rem;
    font-weight: bold;
    color: #333333;
}
.form-ctn[data-v-04d12c4d] {
  background: #fff;
  margin-top: 0.2rem;
  border-radius: 0.14rem;
}
.form-ctn .first-field[data-v-04d12c4d] {
    border-radius: 0.14rem;
}
.select-ctn .select-list[data-v-04d12c4d] {
  padding: 0.41rem 0.41rem 0.1rem;
  background: #fff;
  margin-top: 0.2rem;
  border-radius: 0.14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.select-ctn .select-list .select-item[data-v-04d12c4d] {
    padding: 0.36rem 0.28rem;
    background: #eeeeee;
    color: #666666;
    border-radius: 0.14rem;
    border: none;
    margin-bottom: 0.41rem;
    cursor: pointer;
    font-size: 0.38rem;
    text-align: center;
}
.select-ctn .select-list .select-item .item-text[data-v-04d12c4d] {
      display: inline-block;
}
.select-ctn .select-list .select-item .icon-img[data-v-04d12c4d] {
      float: right;
}
.select-ctn .select-list .left-item[data-v-04d12c4d] {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    margin-right: 10px;
}
.select-ctn .select-list .right-item[data-v-04d12c4d] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.select-ctn .select-list .select-class[data-v-04d12c4d] {
    border: 1px solid #4575c7;
    color: #3975c6;
    background: #d9e4f2;
}
.textarea-field[data-v-04d12c4d] {
  display: block;
}
.textarea-field[data-v-04d12c4d] .van-field__label {
    margin-bottom: 5px;
}
.van-cell[data-v-04d12c4d] {
  border-radius: 0;
}
.cell-title-required[data-v-04d12c4d] {
  position: relative;
}
.cell-title-required[data-v-04d12c4d]::after {
    position: absolute;
    top: 0.0267rem;
    right: -0.2667rem;
    color: #ee0a24;
    font-size: 0.3733rem;
    content: "*";
}
.edit-icon[data-v-04d12c4d] {
  width: 0.3rem;
  height: 0.3rem;
}
[data-v-04d12c4d] .van-field__label {
  font-weight: 400;
}
.no-order[data-v-04d12c4d] {
  font-size: 0.32rem;
  font-weight: 500;
  color: #3975c6;
  text-align: right;
  padding: 0.38rem 0;
}
.no-order .no-order-text[data-v-04d12c4d] {
    padding: 0.01rem 0.2rem;
    border: 1px solid #3975c6;
    border-radius: 0.11rem;
    display: inline-block;
    margin-right: 0.5rem;
}

.cell-title-required[data-v-738661e8] {
  position: relative;
}
.cell-title-required[data-v-738661e8]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.van-cell--required[data-v-738661e8]::before {
  display: none;
}
.popup-ctn[data-v-738661e8] {
  padding-bottom: 0.5333rem;
}
.popup-ctn .popup-header[data-v-738661e8] {
    text-align: center;
    position: relative;
    padding: 0.4rem 0.38rem;
    font-size: 0.38rem;
}
.popup-ctn .popup-header .cancel-class[data-v-738661e8] {
      position: absolute;
      left: 0.38rem;
      color: #548cdf;
}
.popup-ctn .add-btn[data-v-738661e8] {
    background: #3975c6;
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 0.47rem;
    line-height: 0.35rem;
}
.popup-ctn .van-search[data-v-738661e8] {
    margin: 0 0.1067rem;
}
.popup-ctn .van-search .van-search__content[data-v-738661e8] {
      background: #f7f7f7;
      border-radius: 0.47rem;
}
.popup-ctn .van-search .van-cell[data-v-738661e8] {
      padding: 0.2rem 0.4rem;
}
.popup-ctn .van-field__control[data-v-738661e8] {
    font-size: 0.38rem;
    color: #999;
}
.popup-ctn .collection-list[data-v-738661e8] {
    font-size: 0.41rem;
    color: #333;
    max-height: 5.3333rem;
    overflow-y: auto;
}
.popup-ctn .collection-list[data-v-738661e8]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.popup-ctn .collection-list .collection-item[data-v-738661e8] {
      text-align: center;
      padding: 0.2667rem 0;
}

.active-ctn .active-selected-ctn .cell-group .active-group[data-v-c9b8fdce] {
  padding: 0.2667rem;
}
.active-ctn .active-selected-ctn .cell-group .active-group .active-item[data-v-c9b8fdce] {
    padding: 0.36rem 0.42rem;
    background: #eeeeee;
    color: #666666;
    border-radius: 0.14rem;
    border: none;
    margin-bottom: 0.2667rem;
    cursor: pointer;
    font-size: 0.38rem;
}
.active-ctn .active-selected-ctn .cell-group .active-group .active-item .icon-img[data-v-c9b8fdce] {
      float: right;
}
.active-ctn .active-selected-ctn .cell-group .active-group .select-class[data-v-c9b8fdce] {
    border: 1px solid #4575c7;
    color: #3975c6;
    background: #d9e4f2;
}
.active-ctn .activity-collection[data-v-c9b8fdce] {
  padding: 0.2667rem;
}
.van-search__content[data-v-c9b8fdce] {
  background: #f7f7f7;
  border-radius: 0.47rem;
}
.add-btn[data-v-c9b8fdce] {
  background: #3975c6;
  color: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 0.47rem;
  line-height: 0.35rem;
}
.van-search[data-v-c9b8fdce] {
  margin: 0 .1067rem;
}
.popup-header[data-v-c9b8fdce] {
  text-align: center;
  position: relative;
  padding: 0.4rem 0.38rem;
  font-size: 0.38rem;
}
.popup-header .cancel-class[data-v-c9b8fdce] {
    position: absolute;
    left: 0.38rem;
    color: #548cdf;
}
.van-cell[data-v-c9b8fdce] {
  line-height: .7467rem;
}
.collection-list[data-v-c9b8fdce] {
  font-size: 0.41rem;
  color: #333;
  max-height: 5.3333rem;
  overflow-y: auto;
}
.collection-list[data-v-c9b8fdce]::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}
.collection-list .collection-item[data-v-c9b8fdce] {
    text-align: center;
    padding: .2667rem 0;
}

.progress-ctn[data-v-4901d401] {
  padding: 10px 16px;
}
.progress-ctn .progress-ctn-title[data-v-4901d401] {
    color: #646566;
    font-size: 0.37rem !important;
    margin-bottom: 0.2rem;
}
.progress-ctn .progress-ctn-main[data-v-4901d401] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.progress-ctn .progress-ctn-main .item-ctn[data-v-4901d401] {
      background: #eeeeee;
      border-radius: 4px;
      padding: 5px 17px;
      font-size: 12px;
      font-weight: 500;
      margin-right: 7px;
      margin-bottom: 10px;
      color: #666666;
}
.progress-ctn .progress-ctn-main .active-item[data-v-4901d401] {
      background: rgba(67, 120, 190, 0.2);
      color: #4378be;
}
.popup-ctn[data-v-4901d401] {
  padding-bottom: 0.5333rem;
}
.popup-ctn .popup-header[data-v-4901d401] {
    text-align: center;
    position: relative;
    padding: 0.4rem 0.38rem;
    font-size: 0.38rem;
}
.popup-ctn .popup-header .cancel-class[data-v-4901d401] {
      position: absolute;
      left: 0.38rem;
      color: #548cdf;
}
.popup-ctn .add-btn[data-v-4901d401] {
    background: #3975c6;
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 0.47rem;
    line-height: 0.35rem;
}
.popup-ctn .van-search[data-v-4901d401] {
    margin: 0 0.1067rem;
}
.popup-ctn .van-search .van-search__content[data-v-4901d401] {
      background: #f7f7f7;
      border-radius: 0.47rem;
}
.popup-ctn .van-search .van-cell[data-v-4901d401] {
      padding: 0.2rem 0.4rem;
}
.popup-ctn .collection-list[data-v-4901d401] {
    font-size: 0.41rem;
    color: #333;
    max-height: 5.3333rem;
    overflow-y: auto;
}
.popup-ctn .collection-list[data-v-4901d401]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.popup-ctn .collection-list .collection-item[data-v-4901d401] {
      text-align: center;
      padding: 0.2667rem 0;
}

*[data-v-3dfa41bc] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.collection-container[data-v-3dfa41bc] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-3dfa41bc] {
    position: relative;
}
.collection-container .cell-title-required[data-v-3dfa41bc]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.collection-container .delete[data-v-3dfa41bc] {
    float: right;
}
.collection-container .sub-btn-box[data-v-3dfa41bc] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .bussiness-info-title[data-v-3dfa41bc] {
    padding: 15px 16px 5px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
.collection-container .history-list[data-v-3dfa41bc] {
    background: #EEF3FC;
    border-radius: 5px;
    padding: 0 10px;
    margin-top: 10px;
}
.collection-container .history-list .history-item[data-v-3dfa41bc] {
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
      padding: 10px 0 5px;
}
.collection-container .history-list .list-title[data-v-3dfa41bc] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      padding-top: 15px;
}
.collection-container .adress-ctn[data-v-3dfa41bc] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
    margin-bottom: 5px;
}
.collection-container .update-ctn[data-v-3dfa41bc] {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    line-height: 24px;
}
.collection-container .check-approval-container[data-v-3dfa41bc] {
    margin: 0.2rem 0.27rem 0;
}
.collection-container[data-v-3dfa41bc] .van-cell,
  .collection-container[data-v-3dfa41bc] .van-field__body {
    font-weight: 400 !important;
}
.collection-container[data-v-3dfa41bc] .van-cell {
    font-size: .38rem;
}
.collection-container[data-v-3dfa41bc] .van-cell__label {
    font-size: .38rem;
    color: #999;
}
.collection-container[data-v-3dfa41bc] .van-cell__value {
    color: #666;
}
.collection-container[data-v-3dfa41bc] .van-cell__value input::-webkit-input-placeholder {
      color: #999 !important;
}
.collection-container[data-v-3dfa41bc] .van-field__control::-webkit-input-placeholder {
    color: #999 !important;
}
.collection-container[data-v-3dfa41bc] .van-cell-group__title {
    color: #333333;
    font-size: 0.43rem;
    font-weight: bold;
}
.collection-container[data-v-3dfa41bc] .van-cell--required::before {
    display: none;
}
.collection-container[data-v-3dfa41bc] .van-cell-group--inset {
    margin-left: .27rem;
    margin-right: .27rem;
    border-radius: .18rem;
}
.collection-container[data-v-3dfa41bc] .van-cell-group__title--inset {
    padding: .53rem .34rem .41rem;
}
.collection-container[data-v-3dfa41bc] .van-field__error-message {
    text-align: right;
}
.collection-container[data-v-3dfa41bc] .van-field__label {
    width: 3rem;
}
.collection-container[data-v-3dfa41bc] .van-switch__node {
    top: 2px;
    left: 2px;
    width: 0.8em;
    height: 0.8em;
}
.collection-container[data-v-3dfa41bc] .van-checkbox__label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.collection-container .switch-ctn[data-v-3dfa41bc] {
    position: relative;
    font-size: 12px;
    color: #fff;
}
.collection-container .switch-ctn img[data-v-3dfa41bc] {
      width: 1.27rem;
      height: 0.57rem;
}
.collection-container .switch-ctn .selected[data-v-3dfa41bc] {
      position: absolute;
      left: 7px;
      color: #fff;
}
.collection-container .switch-ctn .no-selected[data-v-3dfa41bc] {
      position: absolute;
      right: 7px;
      color: #fff;
}
.collection-container .textarea-field[data-v-3dfa41bc] {
    display: block;
}
.collection-container .textarea-field[data-v-3dfa41bc] .van-field__label {
      margin-bottom: 5px;
}

.collection-container[data-v-eb400070] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-eb400070] {
    position: relative;
}
.collection-container .cell-title-required[data-v-eb400070]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.address-ctn[data-v-eb400070] {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  margin-bottom: 5px;
}
.update-ctn[data-v-eb400070] {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}
.history-list[data-v-eb400070] {
  background: #EEF3FC;
  border-radius: 5px;
  padding: 0 10px;
  margin-top: 10px;
}
.history-list .history-item[data-v-eb400070] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0 5px;
}
.history-list .list-title[data-v-eb400070] {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding-top: 15px;
}
.sub-btn-box[data-v-eb400070] {
  position: fixed;
  bottom: 0;
  height: 2.21rem;
  background: #fff;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.4rem;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.ratio-ctn[data-v-eb400070] {
  padding: 10px 16px;
}
.ratio-ctn .ratio-title-ctn[data-v-eb400070] {
    font-weight: 500;
    font-size: 12px;
    color: #3975C6;
    margin-bottom: 10px;
}
.ratio-ctn .ratio-title-ctn img[data-v-eb400070] {
      width: 12px;
      height: 12px;
      margin-right: 5px;
}
.ratio-ctn .ratio-items[data-v-eb400070] {
    line-height: 1.5;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
}
.input-item[data-v-eb400070] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.input-item .input-left[data-v-eb400070] {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
}
.input-item .input-right[data-v-eb400070] {
    font-weight: 500;
    font-size: 14px;
    color: #3975C6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.input-item .input-right .next-ctn[data-v-eb400070] {
      margin-left: 8px;
}
.dialog-ctn .title-ctn[data-v-eb400070] {
  position: relative;
  font-weight: 500;
  font-size: 17px;
  color: #333333;
  padding: 26px 15px;
  text-align: center;
}
.dialog-ctn .title-ctn img[data-v-eb400070] {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.dialog-ctn .main-ctn[data-v-eb400070] {
  padding: 0 15px 10px;
  max-height: 400px;
  overflow: auto;
}
.dialog-ctn .main-ctn .main-total-ctn[data-v-eb400070] {
    padding: 12px 15px;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 10px;
    border-radius: 8px;
}
.dialog-ctn .main-ctn .main-total-ctn .total-num[data-v-eb400070] {
      font-weight: 600;
      font-size: 24px;
      color: #FFFFFF;
      margin-top: 4px;
}
.dialog-ctn .main-ctn .main-total-ctn .total-num span[data-v-eb400070] {
        font-size: 12px;
        margin-left: 4px;
}
.dialog-ctn .main-ctn .main-total-ctn .zero-class[data-v-eb400070] {
      color: rgba(255, 255, 255, 0.5);
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn[data-v-eb400070] {
    background: #F7F8FC;
    border-radius: 5px;
    padding: 14px 11px 6px;
    margin-bottom: 8px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn[data-v-eb400070] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .title-left[data-v-eb400070] {
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .title-right[data-v-eb400070] {
        font-weight: 500;
        font-size: 14px;
        color: #4575C7;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .blue-color[data-v-eb400070] {
        color: #2EA370;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-text-ctn[data-v-eb400070] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 10px;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
      margin-bottom: 8px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-text-ctn .text-right[data-v-eb400070] {
        color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card[data-v-eb400070] {
    padding: 15px 14px;
    background: #F7F8FC;
    border-radius: 5px;
    margin-bottom: 10px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .text-ctn[data-v-eb400070] {
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .number-ctn[data-v-eb400070] {
      font-weight: 800;
      font-size: 18px;
      color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .number-ctn .unit[data-v-eb400070] {
        font-size: 12px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .zero-text[data-v-eb400070] {
      font-weight: 800;
      font-size: 15px;
      color: #999999;
}
.dialog-ctn .main-ctn .main-list-ctn .card-row[data-v-eb400070] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.dialog-ctn .main-ctn .main-list-ctn .card-row .item-card[data-v-eb400070] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.popup-title-ctn[data-v-eb400070] {
  text-align: center;
  position: relative;
  padding: 18px;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}
.popup-title-ctn img[data-v-eb400070] {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 12px;
    height: 12px;
}
.van-password-input[data-v-eb400070] {
  margin-bottom: 260px;
}
[class*=van-hairline][data-v-eb400070]::after {
  border: none;
}
.van-password-input__security li[data-v-eb400070] {
  background-color: #EEEEEE;
  border-radius: 10px;
}
.van-hairline--left[data-v-eb400070] {
  margin-left: 7px;
}
[data-v-eb400070] .van-number-keyboard__body {
  padding: 0;
}
[data-v-eb400070] .van-key__wrapper {
  padding: 0 1px 1px 0;
}
[data-v-eb400070] .van-key {
  border-radius: 0;
}
[data-v-eb400070] .van-cell,[data-v-eb400070] .van-field__body {
  font-weight: 400 !important;
}
[data-v-eb400070] .van-cell {
  font-size: .38rem;
}
[data-v-eb400070] .van-cell__label {
  font-size: .38rem;
  color: #999;
}
[data-v-eb400070] .van-cell__value {
  color: #666;
}
[data-v-eb400070] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-eb400070] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-eb400070] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-eb400070] .van-cell--required::before {
  display: none;
}
[data-v-eb400070] .van-cell-group--inset {
  margin-left: .27rem;
  margin-right: .27rem;
  border-radius: .18rem;
}
[data-v-eb400070] .van-cell-group__title--inset {
  padding: .53rem .34rem .41rem;
}
[data-v-eb400070] .van-field__error-message {
  text-align: right;
}
[data-v-eb400070] .van-field__label {
  width: 3rem;
}
[data-v-eb400070] .van-switch__node {
  top: 2px;
  left: 2px;
  width: 0.8em;
  height: 0.8em;
}
[data-v-eb400070] .van-checkbox__label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.collection-container[data-v-5968911c] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-5968911c] {
    position: relative;
}
.collection-container .cell-title-required[data-v-5968911c]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.address-ctn[data-v-5968911c] {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  margin-bottom: 5px;
}
.update-ctn[data-v-5968911c] {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}
.history-list[data-v-5968911c] {
  background: #EEF3FC;
  border-radius: 5px;
  padding: 0 10px;
  margin-top: 10px;
}
.history-list .history-item[data-v-5968911c] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0 5px;
}
.history-list .list-title[data-v-5968911c] {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding-top: 15px;
}
.sub-btn-box[data-v-5968911c] {
  position: fixed;
  bottom: 0;
  height: 2.21rem;
  background: #fff;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.4rem;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.ratio-ctn[data-v-5968911c] {
  padding: 10px 16px;
}
.ratio-ctn .ratio-title-ctn[data-v-5968911c] {
    font-weight: 500;
    font-size: 12px;
    color: #3975C6;
    margin-bottom: 10px;
}
.ratio-ctn .ratio-title-ctn img[data-v-5968911c] {
      width: 12px;
      height: 12px;
      margin-right: 5px;
}
.ratio-ctn .ratio-items[data-v-5968911c] {
    line-height: 1.5;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
}
.input-item[data-v-5968911c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.input-item .input-left[data-v-5968911c] {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
}
.input-item .input-right[data-v-5968911c] {
    font-weight: 500;
    font-size: 14px;
    color: #3975C6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.input-item .input-right .next-ctn[data-v-5968911c] {
      margin-left: 8px;
}
.dialog-ctn .title-ctn[data-v-5968911c] {
  position: relative;
  font-weight: 500;
  font-size: 17px;
  color: #333333;
  padding: 26px 15px;
  text-align: center;
}
.dialog-ctn .title-ctn img[data-v-5968911c] {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.dialog-ctn .main-ctn[data-v-5968911c] {
  padding: 0 15px 10px;
  max-height: 400px;
  overflow: auto;
}
.dialog-ctn .main-ctn .main-total-ctn[data-v-5968911c] {
    padding: 12px 15px;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 10px;
    border-radius: 8px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAigAAACOCAYAAAAb1/NfAAAAAXNSR0IArs4c6QAAFyJJREFUeF7t3UmTHMd1wPFX1XvPvgIYEItIfQQdTF0lHKSTHaZCB+kbWLQjTNJnXh1mKMIm/Q10IumwT9KBPJNShD6CSGKbfenZeqneyvEKGKABzEx3dWd1Z3b984IIoCor85cFzENW5ktPLim/eP+PhVZh8R89kX8Qz/uJiNwSkcJl1/J7CCCAAAIIIIBADIFARLYlDP8aivxvLjj+nz99+kv9vVeK9/pvPPjom1+JeL8XkbdiPIxLEUAAAQQQQACBYQSeioT/+tV//PSL3ptfBigfh/7Pz//8n54nvxumdu5BAAEEEEAAAQSGFQhD+ezr2b/7F/nY62odLwKUn3/4zaee5xGcDCvLfQgggAACCCAwkkAYhp99/clP338RoDz/rPP5SLVyMwIIIIAAAgggMKJA6Muvv/73dz/3dEFsu7j0N9acjCjK7QgggAACCCAwskAYymYuqLzj/eyDb3/j+/KHkWukAgQQQAABBBBAwIBAtyu/9R58+M0X4nnvGaiPKhBAAAEEEEAAgdEFwvBL78FH3/4gIvdHr40aEEAAAQQQQAABIwIPNUBpkITNCCaVIIAAAggggIAZgUADlNBMXdSCAAIIIIAAAgiYESBAMeNILQgggAACCCBgUIAAxSAmVSGAAAIIIICAGQECFDOO1IIAAggggAACBgUIUAxiUhUCCCCAAAIImBEgQDHjSC0IIIAAAgggYFCAAMUgJlUhgAACCCCAgBkBAhQzjtSCAAIIIIAAAgYFCFAMYlIVAggggAACCJgRIEAx40gtCCCAAAIpFijkfMlnfemGobTaoTTb3RRrmOk6AYoZR2pBAAEEEEiRgOeJzJayMlfKSKmYEV9/o6d0uqHUGh05q7Wl2uikSMZcVwlQzFlSEwIIIIDAlAtoHLI0m5PF2ZxkMq8GJVd1vdXuSuWsJSfV9pTrmO0eAYpZT2pDAAEEEJhSgdlSRtYWCpLNDhaYvM7QbHVlrxJIvcnnn0FeEQKUQZS4BgEEEEAgtQK+J3JjqSCz5ezoBqHI8XlLDk6awkm913MSoIz+ulEDAggggMCUCuSyntxeLUou6xvtYT3oyNZBQ7pEKVe6EqAYfeWoDAEEEEBgWgTyOV/eWi0OvNYkbr8bza5s7tcJUq6AI0CJ+0ZxPQIIIICAMwK6kDXjeeI/nwDpdkU63a50+iwDyWY8ubNeEv01yaIzKZsHDQmvmUnR7cs6k6N90W7opXq97hRqdUJptbpT+bmIACXJN4+6EUAAAQTGJqBrRcrFjJQLGSnmM5LPeuLpb15S9Id70OyKBgi6DThovYxYdKeOBiea22QcpVpvy9Zh8OJRGd8TXZA7U8pKKe+Lf0UfLm4IwzBqv25r1r7ozMw0FAKUaRhF+oAAAgikWKCY96Ntv/pD3XstH8mgLLrDRrcCVxttWVssyJyJBbGDPlxETquaL6UtM8WszJWH74c+UvuiC3G1TpeXuBCgxHiBuBQBBBBAwB4BneFYXchHsyaUNwXa7VD2TwI5r7uZKI4AhbcaAQQQQMApAf1os7KQj2ZNhpwwcaq/oza2Wu/IbiWI1qy4VAhQXBot2ooAAgikXEDXZ2ysFqI1JpTBBTSbra5z0c8/rhQCFFdGinYigAACKRfIZTy5vWY+J0laWHUGZXO/8cqCYJv7ToBi8+jQNgQQQACBSEBnTu6sE5yM+jq0O6E82auL/mp7IUCxfYRoHwIIIIBAlM2VxbBmXoRG0JEn+w0zlSVYCwFKgrhUjQACCCAwusDiTFbWlgqjV0QNLwQOjptSOW9ZLUKAYvXw0DgEEEAg3QKao+z+rXL0iYdiTkDXozzcrlmdZp8Axdx4UxMCCCCAgGGBpblclOuEYl7A9lkUAhTzY06NCCCAAAKGBO7dKIke2kcxL6Cp/h/v1c1XbKhGAhRDkFSDAAIIIGBWQM/SuXezbLZSanspEIp8v12zNoEbAQovKwIIIICAlQLz5azcWGZxbJKDs3XQiA4YtLEQoNg4KrQJAQQQQEBW5nOyPM/6kyRfhf3jQI7P20k+Yui6CVCGpuNGBBBAAIEkBdYX87Iwm0vyEamv+/CkKUdndm43JkBJ/esJAAIIIGCnAAFK8uNycNKUCgFK8tA8AQEEEEBgegR0e7FuM6YkJ7B7FMhpjU88yQlTMwIIIIDA1AkszGRlnQyyiY7r07261Jt2nnDMJ55Eh57KEUAAAQSGFSjkfLl7ozTs7dzXRyAMQ/luqyahpecGEqDwCiOAAAIIWCvwtqa5z5DmPokB0u3Fus3Y1kKAYuvI0C4EEEAAgSjNPetQknkRtg8bcl63MweK9pgAJZlxp1YEEEAAAQMCuYxmky2J5zGLYoDzRRXNVlce7dqb5p4AxeRoUxcCCCCAQCICzKKYZ93cb0gtsHf2hADF/JhTIwIIIICAYQGdPLm7zqGBpliPz1uyf9w0VV1i9fCJJzFaKkYAAQQQMCWgBwfeWS+J7/OpZxTTWqMjmxYvjO3tGwHKKCPNvQgggAACYxMo5n25vVokSBlSXD/p6K4dW7cVv94tApQhB5rbEEAAAQTGL5DP+bKxUpBc1h//wx1+4km1JfuVplia8uRSWQIUh184mo4AAgikUcD3RdYXCzJXzqax+7H63O6EoicW27yd+KoOEaDEGmouRgABBBCwRaBcyMjaYl50VoXypkD9+SedrkvTJj3dIEDhrUYAAQQQcFJgrqRn9eRZk3LN6B2dNuXwtOXk+BKgODlsNBoBBBBIt8DSbE5WFvJC/rb+70G90ZGdSiD6ucelQoDi0mjRVgQQQCDlArr+5OZyUWaKmZRLxOt+pxvK7lEgev6OK4UAxZWRop0IIIBAygX0dONb7OAZ+i3Q7cWVM3c++RCgDD3U3IgAAgggMC6BaL3Jcl58vumMTF6tt2XnKBDbF88SoIw81FSAAAIIIJCkwPJ8Tlbm8iIkkTXGHLS6UdI2m9elEKAYG24qQgABBBAwLaC7dBZmcqarpT4RaXe6snkQiJ5sbGMhQLFxVGgTAgggkHIBnSy5uVKQ2RLJ2JJ8FXTxrM6kNJr2BSkEKEmOPHUjgAACCMQW0GUmGytFKbNTJ7bdMDd0nwcpdcuCFAKUYUaTexBAAAEEEhEgOEmEtW+lNgYpBCh9h40LEEAAAQTGJaAzJzMlcpyMy7v3ORqkbFr0uYcAZRJvAc9EAAEEEHhD4OYyBwBO+rXQNSmb+w3RXT6TLgQokx4Bno8AAgggIDeW8jLPbh0r3oROJ5SnB42J7+4hQLHidaARCCCAQHoF1hbysjjHVmKb3gDNj/Jkrz7RPCkEKDa9EbQFAQQQSJnA4mxO1hbzKeu1G93V/ChP9xuin30mUQhQJqHOMxFAAAEEZLaUiQ7+I3u9vS9DPehEa1ImEaIQoNj7XtAyBBBAYGoF8jlf7qwVxffJX//GIIci7W4YZfbPZCbvc1JtyV6lOfZ3kQBl7OQ8EAEEEEi3gO+L3F0vSS7rTwxCT/Y9q7VFf/jqpwzP86SY96O1MOXCZLY5h2EolbOWnFTbL9Z+ZDOe6Gewxdls1MZJlb1KELVrnIUAZZzaPAsBBBBAQG5NOIW9BgI7h4GcNzqXjkZ0OOH8eNfFRInSDhtSDy7f3qtZdTdWChMLUtTsyd54tx8ToPCPBQIIIIDA2ARsWBR7cNKMZiquK8tzOVlZGE+QMmgW10kETr1GrXZXHu3WRWefxlEIUMahzDMQQAABBCSf9eXOjaL4E/xUocHA99u1gX7ILs3mZDXhHUbd8NlhfVfNnPS+Nrpc5+2N8sRmUbQt41yPQoDCPxoIIIAAAmMRuLNelGJ+Mus7LjpYa3SidO6DliRnfDQ42T4IpBZc/qnpsjbeu1ESXWA8yaJ+6ph0IUBJWpj6EUAAAQSiRZ5ri4WJS5zX27J9GMRqRxJByjDBiTZaFxcX8pMNUMb1qYcAJdZrysUIIIAAAnEFdCeK/s/fhi3FesbM49163C5EO2k0422093fEogtOt2LOnOgj9dH6iccGx8ppSw5Ok916TIAy4ovG7QgggAAC1wtYdQhgKPJ4rz7UYXgLM1lZ11mgEYKUKDg5DIb6RDJfzsqN5cnPQuloaz8e7iSbCp8AhX9ZEEAAAQQSEyhoQrb1klXZYhtBJ0rhPsxmlFGClFGCk1zGixxtSNx28bJoHpmdo3ify+K8aAQocbS4FgEEEEAglsDt1aJoDg/bSrXeke3D8QUpowYnt9eKE01sd9n46XZj/VzWbF+eu2XUMSdAGVWQ+xFAAAEELhXQzKz6v35bS7XxPEgZYipFZ1J00e8gO6b7JYa7zkdnTmwMTsYxi0KAYuvfHNqFAAIIOC5g6+xJL6tul9UMrsMkH9M1IetL1wcpowQnurj4LQtnTnr91O3RTk1anSGivD7vNwGK4/8A0HwEEEDARgFNyqY7d0ZZUDqufiUVpOgP753DxpUp9a/rnwvByUX7j89asn9ifkcPAcq4/gbwHAQQQCBFArrbZWE260yPTQcpUXBy1JDzevyEZi4FJzrAnW4oPwyYnTfOC0GAEkeLaxFAAAEE+gpoSvYf3bIjX0ffxvZcYCpISVNwcsGnye80CZ7JQoBiUpO6EEAAAQTEpnwdcYejrqnwR1yTkpaZk15b3RWla3lMFgIUk5rUhQACCCAgLiyOvW6YRglSdNfNMAtGM/6zBbGTPmdn2NdXFwN/tzXYIYyDPoMAZVAprkMAAQQQ6CuQ8fXzzsxA22/7VjbBC0YJUuI22/Xg5OVnnuHW3FzlRYAS903iegQQQACBKwVc+ryjB/bpupNWO3yWVTZ8/uvz3jWCbqyThod9LUp5/8okbLmsJ3PlrHVJ2i7r68l5S/aOze3mIUAZ9o3iPgQQQACBNwSsOnfnmvHRBZ17lWa0A8WFsjyfk5X5vNVNbba68miIgxiZQbF6WGkcAgggMB0CuntHt8naXDQ40V0nrpXV+bwszefsbXYo8t12VbqGMt8zg2LvUNMyBBBAwCkB/Rxx/2bZ6jZ3u89O4XVl5qQXU8O++5YHgHoIYz2In/vlspeGAMXqv0o0DgEEEHBHYK6UlZsrBasbfF5ry3aCJ/Am3fn1pbwszNg7i6KfzU6qLSMMBChGGKkEAQQQQGB1IS9Lc/b+8NQROjptyuGpmR+gkxhx9VVnW8vxeUv2DS2UJUCxdZRpFwIIIOCYwMZKQWZKdqe3r5y15CCBc2PGNVS2B4Em1/cQoIzrreI5CCCAwJQL6OGAticaazQ78mTPbMbTcQ7r3fWSFPL+OB8Z61kmfQlQYtFzMQIIIIDAVQLv3C6L79m9g0fb/nS/LvXA0FaTMb4Os6WM3FopjvGJ8R9lcqsxAUp8f+5AAAEEEHhNQA8IfOf2jBMu7U5Xnu41hkpJP6kOFvO+bKwWRbPO2lzanWcnG5soBCgmFKkDAQQQSLmA5j7RHCiuFN1mfHTaktNay1jejrh9v26yScMQ/fNc1o8yyS7MZMVzYHZKt3HrmTwmCgGKCUXqQAABBFIuoGtPdA2KcyWUKCfK6/lkLwKE6/qzddCQerP/p6JCzpe7LtoMMZjMoAyBxi0IIIAAAskJpOmH8IXioEnJ0mRDgJLc3zFqRgABBBAYQkDXSNxZd3AGZYi+xg1Q8llf7t1Mh02r3Y0y9ZoofOIxoUgdCCCAQMoF0jRLQIBy9ctOgJLyfwjoPgIIIGCbQJpmCQhQrn772GZs299M2oMAAgikXCCX8aKD7FwtulBWs6DqD9jw9RWzPZ3q/bNqozPQoYO6M3immI0W4obXVS4SbSMuFzMyW9JdO+5pBs2uPN7jE497I0eLEUAAgSkVyPgib2+4kQfl9SE4q7VlrxJI95rAZNzDpp/Mbq0Uom3GLhU9yVgXD5sorEExoUgdCCCAAALy49szzv2v3+TZMaZfgVzWE01t71uenK233yY9CVBMv1HUhwACCKRU4O2NsvWZTnuHRj+36I4T3Rpra1mdz8vSvN0nRPfanVRbsldpGuEkQDHCSCUIIIAAAi4cFtg7SrVGRzYPzHyOSGr0Xdu+fXTalMPTlhEOAhQjjFSCAAIIILCxUpCZUtYZiJPzluwdm/nfflKd1kWzOjPlStk9CuS01jbSXAIUI4xUggACCCCwtpiXxVl3Pkfo4tido8DqgXMtv8zmfkNqQceIKQGKEUYqQQABBBDQ4ESDFFeKybTsSfV5aTYnqw6ZPtyuGTslmgAlqbeKehFAAIGUCZQLGbm9VnSq17q9+KRq5pOE6Y7r5x09ZFBPinahmDzJWPtLgOLCqNNGBBBAwAEB19ZLKKn+UN06DETzd9hU1FLX9BQLGZuadW1bGs2uPDGUpI0AxZlhp6EIIICAGwI/ulV25n/8F6Ka3PW02opmUprtZ5lkozmLayYu9I/iJHbTgKO3XJUlVmdLdCZKP5dlHJk5ueiXyS3GBChu/H2nlQgggIAzAreWCzJbdmcnzyiwWwcN0XT3/YoGHRq4TXsxuYOHAGXa3xb6hwACCIxZYHE2K2uLhTE/dTKPI0B51f3hTk1abXNJ71iDMpn3mqcigAACUyng2rbYUQZh0ADFxbU5cV2S2BFFgBJ3FLgeAQQQQOBaARfXoQwzpAQoL9VOq23ZrZjNKUOAMsxbyT0IIIAAAlcKrC/mZcGhhG3DDiUByku57cOGnNf7r8eJY02AEkeLaxFAAAEE+grMFDOysepWPpS+nbrkgkF/KE/7Jx49dPH7rVqsXU2DeBOgDKLENQgggAACAwvohlr9zOPaNtmBO/j8wp3DQM7q/ZO8TXuAcl5vy/ah2c87SkyAEveN5HoEEEAAgb4CafjMQ4Dy7DXQ4ESDFNOFAMW0KPUhgAACCEgx78ud9dJUS+hBg3rgYL8yzXlQOt1QftiuRcntTBcCFNOi1IcAAgggEAncXS9JIe9PrUblrCUHJ82+/ZvmNTnH5y3ZP+5v0BfpkgsIUIZR4x4EEEAAgb4C8+Ws3Fie3qRtnU4oP+z0nz3YWCnKTMmdM3X6DuzzC3TW5NGu2eRsvc8mQBl0JLgOAQQQQCCWgC6Wve/g2TxxOtkv/8f8TFZuLE1nkJbU4tgLfwKUOG8i1yKAAAIIxBLQQ+/WFvOx7nHt4mq9I/vHgbQ6Lxdi6NmAy3M5WZzLy1UHA7rWz1faG4o83qtL0Oom1g0NUBoiMp3hXWJsVIwAAgggMIiAzqLcu1mSXHZ616Kog37uCFqd6Cwa3Vasi4T9104wHsTLlWuq9bZsJbC1uKf/gQYoP+gsnCsotBMBBBBAwC2BuXJWbk7xWhS3RmP01mow9ni3Ls12crMnIvLQe/Bvf/5CwvC90ZtMDQgggAACCFwucGe9KMX89C0UTeN4n5y3ZC+hnTsvPMPwS+9nH3z7G9+XP6QRmT4jgAACCIxHQE851rwoU7keYzyEVjxFdy493K1JN9HJE9H6f+v94v0/FtrFpb+JyFtW9J5GIIAAAghMpcDqQl6W5nJT2be0dGrnsCFnhg8FvMTuabZR+bGuX5IHH/3lVyLdz9MCTD8RQAABBMYvoLMnmrwtn5vuBbPjlx3PE89rbdk+Mn/mzuutD0P59defvPt5FKBEQcqH334qnvxuPN3kKQgggAACaRTQ4OTuelE8vvU4NfztTlce7dYT/7QjoXz21Sfvvq84LwIU+Tj0H1T/8l8i4T85pUZjEUAAAQScEpjm5GVODcSAjQ3DUJ7uN6TRTHjhiYT//dXMu/8sH3vRg14GKBczKc8+9/yeNSkDjhyXIYAAAgjEFkjDacexUSy9Ya8SyEm1/6GIIzT/aRjKB/pZp7eONwIU/UNdONspLb0XdsO/F8/7iYhsiMh0pwIcQZZbEUAAAQTiC9xeLUq5yNbj+HLjuyOhwwD1dMEtCcO/er73f5l65cs/ffrLNxa3/D/NRMWUDEXzJwAAAABJRU5ErkJggg==) no-repeat;
    background-size: 100% 100%;
}
.dialog-ctn .main-ctn .main-total-ctn .total-num[data-v-5968911c] {
      font-weight: 600;
      font-size: 24px;
      color: #FFFFFF;
      margin-top: 4px;
}
.dialog-ctn .main-ctn .main-total-ctn .total-num span[data-v-5968911c] {
        font-size: 12px;
        margin-left: 4px;
}
.dialog-ctn .main-ctn .main-total-ctn .zero-class[data-v-5968911c] {
      color: rgba(255, 255, 255, 0.5);
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn[data-v-5968911c] {
    background: #F7F8FC;
    border-radius: 5px;
    padding: 14px 11px 6px;
    margin-bottom: 8px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn[data-v-5968911c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .title-left[data-v-5968911c] {
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .title-right[data-v-5968911c] {
        font-weight: 500;
        font-size: 14px;
        color: #4575C7;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-title-ctn .blue-color[data-v-5968911c] {
        color: #2EA370;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-text-ctn[data-v-5968911c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 10px;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
      margin-bottom: 8px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-ctn .item-text-ctn .text-right[data-v-5968911c] {
        color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card[data-v-5968911c] {
    padding: 15px 14px;
    background: #F7F8FC;
    border-radius: 5px;
    margin-bottom: 10px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .text-ctn[data-v-5968911c] {
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .number-ctn[data-v-5968911c] {
      font-weight: 800;
      font-size: 18px;
      color: #333333;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .number-ctn .unit[data-v-5968911c] {
        font-size: 12px;
}
.dialog-ctn .main-ctn .main-list-ctn .item-card .zero-text[data-v-5968911c] {
      font-weight: 800;
      font-size: 15px;
      color: #999999;
}
.dialog-ctn .main-ctn .main-list-ctn .card-row[data-v-5968911c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.dialog-ctn .main-ctn .main-list-ctn .card-row .item-card[data-v-5968911c] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.popup-title-ctn[data-v-5968911c] {
  text-align: center;
  position: relative;
  padding: 18px;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}
.popup-title-ctn img[data-v-5968911c] {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 12px;
    height: 12px;
}
[data-v-5968911c] .van-cell,[data-v-5968911c] .van-field__body {
  font-weight: 400 !important;
}
[data-v-5968911c] .van-cell {
  font-size: .38rem;
}
[data-v-5968911c] .van-cell__label {
  font-size: .38rem;
  color: #999;
}
[data-v-5968911c] .van-cell__value {
  color: #666;
}
[data-v-5968911c] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-5968911c] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-5968911c] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-5968911c] .van-cell--required::before {
  display: none;
}
[data-v-5968911c] .van-cell-group--inset {
  margin-left: .27rem;
  margin-right: .27rem;
  border-radius: .18rem;
}
[data-v-5968911c] .van-cell-group__title--inset {
  padding: .53rem .34rem .41rem;
}
[data-v-5968911c] .van-field__error-message {
  text-align: right;
}
[data-v-5968911c] .van-field__label {
  width: 3rem;
}
[data-v-5968911c] .van-switch__node {
  top: 2px;
  left: 2px;
  width: 0.8em;
  height: 0.8em;
}
[data-v-5968911c] .van-checkbox__label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.commission-list[data-v-49a5f6f6] {
  background: #F7F8FC;
}
.list-ctn[data-v-49a5f6f6] {
  height: calc(100vh - 120px);
  overflow: auto;
  padding: 15px 10px;
}
.list-ctn .item-ctn[data-v-49a5f6f6] {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 10px;
}
.list-ctn .item-ctn .title-ctn[data-v-49a5f6f6] {
      font-weight: bold;
      font-size: 14px;
      color: #333333;
      margin-bottom: 15px;
}
.list-ctn .item-ctn .title-ctn .state-ctn[data-v-49a5f6f6] {
        border-radius: 3px;
        border: 1px solid #4575C7;
        padding: 3px 5px;
        font-weight: 500;
        font-size: 12px;
        color: #4575C7;
}
.list-ctn .item-ctn .title-ctn .blue-state[data-v-49a5f6f6] {
        border: 1px solid #24B277;
        color: #24B277;
}
.list-ctn .item-ctn .title-ctn .red-state[data-v-49a5f6f6] {
        border: 1px solid #DA291C;
        color: #DA291C;
}
.list-ctn .item-ctn .title-ctn .gray-state[data-v-49a5f6f6] {
        border: 1px solid #999;
        color: #999;
}
.list-ctn .item-ctn .desc-row[data-v-49a5f6f6] {
      font-weight: 500;
      font-size: 12px;
      margin-bottom: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.list-ctn .item-ctn .desc-row .desc-key[data-v-49a5f6f6] {
        color: #666666;
}
.list-ctn .item-ctn .desc-row .desc-value[data-v-49a5f6f6] {
        color: #333333;
}
.list-ctn .item-ctn .date-ctn[data-v-49a5f6f6] {
      font-weight: 500;
      font-size: 12px;
      color: #999999;
      margin-top: 7px;
}
.bottom-ctn[data-v-49a5f6f6] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px 24px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
}
.bottom-ctn .btn-item[data-v-49a5f6f6] {
    width: 100%;
    background: #4378BE;
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    padding: 12px 0;
    text-align: center;
}

.collection-container[data-v-516420a9] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-516420a9] {
    position: relative;
}
.collection-container .cell-title-required[data-v-516420a9]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .sub-btn-box[data-v-516420a9] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.dialog-ctn .pay-img[data-v-516420a9] {
  width: 100%;
}
.tip-ctn[data-v-516420a9] {
  padding: 0.6rem;
  font-size: 0.38rem;
  color: #333;
  text-align: center;
  line-height: 2;
}
.textarea-field[data-v-516420a9] {
  display: block;
}
.textarea-field[data-v-516420a9] .van-field__label {
    margin-bottom: 5px;
}
[data-v-516420a9] .van-cell,[data-v-516420a9] .van-field__body {
  font-weight: 400 !important;
}
[data-v-516420a9] .van-cell {
  font-size: 0.38rem;
}
[data-v-516420a9] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-516420a9] .van-cell__value {
  color: #666;
}
[data-v-516420a9] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-516420a9] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-516420a9] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-516420a9] .van-cell--required::before {
  display: none;
}
[data-v-516420a9] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-516420a9] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-516420a9] .van-field__label {
  width: 3rem;
}

.history-list[data-v-e0dfa03a] {
  background: #eef3fc;
  border-radius: 5px;
  padding: 0 10px;
  margin-top: 10px;
}
.history-list .history-item[data-v-e0dfa03a] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0 5px;
}
.history-list .list-title[data-v-e0dfa03a] {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding-top: 15px;
}
.adress-ctn[data-v-e0dfa03a] {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  margin-bottom: 5px;
}
.update-ctn[data-v-e0dfa03a] {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}

.title-ctn[data-v-00db56cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title-ctn .pay-img[data-v-00db56cd] {
    width: 19px;
    height: 19px;
    margin-right: 6px;
}
.cell-title-required[data-v-00db56cd] {
  position: relative;
}
.cell-title-required[data-v-00db56cd]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.pay-list-ctn[data-v-00db56cd] {
  margin: 0.2rem 0;
}
.van-cell-group__title[data-v-00db56cd] {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
.van-cell--required[data-v-00db56cd]::before {
  display: none;
}
.van-cell-group--inset[data-v-00db56cd] {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
.van-cell-group__title--inset[data-v-00db56cd] {
  padding: 0.53rem 0.34rem 0.41rem;
}
.van-field__label[data-v-00db56cd] {
  width: 3rem;
}

.cell-title-required[data-v-31d3eb32] {
  position: relative;
}
.cell-title-required[data-v-31d3eb32]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.checkbox-group[data-v-31d3eb32] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.active-item[data-v-31d3eb32] {
  color: #4378be !important;
  background: #d9e4f2 !important;
}
.disable-item[data-v-31d3eb32] {
  color: #b3b3b3 !important;
}
[data-v-31d3eb32] .van-tag--plain {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  border: none;
  background: #eeeeee;
  padding: 4px 8px;
  border-radius: 4px;
}
[data-v-31d3eb32] .van-tag--plain::before {
  display: none;
}
[data-v-31d3eb32] .van-checkbox__icon {
  display: none;
}
[data-v-31d3eb32] .van-checkbox {
  margin-bottom: 10px;
  margin-right: 8px;
}

.code-pay-ctn[data-v-e3bf89e2] {
  background: #4575c7;
  height: calc(100vh - 4px);
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
}
.code-pay-ctn .header-text[data-v-e3bf89e2] {
    text-align: center;
    padding: 15px 0 0px;
}
.code-pay-ctn .code-pay-main[data-v-e3bf89e2] {
    text-align: center;
    background: #4575c7;
    padding: 30px 0 20px;
}
.code-pay-ctn .code-pay-main .header-img[data-v-e3bf89e2] {
      width: 287px;
}
.code-pay-ctn .code-pay-main .code-ctn[data-v-e3bf89e2] {
      background: #fff;
      margin: 15px;
      padding: 16px 0;
      text-align: center;
      border-radius: 15px;
      font-size: 30px;
      font-weight: 800;
      color: #000000;
}
.code-pay-ctn .code-pay-main .code-ctn img[data-v-e3bf89e2] {
        width: 257px;
}
.code-pay-ctn .code-pay-main .code-ctn .code-img[data-v-e3bf89e2] {
        width: 236px;
        height: 236px;
        margin: 10px 0;
}
.code-pay-ctn .code-pay-main .code-ctn .time-class[data-v-e3bf89e2] {
        font-size: 15px;
        font-weight: 800;
        color: #333333;
}
.code-pay-ctn .code-pay-main .bottom-ctn[data-v-e3bf89e2] {
      text-align: left;
      margin: 0 15px;
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
      line-height: 30px;
}
.code-pay-ctn .code-pay-main .bottom-ctn img[data-v-e3bf89e2] {
        margin-right: 4px;
        width: 16px;
}
.code-pay-ctn .code-pay-main .logo-ctn[data-v-e3bf89e2] {
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
      margin-top: 12px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.code-pay-ctn .code-pay-main .logo-ctn img[data-v-e3bf89e2] {
        margin-right: 4px;
        width: 18px;
}
.code-pay-ctn .code-pay-img[data-v-e3bf89e2] {
    width: 100%;
}

.pay-result[data-v-c5f420ca] {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  padding-top: 250px;
  height: calc(100vh - 250px);
  background: #f7f8fc;
}
.pay-result img[data-v-c5f420ca] {
    width: 156px;
    height: 118px;
    margin-bottom: 30px;
}

*[data-v-56d3c228] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.collection-container[data-v-56d3c228] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
}
.collection-container[data-v-56d3c228]::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.collection-container .cell-title-required[data-v-56d3c228] {
    position: relative;
}
.collection-container .cell-title-required[data-v-56d3c228]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .delete[data-v-56d3c228] {
    float: right;
}
.collection-container .sub-btn-box[data-v-56d3c228] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .check-approval-container[data-v-56d3c228] {
    margin: 0.4rem 0.27rem 0;
}
.collection-container .business-info .cell-group .bussiness-info-title[data-v-56d3c228] {
    padding: 15px 16px 5px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
[data-v-56d3c228] .van-cell-group {
  margin-bottom: 0.2rem;
}
[data-v-56d3c228] .van-cell-group__title {
  margin: 0;
  padding: 0.4rem 0.41rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-56d3c228] .van-cell,[data-v-56d3c228] .van-field__body {
  font-weight: 400 !important;
}
[data-v-56d3c228] .van-cell {
  font-size: 0.38rem;
}
[data-v-56d3c228] .van-cell__title {
  color: #333;
}
[data-v-56d3c228] .van-cell__value {
  color: #666;
}
[data-v-56d3c228] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-56d3c228] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-56d3c228] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-56d3c228] .van-cell--required::before {
  display: none;
}
[data-v-56d3c228] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
}
[data-v-56d3c228] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}

@charset "UTF-8";
.collectList-container[data-v-398488ed] {
  height: 100vh;
  background: #f7f8fc;
}
.collectList-container[data-v-398488ed] .van-button--mini {
    padding: 3px 10px 0;
    font-size: 0.32rem;
    border-radius: 0.14rem;
}
.collectList-container .cell-title-required[data-v-398488ed] {
    position: relative;
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
}
.collectList-container .cell-title-required[data-v-398488ed]::after {
      position: absolute;
      top: 0.0267rem;
      right: -0.2667rem;
      color: #ee0a24;
      font-size: 0.3733rem;
      content: "*";
}
.collectList-container[data-v-398488ed] .van-field__control {
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
}
.fixed-tab[data-v-398488ed] {
  position: relative;
  width: calc(100% - 30px);
  padding: 15px;
  font-size: 11px;
  background-color: #f7f8fc;
  height: calc(1.13rem - 30px);
}
.collect-content[data-v-398488ed] {
  position: relative;
  width: 100%;
  height: calc(100vh - 1.13rem - 2.21rem);
  background: #f7f8fc;
  overflow-y: scroll;
}
.collect-content .app_item[data-v-398488ed] {
    background: #fff;
    border-radius: 5px;
    margin: 0 0.3rem 0.3rem;
}
.top-content[data-v-398488ed] {
  height: calc(100vh - 2.21rem);
}
.collect-ctn[data-v-398488ed] {
  padding: 20px 15px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #3975C6;
  margin: 0.3rem;
}
.collect-ctn .collect-top[data-v-398488ed] {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}
.collect-ctn .collect-top .top-num-ctn[data-v-398488ed] {
      font-weight: 800;
      font-size: 24px;
      color: #3975C6;
}
.collect-ctn .collect-top .top-num-ctn .unit[data-v-398488ed] {
        font-size: 14px;
        margin-right: 2px;
}
.collect-ctn .collect-top .top-num-ctn .other[data-v-398488ed] {
        font-weight: 400;
        font-size: 14px;
        color: #333333;
}
.collect-ctn .cus-list[data-v-398488ed] {
    margin-top: 22px;
}
.collect-ctn .cus-list .cus-item[data-v-398488ed] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 400;
      font-size: 14px;
      color: #333333;
      margin-top: 8px;
}
.collect-ctn .cus-list .cus-item .item-right[data-v-398488ed] {
        font-weight: 800;
        font-size: 15px;
        color: #3975C6;
}
.collect-ctn .cus-list .cus-item .item-right .other-ctn[data-v-398488ed] {
          color: #db1717;
          font-size: 12px;
          font-weight: 400;
}
.tip-ctn[data-v-398488ed] {
  padding: 0.6rem;
  font-size: 0.38rem;
  color: #333;
  text-align: center;
  line-height: 2;
}
/* 新建按钮 */
.empty-bottom[data-v-398488ed] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.empty-bottom .empty-bottom-inner[data-v-398488ed] {
    padding: 0.53rem 0 0.64rem;
    height: 1.04rem;
    width: 31%;
}
.empty-bottom .empty-bottom-inner .empty-bottom-inner-button[data-v-398488ed] {
      width: 100%;
      height: 100%;
      background: #5076b8;
      border: 1px solid #5076b8;
      padding: 0;
}
.button-item[data-v-398488ed] {
  background: #5076b8;
  border: 1px solid #5076b8;
}
.border-bottom-1px[data-v-398488ed]::after {
  position: relative;
  top: 13px;
  border-bottom: 1px solid #3c3c43;
}
.approval-label[data-v-398488ed] {
  width: 36px;
  height: 16px;
  margin-left: 10px;
}
/* 列表 */
.app_inner[data-v-398488ed] {
  padding: 0.37rem 0.35rem 0;
}
.item_top[data-v-398488ed] {
  padding: 0.4rem 0.3rem 0;
}
.item-top-id[data-v-398488ed] {
  font-size: 0.38rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item_content[data-v-398488ed] {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_title[data-v-398488ed] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #666;
}
.content_value[data-v-398488ed] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}
.content_value .edit-btn[data-v-398488ed] {
    color: #3975c6;
    margin-right: 0.1333rem;
}
.line[data-v-398488ed] {
  height: 1px;
  background: #f7f8fc;
  width: 100%;
}
.report_bottom[data-v-398488ed] {
  padding: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-398488ed] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999;
}
.bottom_r[data-v-398488ed] {
  background: #3975c6;
  border-radius: 0.14rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.approval-accept[data-v-398488ed] {
  background: #3bb66f;
}
.approval-accept .bottom-r-inner[data-v-398488ed] {
    -webkit-box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
            box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
}
.approval-reback[data-v-398488ed] {
  background: #e75805;
}
.bottom-r-inner[data-v-398488ed] {
  padding: 0.12rem 0.24rem;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
  background: unset;
  border-radius: 0.14rem;
}
.bottom-non[data-v-398488ed] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.dialog-ctn[data-v-398488ed] .van-dialog__header {
  font-size: 0.46rem;
  font-weight: bold;
  color: #333333;
}
.dialog-ctn .dialog-main[data-v-398488ed] {
  padding: 0.4rem 0.43rem 0.73rem;
}
.dialog-ctn .dialog-main .field-ctn[data-v-398488ed] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid rgba(222, 223, 226, 0.5);
    padding: 0.32rem 0;
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
}
.dialog-ctn .dialog-main .field-ctn img[data-v-398488ed] {
      width: 1.27rem;
      height: 0.57rem;
}
























.reported_container[data-v-6a5aca29] {
  background: #ebebeb;
  min-height: 100vh;
}
.reported-form[data-v-6a5aca29] {
  padding: 0.35rem;
}
.inner-group[data-v-6a5aca29] {
  margin-top: 0.27rem;
}
.van-group[data-v-6a5aca29] {
  border-radius: 10px;
}
.van-cell[data-v-6a5aca29] {
  border-radius: 10px;
}
.van-cell[data-v-6a5aca29] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-6a5aca29]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-6a5aca29] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-6a5aca29] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-6a5aca29] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.icon_box[data-v-6a5aca29] {
  width: 1.5rem;
  height: 1.5rem;
  background: rgb(242, 242, 242);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-wrap[data-v-6a5aca29] {
  margin: 0 !important;
}
/*  */
.top-img[data-v-6a5aca29] {
  border-radius: 10px;
}
.top-inner[data-v-6a5aca29] {
  padding: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 550;
  color: #333333;
}
.inner-img[data-v-6a5aca29] {
  width: 0.67rem;
  height: 0.67rem;
  margin-right: 12px;
}
.collect-detail-item[data-v-6a5aca29] {
  margin-top: 0.3rem;
}
.detail-item-top[data-v-6a5aca29] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.1rem;
}
.item-top-text[data-v-6a5aca29] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}

.detail-ctn[data-v-39b98502] {
  min-height: 100vh;
  background: #f7f8fc;
}
.detail-ctn .first-title[data-v-39b98502] {
    background: #3975c6;
    height: 90px;
}
.detail-ctn .first-title .first-title-wrap[data-v-39b98502] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l[data-v-39b98502] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.detail-ctn .first-title .first-title-wrap .title-l .title-avatar[data-v-39b98502] {
          width: 40px;
          height: 40px;
          border-radius: 20px;
          margin-right: 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l .title[data-v-39b98502] {
          font-size: 16px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #ffffff;
          line-height: 13px;
}
.detail-ctn .first-title .first-title-wrap .title-r[data-v-39b98502] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.detail-ctn .first-title .border-radius[data-v-39b98502] {
      width: 100%;
      height: 20px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.detail-ctn .main-items[data-v-39b98502] {
    margin: 0 10px;
    border-radius: 5px;
    background: #fff;
}
.detail-ctn .main-items .item-ctn[data-v-39b98502] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 5px;
      padding: 10px 0;
      margin: 0 16px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 400;
      color: #333333;
      border-bottom: 1px solid #f7f8fc;
}
.detail-ctn .main-items .item-ctn .item-key[data-v-39b98502] {
        color: #666;
}

.radius[data-v-cd2c1796], .cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-cd2c1796], .cotract-index .contract-wrap .contract-content .content-content .cell-group .van-cell[data-v-cd2c1796] {
  border-radius: 10px;
}
.cotract-index[data-v-cd2c1796] {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cotract-index[data-v-cd2c1796]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.cotract-index .cell-title-required[data-v-cd2c1796] {
    position: relative;
}
.cotract-index .cell-title-required[data-v-cd2c1796]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.cotract-index .contract-wrap[data-v-cd2c1796] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.cotract-index .contract-wrap .contract-content[data-v-cd2c1796] {
      margin: 0 0.27rem;
      padding-bottom: 2.21rem;
}
.cotract-index .contract-wrap .contract-content .content-top[data-v-cd2c1796] {
        margin: 10px 0;
        padding: 12px 15px;
        background-color: #ffffff;
        border-radius: 10px;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner .top-inner-title[data-v-cd2c1796] {
          font-size: 0.38rem;
          font-weight: 400;
          color: #333333;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner .top-inner-inner[data-v-cd2c1796] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: .65rem;
          color: #1f1f1f;
          margin-bottom: 15px;
          font-weight: 500;
          position: relative;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner .top-inner-inner .inner-input[data-v-cd2c1796] {
            display: inline-block;
            font-size: 45px;
            margin-top: 7px;
            padding-left: 5px;
            border: none;
            outline: none;
            padding: 0;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-cd2c1796] {
        background: #ffffff;
        margin-bottom: 15px;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group-file[data-v-cd2c1796] .van-uploader__input-wrapper {
        width: 100%;
}
.cotract-index .contract-wrap .contract-content .check-approval-container[data-v-cd2c1796] {
        margin: 0.4rem 0.27rem 0;
}
.cotract-index .contract-wrap .contract-content .business-info .cell-group .bussiness-info-title[data-v-cd2c1796] {
        padding: 15px 16px 5px;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
}
.cotract-index .contract-wrap .contract-content .contract_footer[data-v-cd2c1796] {
        width: 100%;
        height: 2.21rem;
        position: fixed;
        left: 0;
        bottom: 0;
        background: #ffffff;
        -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
                box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 99;
}
.cotract-index .contract-wrap .contract-content .contract_footer .contract_footer-btn[data-v-cd2c1796] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          margin: 0 0.4rem;
}
.btn-wrap .submit-btn[data-v-cd2c1796] {
  height: 44px;
  line-height: 44px;
  color: #fff;
  font-size: 0.42rem;
  border-radius: 6px;
  background-color: #5076b8;
}
.border-bottom-1px[data-v-cd2c1796]::after {
  position: absolute;
}
.border-top-1px[data-v-cd2c1796]::before {
  position: relative;
  top: -10px;
  border-bottom: 1px solid #3c3c43;
}
.opportunity-msg > div > div[data-v-cd2c1796] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.opportunity-msg > div > div span[data-v-cd2c1796]:nth-child(2) {
  display: inline-block;
  color: #666666;
}
.opportunity-noMsg[data-v-cd2c1796] {
  padding: .5rem 0;
}
.opportunity-noMsg span[data-v-cd2c1796] {
    color: red;
}
.cotract-index > .van-uploader[data-v-cd2c1796] {
  width: 100% !important;
}
.cotract-index > .van-uploader__input-wrapper[data-v-cd2c1796] {
  width: 100% !important;
}
.upload-img > .van-uploader__preview-image[data-v-cd2c1796] {
  width: 45px;
  height: 45px;
}
.upload-img > .van-uploader__upload[data-v-cd2c1796] {
  width: 45px;
  height: 45px;
}
.cotract-index > .van-uploader[data-v-cd2c1796] {
  z-index: 500;
}
[data-v-cd2c1796] .van-cell,[data-v-cd2c1796] .van-field__body {
  font-weight: 400 !important;
}
[data-v-cd2c1796] .van-cell {
  font-size: .38rem;
}
[data-v-cd2c1796] .van-cell__title {
  color: #333;
}
[data-v-cd2c1796] .van-cell__value {
  color: #666;
}
[data-v-cd2c1796] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-cd2c1796] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-cd2c1796] .van-cell__label {
  font-size: .38rem;
}
[data-v-cd2c1796] .van-cell__label .van-uploader__input {
    z-index: 98;
}
[data-v-cd2c1796] .van-cell-group__title {
  margin: 0;
  padding: .23rem .47rem .41rem 0.04rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-cd2c1796] .van-cell--required::before {
  display: none;
}
[data-v-cd2c1796] .van-field__control--right {
  color: #666;
}
[data-v-cd2c1796] .van-cell-group {
  border-radius: 10px;
}
.no-is-link[data-v-cd2c1796] .van-field__error-message {
  text-align: right !important;
  margin-right: .53rem;
}

.app_container[data-v-0f1ea68d] {
  /* background: #f8f8f8; */
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.fixed-tab[data-v-0f1ea68d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 50px;
}
.border-bottom-1px[data-v-0f1ea68d]::after {
  position: relative;
  top: 10px;
  border-bottom: 1px solid #3c3c43;
}
.approval-label[data-v-0f1ea68d] {
  width: 36px;
  height: 16px;
  margin-left: 10px;
}
.contract-item[data-v-0f1ea68d] {
  padding: 12px 20px;
  border-radius: 5px;
  color: #666666;
  background: #ffffff;
}

/* items */
.app_items[data-v-0f1ea68d] {
  padding-bottom: 53px;
  background: #ebebeb;
}
.app-item-inner[data-v-0f1ea68d] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.app-item-inner-title[data-v-0f1ea68d] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  margin: 0.3rem;
}
.app_item[data-v-0f1ea68d] {
  width: 100%;
  background: #ffffff;
  margin-bottom: 0.27rem;
  border-radius: 5px;
}
.app_inner[data-v-0f1ea68d] {
  padding: 0.37rem 0.35rem 0;
}
.item_top[data-v-0f1ea68d] {
  padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.item-top-id[data-v-0f1ea68d] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.item_content[data-v-0f1ea68d] {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cus-class[data-v-0f1ea68d] {
  color: #3975C6;
  padding: 0.05rem 0.1rem;
  font-size: 0.32rem;
  border-radius: 0.08rem;
  border: 1px solid #3975C6;
}
.content_title[data-v-0f1ea68d] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.content_value[data-v-0f1ea68d] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.line[data-v-0f1ea68d] {
  height: 1px;
  background: #f7f8fc;
  width: 100%;
}
.report_bottom_ctn[data-v-0f1ea68d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem 0.51rem 0.25rem 0.4rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999;
}
.bottom_r[data-v-0f1ea68d] {
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  float: right;
}
.btn_ctn[data-v-0f1ea68d] {
  padding: 0.2rem 0.51rem 0.4rem 0.4rem;
  text-align: right;
}
.btn_ctn .bottom-btn1[data-v-0f1ea68d] {
    border-radius: 0.14rem;
    font-size: 0.32rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    margin-right: 0.1rem;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}
.btn_ctn .xiuding-btn[data-v-0f1ea68d] {
    border-radius: 0.14rem;
    font-size: 0.32rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    margin-left: 0 !important;
}
.bottom-btn0[data-v-0f1ea68d] {
  border: 1px solid #050505;
  color: #050505;
}
.bottom-btn99[data-v-0f1ea68d] {
  background: #3bb66f;
}
.bottom-btn1[data-v-0f1ea68d] {
  background: #3975c6;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
}
.bottom-btn2[data-v-0f1ea68d] {
  background: #3bb66f;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
}
.bottom-btn3[data-v-0f1ea68d] {
  background: #eee;
  color: #999;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
}
.bottom-btn-1[data-v-0f1ea68d] {
  background: #F5AB32;
}
.approval-accept[data-v-0f1ea68d] {
  background: #3bb66f;
}
.approval-reback[data-v-0f1ea68d] {
  background: #e75805;
}
.bottom-r-inner[data-v-0f1ea68d] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-0f1ea68d] {
  background: #ebebeb;
  border-radius: 0.14rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.delete-button[data-v-0f1ea68d] {
  width: 100%;
  height: 100%;
  border: none;
  background: #FF2D2D;
  color: #fff;
}
.xiuding-button[data-v-0f1ea68d] {
  width: 100%;
  height: 100%;
  border: none;
  background: #F5AB32;
  color: #fff;
}
.xiuding-btn[data-v-0f1ea68d] {
  text-align: right;
  margin-left: 100px;
}
.add_btn_box[data-v-0f1ea68d] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
}
.sub_btn_box[data-v-0f1ea68d] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
  text-align: center;
}
.submit_btn[data-v-0f1ea68d] {
  height: 1.04rem;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  margin-bottom: 0.3rem;
  padding: 0.2rem 0.8rem;
}
.first-btn[data-v-0f1ea68d] {
  margin-right: 0.4rem;
  background: #3975C6;
  border: none;
}
.first-btn .van-button__text[data-v-0f1ea68d] {
    color: #fff;
}
.second-btn[data-v-0f1ea68d] {
  background: #3975C6;
}
.no-record-text[data-v-0f1ea68d] {
  margin-top: 0.4rem;
  color: #666;
  font-size: 0.4rem;
}
.second-record-text[data-v-0f1ea68d] {
  margin-top: 0.2rem;
}

.app_container[data-v-1be78fd5] {
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.list-ctn[data-v-1be78fd5] {
  position: relative;
  font-size: 13px;
  height: calc(100% - 1.8rem);
  overflow-y: auto;
}
.list-ctn .app_item[data-v-1be78fd5] {
    width: 100%;
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
}
.list-ctn .app_item .item_top[data-v-1be78fd5] {
      padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.list-ctn .app_item .item_top .item-top-id[data-v-1be78fd5] {
        font-size: 0.37rem;
        font-weight: 400;
        color: #333333;
        margin-bottom: 0.3rem;
        letter-spacing: 1px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.list-ctn .app_item .item_top .item-top-id .cus-class[data-v-1be78fd5] {
          color: #3975c6;
          padding: 0.05rem 0.1rem;
          font-size: 0.32rem;
          border-radius: 0.08rem;
          border: 1px solid #3975c6;
}
.list-ctn .app_item .item_top .item_content[data-v-1be78fd5] {
        margin-bottom: 0.3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.list-ctn .app_item .item_top .item_content .content_title[data-v-1be78fd5] {
          font-size: 0.32rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #999999;
}
.list-ctn .app_item .item_top .item_content .content_value[data-v-1be78fd5] {
          font-size: 0.32rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #333333;
}
.list-ctn .app_item .report_bottom_ctn[data-v-1be78fd5] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 0.29rem 0.25rem;
      font-size: 0.32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #999;
}
.list-ctn .app_item .btn-ctn .btn-item[data-v-1be78fd5] {
      border-radius: 5px;
      font-size: 12px;
      font-weight: 500;
      color: #ffffff;
      padding: 3px 7px;
      background: #ffffff;
}
.list-ctn .app_item .btn-ctn .btn0[data-v-1be78fd5] {
      background: #eeeeee;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
      color: #999999;
}
.list-ctn .app_item .btn-ctn .btn1[data-v-1be78fd5] {
      background: #24b277;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.list-ctn .app_item .btn-ctn .btn2[data-v-1be78fd5] {
      background: #4575c7;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.list-ctn .app_item .btn-ctn .btn3[data-v-1be78fd5] {
      border: 1px solid #da291c;
      color: #da291c;
      margin-left: 8px;
}
.list-ctn .app_item .btn-ctn .btn4[data-v-1be78fd5] {
      border: 1px solid #f5ab32;
      color: #f5ab32;
      margin-left: 8px;
}
.list-ctn .app_item .btn-ctn .btn5[data-v-1be78fd5] {
      border: 1px solid #4575c7;
      color: #4575c7;
      margin-right: 8px;
}
.list-ctn .app_item .bottom-btn[data-v-1be78fd5] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding: 0.1rem 0.29rem 0.25rem;
}
.no-record-ctn[data-v-1be78fd5] {
  padding-top: 3.91rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.no-record-ctn img[data-v-1be78fd5] {
    width: 4.03rem;
}
.no-record-ctn .no-record-text[data-v-1be78fd5] {
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.4rem;
}
.no-record-ctn .second-record-text[data-v-1be78fd5] {
    margin-top: 0.2rem;
}
.add_btn_box[data-v-1be78fd5] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 24px 15px;
}
.add_btn_box .submit_btn[data-v-1be78fd5] {
    height: 1.04rem;
    border-radius: 1rem;
    font-size: 0.4rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    background: #3975c6;
    width: calc(100% - 30px);
}
.add_btn_box .submit_btn .van-button__text[data-v-1be78fd5] {
      color: #fff;
}
.title-ctn[data-v-1be78fd5] {
  font-weight: bold;
  font-size: 17px;
  color: #DA291C;
}
.tip-ctn[data-v-1be78fd5] {
  text-align: center;
  padding: 24px 14px 24px 23px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 24px;
}

.ele-contract-index[data-v-6b06d7cc] {
  overflow: hidden;
  position: relative;
}
.ele-contract-index[data-v-6b06d7cc]::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.ele-contract-index .contract-main[data-v-6b06d7cc] {
    padding: 0.4rem 0.2667rem;
}
.ele-contract-index .contract-main .business-info[data-v-6b06d7cc] {
      font-size: 14px;
      font-weight: 500;
      color: #666666;
      padding: 10px 16px;
}
.ele-contract-index .contract-main .business-info .info-top[data-v-6b06d7cc] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
            -ms-flex-align: baseline;
                align-items: baseline;
        margin-bottom: 6px;
}
.ele-contract-index .contract-main .business-info .info-top .name-ctn[data-v-6b06d7cc] {
          font-size: 18px;
          font-weight: bold;
          color: #333333;
          margin-right: 4px;
}
.ele-contract-index .form-title[data-v-6b06d7cc] {
    font-size: 0.37rem !important;
    color: #333;
    padding-left: 0.4267rem;
    padding-top: 0.2667rem;
    font-weight: 400 !important;
}
.ele-contract-index .only-read-field[data-v-6b06d7cc] .van-field__control {
    color: #333 !important;
}
.ele-contract-index .cell-group-title[data-v-6b06d7cc] {
    margin: 0.4rem 0.15rem;
    color: #333;
    font-size: 0.43rem;
    font-weight: bold;
}
.ele-contract-index[data-v-6b06d7cc] .van-field__label {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.ele-contract-index[data-v-6b06d7cc] .van-checkbox__label {
    margin-left: 0;
}
.ele-contract-index[data-v-6b06d7cc] .van-field__control {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
}
.ele-contract-index .van-cell-group__title[data-v-6b06d7cc] {
    margin: 0;
    padding: 0.23rem 0.47rem 0.41rem 0.04rem;
    font-size: 0.43rem;
    font-weight: 600;
    color: black;
}
.ele-contract-index .cell-title-required[data-v-6b06d7cc] {
    position: relative;
}
.ele-contract-index .cell-title-required[data-v-6b06d7cc]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.ele-contract-index .contract_footer[data-v-6b06d7cc] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99;
}
.ele-contract-index .contract_footer .contract_footer-btn[data-v-6b06d7cc] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0 0.4rem;
}
.ele-contract-index .radius[data-v-6b06d7cc], .ele-contract-index .cell-group[data-v-6b06d7cc], .ele-contract-index .cell-group .van-cell[data-v-6b06d7cc] {
    border-radius: 10px;
}
.ele-contract-index .cell-group[data-v-6b06d7cc] {
    background: #ffffff;
    margin-bottom: 15px;
}
.ele-contract-index[data-v-6b06d7cc] .van-cell--required::before {
    display: none;
}
.ele-contract-index[data-v-6b06d7cc] .van-cell__title {
    width: 8em;
}

div[data-v-5cbbe3c0] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.item-cont[data-v-5cbbe3c0] {
  display: inline-block;
  color: #333333;
  margin: 0 0 8px 10px;
}
.img-wrap > img[data-v-5cbbe3c0] {
  margin: 0 5.5px;
}
.img-wrap > img[data-v-5cbbe3c0]:nth-child(5n + 1) {
  margin: 0 5.5px 0 0;
}
.img-wrap > img[data-v-5cbbe3c0]:nth-child(5n + 5) {
  margin: 0 0 0 5.5px;
}
.reported_container[data-v-5cbbe3c0] {
  background: #ebebeb;
  min-height: 100vh;
}
.reported-form[data-v-5cbbe3c0] {
  padding: 0.35rem;
}
.inner-group[data-v-5cbbe3c0] {
  margin-top: 0.27rem;
}
.van-group[data-v-5cbbe3c0] {
  border-radius: 10px;
}
.van-cell[data-v-5cbbe3c0] {
  border-radius: 10px;
}
.van-cell[data-v-5cbbe3c0] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-5cbbe3c0]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-5cbbe3c0] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-5cbbe3c0] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-5cbbe3c0] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.icon_box[data-v-5cbbe3c0] {
  width: 1.5rem;
  height: 1.5rem;
  background: rgb(242, 242, 242);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-wrap[data-v-5cbbe3c0] {
  margin: 0 !important;
}
/*  */
.top-img[data-v-5cbbe3c0] {
  border-radius: 10px;
}
.top-inner[data-v-5cbbe3c0] {
  padding: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 550;
  color: #333333;
}
.inner-img[data-v-5cbbe3c0] {
  width: 0.67rem;
  height: 0.67rem;
  margin-right: 12px;
}
.collect-detail-item[data-v-5cbbe3c0] {
  margin-top: 0.3rem;
}
.detail-item-top[data-v-5cbbe3c0] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.1rem;
}
.item-top-text[data-v-5cbbe3c0] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}

div[data-v-6af5b15c] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.item-cont[data-v-6af5b15c] {
  display: inline-block;
  color: #333333;
  margin: 0 0 8px 10px;
}
.img-wrap > img[data-v-6af5b15c] {
  margin: 0 5.5px;
}
.img-wrap > img[data-v-6af5b15c]:nth-child(5n + 1) {
  margin: 0 5.5px 0 0;
}
.img-wrap > img[data-v-6af5b15c]:nth-child(5n + 5) {
  margin: 0 0 0 5.5px;
}
.reported_container[data-v-6af5b15c] {
  background: #ebebeb;
  min-height: 100vh;
}
.reported-form[data-v-6af5b15c] {
  padding: 0.35rem;
}
.inner-group[data-v-6af5b15c] {
  margin-top: 0.27rem;
}
.van-group[data-v-6af5b15c] {
  border-radius: 10px;
}
.van-cell[data-v-6af5b15c] {
  border-radius: 10px;
}
.van-cell[data-v-6af5b15c] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-6af5b15c]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-6af5b15c] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-6af5b15c] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-6af5b15c] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.icon_box[data-v-6af5b15c] {
  width: 1.5rem;
  height: 1.5rem;
  background: rgb(242, 242, 242);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-wrap[data-v-6af5b15c] {
  margin: 0 !important;
}
/*  */
.top-img[data-v-6af5b15c] {
  border-radius: 10px;
}
.top-inner[data-v-6af5b15c] {
  padding: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 550;
  color: #333333;
}
.inner-img[data-v-6af5b15c] {
  width: 0.67rem;
  height: 0.67rem;
  margin-right: 12px;
}
.collect-detail-item[data-v-6af5b15c] {
  margin-top: 0.3rem;
}
.detail-item-top[data-v-6af5b15c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.1rem;
}
.item-top-text[data-v-6af5b15c] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}

.app_container[data-v-121b9791] {
  /* background: #f8f8f8; */
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #ebebeb;
}
.fixed-tab[data-v-121b9791] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 50px;
}
.border-bottom-1px[data-v-121b9791]::after {
  position: relative;
  top: 10px;
  border-bottom: 1px solid #3c3c43;
}
.approval-label[data-v-121b9791] {
  width: 36px;
  height: 16px;
  margin-left: 10px;
}
.contract-item[data-v-121b9791] {
  padding: 12px 20px;
  border-radius: 5px;
  color: #666666;
  background: #ffffff;
}
/* items */
.app_items[data-v-121b9791] {
  padding-bottom: 53px;
  background: #ebebeb;
}
.app-item-inner[data-v-121b9791] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.app-item-inner-title[data-v-121b9791] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  margin: 0.3rem;
}
.app_item[data-v-121b9791] {
  width: 100%;
  background: #ffffff;
  margin-bottom: 0.27rem;
  border-radius: 5px;
}
.app_inner[data-v-121b9791] {
  padding: 0.37rem 0.35rem 0;
}
.item_top[data-v-121b9791] {
  padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.item-top-approval[data-v-121b9791] {

  text-align: right;
  margin-left:auto;
  font-size: 12px;
  font-family: PingFang SC;

  color: #ffffff;
  line-height: 13px;

  padding: 5px 10px;
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
  border-radius: 5px;
  float: right;
  margin-bottom: 0.3rem;
}
.item-top-id[data-v-121b9791] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}
.item_content[data-v-121b9791] {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_title[data-v-121b9791] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.content_value[data-v-121b9791] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.line[data-v-121b9791] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-121b9791] {
  padding: 0.3rem 0.51rem 0.25rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-121b9791] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.bottom_r[data-v-121b9791] {
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.bottom-btn0[data-v-121b9791] {
  border: 1px solid #050505;
  color: #050505;
}
.bottom-btn99[data-v-121b9791] {
  background: #3bb66f;
}
.bottom-btn1[data-v-121b9791] {
  background: #3975c6;
}
.bottom-btn2[data-v-121b9791] {
  background: #3bb66f;
}
.bottom-btn-1[data-v-121b9791] {
  background: #e75805;
}
.approval-accept[data-v-121b9791] {
  background: #3bb66f;
}
.approval-reback[data-v-121b9791] {
  background: #e75805;
}
.bottom-r-inner[data-v-121b9791] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-121b9791] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.delete-button[data-v-121b9791] {
  width: 100%;
  height: 100%;
  border: none;
  background: #FF2D2D;
  color: #fff;
}

.radius[data-v-777b1596], .cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-777b1596], .cotract-index .contract-wrap .contract-content .content-content .cell-group .van-cell[data-v-777b1596] {
  border-radius: 10px;
}
.cotract-index[data-v-777b1596] {
  height: 100vh;
  width: 100%;
  background: #f7f8fc;
  overflow: hidden;
  position: relative;
}
.cotract-index .contract-wrap[data-v-777b1596] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.cotract-index .contract-wrap .contract-content[data-v-777b1596] {
      margin: 0 0.3rem;
}
.cotract-index .contract-wrap .contract-content .content-top[data-v-777b1596] {
        margin: 10px 0;
        padding: 12px 15px;
        background-color: #ffffff;
        border-radius: 10px;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner[data-v-777b1596] {
          padding: 20px 25px;
          border: 1px solid #ccc;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner .top-inner-inner[data-v-777b1596] {
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            font-size: 32px;
            color: #1f1f1f;
            margin-bottom: 15px;
            font-weight: 500;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner .top-inner-inner .inner-input[data-v-777b1596] {
              display: inline-block;
              font-size: 45px;
              margin-top: 7px;
              padding-left: 5px;
              width: 200px;
              border: none;
              outline: none;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-777b1596] {
        background: #ffffff;
        margin-bottom: 15px;
}
.btn-wrap .submit-btn[data-v-777b1596] {
  height: 44px;
  line-height: 44px;
  color: #fff;
  font-size: 0.42rem;
  border-radius: 6px;
  background-color: #5076b8;
  width: 100%;
}
.border-bottom-1px[data-v-777b1596]::after {
  bottom: -10px;
  border-bottom: 1px solid #3c3c43;
}
.border-top-1px[data-v-777b1596]::before {
  position: relative;
  top: -10px;
  border-bottom: 1px solid #3c3c43;
}
.check-approval-container[data-v-777b1596] {
  margin: 0.4rem 0.27rem 0;
}
.opportunity-msg > div > div[data-v-777b1596] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.opportunity-msg > div > div span[data-v-777b1596]:nth-child(2) {
  display: inline-block;
  color: #666666;
}
.cotract-index > .van-uploader[data-v-777b1596] {
  width: 100% !important;
}
.cotract-index > .van-uploader__input-wrapper[data-v-777b1596] {
  width: 100% !important;
}
.upload-img > .van-uploader__preview-image[data-v-777b1596] {
  width: 45px;
  height: 45px;
}
.upload-img > .van-uploader__upload[data-v-777b1596] {
  width: 45px;
  height: 45px;
}
.cotract-index > .van-uploader[data-v-777b1596] {
  z-index: 500;
}

.con-container[data-v-ae3317a4] {
  height: 100vh;
  background: #ebebeb;
  width: 100%;
  font-size: 15px;
  color: #333333;
  font-weight: 400;
  overflow: hidden;
}
.con-container .content[data-v-ae3317a4] {
    padding: 0.3rem;
    overflow-y: scroll;
}
.con-container .content .item[data-v-ae3317a4] {
      padding: 10px;
      border-radius: 5px;
      color: #666666;
      margin-bottom: 10px;
      background: #ffffff;
}
.con-container .content .item .item-top[data-v-ae3317a4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        color: #333333;
        font-weight: 500;
        margin-bottom: 12px;
}

.price-apply[data-v-780b4de0] {
  width: 100%;
  height: 100vh;
}
.price-apply[data-v-780b4de0]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.price-apply .cell-title-required[data-v-780b4de0] {
    position: relative;
}
.price-apply .cell-title-required[data-v-780b4de0]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.price-apply .price_wrap[data-v-780b4de0] {
    padding-top: 10.13px;
    padding-bottom: 2.5rem;
}
.price-apply .price_footer[data-v-780b4de0] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.price-apply .price_footer .price_footer-btn[data-v-780b4de0] {
      height: 2.48rem;
      background: #ffffff;
      padding: 0.53rem 0.4rem 0.64rem;
}
.price-apply .check-approval-container[data-v-780b4de0] {
    margin: 0.4rem 0.27rem 0;
}
.price-apply[data-v-780b4de0] .van-cell,
  .price-apply[data-v-780b4de0] .van-field__body {
    font-weight: 400 !important;
}
.price-apply[data-v-780b4de0] .van-cell-group__title {
    margin: 0;
    padding: 0.53rem 0.47rem 0.41rem;
    font-size: 0.43rem;
    font-weight: 600;
    color: black;
}
.price-apply[data-v-780b4de0] .van-cell {
    font-size: 0.38rem;
}
.price-apply[data-v-780b4de0] .van-cell__title {
    color: #333;
}
.price-apply[data-v-780b4de0] .van-cell__value {
    color: #666;
}
.price-apply[data-v-780b4de0] .van-cell__value input::-webkit-input-placeholder {
      color: #999 !important;
}
.price-apply[data-v-780b4de0] .van-field__control::-webkit-input-placeholder {
    color: #999 !important;
}
.price-apply[data-v-780b4de0] .van-cell__label {
    font-size: .38rem;
}
.price-apply[data-v-780b4de0] .van-cell--required::before {
    display: none;
}
.price-apply[data-v-780b4de0] .van-cell-group--inset {
    margin-left: .27rem;
    margin-right: .27rem;
}
.price-apply[data-v-780b4de0] .van-cell-group__title--inset {
    padding: .53rem .34rem .41rem;
}
.price-apply[data-v-780b4de0] .van-field__label {
    width: 8em;
}

.list_main[data-v-32476440] {
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  background: #f7f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_main .list_main-wrap[data-v-32476440] {
    width: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}
.list_main .list_main-wrap .list_main-total[data-v-32476440] {
      display: block;
      margin: 0.26rem 0.42rem;
      font-size: 0.32rem;
      font-weight: 500;
      color: #666666;
}
.list_main .list_main-wrap .scroll-list[data-v-32476440] {
      width: 100%;
      height: calc(100vh - 3.4rem);
      overflow-y: auto;
}
.list_main .list_main-wrap .scroll-list[data-v-32476440]::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
}
.list_main .list_main-wrap .scroll-list .list_main-item[data-v-32476440] {
        margin-bottom: 0.19rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item[data-v-32476440] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-line-pack: center;
              align-content: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-tag[data-v-32476440] {
            padding: 0.06rem 0.12rem;
            border-color: #3975c6;
            font-size: 0.32rem;
            font-weight: 500;
            color: #3975c6;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-btn[data-v-32476440] {
            background: #3975c6;
            -webkit-box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
                    box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
            font-size: 0.32rem;
            font-weight: 500;
            color: #ffffff;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .bottom-btn3[data-v-32476440] {
            background: #eee;
            color: #999;
            -webkit-box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
                    box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .sale-btn[data-v-32476440] {
            background: #24B277;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-32476440] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-32476440] {
            font-size: 0.32rem;
            font-weight: 500;
            color: #666666;
            line-height: 0.65rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-32476440]:last-of-type {
              color: #333;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span .label-btn[data-v-32476440] {
              color: #3975c6;
              margin: 0 0.2rem;
              font-style: normal;
}
.list_main .no-record[data-v-32476440] {
    font-size: 0.38rem;
    text-align: center;
    margin-top: 200px;
}
.list_main .add-sale[data-v-32476440] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
}
.list_main .add-sale .btn-ctn[data-v-32476440] {
      height: 2.48rem;
      background: #ffffff;
      padding: 0.53rem 0.4rem 0.64rem;
}
.list_main .add-sale .btn-ctn .submit_btn[data-v-32476440] {
        width: 100%;
        height: 1.04rem;
        background: #5076b8;
        border-radius: 1rem;
        font-size: 0.4rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #ffffff;
}

.reported_container[data-v-52c35e21] {
  background: #f7f8fc;
  min-height: 100vh;
}
.reported_container .report_form[data-v-52c35e21] {
    padding: 0.35rem;
}
.reported_container .report_form .van-group[data-v-52c35e21] {
      border-radius: 10px;
}
.reported_container .report_form .van-group .top-img[data-v-52c35e21] {
        border-radius: 10px;
}
.reported_container .report_form .van-group .top-img .top-inner[data-v-52c35e21] {
          padding: 0.3rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 0.37rem;
          font-family: Source Han Sans CN;
          font-weight: 550;
          color: #333333;
}
.reported_container .report_form .van-group .top-img .top-inner .inner-img[data-v-52c35e21] {
            width: 0.67rem;
            height: 0.67rem;
            margin-right: 12px;
}
.img-item[data-v-52c35e21] {
  width: 1.1733rem;
  height: 1.1733rem;
  border-radius: 0.14rem;
}
.van-cell[data-v-52c35e21] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-52c35e21] {
  padding: 0;
}
.van-cell[data-v-52c35e21]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
html[data-v-52c35e21] {
  background-color: '#EBEBEB' !important;
}
div[data-v-52c35e21] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.item-cont[data-v-52c35e21] {
  display: inline-block;
  color: #333333;
  margin: 0 0 8px 10px;
}
.img-wrap > img[data-v-52c35e21] {
  margin: 0 5.5px;
}
.img-wrap > img[data-v-52c35e21]:nth-child(5n + 1) {
  margin: 0 5.5px 0 0;
}
.img-wrap > img[data-v-52c35e21]:nth-child(5n + 5) {
  margin: 0 0 0 5.5px;
}

.people-manage[data-v-b26f3136] {
  height: 100vh;
}
.empty-img[data-v-b26f3136] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-b26f3136] {
  margin-top: 0.64rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.box_top[data-v-b26f3136] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-b26f3136] {
  text-align: center;
  width: 100%;
}

.add_container[data-v-3b8416fa] {
  background: #f7f8fc;
  height: 100vh;
  overflow: hidden;
}
.add_container .add-wrap[data-v-3b8416fa] {
    width: 100%;
    height: calc(100% - 2.21rem);
    overflow-y: scroll;
}
.add_container .add-wrap .add_content[data-v-3b8416fa] {
      padding: 0.3rem;
}
.add_container .add-wrap .add_content .content-title[data-v-3b8416fa] {
        font-size: 0.32rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #d81111;
        margin-bottom: 0.3rem;
}
.add_container .add-wrap .add_content .add_content_inner[data-v-3b8416fa] {
        border-radius: 5px;
        background: white;
}
.add_container .add-wrap .add_content .check-approval-container[data-v-3b8416fa] {
        margin-top: 0.3rem;
}
.add_container .add_btn_box[data-v-3b8416fa] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    bottom: 0;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.add_container .add_btn_box .sub_btn_box[data-v-3b8416fa] {
      height: 1.04rem;
      width: 100%;
      padding: 0 0.4rem;
}
.add_container .add_btn_box .sub_btn_box .submit_btn[data-v-3b8416fa] {
        width: 100%;
        height: 100%;
        color: #ffffff;
        background: #5076b8;
        border-radius: 1rem;
}

.font-basic[data-v-0729c969] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-0729c969] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-0729c969] {
  border-radius: 5px;
}
.van-cell[data-v-0729c969] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-0729c969] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-0729c969] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-0729c969] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-0729c969] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-0729c969] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}

.showCell .van-cell__title[data-v-4ef1232b] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-4ef1232b] {
  text-align: unset;
}

.font-basic[data-v-b5aa1bf4] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-b5aa1bf4] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-b5aa1bf4] {
  border-radius: 5px;
}
.van-cell[data-v-b5aa1bf4] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-b5aa1bf4] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-b5aa1bf4] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-b5aa1bf4] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-b5aa1bf4] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-b5aa1bf4] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-b5aa1bf4] {
  text-align: right !important;
}

.font-basic[data-v-f7c313cc] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-f7c313cc] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-f7c313cc] {
  border-radius: 5px;
}
.van-cell[data-v-f7c313cc] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-f7c313cc] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-f7c313cc] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-f7c313cc] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-f7c313cc] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-f7c313cc] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-f7c313cc] {
  text-align: right !important;
}

.font-basic[data-v-710adc58] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-710adc58] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-710adc58] {
  border-radius: 5px;
}
.van-cell[data-v-710adc58] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-710adc58] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-710adc58] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-710adc58] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-710adc58] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-710adc58] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-710adc58] {
  text-align: right !important;
}

.font-basic[data-v-58d62315] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-58d62315] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-58d62315] {
  border-radius: 5px;
}
.van-cell[data-v-58d62315] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-58d62315] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-58d62315] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-58d62315] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-58d62315] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-58d62315] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-58d62315] {
  text-align: right !important;
}

.showCell .van-cell__title[data-v-58e743fc] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-58e743fc] {
  text-align: unset;
}

.font-basic[data-v-1fb0a210] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-1fb0a210] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-1fb0a210] {
  border-radius: 5px;
}
.van-cell[data-v-1fb0a210] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-1fb0a210] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-1fb0a210] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-1fb0a210] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-1fb0a210] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-1fb0a210] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}

.font-basic[data-v-cf928a6a] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-cf928a6a] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-cf928a6a] {
  border-radius: 5px;
}
.van-cell[data-v-cf928a6a] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-cf928a6a] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-cf928a6a] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-cf928a6a] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-cf928a6a] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-cf928a6a] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.showCell .van-cell__title[data-v-cf928a6a] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-cf928a6a] {
  text-align: unset;
  overflow: inherit;
}
.showCell .van-cell__value > .van-uploader__upload[data-v-cf928a6a] {
    width: 44px;
    height: 44px;
}
.showCell .van-cell__value > .van-uploader__wrapper[data-v-cf928a6a] {
    margin-top: 10px;
}
.showCell .van-cell__value > .van-image[data-v-cf928a6a] {
    width: 44px;
    height: 44px;
}

.canvas[data-v-33c93190] {
  width: 100%;
  height: inherit;
  background: #f7f8fc;
}
.line[data-v-33c93190] {
  height: 1px;
  background: #eeeeee;
  margin-bottom: 0.3rem;
}
.canvas_detail[data-v-33c93190] {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  padding: 14px 8px 14px;
}
.canvas-content[data-v-33c93190] {
  border-radius: 5px;
  background: #fff;
}

.font-basic[data-v-34e3f74e] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-34e3f74e] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-34e3f74e] {
  border-radius: 5px;
}
.van-cell[data-v-34e3f74e] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-34e3f74e] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-34e3f74e] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-34e3f74e] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-34e3f74e] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-34e3f74e] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}

.font-basic[data-v-5c8dd4d3] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-5c8dd4d3] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-5c8dd4d3] {
  border-radius: 5px;
}
.van-cell[data-v-5c8dd4d3] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-5c8dd4d3] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-5c8dd4d3] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-5c8dd4d3] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-5c8dd4d3] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-5c8dd4d3] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.history-list[data-v-5c8dd4d3] {
  background: #eef3fc;
  border-radius: 5px;
  padding: 0 10px;
  margin-top: 10px;
}
.history-list .history-item[data-v-5c8dd4d3] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0 5px;
}
.history-list .list-title[data-v-5c8dd4d3] {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding-top: 15px;
}
.adress-ctn[data-v-5c8dd4d3] {
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  margin-bottom: 5px;
}
.update-ctn[data-v-5c8dd4d3] {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
}

.nodeInfo-box[data-v-b9f8ed32] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nodeName-box[data-v-b9f8ed32] {
  margin-left: 0.35rem;
}
.approval_container[data-v-b9f8ed32] {
  min-height: 100vh;
  background: #f7f8fc;
}
.flow-info[data-v-b9f8ed32] {
  background: #f7f8fc;
  padding: 0 10px 14px;
}
.comment[data-v-b9f8ed32] {
  background: #f7f8fc;
  padding: 0 10px 100px;
}
.approval_bottom[data-v-b9f8ed32] {
  width: 100%;
  height: 83px;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.approval_bottom .bottom_wrap[data-v-b9f8ed32] {
    padding: 20px 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.approval_bottom .bottom_wrap .bottom_btn[data-v-b9f8ed32] {
      width: 100%;
      height: 39px;
}
.approval_bottom .bottom_wrap .bottom_btn .bottom_btn_wrap[data-v-b9f8ed32] {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 0 4px;
        background: #f7f8fc;
        border-radius: 20px;
}
.approval_bottom .bottom_wrap .bottom_btn .bottom_btn_wrap .btn_title[data-v-b9f8ed32] {
          font-size: 15px;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #3975c6;
}
.approval_bottom .bottom_wrap .bottom_btn .bottom_btn_wrap .btn_pass[data-v-b9f8ed32] {
          color: #ffffff;
}
.approval_bottom .bottom_wrap .bottom_btn .bottom_btn_wrap .btn_img[data-v-b9f8ed32] {
          width: 14px;
          height: 14px;
          margin-right: 7px;
}
.approval_bottom .bottom_wrap .bottom_btn .btn_pass[data-v-b9f8ed32] {
        background: #3975c6;
        color: #ffffff;
}
.approval_item[data-v-b9f8ed32] {
  background: #f7f8fc;
}
.approval_item .reEdit-box[data-v-b9f8ed32] {
    padding: 0 10px 20px;
    background: #f7f8fc;
}
.approval_item .reEdit-box .reEdit[data-v-b9f8ed32] {
      padding: 10px 0;
      background: #548cdf;
      border-radius: 5px;
      text-align: center;
      font-size: 15px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #ffffff;
      line-height: 15px;
}

.comment-container[data-v-24e17cc4] {
  width: 100%;
}
.comment-container .title[data-v-24e17cc4] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    margin-left: 8px;
}
.comment-container[data-v-24e17cc4] .at-text {
    white-space: nowrap;
}
.comment-wrap[data-v-24e17cc4] {
  background: #ffffff;
  border-radius: 5px;
}
.comment-wrap .comment-item[data-v-24e17cc4] {
    padding: 15px 15px 0;
}
.comment-wrap .comment-item .item-top[data-v-24e17cc4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.comment-wrap .comment-item .item-top .item-top-l[data-v-24e17cc4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.comment-wrap .comment-item .item-top .item-top-l img[data-v-24e17cc4] {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          margin-right: 7px;
}
.comment-wrap .comment-item .item-top .item-top-l .item-top-l-r .name[data-v-24e17cc4] {
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
          margin-bottom: 3px;
}
.comment-wrap .comment-item .item-top .item-top-l .item-top-l-r .date[data-v-24e17cc4] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 400;
          color: #666666;
}
.comment-wrap .comment-item .item-top .item-top-r[data-v-24e17cc4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.comment-wrap .comment-item .item-top .item-top-r img[data-v-24e17cc4] {
          width: 13px;
          height: 13px;
          margin-right: 3px;
}
.comment-wrap .comment-item .item-top .item-top-r span[data-v-24e17cc4] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 400;
          color: #548cdf;
}
.comment-wrap .comment-item .item-content[data-v-24e17cc4] {
      margin-top: 13px;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #333333;
      line-height: 24px;
}
.comment-wrap .comment-item .item-imgBox[data-v-24e17cc4] {
      width: 100%;
      margin: 0 -6px;
}
.comment-wrap .comment-item .item-imgBox .item-imgWrap[data-v-24e17cc4] {
        padding: 12px 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.comment-wrap .comment-item .item-imgBox .item-imgWrap .img-item[data-v-24e17cc4] {
          margin: 0 !important;
          /*img {*/
          /*  width: 44px;*/
          /*  height: 44px;*/
          /*  border-radius: 5px;*/
          /*}*/
}
.comment-wrap .input-box .input-box-wrap[data-v-24e17cc4] {
    padding: 20px 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.comment-wrap .input-box .input-box-wrap .input-upload[data-v-24e17cc4] {
      width: 18px;
      height: 17px;
      margin-right: 12px;
      padding-bottom: 4px;
}
.comment-wrap .input-box .input-box-wrap .input-upload .van-uploader[data-v-24e17cc4] {
        width: 18px;
        height: 17px;
}
.comment-wrap .input-box .input-box-wrap .input-upload .van-uploader[data-v-24e17cc4] .van-uploader__wrapper {
          width: 18px;
          height: 17px;
}
.comment-wrap .input-box .input-box-wrap .input-upload .van-uploader[data-v-24e17cc4] .van-uploader__wrapper .van-uploader__input-wrapper {
            width: 18px;
            height: 17px;
}
.comment-wrap .input-box .input-box-wrap .input-upload .van-uploader[data-v-24e17cc4] .van-uploader__wrapper .van-uploader__input-wrapper .uploadImg {
              width: 18px;
              height: 17px;
}
.comment-wrap .input-box .input-box-wrap .inputor[data-v-24e17cc4] {
      width: calc(100% - 40px);
      background: #f7f8fc;
      border: 1px solid #548cdf !important;
      border-radius: 5px 0px 0px 5px;
      outline: none;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #333333;
      line-height: 18px;
      padding: 8px 5px;
}
.comment-wrap .input-box .input-box-wrap .inputor[data-v-24e17cc4]:focus {
      border: 1px solid #548cdf !important;
}
.comment-wrap .input-box .input-box-wrap .inputor[data-v-24e17cc4]:empty:before {
      content: attr(placeholder);
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #999999;
}
.comment-wrap .input-box .input-box-wrap .inputor[data-v-24e17cc4]:focus:before {
      content: none;
}
.comment-wrap .img-box .img-wrap[data-v-24e17cc4] {
    padding: 0 9px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.comment-wrap .img-box .img-wrap .img-item[data-v-24e17cc4] {
      width: 44px;
      height: 44px;
      margin: 13px 6px 0;
      position: relative;
}
.comment-wrap .img-box .img-wrap .img-item .img[data-v-24e17cc4] {
        width: 100%;
        height: 100%;
        border-radius: 5px;
}
.comment-wrap .img-box .img-wrap .img-item .close[data-v-24e17cc4] {
        width: 10px;
        height: 10px;
        position: absolute;
        top: -3px;
        right: -3px;
}
.line[data-v-24e17cc4] {
  width: 100%;
  height: 1px;
  background: #f1f3f8;
  margin-top: 15px;
}
.img-wrap[data-v-24e17cc4] {
  margin: 0 !important;
}
.btn[data-v-24e17cc4] {
  width: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #3975c6;
  border-radius: 0px 5px 5px 0px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: white;
  line-height: 18px;
  padding: 9px 5px;
}

.flowInfo-container .flowInfo-wrap .title[data-v-3d6da9f7] {
  padding: 0 8px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flowInfo-container .flowInfo-wrap .title .title-title[data-v-3d6da9f7] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
.flowInfo-container .flowInfo-wrap .title .title-link[data-v-3d6da9f7] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #3975c6;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap[data-v-3d6da9f7] {
  padding: 17px 15px;
  background: #fff;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info[data-v-3d6da9f7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l[data-v-3d6da9f7] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l .img-box[data-v-3d6da9f7] {
        width: 40px;
        height: 40px;
        position: relative;
        margin-right: 8px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l .img-box .img-avatar[data-v-3d6da9f7] {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          position: absolute;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l .img-box .img-state[data-v-3d6da9f7] {
          position: absolute;
          width: 12px;
          height: 12px;
          bottom: 0;
          right: 0;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l .info-box .node-title[data-v-3d6da9f7] {
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
        line-height: 13px;
        margin-bottom: 5px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-l .info-box .node-name[data-v-3d6da9f7] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
        line-height: 13px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-info .info-r[data-v-3d6da9f7] {
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
      line-height: 24px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval[data-v-3d6da9f7] {
    border-left: 2px solid #d7e4f4;
    margin-left: 19px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap[data-v-3d6da9f7] {
      padding: 8px 0 26px 27px;
      border-radius: 5px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box[data-v-3d6da9f7] {
        background: #ffffff;
        border: 1px solid #e9ecf7;
        border-radius: 5px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box .approval-wrap[data-v-3d6da9f7] {
          padding: 12px 16px 13px 11px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box .approval-wrap .approval-item[data-v-3d6da9f7] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box .approval-wrap .approval-item .approval-item-label[data-v-3d6da9f7] {
              width: 40%;
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
              line-height: 24px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box .approval-wrap .approval-item .approval-item-value[data-v-3d6da9f7] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
              line-height: 24px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-approval .item-approval-wrap .approval-box .approval-wrap .approval-opinion .approval-item-opinion[data-v-3d6da9f7] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #333333;
            line-height: 18px;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .item-line-turn[data-v-3d6da9f7] {
    border-left: 2px dashed #d7e4f4 !important;
}
.flowInfo-container .flowInfo-wrap .content .content-wrap .flow-item .hide-line[data-v-3d6da9f7] {
    border-left: 0px dashed #d7e4f4 !important;
}
.line[data-v-3d6da9f7] {
  width: 100%;
  height: 1px;
  background: #e9ecf7;
  margin: 12px 0;
}

.first-node[data-v-438c5370] {
  background: #f7f8fc;
}
.first-node .first-title[data-v-438c5370] {
    background: #3975c6;
    height: 90px;
}
.first-node .first-title .first-title-wrap[data-v-438c5370] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 10px;
}
.first-node .first-title .first-title-wrap .title-l[data-v-438c5370] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.first-node .first-title .first-title-wrap .title-l .title-avatar[data-v-438c5370] {
          width: 40px;
          height: 40px;
          border-radius: 20px;
          margin-right: 10px;
}
.first-node .first-title .first-title-wrap .title-l .title[data-v-438c5370] {
          font-size: 16px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #ffffff;
          line-height: 13px;
}
.first-node .first-title .first-title-wrap .title-r[data-v-438c5370] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.first-node .first-title .border-radius[data-v-438c5370] {
      width: 100%;
      height: 20px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.first-node .first-content[data-v-438c5370] {
    position: relative;
    top: -20px;
    border-radius: 10px 10px 0 0;
}
.first-node .first-content .first-content-wrap[data-v-438c5370] {
      height: 100%;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.first-node .first-content .first-content-wrap .app_content[data-v-438c5370] {
        padding: 19px 10px 0;
        border-radius: 5px;
}
.first-node .first-content .first-content-wrap .app_content .app-inner[data-v-438c5370] {
          background: #fff;
          border-radius: 5px;
}

.van-popup .title[data-v-4165adb7] {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  padding: 20px;
  text-align: center;
}
.van-popup .pass-container[data-v-4165adb7] {
  padding: 0 15px;
}
.van-popup .pass-container .pass-item[data-v-4165adb7] {
    margin-bottom: 23px;
}
.van-popup .check-approval[data-v-4165adb7] {
  padding: 10px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.van-popup .check-approval .check-label[data-v-4165adb7] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
}
.van-popup .check-approval .check-content .select-img[data-v-4165adb7] {
    width: 36px;
    height: 36px;
}
.van-popup .check-approval .check-content .employ-box[data-v-4165adb7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-popup .check-approval .check-content .employ-box .img-box[data-v-4165adb7] {
      position: relative;
      width: 36px;
      height: 36px;
}
.van-popup .check-approval .check-content .employ-box .img-box .employ-img[data-v-4165adb7] {
        width: 36px;
        height: 36px;
        border-radius: 5px;
        position: absolute;
}
.van-popup .check-approval .check-content .employ-box .img-box .img-close[data-v-4165adb7] {
        position: absolute;
        width: 0.3rem;
        height: 0.3rem;
        top: -0.1rem;
        right: -0.1rem;
}
.van-popup .check-approval .check-content .employ-box .employ-name[data-v-4165adb7] {
      font-size: 0.27rem;
      color: #333;
      -webkit-transform: scale(0.85);
      transform: scale(0.85);
      width: 1rem;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}
.van-popup .btn-box .btn-wrap[data-v-4165adb7] {
  padding: 12px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.van-popup .btn-box .btn-wrap .pass-btn[data-v-4165adb7] {
    width: 47%;
    height: 39px;
    border-radius: 20px;
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    line-height: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.van-popup .btn-box .btn-wrap .cancle[data-v-4165adb7] {
    background: rgba(67, 120, 190, 0.2);
    color: #4378be;
}
.van-popup .btn-box .btn-wrap .submit[data-v-4165adb7] {
    background: #4378be;
    color: #ffffff;
}
.van-field[data-v-4165adb7] {
  background: #f7f7f7;
  border-radius: 18px;
}
.require-text[data-v-4165adb7] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-4165adb7] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field[data-v-4165adb7] {
  margin-bottom: 23px;
}

.font-basic[data-v-0aea24c5] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-0aea24c5] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-0aea24c5] {
  border-radius: 5px;
}
.van-cell[data-v-0aea24c5] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-0aea24c5] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-0aea24c5] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-0aea24c5] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-0aea24c5] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-0aea24c5] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.van-field[data-v-0aea24c5] {
  background: #f7f7f7;
  border-radius: 18px;
}

.showCell .van-cell__title[data-v-1d3a7297] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-1d3a7297] {
  text-align: unset;
}

.font-basic[data-v-40cc9964] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-40cc9964] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-40cc9964] {
  border-radius: 5px;
}
.van-cell[data-v-40cc9964] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-40cc9964] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-40cc9964] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-40cc9964] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-40cc9964] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-40cc9964] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-40cc9964] {
  text-align: right !important;
}
.van-field[data-v-40cc9964] {
  background: #f7f7f7;
  border-radius: 18px;
}

.font-basic[data-v-0247195e] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-0247195e] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-0247195e] {
  border-radius: 5px;
}
.van-cell[data-v-0247195e] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-0247195e] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-0247195e] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-0247195e] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-0247195e] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-0247195e] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-0247195e] {
  text-align: right !important;
}
.van-field[data-v-0247195e] {
  background: #f7f7f7;
  border-radius: 18px;
}

.font-basic[data-v-383dac9b] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-383dac9b] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-383dac9b] {
  border-radius: 5px;
}
.van-cell[data-v-383dac9b] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-383dac9b] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-383dac9b] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-383dac9b] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-383dac9b] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-383dac9b] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-383dac9b] {
  text-align: right !important;
}
.van-field[data-v-383dac9b] {
  background: #f7f7f7;
  border-radius: 18px;
}

.font-basic[data-v-59f6c4f6] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-59f6c4f6] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-59f6c4f6] {
  border-radius: 5px;
}
.van-cell[data-v-59f6c4f6] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-59f6c4f6] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-59f6c4f6] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-59f6c4f6] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-59f6c4f6] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-59f6c4f6] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field::v-deep .van-field__body .van-field__control[data-v-59f6c4f6] {
  text-align: right !important;
}

.showCell .van-cell__title[data-v-7afbb416] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-7afbb416] {
  text-align: unset;
}

.font-basic[data-v-5d22757c] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-5d22757c] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-5d22757c] {
  border-radius: 5px;
}
.van-cell[data-v-5d22757c] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-5d22757c] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-5d22757c] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-5d22757c] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-5d22757c] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-5d22757c] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}

.font-basic[data-v-4ff01bb6] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-4ff01bb6] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-4ff01bb6] {
  border-radius: 5px;
}
.van-cell[data-v-4ff01bb6] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-4ff01bb6] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-4ff01bb6] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-4ff01bb6] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-4ff01bb6] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-4ff01bb6] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.showCell .van-cell__title[data-v-4ff01bb6] {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell .van-cell__value[data-v-4ff01bb6] {
  text-align: unset;
}
.showCell .van-cell__value > .van-uploader__upload[data-v-4ff01bb6] {
    width: 1.17rem;
    height: 1.17rem;
}
.showCell .van-cell__value > .van-uploader__wrapper[data-v-4ff01bb6] {
    margin-top: 10px;
}
.showCell .van-cell__value > .van-image[data-v-4ff01bb6] {
    width: 1.17rem;
    height: 1.17rem;
}

.canvas[data-v-d0528a5c] {
  width: 100%;
  height: inherit;
  background: #f7f8fc;
}
.line[data-v-d0528a5c] {
  height: 1px;
  background: #eeeeee;
  margin-bottom: 0.3rem;
}
.canvas_detail[data-v-d0528a5c] {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  padding: 14px 8px 14px;
}
.canvas-content[data-v-d0528a5c] {
  border-radius: 5px;
  background: #fff;
}

.font-basic[data-v-0f57b7bb] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.vall-container[data-v-0f57b7bb] {
  border-radius: 5px;
  background-color: #fff;
}
.van-cell[data-v-0f57b7bb] {
  border-radius: 5px;
}
.van-cell[data-v-0f57b7bb] .van-cell__title {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.van-cell[data-v-0f57b7bb] .van-cell__value {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
}
.line-box[data-v-0f57b7bb] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.line-box .line[data-v-0f57b7bb] {
    height: 100%;
    width: 100%;
    background: #f7f8fc;
    margin: 0 0.3rem;
}
.require-text[data-v-0f57b7bb] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-0f57b7bb] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}

.detail_container[data-v-f6845c32] {
  background: rgb(240, 242, 245);
  min-height: 100vh;
}
.approval_top[data-v-f6845c32] {
  padding: 0.2rem 0 2.14rem;
  height: 100%;
  margin: 0 0.25rem;
}
.app_title[data-v-f6845c32] {
  margin-bottom: 0.2rem;
  border-radius: 0.2rem;
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.approval_bottom[data-v-f6845c32] {
  width: 100%;
  height: 2.03rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.bottom_btn[data-v-f6845c32] {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn_title[data-v-f6845c32] {
  font-size: 0.4rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #888888;
}
.btn_img[data-v-f6845c32] {
  width: 0.6rem;
  height: 0.6rem;
}
/* 转审 */
.showCell .employ_box[data-v-f6845c32] {
  margin-right: 12px;
}
.showCell[data-v-f6845c32] .van-cell__title {
  width: 90px;
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}
.showCell[data-v-f6845c32] .van-cell__value {
  text-align: unset;
}
.showCell .van-cell__value[data-v-f6845c32] .van-uploader__upload {
  width: 1.17rem;
  height: 1.17rem;
}
.showCell .van-cell__value[data-v-f6845c32] .van-uploader__wrapper {
  margin-top: 10px;
}
.showCell .van-cell__value[data-v-f6845c32] .van-image {
  width: 1.17rem;
  height: 1.17rem;
}
.showImg[data-v-f6845c32] {
  width: 1.17rem;
  height: 1.17rem;
  margin-right: 0.37rem;
}
.cellIcon[data-v-f6845c32] {
  border: 1px solid;
  font-size: 30px;
}
.employ_box[data-v-f6845c32] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 10px;
}
.employ_img[data-v-f6845c32] {
  width: 1.17rem;
  height: 1.17rem;
}
.employ_icon[data-v-f6845c32] {
  position: absolute;
  left: 1rem;
  font-size: 0.47rem;
  top: -0.1rem;
}
.employ_name[data-v-f6845c32] {
  width: 1.17rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.submit_btn[data-v-f6845c32] {
  width: 9.25rem;
  height: 1.17rem;
  background: #5076b8;
  border-radius: 0.27rem;
  margin: 0 0.37rem;
}
.approval_item[data-v-f6845c32] {
  margin-bottom: 0.24rem;
}
.app_title_img[data-v-f6845c32] {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 0.08rem;
  margin-left: 0.4rem;
}
.app_title_text[data-v-f6845c32] {
  font-size: 0.4rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 550;
  color: #333333;
  letter-spacing: 1px;
  margin-left: 0.35rem;
}
.app_content[data-v-f6845c32] {
  margin: auto;
  background: white;
  padding-bottom: 0.24rem;
}

.popup-box[data-v-a01f17b6] {
  background: rgb(240, 242, 245);
}
.popup-text[data-v-a01f17b6] {
  padding: 0.3rem 0.3rem 0.2rem;
}
.sub_btn_box[data-v-a01f17b6] {
  margin-top: 0.27rem;
  padding: 0 0.3rem;
}
.submit_btn[data-v-a01f17b6] {
  width: 100%;
  height: 1.17rem;
  background: #5076b8;
  border-radius: 0.27rem;
  color: #ffffff;
}
.cancle_btn[data-v-a01f17b6] {
  width: 100%;
  height: 1.17rem;
  border: 1px solid #5076b8;
  border-radius: 0.27rem;
}
.cancle_btn_box[data-v-a01f17b6] {
  padding: 0 0.6rem;
  margin-bottom: 0.3rem;
}
/*  */
.van-field[data-v-a01f17b6] {
  background: #f7f7f7;
  border-radius: 18px;
}
.require-text[data-v-a01f17b6] {
  color: red;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 13px;
}
.pass-label[data-v-a01f17b6] {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
  line-height: 13px;
  margin-bottom: 12px;
}
.select_field[data-v-a01f17b6] {
  margin-bottom: 23px;
}

.search_container[data-v-5d81884a] {
  height: 100vh;
  background: #5076b8;
}
.search .van-search__content[data-v-5d81884a] {
  background: #ffffff;
}
.search[data-v-5d81884a] {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 1.33rem;
}
.search[data-v-5d81884a] .van-field__control {
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #888888;
  letter-spacing: 1px;
}
.search[data-v-5d81884a] .van-field__body .van-icon {
  color: #888888;
}
.search[data-v-5d81884a] .van-field__body .van-field__control::-webkit-input-placeholder {
  color: #999999 !important;
}
.search[data-v-5d81884a] .van-search__action {
  font-size: 0.4rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
}
.search_item[data-v-5d81884a] {
  width: 100%;
  height: 1.44rem;
  background: white;
  margin-bottom: 0.03rem;
}
.search_item_inner[data-v-5d81884a] {
  position: relative;
  height: 100%;
  margin-left: 0.48rem;
  margin-right: 0.48rem;
  border-bottom: 0.03rem solid rgba(60, 60, 67, 0.36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search_img[data-v-5d81884a] {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.45rem;
}
.search_box[data-v-5d81884a] {
  margin-left: 0.48rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.box_title[data-v-5d81884a] {
  font-size: 0.37rem;
  color: #1f1f1f;
}
.box_role[data-v-5d81884a] {
  font-size: 0.27rem;
  color: #888888;
}
.search_info[data-v-5d81884a] {
  margin-top: 1.33rem;
  border-radius: 10px;
  background: white;
  height: 100%;
}
.no_info[data-v-5d81884a] {
  text-align: left;
  padding: 0.3rem 0 0 0.2rem;
  font-size: 0.4rem;
}
.search_history[data-v-5d81884a] {
  padding: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.history_item[data-v-5d81884a] {
  border: #5076b8 solid 1px;
  border-radius: 1rem;
  margin: 0.2rem 0.3rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.history_item span[data-v-5d81884a] {
  padding: 0.1rem 0.3rem;
}

.add_container[data-v-4628a61c] {
  background: #f7f8fc;
  min-height: 100vh;
}
.add_content[data-v-4628a61c] {
  padding-bottom: 2.35rem;
}
.add-content-box[data-v-4628a61c] {
  padding: 15px 10px;
}
.add-content-inner[data-v-4628a61c] {
  border-radius: 10px;
  background: white;
}
.add-content-item[data-v-4628a61c] {
  background: #ffffff;
  border-radius: 10px;
}
.add-content-item[data-v-4628a61c] .van-cell {
  border-radius: 10px;
}
.add_btn_box[data-v-4628a61c] {
  width: 100%;
  height: 2.35rem;
  position: fixed;
  bottom: 0;
  background: #f7f8fc;
}
.add_btn[data-v-4628a61c] {
  width: 100%;
  height: 1.12rem;
  background: #ffffff;
  border-radius: 0.13rem;
}
.sub_btn_box[data-v-4628a61c] {
  height: 2.48rem;
  background: #ffffff;
  margin-top: 0.27rem;
  padding: 0 0.3rem;
}
.submit_btn[data-v-4628a61c] {
  width: 100%;
  height: 1.17rem;
  background: #5076b8;
  border-radius: 0.27rem;
  color: #ffffff;
}

.order_container[data-v-3cf0455a] {
  background: #f8f8f8;
  height: 100vh;
}
.van-search .van-search__content[data-v-3cf0455a] {
  background: white;
}
.van-search[data-v-3cf0455a] .van-field__control {
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  letter-spacing: 1px;
  pointer-events: none;
}
.van-search[data-v-3cf0455a] .van-field__control::-webkit-input-placeholder {
  color: #666666 !important;
}
.order_content[data-v-3cf0455a] {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem 2rem;
  /* grid-template-rows: 100px 100px 100px; */
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
}
.order_imgs[data-v-3cf0455a] {
  width: 2rem;
  height: 3rem;
  margin-left: 0.4rem;
}
.order_img[data-v-3cf0455a] {
  width: 2rem;
  height: 2rem;
}
.order_title[data-v-3cf0455a] {
  font-size: 0.32rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 0.37rem;
  text-align: center;
  height: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search_container[data-v-3c18d036] {
  height: 100vh;
  background: rgb(240 242 245);
}
.search .van-search__content[data-v-3c18d036] {
  background: #d8d8d8;
}
.search[data-v-3c18d036] .van-field__control {
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #888888;
  letter-spacing: 1px;
}
.search[data-v-3c18d036] .van-field__body .van-icon {
  color: #888888;
}
.search[data-v-3c18d036] .van-field__body .van-field__control::-webkit-input-placeholder {
  color: #999999 !important;
}
.search[data-v-3c18d036] .van-search__action {
  font-size: 0.4rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #5076b8;
  letter-spacing: 1px;
}
.search_item[data-v-3c18d036] {
  width: 100%;
  height: 1.44rem;
  background: white;
  margin-bottom: 0.03rem;
}
.search_item_inner[data-v-3c18d036] {
  position: relative;
  height: 100%;
  margin-left: 0.48rem;
  margin-right: 0.48rem;
  border-bottom: 0.03rem solid rgba(60, 60, 67, 0.36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search_img[data-v-3c18d036] {
  width: 0.69rem;
  height: 0.69rem;
  margin-left: 0.45rem;
}
.search_title[data-v-3c18d036] {
  margin-left: 0.48rem;
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
  letter-spacing: 1px;
}

.add_container[data-v-58c31eb3] {
  background: #f8f8f8;
  height: 100vh;
}
.add_content[data-v-58c31eb3] {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  position: absolute;
}
.add_inner[data-v-58c31eb3] {
  margin-top: 0.24rem;
}
.van_radio[data-v-58c31eb3] .van-radio-group {
  width: 100%;
}
.van_radio[data-v-58c31eb3] .van-radio-group .van-radio {
  width: 50%;
  margin-right: 0 !important;
}
.popup_title[data-v-58c31eb3] {
  padding: 0.35rem 0;
  font-size: 0.32rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  text-align: center;
}
.van-popup[data-v-58c31eb3] .van-icon {
  top: 0.35rem;
  right: 0.35rem;
  font-size: 0.5rem;
}
.popup_addr[data-v-58c31eb3] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.3rem 0.43rem;
}
.addr_addr[data-v-58c31eb3] {
  font-size: 0.35rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
}
.addr_btn[data-v-58c31eb3] {
  font-size: 0.29rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #7497fb;
}
.add_btn_box[data-v-58c31eb3] {
  width: 100%;
  height: 2.35rem;
  position: fixed;
  bottom: 0;
  background: rgb(235, 235, 235);
}
.add_btn[data-v-58c31eb3] {
  width: 100%;
  height: 1.12rem;
  background: #7497fb;
  border-radius: 0.13rem;
}
.sub_btn_box[data-v-58c31eb3] {
  height: 2.48rem;
  background: #ffffff;
  margin-top: 0.27rem;
  padding: 0 0.3rem;
}
.submit_btn[data-v-58c31eb3] {
  width: 100%;
  height: 1.17rem;
  background: #5076b8;
  border-radius: 0.27rem;
  color: #ffffff;
}

.distpicker-address-wrapper {
  font-size: 0.37rem;
  letter-spacing: 1px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.distpicker-address-wrapper select {
    padding: 0.5rem 0.75rem;
    height: 40px;
    font-size: 1rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}
.distpicker-address-wrapper select option {
      font-weight: normal;
      display: block;
      white-space: pre;
      min-height: 1.2em;
      padding: 0px 2px 1px;
}
.distpicker-address-wrapper ul {
    margin: 0;
    padding: 0;
}
.distpicker-address-wrapper ul li {
      list-style: none;
}
.distpicker-address-wrapper .inner {
    padding: 0 0.45rem;
    background-color: #fff;
}
.distpicker-address-wrapper .inner .address-header {
      background-color: #fff;
}
.distpicker-address-wrapper .inner .address-header ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
}
.distpicker-address-wrapper .inner .address-header ul li {
          display: inline-block;
          padding: 10px 20px 7px 0px;
}
.distpicker-address-wrapper .inner .address-header ul li.active {
            color: #52697f;
}
.distpicker-address-wrapper .inner .line {
      width: 100%;
      height: 0.03rem;
      background: rgba(60, 60, 67, 0.36);
      margin: 0.5rem 0 0.29rem;
}
.distpicker-address-wrapper .inner .address-container {
      background-color: #fff;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
}
.distpicker-address-wrapper .inner .address-container .all_select {
        font-size: 0.32rem;
        color: #666666;
}
.distpicker-address-wrapper .inner .address-container ul {
        height: 100%;
        overflow: auto;
        margin-top: 0.29rem;
}
.distpicker-address-wrapper .inner .address-container ul .all_select {
          font-size: 0.32rem;
          font-family: PingFangSC-Regular, PingFang SC;
          font-weight: 400;
          color: #666666;
          line-height: 0.45rem;
          margin: 0.29rem 0 0.29rem 0.45rem;
}
.distpicker-address-wrapper .inner .address-container ul li {
          margin-bottom: 0.64rem;
}
.distpicker-address-wrapper .inner .address-container ul li.active {
            color: #52697f;
}
.disabled-color {
  background: #f8f8f8;
}

.add_container[data-v-af4d1154] {
  width: 100%;
  min-height: 100vh;
  background: #f8f8f8;
  position: absolute;
}
.add_item[data-v-af4d1154] {
  width: 9.52rem;
  height: 1.71rem;
  background: #ffffff;
  border-radius: 0.16rem;
  margin: 0.24rem auto;
}
.add_inner[data-v-af4d1154] {
  padding-bottom: 2.5rem;
}
.item_title[data-v-af4d1154] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inner_title[data-v-af4d1154] {
  width: 7.65rem;
  height: 0.48rem;
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 0.48rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.4rem;
  margin-left: 0.27rem;
}
.inner_line[data-v-af4d1154] {
  width: 0.03rem;
  height: 0.59rem;
  background: #cccccc;
  margin-left: 0.29rem;
  margin-top: 0.35rem;
}
.inner_edit[data-v-af4d1154] {
  font-size: 0.32rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #cccccc;
  margin-left: 0.29rem;
  margin-top: 0.4rem;
}
.item_bottom[data-v-af4d1154] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.item_phone[data-v-af4d1154] {
  font-size: 0.27rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  margin-left: 0.27rem;
}
.item_name[data-v-af4d1154] {
  font-size: 0.27rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  margin-left: 0.16rem;
}
.add_btn_box[data-v-af4d1154] {
  width: 100%;
  height: 2.48rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.add_btn[data-v-af4d1154] {
  width: 9.25rem;
  height: 1.17rem;
  background: #5076b8;
  border-radius: 0.27rem;
  margin: auto;
}
.delete-button[data-v-af4d1154] {
  height: 100%;
}

.add_container[data-v-7eab7bc4] {
  width: 100%;
  min-height: 100vh;
  background: #f8f8f8;
  position: absolute;
}
.order_num[data-v-7eab7bc4] {
  font-size: 0.29rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  margin: 0.37rem 0.4rem;
}
.order_card[data-v-7eab7bc4] {
  width: 9.41rem;
  height: 5.23rem;
  background: #ffffff;
  border-radius: 0.13rem;
  margin: 0 auto 0.24rem;
}
.order_inner[data-v-7eab7bc4] {
  padding: 0.32rem 0.27rem;
}
.i_title[data-v-7eab7bc4] {
  width: 7.65rem;
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #1f1f1f;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.i_bottom[data-v-7eab7bc4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.27rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
}
.i_name[data-v-7eab7bc4] {
  margin-left: 0.16rem;
}
.i_img[data-v-7eab7bc4] {
  width: 1.17rem;
  height: 1.17rem;
  margin-right: 0.21rem;
}
.order_info[data-v-7eab7bc4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 0.53rem;
}
.i_productName[data-v-7eab7bc4] {
  font-size: 0.35rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #000000;
  letter-spacing: 1px;
}
.i_kind[data-v-7eab7bc4] {
  font-size: 0.27rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  margin-top: 0.29rem;
}
.i_stepper[data-v-7eab7bc4] {
  position: absolute;
  right: 0;
}
.i_stepper[data-v-7eab7bc4] .van-stepper__minus {
  color: #7497fb !important;
  border: #7497fb 1px solid !important;
}
.i_stepper[data-v-7eab7bc4] .van-stepper__plus {
  background-color: #7497fb !important;
}
.order_time[data-v-7eab7bc4] {
  font-size: 0.24rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.order_orderNum[data-v-7eab7bc4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.27rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  margin-top: 0.21rem;
}
.i_num[data-v-7eab7bc4] {
  margin: 0 0.27rem;
}
.i_copy[data-v-7eab7bc4] {
  color: #7497fb;
}
.order_button[data-v-7eab7bc4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.21rem;
}
.i_button[data-v-7eab7bc4] {
  width: 1.65rem;
  height: 0.64rem;
  border-radius: 0.32rem;
  border: 0.03rem solid #cccccc;
  font-size: 0.29rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  padding: 0 !important;
}
.i_margin[data-v-7eab7bc4] {
  margin-left: 0.53rem;
}
.order_bottom_w[data-v-7eab7bc4] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 0.27rem;
}
.icon[data-v-7eab7bc4] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 5.73rem;
  left: 4.24rem;
}
.report_box[data-v-7eab7bc4] {
  position: absolute;
  top: 8.21rem;
  width: 100%;
}
.box_top[data-v-7eab7bc4] {
  text-align: center;
  width: 100%;
}
.box_bottom[data-v-7eab7bc4] {
  text-align: center;
  width: 100%;
}
.box_font[data-v-7eab7bc4] {
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
}
.box_icon_box[data-v-7eab7bc4] {
  width: 1.39rem;
  height: 1.39rem;
  border-radius: 50%;
  position: fixed;
  bottom: 2.8rem;
  right: 0.37rem;
}
.box_icon[data-v-7eab7bc4] {
  width: 100%;
  height: 100%;
}

.add_container[data-v-5ac15889] {
  min-height: 100vh;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.firstSidebar[data-v-5ac15889] {
  width: 20%;
  background: white;
  /* border-right: 0.01rem solid #f0f0f0; */
  height: 100vh;
  overflow: scroll;
}
.secondSidebar[data-v-5ac15889] {
  width: 37%;
  background: #f8f8f8;
  /* border-right: 0.01rem solid #f0f0f0; */
  height: 100vh;
  overflow: scroll;
}
.thirdSidebar[data-v-5ac15889] {
  width: 43%;
  background: #f8f8f8;
  height: 100vh;
  overflow: scroll;
}
.van-sidebar-item[data-v-5ac15889] {
  width: 100%;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 12px;
  overflow: hidden;
  color: #323233;
  font-size: 14px;
  line-height: 20px;
  word-wrap: break-word;
  background: transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.first_item[data-v-5ac15889] {
  padding: 0.35rem;
}
.first_item[data-v-5ac15889]::after {
  content: '';
  width: 0.05rem;
  height: 100%;
  background: #7497fb;
  position: absolute;
  left: 0;
  top: 0;
}
.firstActive[data-v-5ac15889] {
  color: #7497fb;
  background: #f8f8f8;
}
.secondActive[data-v-5ac15889] {
  color: #7497fb;
  /* background: white; */
}
.goodsItem[data-v-5ac15889] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.good_item_box[data-v-5ac15889] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.good_item_img[data-v-5ac15889] {
  width: 1.5rem;
  height: 1.5rem;
}
.goodsItem .van-sidebar-item__text[data-v-5ac15889] {
  width: 2.4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.goodsItem .van-icon[data-v-5ac15889] {
  color: #7497fb;
  font-size: 0.5rem;
}

@charset "UTF-8";
/*  */
.empty-container[data-v-61126806] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-61126806] {
  width: 100%;
}
.top-inner[data-v-61126806] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 10px;
}
.drop-width[data-v-61126806] {
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-t-select[data-v-61126806] {
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-61126806] {
  color: #333333 !important;
}
.list_select-btn[data-v-61126806] {
  font-size: 0.32rem;
  font-weight: 400;
  color: #666666;
}
.list_select-curBtn[data-v-61126806] {
  color: #5076b8 !important;
}
/* 列表 */
.report_container[data-v-61126806] {
  height: calc(100vh - 5.12rem);
  position: relative;
  overflow: hidden;
  background: #F7F8FC;
}
.roport_scroll_box[data-v-61126806] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.roport_scroll_box .report_total[data-v-61126806] {
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
    margin: 0.35rem 0.42rem 0.26rem;
    display: block;
}
.report_inner[data-v-61126806] {
  /* padding: 0.35rem 0; */
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-61126806] {
  background: #ffffff;
  margin-bottom: 0.19rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-61126806] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-61126806] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-61126806] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.item-top-add-left-icon[data-v-61126806] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-61126806] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666;
}
.report_bottom .item-top-add-value[data-v-61126806] {
  color: #999999;
}
.item-top-add-right-icon[data-v-61126806] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-61126806] {
  height: 1px;
  background: #F7F8FC;
  width: 100%;
}
.report_bottom[data-v-61126806] {
  padding: 0.32rem 0.28rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-61126806] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.bottom_r[data-v-61126806] {
  background: #3975C6;
  border-radius: .18rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-oppo[data-v-61126806] {
  border: 1px solid #3975C6;
  background: transparent;
  color: #3975C6;
}
.bottom-oppo-non[data-v-61126806] {
  border-radius: 2px;
  background: transparent;
  color: #999999;
}
.bottom-delete[data-v-61126806] {
  border: 1px solid #DA291C;
  background: transparent;
  color: #DA291C;
  margin-right: 0.22rem;
}
.bottom-r-inner[data-v-61126806] {
  padding: 0.12rem 0.24rem 0.18rem;
}
.bottom-non[data-v-61126806] {
  background: #ebebeb;
  border-radius: .18rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* /空列表/ */
.empty-box[data-v-61126806] {
  /* margin: 2.76rem auto; */
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.empty-img[data-v-61126806] {
  width: 3.18rem;
  height: 2.84rem;
}
.box_font[data-v-61126806] {
  margin-top: 0.81rem;
  font-size: 0.38rem;
  font-weight: 400;
  color: #666666;
}
.box_top[data-v-61126806] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-61126806] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-61126806] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.empty-bottom-inner[data-v-61126806] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-61126806] {
  width: 100%;
  height: 100%;
  background: #3975C6;
  border-color: #3975C6;
  letter-spacing: 1px;
}
/*  */
.item_top[data-v-61126806] {
  padding: 0.32rem 0.28rem 0.1rem;
}
.item-top-inner[data-v-61126806] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-61126806] {
  width: 80%;
  font-size: 0.38rem;
  font-family: Source Han Sans CN;
  font-weight: 600;
  color: #333333;
}
.item-top-approval[data-v-61126806] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
}
.green-color[data-v-61126806] {
  background: #3bb66f !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
}
.brown-color[data-v-61126806] {
  background: #e0e0e0 !important;
  color: #999999 !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
}
.item-top-approval-inner[data-v-61126806] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-61126806] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-61126806] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-61126806] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-61126806] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
/* 搜索框 */
.search-box[data-v-61126806] {
  background: #ffffff;
  width: 100%;
}
.van-search[data-v-61126806] {
  height: 1.63rem;
}
.van-search[data-v-61126806] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-61126806] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-61126806] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-61126806] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
[data-v-61126806] .van-field__control {
  font-weight: 500;
}
.select-ctn[data-v-61126806] {
  background: #fff;
  padding: 0 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 48px;
}
.select-ctn .select-item[data-v-61126806] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #EEEEEE;
    border-radius: 4px;
    padding: 6px 10px;
    margin-right: 8px;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
}
.select-ctn .select-item img[data-v-61126806] {
      width: 6px;
      height: 4px;
      margin-left: 6px;
}

.list_select[data-v-3c5d5598] {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
  border-radius: 0.2rem 0.2rem 0 0;
}
.list_select .list_select-content[data-v-3c5d5598] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0.5rem;
}
.list_select .list_select-content .list_select-item[data-v-3c5d5598] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list_select .list_select-content .list_select-item .list_select-title[data-v-3c5d5598] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666666;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.list_select .list_select-content .list_select-item .list_select-icon[data-v-3c5d5598] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 0.38rem;
        margin-left: 0.1rem;
}
.list_select .list_select-content .list_select-item .list_select-icon span[data-v-3c5d5598] {
          margin-top: 0.05rem;
}
.list_select .list_select-content .list_select-item .list_select-icon .list_selectIcon-top[data-v-3c5d5598] {
          border-left: 0.1rem solid transparent;
          border-right: 0.1rem solid transparent;
          border-bottom: 0.16rem solid #c4c4c4;
}
.list_select .list_select-content .list_select-item .list_select-icon .curIcon-top[data-v-3c5d5598] {
          border-bottom-color: #3975c6 !important;
}
.list_select .list_select-content .list_select-item .list_select-icon .curIcon-bottom[data-v-3c5d5598] {
          border-top-color: #3975c6 !important;
}
.list_select .list_select-content .list_select-item .list_select-icon .list_selectIcon-bottom[data-v-3c5d5598] {
          border-left: 0.1rem solid transparent;
          border-right: 0.1rem solid transparent;
          border-top: 0.16rem solid #c4c4c4;
}
.bottom-popup-ctn[data-v-3c5d5598] {
  width: 100%;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
  background: #fff;
  border-radius: 0 0 15px 15px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 10;
  border-top: 1px solid #cccaca;
  padding-top: 0.4rem;
  z-index: 20;
}
.bottom-popup-ctn .popup-select-ctn[data-v-3c5d5598] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.bottom-popup-ctn .popup-select-ctn .select-item[data-v-3c5d5598] {
      padding: 0 0.4rem 0.44rem;
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: calc(50% - 0.8rem);
}
.bottom-popup-ctn .popup-select-ctn .checkActive[data-v-3c5d5598] {
      color: #3975c6 !important;
}
.bottom-popup-ctn .btn-content[data-v-3c5d5598] {
    width: calc(100% - 0.8rem);
    height: 0.9rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 1rem;
    border: 1px solid #3975c6;
    margin: 0 0.4rem 0.4rem;
}
.bottom-popup-ctn .btn-content .btn[data-v-3c5d5598] {
      width: 50%;
      height: 100%;
      border: 0;
      border-radius: 1rem;
      background: #fff;
      color: #3975c6;
      font-size: 0.37rem;
      font-family: PingFang SC;
      font-weight: 500;
}
.bottom-popup-ctn .btn-content .btn-right[data-v-3c5d5598] {
      background: #3975c6;
      color: #fff;
}
.bg-ctn[data-v-3c5d5598] {
  position: fixed;
  top: 3rem;
  bottom: 0;
  right: 0;
  left: 0;
  background: RGBA(0, 0, 0, 0.3);
  z-index: 10;
}
.list_normal[data-v-3c5d5598] {
  position: static !important;
}
.list_select-top0[data-v-3c5d5598] {
  top: 1.63rem;
}
.space_around[data-v-3c5d5598] {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}
.popup-wrap[data-v-3c5d5598] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-3c5d5598] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-3c5d5598] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-3c5d5598] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-3c5d5598] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-3c5d5598] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-3c5d5598] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-3c5d5598] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-3c5d5598] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-3c5d5598] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-3c5d5598] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-3c5d5598] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-3c5d5598] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: Source Han Sans CN;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-3c5d5598] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-3c5d5598] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-3c5d5598] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}






















































































































































































































































































































































/*  */
.empty-container[data-v-e6efbc66] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-e6efbc66] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
.app-top[data-v-e6efbc66] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.top-inner[data-v-e6efbc66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
}
.drop-width[data-v-e6efbc66] {
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-t-select[data-v-e6efbc66] {
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-e6efbc66] {
  color: #333333 !important;
}
/* 列表 */
.report_container[data-v-e6efbc66] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
  overflow: hidden;
}
.roport_scroll_box[data-v-e6efbc66] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.report_inner[data-v-e6efbc66] {
  /* padding: 0.35rem 0; */
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-e6efbc66] {
  background: #ffffff;
  margin-top: 0.27rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-e6efbc66] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-e6efbc66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-e6efbc66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.item-top-add-left-icon[data-v-e6efbc66] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-e6efbc66] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.item-top-add-right-icon[data-v-e6efbc66] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-e6efbc66] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-e6efbc66] {
  padding: 0.32rem 0.29rem 0.32rem 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-e6efbc66] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.bottom_r[data-v-e6efbc66] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.bottom-oppo[data-v-e6efbc66] {
  border: 1px solid #5076b8;
  border-radius: 2px;
  background: transparent;
  color: #5076b8;
}
.bottom-oppo-non[data-v-e6efbc66] {
  border: 1px solid #999999;
  border-radius: 2px;
  background: transparent;
  color: #999999;
}
.bottom-r-inner[data-v-e6efbc66] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-e6efbc66] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
/* /空列表/ */
.empty-box[data-v-e6efbc66] {
  /* margin: 2.76rem auto; */
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.empty-img[data-v-e6efbc66] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-e6efbc66] {
  letter-spacing: 1px;
  margin-top: 0.57rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
}
.box_top[data-v-e6efbc66] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-e6efbc66] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-e6efbc66] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.empty-bottom-inner[data-v-e6efbc66] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-e6efbc66] {
  width: 100%;
  height: 100%;
  background: #5076b8;
}
/*  */
.item_top[data-v-e6efbc66] {
  padding: 0.32rem 0.29rem 0.1rem 0.51rem;
}
.item-top-inner[data-v-e6efbc66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-e6efbc66] {
  width: 80%;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-approval[data-v-e6efbc66] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.green-color[data-v-e6efbc66] {
  background: #3bb66f !important;
}
.brown-color[data-v-e6efbc66] {
  background: #e0e0e0 !important;
  color: #999999 !important;
}
.item-top-approval-inner[data-v-e6efbc66] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-e6efbc66] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-e6efbc66] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-e6efbc66] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-e6efbc66] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
/* 搜索框 */
.search-box[data-v-e6efbc66] {
  background: #ffffff;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-e6efbc66] {
  height: 1.63rem;
}
.van-search[data-v-e6efbc66] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-e6efbc66] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-e6efbc66] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-e6efbc66] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}

.bus-container[data-v-28aed794] {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.bus-content[data-v-28aed794] {
  height: 100%;
  overflow-y: scroll;
  background: #f7f8fc;
}
.customer-wrap[data-v-28aed794] {
  position: relative;
  margin: 10px;
  padding: 15px 15px 5px;
  border-radius: 10px;
  font-size: 0.34rem;
  background-color: #fff;
  /* -moz-box-shadow: 0px 2px 12px #d9d9d9;
  -webkit-box-shadow: 0px 2px 12px #d9d9d9;
  box-shadow: 0px 2px 12px #d9d9d9; */
  /* overflow: hidden; */
}
.red-spot[data-v-28aed794] {
  position: absolute;
  top: -2px;
  right: -5px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #e75e58;
}
.cusDetail-wrap[data-v-28aed794] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cusName[data-v-28aed794] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #666666;
}
.cusName-title[data-v-28aed794]{
  font-size: 0.43rem;
  font-weight: bold;
  color: #333333;
}
.cuslist-info-wrap[data-v-28aed794] {
  width: 100%;
  color: #191f25;
}
.cuslist-info-wrap div[data-v-28aed794] {
  /* white-space: normal; */
  /* color: #737373; */
}
.cuslist-info-item[data-v-28aed794]{
  font-size: .46rem;
  margin-bottom: 15px; 
  display:-webkit-box; 
  display:-ms-flexbox; 
  display:flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cuslist-info-img[data-v-28aed794]{
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
  margin-right: 8px;
  position: relative;
}
.cuslist-info-img img[data-v-28aed794]{
  width: 1.2rem;
}
.cuslist-info-wrap .cusName[data-v-28aed794] {
  color: #191f25;
}
/* 厨衣木等小标签 */
.typeLabel[data-v-28aed794] {
  display: inline-block;
  width: 12px;
  height: 12px;
  line-height: 13px;
  text-align: center;
  font-size: 9px;
  margin: 0 2px;
  border-radius: 2px;
}
.typeLabel[data-v-28aed794]:nth-child(2) {
  margin-left: 8px;
  color: #3585ff;
  border: 1px solid #3585ff;
}
.typeLabel[data-v-28aed794]:nth-child(3) {
  color: #eb8e08;
  border: 1px solid #eb8e08;
}
.typeLabel[data-v-28aed794]:nth-child(4) {
  color: #f84343;
  border: 1px solid #f84343;
}
.typeLabel[data-v-28aed794]:nth-child(5) {
  color: #3bb66f;
  border: 1px solid #3bb66f;
}
/* 标签 */
.label-wrap[data-v-28aed794] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: .3rem;
}
.label-item[data-v-28aed794]:nth-child(5n + 1) {
  margin: 0 5px 10px 0;
}
.label-item[data-v-28aed794]:nth-child(5n + 5) {
  margin: 0 0 10px 5px;
}
.label-item[data-v-28aed794] {
  width: calc((100% - 40px) / 5);
  /* height: 20px;
  line-height: 20px; */
  text-align: center;
  color: #999999;
  font-size: .32rem;
  margin: 0 5px 10px;
  border-radius: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #e8ebf1;
  padding:.1rem;
}
/* 侧边筛选栏 */
.demo1-item[data-v-28aed794] {
  border: 1px solid #ececec;
}
.demo1-item-selected[data-v-28aed794] {
  border: 1px solid #5076b8;
  color: #5076b8 !important;
}
.filter-btn[data-v-28aed794] {
  display: inline-block;
  width: 45%;
  background-color: #5076b8;
  color: #fff;
  font-size: 0.4rem;
  margin-top: 15px;
}
/* 筛选弹窗日期 */
.date-wrap[data-v-28aed794] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 8%;
}
.date-wrap > div[data-v-28aed794]:nth-child(2) {
  width: 40px;
  margin: 0 8px;
  border-bottom: 1px solid #ccc;
}
/* 筛选人员选项 */
.people-wrap[data-v-28aed794] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 15px 0;
}
.people-wrap > .people-item[data-v-28aed794] {
  width: calc((100% - 40px) / 4);
  margin: 0 5px;
  text-align: center;
}
.people-wrap > .people-item > .people-msg > img[data-v-28aed794] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 5px;
}
/* 客户标签弹窗 */
.dialog-btn-wrap[data-v-28aed794] {
  margin: 10px 0;
}
.dialog-cancel-btn[data-v-28aed794] {
  width: 42%;
  margin: 0 4% !important;
  font-size: 0.38rem;
}
.dialog-submit-btn[data-v-28aed794] {
  width: 42%;
  margin: 0 4% !important;
  font-size: 0.38rem;
  background-color: #5076b8;
  color: #fff;
}
.customer_info-bottom[data-v-28aed794]{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
  padding-bottom: .27rem;
}
.cuslist-tag[data-v-28aed794]{
    padding: 5px 8px;
    border-radius: 7px;
    color: #fff;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 500;
}
.cuslist-tag-doing[data-v-28aed794]{
    background: #24b277;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
            box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
    color: #ffffff !important;
}
.cuslist-tag-scuess[data-v-28aed794] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
  color: #ffffff !important;
}

@charset "UTF-8";
.reported_container[data-v-b51f5d42] {
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
}
.reported_container[data-v-b51f5d42]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.reported_container .cell-title-required[data-v-b51f5d42] {
    position: relative;
}
.reported_container .cell-title-required[data-v-b51f5d42]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.check-approval-container[data-v-b51f5d42] {
  margin: 0.4rem 0.27rem 0;
}
.reported-form[data-v-b51f5d42] {
  padding: 0.27rem;
}
.inner-group[data-v-b51f5d42] {
  margin-top: 0.27rem;
}
.van-group[data-v-b51f5d42] {
  border-radius: 10px;
}
.van-cell[data-v-b51f5d42] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-b51f5d42] {
  padding: 0;
}
.van-cell[data-v-b51f5d42]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-b51f5d42] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.sub_btn_box[data-v-b51f5d42] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-b51f5d42] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.icon_box[data-v-b51f5d42] {
  width: 1.5rem;
  height: 1.5rem;
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cell-label[data-v-b51f5d42] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cell-label span[data-v-b51f5d42] {
  font-size: .32rem;
  /* font-weight: 400; */
  line-height: .56rem;
}
.color-warn[data-v-b51f5d42] {
  color: #db1b1b;
  font-size: 0.32rem;
  line-height: 0.49rem;
}
[data-v-b51f5d42] .van-cell,[data-v-b51f5d42] .van-field__body {
  font-weight: 400 !important;
}
[data-v-b51f5d42] .van-cell--required::before {
  display: none;
}
[data-v-b51f5d42] .van-icon-photograph::before {
  content: '';
}
[data-v-b51f5d42] .van-cell__value input::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-b51f5d42] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}

.label-required[data-v-9d9d4f40] {
  position: relative;
}
.label-required[data-v-9d9d4f40]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.opportunity_list_box[data-v-9d9d4f40] {
  width: 8.27rem;
  border-radius: 0rem;
  min-height: 7.33rem;
  background: #f7f8fc;
  overflow: hidden;
}
.opportunity_list_box h3[data-v-9d9d4f40] {
    font-size: 0.45rem;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0.6rem 0 0.3rem 0;
}
.opportunity_list_box .opportunity_search-icon[data-v-9d9d4f40] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
.opportunity_list_box .opportunity_search-icon .search-left-icon[data-v-9d9d4f40] {
      width: .38rem;
}
.opportunity_list_box .opportunity_list_box_list[data-v-9d9d4f40] {
    height: 10.05rem;
    overflow-y: auto;
}
.opportunity_list_box .opportunity_list_box_list_none[data-v-9d9d4f40] {
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 3.5rem;
    text-align: center;
}
.opportunity_list_box .btn_group[data-v-9d9d4f40] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1.2rem;
    width: 100%;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.opportunity_list_box .btn_group > *[data-v-9d9d4f40] {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
}
.opportunity_list_box .btn_group[data-v-9d9d4f40] .van-button {
      height: 100%;
}
.opportunity_list_box .btn_group[data-v-9d9d4f40] .van-button .van-button__text {
        font-weight: bold;
        font-family: PingFang SC;
        font-size: 0.42rem;
}
[data-v-9d9d4f40] .van-popup {
  border-radius: 0.18rem;
}
[data-v-9d9d4f40] .van-field__error-message {
  text-align: right;
}
[data-v-9d9d4f40] .van-button--default {
  border-color: transparent;
}
[data-v-9d9d4f40] .van-button--default + .van-button--default {
    border-left-color: #ebedf0;
}
[data-v-9d9d4f40] .van-button--info {
  background: #3975c6;
  border-color: #3975c6;
}
[data-v-9d9d4f40] .van-search {
  background: transparent;
}
[data-v-9d9d4f40] .van-search .van-search__content {
    background: #fff;
}
[data-v-9d9d4f40] .van-search .van-search__content .van-cell {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
[data-v-9d9d4f40] .van-search .van-search__content .van-cell .van-icon-search {
        color: #6691ca;
}

.select[data-v-d9c4b5f2] {
  background: #EEF3FC !important;
  border-color: #3975C6 !important;
}
.list_card[data-v-d9c4b5f2] {
  background: #fff;
  margin: 0 10px;
  margin-bottom: 0.19rem;
  border-radius: 7px;
  border: 0.03rem solid #fff;
}
.list_card .list_card-content .list_card-contentWrap[data-v-d9c4b5f2] {
    padding: 0.28rem;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem[data-v-d9c4b5f2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 0.32rem;
      font-weight: 400;
      color: #666666;
      line-height: 0.65rem;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-title[data-v-d9c4b5f2] {
        font-size: 0.38rem;
        font-weight: 600;
        color: #333333;
        white-space: nowrap;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-tag[data-v-d9c4b5f2] {
        background: #3975C6;
        -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
                box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
        border-radius: .18rem;
        padding: 0 .26rem;
        height: 0.58rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.list_card .list_card-content .list_card-contentWrap .list_card-contentItem .list_card-tag .list_card-tagTxt[data-v-d9c4b5f2] {
          font-size: 0.32rem;
          color: #ffffff;
          letter-spacing: 1px;
          font-family: PingFang SC;
          font-weight: 400;
          white-space: nowrap;
}
.list_card .line[data-v-d9c4b5f2] {
    width: 100%;
    height: 1px;
    background: #f7f8fc;
}
.list_card .list_card-footer .list_card-footerWrap[data-v-d9c4b5f2] {
    padding: 0.27rem 10px;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
    line-height: 0.35rem;
}
.list_card .list_card-footer .list_card-footerWrap .list_card-footerItem[data-v-d9c4b5f2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.list_card .green[data-v-d9c4b5f2] {
    background: #24b277;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
            box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.list_card .blue[data-v-d9c4b5f2] {
    background: #3975c6;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
            box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}

.reported_container[data-v-6cdd38b8] {
  background: #ebebeb;
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
}
.reported-form[data-v-6cdd38b8] {
  padding: 0.35rem;
}
.inner-group[data-v-6cdd38b8] {
  margin-top: 0.27rem;
}
.van-group[data-v-6cdd38b8] {
  border-radius: 10px;
}
.van-cell[data-v-6cdd38b8] {
  border-radius: 10px;
}
.van-cell[data-v-6cdd38b8] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-6cdd38b8]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-6cdd38b8] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-6cdd38b8] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submit_btn[data-v-6cdd38b8] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.icon_box[data-v-6cdd38b8] {
  width: 1.5rem;
  height: 1.5rem;
  background: rgb(242, 242, 242);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-wrap[data-v-6cdd38b8] {
  margin: 0 !important;
}

@charset "UTF-8";
/*
 * @Description: 弹窗样式（布局见turnto.vue）
 * @Autor: xiong
 * @Date: 2021-11-09 15:27:55
 */
[data-v-6a09cc3f] .van-dialog {
  border-radius: .13rem;
}
[data-v-6a09cc3f] .van-dialog__header {
  font-size: .45rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #333333;
}
.dialog[data-v-6a09cc3f] {
  margin: .61rem 0 .96rem 0;
}
.dialog .dialog-line[data-v-6a09cc3f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: .32rem 0;
    margin: 0 .43rem;
    border-bottom: 1px solid rgba(222, 223, 226, 0.5);
}
.dialog .dialog-line .dialog-line-l[data-v-6a09cc3f] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
}
.dialog .dialog-line .dialog-line-l span[data-v-6a09cc3f] {
        color: #DB1717;
}
.dialog .dialog-line .dialog-line-r[data-v-6a09cc3f] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 400;
      color: #999999;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.dialog .dialog-line .dialog-line-r img[data-v-6a09cc3f] {
        margin-left: .27rem;
        width: .13rem;
        height: .21rem;
}
.turnTo[data-v-6a09cc3f] {
  padding-top: 0.4rem;
  background-color: #f7f8fc;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.turnTo-head[data-v-6a09cc3f] {
  background-color: #ffffff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0.27rem;
  margin: 0 0.27rem 0.19rem;
}
.turnTo-head img[data-v-6a09cc3f] {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    margin-right: 0.24rem;
}
.turnTo-head p[data-v-6a09cc3f] {
    font-size: 0.37rem;
    font-family: PingFang;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.13rem;
}
.turnTo-head span[data-v-6a09cc3f] {
    font-size: 0.32rem;
    font-family: PingFang;
    font-weight: 500;
    color: #666666;
}
.turnTo-info[data-v-6a09cc3f] {
  background-color: #ffffff;
  border: 1px solid #3975c6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4rem 0.27rem;
  margin: 0 0.27rem 0.19rem;
}
.turnTo-info .turnTo-info-l[data-v-6a09cc3f] {
    font-size: 0.37rem;
    font-family: PingFang;
    font-weight: 400;
}
.turnTo-info .turnTo-info-l span[data-v-6a09cc3f] {
      color: #333333;
      margin-left: 0.32rem;
}
.turnTo-info .turnTo-info-r[data-v-6a09cc3f] {
    color: #999999;
}
.turnTo-info .turnTo-info-r img[data-v-6a09cc3f] {
      width: 0.13rem;
      height: 0.21rem;
      margin-left: 0.21rem;
}
.turnTo-btn[data-v-6a09cc3f] {
  height: 2.21rem;
  background: #ffffff;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.turnTo-btn button[data-v-6a09cc3f] {
    width: 9.2rem;
    height: 1.04rem;
    background: #4378be;
    border-radius: 0.53rem;
    border: none;
    font-size: 0.4rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #ffffff;
    margin: 0 auto;
}

.list_main[data-v-549e4c5a] {
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  background: #f7f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_main .list_main-wrap[data-v-549e4c5a] {
    width: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}
.list_main .list_main-wrap .list_main-total[data-v-549e4c5a] {
      display: block;
      margin: 0.26rem 0.42rem;
      font-size: 0.32rem;
      font-weight: 500;
      color: #666666;
}
.list_main .list_main-wrap .scroll-list[data-v-549e4c5a] {
      width: 100%;
      height: 100%;
}
.list_main .list_main-wrap .scroll-list .list_main-item[data-v-549e4c5a] {
        margin-bottom: 0.19rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item[data-v-549e4c5a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-line-pack: center;
              align-content: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-tag[data-v-549e4c5a] {
            padding: 0.06rem 0.12rem;
            border-color: #3975c6;
            font-size: 0.32rem;
            font-weight: 500;
            color: #3975c6;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-btn[data-v-549e4c5a] {
            background: #3975c6;
            -webkit-box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
                    box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
            font-size: 0.32rem;
            font-weight: 500;
            color: #ffffff;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-549e4c5a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-549e4c5a] {
            font-size: 0.32rem;
            font-weight: 500;
            color: #666666;
            line-height: 0.65rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-549e4c5a]:last-of-type {
              color: #333;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span .label-btn[data-v-549e4c5a] {
              color: #3975c6;
              margin: 0 0.2rem;
              font-style: normal;
}
.list_main .no-record[data-v-549e4c5a] {
    font-size: 0.38rem;
    text-align: center;
    margin-top: 200px;
}
.list_main .no-record img[data-v-549e4c5a] {
      width: 3.7rem;
      margin-bottom: 0.81rem;
}
.list_main .no-record div[data-v-549e4c5a] {
      font-size: 0.38rem;
      font-weight: 400;
      color: #666666;
}

.reported_container[data-v-5e0e585c] {
  min-height: 100vh;
}
.reported_container[data-v-5e0e585c]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.reported_container .cell-title-required[data-v-5e0e585c] {
    position: relative;
}
.reported_container .cell-title-required[data-v-5e0e585c]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.reported_container .report_inner .van-form .van-cell-group[data-v-5e0e585c] {
    border-radius: 7px;
}
.reported_container .report_inner .van-form .van-cell-group .van-cell[data-v-5e0e585c] {
      border-radius: 7px;
}
.van-form[data-v-5e0e585c] {
  padding: .4rem 0.27rem .27rem;
}
.van-cell > .van-cell__label .van-cell[data-v-5e0e585c] {
  padding: 0;
}
.check-approval-container[data-v-5e0e585c] {
  margin: 0.4rem 0.27rem 0;
}
.add_btn_box[data-v-5e0e585c] {
  position: fixed;
  bottom: 0;
  height: 2.21rem;
  background: #fff;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.add_btn[data-v-5e0e585c] {
  width: 100%;
  height: 1.12rem;
  background: #ffffff;
  border-radius: 0.13rem;
}
.sub_btn_box[data-v-5e0e585c] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0.4rem;
}
[data-v-5e0e585c] .van-cell,[data-v-5e0e585c] .van-field__body {
  font-weight: 400 !important;
}
[data-v-5e0e585c] .van-cell {
  font-size: 0.38rem;
}
[data-v-5e0e585c] .van-field {
  padding: 0;
}
[data-v-5e0e585c] .van-cell--required::before {
  display: none;
}

.list_main[data-v-1cc6d0cc] {
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  background: #f7f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list_main .list_main-wrap[data-v-1cc6d0cc] {
    width: 100%;
    min-height: 100vh;
    overflow-y: scroll;
}
.list_main .list_main-wrap .list_main-total[data-v-1cc6d0cc] {
      display: block;
      margin: 0.26rem 0.42rem;
      font-size: 0.32rem;
      font-weight: 500;
      color: #666666;
}
.list_main .list_main-wrap .scroll-list[data-v-1cc6d0cc] {
      width: 100%;
      height: 100%;
}
.list_main .list_main-wrap .scroll-list .list_main-item[data-v-1cc6d0cc] {
        margin-bottom: 0.19rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item[data-v-1cc6d0cc] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-line-pack: center;
              align-content: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-tag[data-v-1cc6d0cc] {
            padding: 0.06rem 0.12rem;
            border-color: #3975c6;
            font-size: 0.32rem;
            font-weight: 500;
            color: #3975c6;
            margin-left: 5px;
}
.list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-btn[data-v-1cc6d0cc] {
            background: #3975c6;
            -webkit-box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
                    box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
            font-size: 0.32rem;
            font-weight: 500;
            color: #ffffff;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-1cc6d0cc] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-1cc6d0cc] {
            font-size: 0.32rem;
            font-weight: 500;
            color: #666666;
            line-height: 0.65rem;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-1cc6d0cc]:last-of-type {
              color: #333;
}
.list_main .list_main-wrap .scroll-list .list_main-item .label-item span .label-btn[data-v-1cc6d0cc] {
              color: #3975c6;
              margin: 0 0.2rem;
              font-style: normal;
}
.list_main .no-record[data-v-1cc6d0cc] {
    font-size: 0.38rem;
    text-align: center;
    margin-top: 200px;
}
.list_main .no-record img[data-v-1cc6d0cc] {
      width: 3.7rem;
      margin-bottom: 0.81rem;
}
.list_main .no-record div[data-v-1cc6d0cc] {
      font-size: 0.38rem;
      font-weight: 400;
      color: #666666;
}

.reported_container[data-v-91ad56fc] {
  background: #f7f8fc;
  min-height: 100vh;
}
.reported_container .report_form[data-v-91ad56fc] {
    padding: 0.35rem;
}
.reported_container .report_form .van-group[data-v-91ad56fc] {
      border-radius: 10px;
}
.reported_container .report_form .van-group .top-img[data-v-91ad56fc] {
        border-radius: 10px;
}
.reported_container .report_form .van-group .top-img .top-inner[data-v-91ad56fc] {
          padding: 0.3rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 0.37rem;
          font-family: Source Han Sans CN;
          font-weight: 550;
          color: #333333;
}
.reported_container .report_form .van-group .top-img .top-inner .inner-img[data-v-91ad56fc] {
            width: 0.67rem;
            height: 0.67rem;
            margin-right: 12px;
}
.reported_container .report_form .van-group .img-wrap > img[data-v-91ad56fc] {
        margin: 0 5.5px;
}
.reported_container .report_form .van-group .img-wrap > img[data-v-91ad56fc]:nth-child(5n + 1) {
        margin: 0 5.5px 0 0;
}
.reported_container .report_form .van-group .img-wrap > img[data-v-91ad56fc]:nth-child(5n + 5) {
        margin: 0 0 0 5.5px;
}
.van-cell[data-v-91ad56fc] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-91ad56fc] {
  padding: 0;
}
.van-cell[data-v-91ad56fc]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}

@charset "UTF-8";
.empty-container[data-v-48cc83ed] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-48cc83ed] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
.top-inner[data-v-48cc83ed] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
}
/* 列表 */
.report_container[data-v-48cc83ed] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
  background: #f7f8fc;
}
.roport_scroll_box[data-v-48cc83ed] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.roport_scroll_box .report_total[data-v-48cc83ed] {
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
    margin: 0.35rem 0.42rem 0.26rem;
    display: block;
}
.report_inner[data-v-48cc83ed] {
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-48cc83ed] {
  background: #ffffff;
  margin-bottom: 0.19rem;
  border-radius: 0.13rem;
}
.item-top-add[data-v-48cc83ed] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-48cc83ed] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-value[data-v-48cc83ed] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666;
}
.report_bottom .item-top-add-value[data-v-48cc83ed] {
  color: #999;
}
.item-top-add-right[data-v-48cc83ed] {
  width: 70%;
  text-align: end;
}
.line[data-v-48cc83ed] {
  height: 1px;
  background: #f7f8fc;
  width: 100%;
}
.report_bottom[data-v-48cc83ed] {
  padding: 0 0.28rem 0.42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item_top[data-v-48cc83ed] {
  padding: 0.32rem 0.28rem 0.1rem;
}
.item-top-inner[data-v-48cc83ed] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-48cc83ed] {
  font-size: 0.38rem;
  font-family: Source Han Sans CN;
  font-weight: 600;
  color: #333333;
}
.item-top-approval[data-v-48cc83ed] {
  background: #3975c6;
  border-radius: 0.18rem;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
}
.green-color[data-v-48cc83ed] {
  background: #3bb66f !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
}
.brown-color[data-v-48cc83ed] {
  background: #e0e0e0 !important;
  color: #999999 !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
}
.item-top-approval-inner[data-v-48cc83ed] {
  padding: 0.12rem 0.24rem;
}
.bottom-ctn[data-v-48cc83ed] {
  border-radius: .18rem;
  font-size: 0.32rem;
  font-weight: 400;
  border: 1px solid #DA291C;
  color: #DA291C;
  padding: 0.12rem 0.24rem 0.18rem;
}
.btn-ctn[data-v-48cc83ed] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 0;
}
.font[data-v-48cc83ed] {
  font-size: 0.35rem;
  font-weight: 400;
  color: #666666;
}
.icon[data-v-48cc83ed] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.black-color[data-v-48cc83ed] {
  color: #333333 !important;
}
/* 搜索框 */
.search-box[data-v-48cc83ed] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-48cc83ed] {
  height: 1.63rem;
}
.van-search[data-v-48cc83ed] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-48cc83ed] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-48cc83ed] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-48cc83ed] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-48cc83ed] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.empty-img[data-v-48cc83ed] {
  width: 3.35rem;
  height: 2.82rem;
}
.box_font[data-v-48cc83ed] {
  margin-top: 0.81rem;
  font-size: 0.38rem;
  font-weight: 400;
  color: #666666;
}
.box_top[data-v-48cc83ed] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-48cc83ed] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-48cc83ed] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.empty-bottom-inner[data-v-48cc83ed] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-48cc83ed] {
  width: 100%;
  height: 100%;
  background: #3975c6;
  border-color: #3975c6;
  letter-spacing: 1px;
}
.company-Name[data-v-48cc83ed] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #3975c6;
  border: 1px solid #3975c6;
  padding: 0.02rem 0.04rem;
  border-radius: 0.08rem;
}
[data-v-48cc83ed] .van-field__control {
  font-weight: 500;
}

.select-ctn[data-v-8d9e6bf6] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  background: #3975c6;
}
.select-ctn .select-main[data-v-8d9e6bf6] {
    background: #ffffff;
    border-radius: 0.2rem 0.2rem 0 0;
    width: 100%;
    padding: 0 0.5rem;
    width: calc(100% - 1rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 1.28rem;
    margin-bottom: -1px;
}
.select-ctn .select-main .select-item[data-v-8d9e6bf6] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.select-ctn .select-main .select-item .list_select-icon[data-v-8d9e6bf6] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 0.38rem;
        margin-left: 0.1rem;
}
.select-ctn .select-main .select-item .list_select-icon span[data-v-8d9e6bf6] {
          margin-top: 0.05rem;
}
.select-ctn .select-main .select-item .list_select-icon .list_selectIcon-bottom[data-v-8d9e6bf6] {
          border-left: 0.1rem solid transparent;
          border-right: 0.1rem solid transparent;
          border-top: 0.16rem solid #c4c4c4;
}
.select-ctn .bottom-popup-ctn[data-v-8d9e6bf6] {
    width: 100%;
    max-height: 4rem;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
    background: #fff;
    border-radius: 0 0 15px 15px;
    position: fixed;
    left: 0;
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid #cccaca;
    padding-top: 0.4rem;
    z-index: 20;
}
.select-ctn .bottom-popup-ctn .popup-select-ctn[data-v-8d9e6bf6] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.select-ctn .bottom-popup-ctn .popup-select-ctn .select-item[data-v-8d9e6bf6] {
        padding: 0 0.4rem 0.44rem;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: calc(50% - 0.8rem);
}
.select-ctn .bottom-popup-ctn .popup-select-ctn .checkActive[data-v-8d9e6bf6] {
        color: #3975c6 !important;
}
.select-ctn .bottom-popup-ctn .btn-content[data-v-8d9e6bf6] {
      width: calc(100% - 0.8rem);
      height: 0.9rem;
      background: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-radius: 1rem;
      border: 1px solid #3975c6;
      margin: 0 0.4rem 0.4rem;
}
.select-ctn .bottom-popup-ctn .btn-content .btn[data-v-8d9e6bf6] {
        width: 50%;
        height: 100%;
        border: 0;
        border-radius: 1rem;
        background: #fff;
        color: #3975c6;
        font-size: 0.37rem;
        font-family: PingFang SC;
        font-weight: 500;
}
.select-ctn .bottom-popup-ctn .btn-content .btn-right[data-v-8d9e6bf6] {
        background: #3975c6;
        color: #fff;
}
.select-ctn .bg-ctn[data-v-8d9e6bf6] {
    position: fixed;
    top: 3rem;
    bottom: 0;
    right: 0;
    left: 0;
    background: RGBA(0, 0, 0, 0.3);
    z-index: 10;
}
.select-ctn .popup-wrap[data-v-8d9e6bf6] {
    padding: 18px 15px 24px;
}
.select-ctn .popup-wrap .title[data-v-8d9e6bf6] {
      font-size: 16px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      line-height: 13px;
      text-align: center;
      margin-bottom: 15px;
}
.select-ctn .popup-wrap .filter-item .item-title[data-v-8d9e6bf6] {
      font-size: 15px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      margin-bottom: 12px;
}
.select-ctn .popup-wrap .filter-item .item-content[data-v-8d9e6bf6] {
      margin-bottom: 25px;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-time-box[data-v-8d9e6bf6] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.4rem;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-startend-time[data-v-8d9e6bf6] {
        width: 4.24rem;
        height: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        background: #f7f7f7;
        border-radius: 18px;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-time-line[data-v-8d9e6bf6] {
        width: 8px;
        height: 2px;
        background: #333333;
}
.select-ctn .popup-wrap .filter-item .star-content[data-v-8d9e6bf6] {
      margin-bottom: 15px !important;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.select-ctn .popup-wrap .filter-item .star-content .star-item[data-v-8d9e6bf6] {
        width: 33.3%;
        height: 35px;
        border-radius: 18px;
        margin-bottom: 10px;
}
.select-ctn .popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-8d9e6bf6] {
          background: #f7f7f7;
          width: 90%;
          height: 100%;
          border-radius: 18px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
          border: 1px solid #f7f7f7;
}
.select-ctn .popup-wrap .btn-box[data-v-8d9e6bf6] {
      margin-top: 26px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.select-ctn .popup-wrap .btn-box .btn-wrap[data-v-8d9e6bf6] {
        width: 47%;
        height: 39px;
        border-radius: 20px;
}
.select-ctn .popup-wrap .btn-box .btn-wrap button[data-v-8d9e6bf6] {
          width: 100%;
          height: 100%;
          border-radius: 20px;
          border: none;
          font-size: 15px;
          font-family: Source Han Sans CN;
          font-weight: 400;
}
.select-ctn .popup-wrap .btn-box .btn-wrap .btn-l[data-v-8d9e6bf6] {
          background: #d9e4f2;
          color: #4378be;
}
.select-ctn .popup-wrap .btn-box .btn-wrap .btn-r[data-v-8d9e6bf6] {
          background: #4378be;
          color: #ffffff;
}
.select-ctn .popup-wrap .activeContent[data-v-8d9e6bf6] {
      background: #ebf1f9 !important;
      border: 1px solid #3975c6 !important;
      border-radius: 18px;
      color: #3975c6 !important;
}













































































































































































































































































































/*  */
.empty-container[data-v-bc82c958] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-bc82c958] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
.app-top[data-v-bc82c958] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.top-inner[data-v-bc82c958] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
}
.drop-width[data-v-bc82c958] {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-t-select[data-v-bc82c958] {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* 列表 */
.report_container[data-v-bc82c958] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
}
.roport_scroll_box[data-v-bc82c958] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.report_inner[data-v-bc82c958] {
  /* padding: 0.35rem 0; */
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-bc82c958] {
  background: #ffffff;
  margin-top: 0.27rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-bc82c958] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-bc82c958] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-bc82c958] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-left-icon[data-v-bc82c958] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-bc82c958] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.item-top-add-right[data-v-bc82c958] {
  width: 70%;
  text-align: end;
}
.item-top-add-right-icon[data-v-bc82c958] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-bc82c958] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-bc82c958] {
  padding: 0.32rem 0.29rem 0.32rem 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-bc82c958] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item_top[data-v-bc82c958] {
  padding: 0.32rem 0.29rem 0.1rem 0.51rem;
}
.item-top-inner[data-v-bc82c958] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-bc82c958] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-approval[data-v-bc82c958] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.green-color[data-v-bc82c958] {
  background: #3bb66f !important;
}
.brown-color[data-v-bc82c958] {
  background: #e0e0e0 !important;
  color: #999999 !important;
}
.item-top-approval-inner[data-v-bc82c958] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-bc82c958] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-bc82c958] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-bc82c958] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-bc82c958] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
.black-color[data-v-bc82c958] {
  color: #333333 !important;
}
/* 搜索框 */
.search-box[data-v-bc82c958] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-bc82c958] {
  height: 1.63rem;
}
.van-search[data-v-bc82c958] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-bc82c958] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-bc82c958] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-bc82c958] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-bc82c958] {
  /* margin: 2.76rem auto; */
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.empty-img[data-v-bc82c958] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-bc82c958] {
  letter-spacing: 1px;
  margin-top: 0.57rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
}
.box_top[data-v-bc82c958] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-bc82c958] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-bc82c958] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.empty-bottom-inner[data-v-bc82c958] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-bc82c958] {
  width: 100%;
  height: 100%;
  background: #5076b8;
}

@charset "UTF-8";
.reported_container[data-v-1b4d4c04] {
  background: #ebebeb;
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
}
.reported_container .cell-title-required[data-v-1b4d4c04] {
    position: relative;
}
.reported_container .cell-title-required[data-v-1b4d4c04]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.check-approval-container[data-v-1b4d4c04] {
  margin: 0.4rem 0.27rem 0;
}
.reported-form[data-v-1b4d4c04] {
  padding: 0.27rem;
}
.inner-group[data-v-1b4d4c04] {
  margin-top: 0.27rem;
}
.van-group[data-v-1b4d4c04] {
  border-radius: 10px;
}
.van-cell[data-v-1b4d4c04] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-1b4d4c04] {
  padding: 0;
}
.van-cell[data-v-1b4d4c04]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
[data-v-1b4d4c04] .van-field__label {
  width: 8em;
}
/* 按钮 */
.add_btn_box[data-v-1b4d4c04] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.sub_btn_box[data-v-1b4d4c04] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-1b4d4c04] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
[data-v-1b4d4c04] .van-cell,[data-v-1b4d4c04] .van-field__body {
  font-weight: 400 !important;
}
[data-v-1b4d4c04] .van-field__error-message {
  text-align: right;
}
[data-v-1b4d4c04] .van-cell--required::before {
  display: none;
}

.reported_container[data-v-56cd44fe] {
  background: #ebebeb;
  min-height: 100vh;
}
.reported-form[data-v-56cd44fe] {
  padding: 0.35rem;
}
.inner-group[data-v-56cd44fe] {
  margin-top: 0.27rem;
}
.van-group[data-v-56cd44fe] {
  border-radius: 10px;
}
.van-cell[data-v-56cd44fe] {
  border-radius: 10px;
}
.van-cell[data-v-56cd44fe] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-56cd44fe]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
.title-font[data-v-56cd44fe] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 550;
  color: #333333;
}
.value-font[data-v-56cd44fe] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666666;
}
/* 按钮 */
.add_btn_box[data-v-56cd44fe] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-56cd44fe] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submit_btn[data-v-56cd44fe] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
/* 按钮 */
.add_btn_box[data-v-56cd44fe] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-56cd44fe] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-56cd44fe] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}

@charset "UTF-8";
/*  */
.empty-container[data-v-c0a8b898] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-c0a8b898] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
/* 列表 */
.report_container[data-v-c0a8b898] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
  background: #f7f8fc;
}
.roport_scroll_box[data-v-c0a8b898] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.roport_scroll_box .report_total[data-v-c0a8b898] {
    display: block;
    margin: 0.35rem 0.42rem 0.26rem;
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
}
.report_inner[data-v-c0a8b898] {
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-c0a8b898] {
  background: #ffffff;
  margin-bottom: 0.19rem;
  border-radius: 0.13rem;
}
.item-top-add[data-v-c0a8b898] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-c0a8b898] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-value[data-v-c0a8b898] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666;
}
.report_bottom .item-top-add-value[data-v-c0a8b898] {
  color: #999;
}
.item-top-add-right[data-v-c0a8b898] {
  width: 70%;
  text-align: end;
}
.report_bottom[data-v-c0a8b898] {
  padding: 0 0.28rem 0.41rem;
  text-align: right;
}
.report_bottom .btn-item[data-v-c0a8b898] {
    background: #3975c6;
    border-radius: 0.13rem;
    font-size: 0.32rem;
    font-weight: 500;
    color: #ffffff;
    padding: 0.12rem 0.25rem;
    display: inline-block;
}
.report_bottom .delete-btn[data-v-c0a8b898] {
    border: 1px solid #DA291C;
    background: transparent;
    color: #DA291C;
    margin-right: 0.22rem;
}
.item_top[data-v-c0a8b898] {
  padding: 0.32rem 0.28rem 0.1rem;
}
.item-top-inner[data-v-c0a8b898] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-c0a8b898] {
  font-size: 0.38rem;
  font-family: Source Han Sans CN;
  font-weight: 600;
  color: #333333;
}
.item-top-approval[data-v-c0a8b898] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
}
.green-color[data-v-c0a8b898] {
  background: #3bb66f !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(36, 178, 119, 0.31);
}
.red-color[data-v-c0a8b898] {
  background: #fa0000;
  -webkit-box-shadow: 0px 3px 9px 0px #fa3d3d;
          box-shadow: 0px 3px 9px 0px #fa3d3d;
}
.brown-color[data-v-c0a8b898] {
  background: #e0e0e0 !important;
  color: #999999 !important;
  -webkit-box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
          box-shadow: 0px 3px 9px 0px rgba(238, 238, 238, 0.31);
}
.item-top-approval-inner[data-v-c0a8b898] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-c0a8b898] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.icon[data-v-c0a8b898] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.black-color[data-v-c0a8b898] {
  color: #333333 !important;
}
/* 搜索框 */
.search-box[data-v-c0a8b898] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-c0a8b898] {
  height: 1.63rem;
}
.van-search[data-v-c0a8b898] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-c0a8b898] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-c0a8b898] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-c0a8b898] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-c0a8b898] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.empty-img[data-v-c0a8b898] {
  width: 3.15rem;
  height: 3rem;
}
.box_font[data-v-c0a8b898] {
  margin-top: 0.81rem;
  font-size: 0.38rem;
  font-weight: 400;
  color: #666666;
}
.box_top[data-v-c0a8b898] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-c0a8b898] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-c0a8b898] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.empty-bottom-inner[data-v-c0a8b898] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-c0a8b898] {
  width: 100%;
  height: 100%;
  background: #3975c6;
  border-color: #3975c6;
  letter-spacing: 1px;
}
[data-v-c0a8b898] .van-field__control {
  font-weight: 500;
}














































































































































































































































































































/*  */
.empty-container[data-v-3f9fc435] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-3f9fc435] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
.app-top[data-v-3f9fc435] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.top-inner[data-v-3f9fc435] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
}
.drop-width[data-v-3f9fc435] {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-t-select[data-v-3f9fc435] {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* 列表 */
.report_container[data-v-3f9fc435] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
}
.roport_scroll_box[data-v-3f9fc435] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.report_inner[data-v-3f9fc435] {
  /* padding: 0.35rem 0; */
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-3f9fc435] {
  background: #ffffff;
  margin-top: 0.27rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-3f9fc435] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-3f9fc435] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-3f9fc435] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-left-icon[data-v-3f9fc435] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-3f9fc435] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.item-top-add-right[data-v-3f9fc435] {
  width: 70%;
  text-align: end;
}
.item-top-add-right-icon[data-v-3f9fc435] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-3f9fc435] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-3f9fc435] {
  padding: 0.32rem 0.29rem 0.32rem 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-3f9fc435] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item_top[data-v-3f9fc435] {
  padding: 0.32rem 0.29rem 0.1rem 0.51rem;
}
.item-top-inner[data-v-3f9fc435] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-3f9fc435] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-top-approval[data-v-3f9fc435] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.green-color[data-v-3f9fc435] {
  background: #3bb66f !important;
}
.red-color[data-v-3f9fc435] {
  background: red;
}
.brown-color[data-v-3f9fc435] {
  background: #e0e0e0 !important;
  color: #999999 !important;
}
.item-top-approval-inner[data-v-3f9fc435] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-3f9fc435] {
  font-size: 0.35rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-3f9fc435] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-3f9fc435] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-3f9fc435] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
.black-color[data-v-3f9fc435] {
  color: #333333 !important;
}
/* 搜索框 */
.search-box[data-v-3f9fc435] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-3f9fc435] {
  height: 1.63rem;
}
.van-search[data-v-3f9fc435] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-3f9fc435] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-3f9fc435] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-3f9fc435] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-3f9fc435] {
  /* margin: 2.76rem auto; */
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.empty-img[data-v-3f9fc435] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-3f9fc435] {
  letter-spacing: 1px;
  margin-top: 0.57rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
}
.box_top[data-v-3f9fc435] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-3f9fc435] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-3f9fc435] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.empty-bottom-inner[data-v-3f9fc435] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-3f9fc435] {
  width: 100%;
  height: 100%;
  background: #5076b8;
}

@charset "UTF-8";
.reported_container[data-v-9e325d10] {
  background: #ebebeb;
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
}
.reported_container .cell-title-required[data-v-9e325d10] {
    position: relative;
}
.reported_container .cell-title-required[data-v-9e325d10]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.check-approval-container[data-v-9e325d10] {
  margin: 0.4rem 0.27rem 0;
}
.reported-form[data-v-9e325d10] {
  padding: 0.27rem;
}
.inner-group[data-v-9e325d10] {
  margin-top: 0.27rem;
}
.van-group[data-v-9e325d10] {
  border-radius: 10px;
}
.van-cell[data-v-9e325d10] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-9e325d10] {
  padding: 0;
}
.van-cell[data-v-9e325d10]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-9e325d10] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.sub_btn_box[data-v-9e325d10] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-9e325d10] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
[data-v-9e325d10] .van-cell,[data-v-9e325d10] .van-field__body {
  font-weight: 400 !important;
}
[data-v-9e325d10] .van-cell--required::before {
  display: none;
}

.reported_container[data-v-5b3999d0] {
  background: #ebebeb;
  min-height: 100vh;
  padding-bottom: 100px;
}
.reported-form[data-v-5b3999d0] {
  padding: 0.35rem;
}
.inner-group[data-v-5b3999d0] {
  margin-top: 0.27rem;
}
.van-group[data-v-5b3999d0] {
  border-radius: 10px;
}
.van-cell[data-v-5b3999d0] {
  border-radius: 10px;
}
.van-cell[data-v-5b3999d0] .van-cell__label .van-cell {
  padding: 0;
}
.van-cell[data-v-5b3999d0]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
.title-font[data-v-5b3999d0] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 550;
  color: #333333;
}
.value-font[data-v-5b3999d0] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666666;
}
/* 按钮 */
.add_btn_box[data-v-5b3999d0] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.sub_btn_box[data-v-5b3999d0] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-5b3999d0] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.img-wrap[data-v-5b3999d0] {
  margin: 0 !important;
}
.btn[data-v-5b3999d0]{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



@charset "UTF-8";
.empty-container[data-v-2ec73c66] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-2ec73c66] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
.top-inner[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
}
/* 列表 */
.report_container[data-v-2ec73c66] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
  background: #f7f8fc;
}
.roport_scroll_box[data-v-2ec73c66] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.roport_scroll_box .report_total[data-v-2ec73c66] {
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
    margin: 0.35rem 0.42rem 0.26rem;
    display: block;
}
.report_inner[data-v-2ec73c66] {
  height: 100%;
  margin: 0 0.3rem;
}
.report_item[data-v-2ec73c66] {
  background: #ffffff;
  margin-bottom: 0.19rem;
  border-radius: 0.13rem;
  padding: 0.32rem 0.28rem 0.1rem;
}
.item-top-add[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-value[data-v-2ec73c66] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666;
}
.report_bottom .item-top-add-value[data-v-2ec73c66] {
  color: #999;
}
.item-top-add-right[data-v-2ec73c66] {
  width: 70%;
  text-align: end;
}
.report_bottom[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-btn[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 15px 0;
}
.bottom-btn .btn-item[data-v-2ec73c66] {
    width: 67px;
    height: 22px;
    background: #3975C6;
    border-radius: 5px;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}
.item-top-inner[data-v-2ec73c66] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
}
/* 搜索框 */
.search-box[data-v-2ec73c66] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-2ec73c66] {
  height: 1.63rem;
}
.van-search[data-v-2ec73c66] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-2ec73c66] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-2ec73c66] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-2ec73c66] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-2ec73c66] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.empty-img[data-v-2ec73c66] {
  width: 3.35rem;
  height: 2.82rem;
}
.box_font[data-v-2ec73c66] {
  margin-top: 0.81rem;
  font-size: 0.38rem;
  font-weight: 400;
  color: #666666;
}
.box_top[data-v-2ec73c66] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-2ec73c66] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-2ec73c66] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.empty-bottom-inner[data-v-2ec73c66] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-2ec73c66] {
  width: 100%;
  height: 100%;
  background: #3975c6;
  border-color: #3975c6;
  letter-spacing: 1px;
}
[data-v-2ec73c66] .van-field__control {
  font-weight: 500;
}

.select-ctn[data-v-ab249890] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  background: #3975c6;
}
.select-ctn .select-main[data-v-ab249890] {
    background: #ffffff;
    border-radius: 0.2rem 0.2rem 0 0;
    width: 100%;
    padding: 0 0.5rem;
    width: calc(100% - 1rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 1.28rem;
    margin-bottom: -1px;
}
.select-ctn .select-main .select-item[data-v-ab249890] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.select-ctn .select-main .select-item .select-text[data-v-ab249890] {
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.select-ctn .select-main .select-item .list_select-icon[data-v-ab249890] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 0.38rem;
        margin-left: 0.1rem;
}
.select-ctn .select-main .select-item .list_select-icon span[data-v-ab249890] {
          margin-top: 0.05rem;
}
.select-ctn .select-main .select-item .list_select-icon .list_selectIcon-bottom[data-v-ab249890] {
          border-left: 0.1rem solid transparent;
          border-right: 0.1rem solid transparent;
          border-top: 0.16rem solid #c4c4c4;
}
.select-ctn .popup-wrap[data-v-ab249890] {
    padding: 18px 15px 24px;
}
.select-ctn .popup-wrap .title[data-v-ab249890] {
      font-size: 16px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      line-height: 13px;
      text-align: center;
      margin-bottom: 15px;
}
.select-ctn .popup-wrap .filter-item .item-title[data-v-ab249890] {
      font-size: 15px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      margin-bottom: 12px;
}
.select-ctn .popup-wrap .filter-item .item-content[data-v-ab249890] {
      margin-bottom: 25px;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-time-box[data-v-ab249890] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.4rem;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-startend-time[data-v-ab249890] {
        width: 4.24rem;
        height: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        background: #f7f7f7;
        border-radius: 18px;
}
.select-ctn .popup-wrap .filter-item .item-content .pop-time-line[data-v-ab249890] {
        width: 8px;
        height: 2px;
        background: #333333;
}
.select-ctn .popup-wrap .filter-item .star-content[data-v-ab249890] {
      margin-bottom: 15px !important;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.select-ctn .popup-wrap .filter-item .star-content .star-item[data-v-ab249890] {
        width: 33.3%;
        height: 35px;
        border-radius: 18px;
        margin-bottom: 10px;
}
.select-ctn .popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-ab249890] {
          background: #f7f7f7;
          width: 90%;
          height: 100%;
          border-radius: 18px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
          border: 1px solid #f7f7f7;
}
.select-ctn .popup-wrap .btn-box[data-v-ab249890] {
      margin-top: 26px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.select-ctn .popup-wrap .btn-box .btn-wrap[data-v-ab249890] {
        width: 47%;
        height: 39px;
        border-radius: 20px;
}
.select-ctn .popup-wrap .btn-box .btn-wrap button[data-v-ab249890] {
          width: 100%;
          height: 100%;
          border-radius: 20px;
          border: none;
          font-size: 15px;
          font-family: Source Han Sans CN;
          font-weight: 400;
}
.select-ctn .popup-wrap .btn-box .btn-wrap .btn-l[data-v-ab249890] {
          background: #d9e4f2;
          color: #4378be;
}
.select-ctn .popup-wrap .btn-box .btn-wrap .btn-r[data-v-ab249890] {
          background: #4378be;
          color: #ffffff;
}
.select-ctn .popup-wrap .activeContent[data-v-ab249890] {
      background: #ebf1f9 !important;
      border: 1px solid #3975c6 !important;
      border-radius: 18px;
      color: #3975c6 !important;
}

@charset "UTF-8";
.reported_container[data-v-6a2080e6] {
  background: #ebebeb;
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
}
.reported_container .cell-title-required[data-v-6a2080e6] {
    position: relative;
}
.reported_container .cell-title-required[data-v-6a2080e6]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.check-approval-container[data-v-6a2080e6] {
  margin: 0.4rem 0.27rem 0;
}
.reported-form[data-v-6a2080e6] {
  padding: 0.27rem;
}
.inner-group[data-v-6a2080e6] {
  margin-top: 0.27rem;
}
.van-group[data-v-6a2080e6] {
  border-radius: 10px;
}
.van-cell[data-v-6a2080e6] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-6a2080e6] {
  padding: 0;
}
.van-cell[data-v-6a2080e6]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
.textarea-field[data-v-6a2080e6] {
  display: block;
}
.textarea-field[data-v-6a2080e6] .van-field__label {
    margin-bottom: 5px;
}
/* 按钮 */
.add_btn_box[data-v-6a2080e6] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.submit_btn[data-v-6a2080e6] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-weight: 400;
  color: #ffffff;
}
[data-v-6a2080e6] .van-cell,[data-v-6a2080e6] .van-field__body {
  font-weight: 400 !important;
}
[data-v-6a2080e6] .van-field__error-message {
  text-align: right;
}
[data-v-6a2080e6] .van-cell--required::before {
  display: none;
}

.upload-ctn[data-v-1209f4e5] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.upload-ctn .img-ctn[data-v-1209f4e5] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.upload-ctn .img-ctn .img-item[data-v-1209f4e5] {
      position: relative;
}
.upload-ctn .img-ctn .img-item img[data-v-1209f4e5] {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        margin: 0 8px 8px 0;
}
.upload-ctn .img-ctn .img-item .delete-icon[data-v-1209f4e5] {
        position: absolute;
        top: -3px;
        right: -3px;
        width: 12px;
        height: 12px;
}

@charset "UTF-8";
.empty-container[data-v-256f1600] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-256f1600] {
  position: absolute;
  width: 100%;
  height: 2.91rem;
}
/* 列表 */
.report_container[data-v-256f1600] {
  height: calc(100vh - 5.12rem);
  position: relative;
  top: 2.91rem;
  background: #f7f8fc;
}
.roport_scroll_box[data-v-256f1600] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.roport_scroll_box .report_total[data-v-256f1600] {
    font-size: 0.32rem;
    font-weight: 400;
    color: #666666;
    margin: 0.35rem 0.42rem 0.26rem;
    display: block;
}
.report_inner[data-v-256f1600] {
  height: 100%;
  margin: 0 0.3rem;
}
/* 搜索框 */
.search-box[data-v-256f1600] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-256f1600] {
  height: 1.63rem;
}
.van-search[data-v-256f1600] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-256f1600] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-256f1600] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-256f1600] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-256f1600] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.empty-img[data-v-256f1600] {
  width: 3.35rem;
  height: 2.82rem;
}
.box_font[data-v-256f1600] {
  margin-top: 0.81rem;
  font-size: 0.38rem;
  font-weight: 400;
  color: #666666;
}
.box_top[data-v-256f1600] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-256f1600] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-256f1600] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.empty-bottom-inner[data-v-256f1600] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-256f1600] {
  width: 100%;
  height: 100%;
  background: #3975c6;
  border-color: #3975c6;
  letter-spacing: 1px;
}
.company-Name[data-v-256f1600] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #3975c6;
  border: 1px solid #3975c6;
  padding: 0.02rem 0.04rem;
  border-radius: 0.08rem;
}
[data-v-256f1600] .van-field__control {
  font-weight: 500;
}
.selects-ctn[data-v-256f1600] {
  position: absolute;
  top: 1.63rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  padding: 0 0.5rem;
  width: calc(100% - 1rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.28rem;
  margin-bottom: -1px;
}
.selects-ctn .select-item[data-v-256f1600] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.selects-ctn .select-item .list_select-icon[data-v-256f1600] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 0.38rem;
      margin-left: 0.1rem;
}
.selects-ctn .select-item .list_select-icon span[data-v-256f1600] {
        margin-top: 0.05rem;
}
.selects-ctn .select-item .list_select-icon .list_selectIcon-top[data-v-256f1600] {
        border-left: 0.1rem solid transparent;
        border-right: 0.1rem solid transparent;
        border-bottom: 0.16rem solid #c4c4c4;
}
.selects-ctn .select-item .list_select-icon .curIcon-top[data-v-256f1600] {
        border-bottom-color: #3975c6 !important;
}
.selects-ctn .select-item .list_select-icon .curIcon-bottom[data-v-256f1600] {
        border-top-color: #3975c6 !important;
}
.selects-ctn .select-item .list_select-icon .list_selectIcon-bottom[data-v-256f1600] {
        border-left: 0.1rem solid transparent;
        border-right: 0.1rem solid transparent;
        border-top: 0.16rem solid #c4c4c4;
}

@charset "UTF-8";
.reported_container[data-v-3cd82f40] {
  background: #ebebeb;
  min-height: calc(100vh - 2.21rem);
  padding-bottom: 2.21rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
}
.reported_container .cell-title-required[data-v-3cd82f40] {
    position: relative;
}
.reported_container .cell-title-required[data-v-3cd82f40]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.reported-form[data-v-3cd82f40] {
  padding: 0.27rem;
}
.inner-group[data-v-3cd82f40] {
  margin-top: 0.27rem;
}
.van-group[data-v-3cd82f40] {
  border-radius: 10px;
}
.van-cell[data-v-3cd82f40] {
  border-radius: 10px;
}
.van-cell > .van-cell__label .van-cell[data-v-3cd82f40] {
  padding: 0;
}
.van-cell[data-v-3cd82f40]::after {
  border-bottom: 1px solid #eeeeee;
  left: 0.41rem;
  right: 0.4rem;
}
/* 按钮 */
.add_btn_box[data-v-3cd82f40] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.sub_btn_box[data-v-3cd82f40] {
  height: 2.48rem;
  background: #ffffff;
  padding: 0.53rem 0.4rem 0.64rem;
}
.submit_btn[data-v-3cd82f40] {
  width: 100%;
  height: 1.04rem;
  background: #5076b8;
  border-radius: 1rem;
  font-size: 0.4rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
[data-v-3cd82f40] .van-cell,[data-v-3cd82f40] .van-field__body {
  font-weight: 400 !important;
}
[data-v-3cd82f40] .van-field__error-message {
  text-align: right;
}
[data-v-3cd82f40] .van-cell--required::before {
  display: none;
}

.wscn-http404[data-v-d7cdc58e] {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wscn-http404 .pic-404[data-v-d7cdc58e] {
    padding: 1rem;
    position: relative;
    float: left;
    width: 100%;
    overflow: hidden;
}
.wscn-http404 .pic-404__parent[data-v-d7cdc58e] {
      width: 100%;
}
.wscn-http404 .pic-404__child[data-v-d7cdc58e] {
      position: absolute;
}
.wscn-http404 .pic-404__child.left[data-v-d7cdc58e] {
        width: 2rem;
        top: 17px;
        left: 220px;
        opacity: 0;
        -webkit-animation-name: cloudLeft-data-v-d7cdc58e;
                animation-name: cloudLeft-data-v-d7cdc58e;
        -webkit-animation-duration: 2s;
                animation-duration: 2s;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-delay: 1s;
                animation-delay: 1s;
}
.wscn-http404 .pic-404__child.mid[data-v-d7cdc58e] {
        width: 1.5rem;
        top: 10px;
        left: 420px;
        opacity: 0;
        -webkit-animation-name: cloudMid-data-v-d7cdc58e;
                animation-name: cloudMid-data-v-d7cdc58e;
        -webkit-animation-duration: 2s;
                animation-duration: 2s;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-delay: 1.2s;
                animation-delay: 1.2s;
}
.wscn-http404 .pic-404__child.right[data-v-d7cdc58e] {
        width: 1.75rem;
        top: 100px;
        left: 500px;
        opacity: 0;
        -webkit-animation-name: cloudRight-data-v-d7cdc58e;
                animation-name: cloudRight-data-v-d7cdc58e;
        -webkit-animation-duration: 2s;
                animation-duration: 2s;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards;
        -webkit-animation-delay: 1s;
                animation-delay: 1s;
}
@-webkit-keyframes cloudLeft-data-v-d7cdc58e {
0% {
    top: -2.1rem;
    left: 7rem;
    opacity: 0;
}
20% {
    top: -1.1rem;
    left: 5rem;
    opacity: 1;
}
80% {
    top: -0.1rem;
    left: 3rem;
    opacity: 1;
}
100% {
    top: 0.2rem;
    left: 1rem;
    opacity: 0;
}
}
@keyframes cloudLeft-data-v-d7cdc58e {
0% {
    top: -2.1rem;
    left: 7rem;
    opacity: 0;
}
20% {
    top: -1.1rem;
    left: 5rem;
    opacity: 1;
}
80% {
    top: -0.1rem;
    left: 3rem;
    opacity: 1;
}
100% {
    top: 0.2rem;
    left: 1rem;
    opacity: 0;
}
}
@-webkit-keyframes cloudMid-data-v-d7cdc58e {
0% {
    top: 2.2rem;
    left: 4.5rem;
    opacity: 0;
}
20% {
    top: 2.5rem;
    left: 3.5rem;
    opacity: 1;
}
70% {
    top: 2.8rem;
    left: 2.5rem;
    opacity: 1;
}
100% {
    top: 3.2rem;
    left: 1.5rem;
    opacity: 0;
}
}
@keyframes cloudMid-data-v-d7cdc58e {
0% {
    top: 2.2rem;
    left: 4.5rem;
    opacity: 0;
}
20% {
    top: 2.5rem;
    left: 3.5rem;
    opacity: 1;
}
70% {
    top: 2.8rem;
    left: 2.5rem;
    opacity: 1;
}
100% {
    top: 3.2rem;
    left: 1.5rem;
    opacity: 0;
}
}
@-webkit-keyframes cloudRight-data-v-d7cdc58e {
0% {
    top: 2.2rem;
    left: 8rem;
    opacity: 0;
}
20% {
    top: 2.5rem;
    left: 7rem;
    opacity: 1;
}
80% {
    top: 2.8rem;
    left: 6rem;
    opacity: 1;
}
100% {
    top: 3.2rem;
    left: 5rem;
    opacity: 0;
}
}
@keyframes cloudRight-data-v-d7cdc58e {
0% {
    top: 2.2rem;
    left: 8rem;
    opacity: 0;
}
20% {
    top: 2.5rem;
    left: 7rem;
    opacity: 1;
}
80% {
    top: 2.8rem;
    left: 6rem;
    opacity: 1;
}
100% {
    top: 3.2rem;
    left: 5rem;
    opacity: 0;
}
}
.wscn-http404 .bullshit[data-v-d7cdc58e] {
    position: relative;
    float: left;
    padding: 1rem 1rem;
    overflow: hidden;
}
.wscn-http404 .bullshit__oops[data-v-d7cdc58e] {
      font-size: 32px;
      font-weight: bold;
      line-height: 40px;
      color: #1482f0;
      opacity: 0;
      margin-bottom: 20px;
      -webkit-animation-name: slideUp-data-v-d7cdc58e;
              animation-name: slideUp-data-v-d7cdc58e;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__headline[data-v-d7cdc58e] {
      font-size: 20px;
      line-height: 24px;
      color: #1482f0;
      opacity: 0;
      margin-bottom: 10px;
      -webkit-animation-name: slideUp-data-v-d7cdc58e;
              animation-name: slideUp-data-v-d7cdc58e;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-delay: 0.1s;
              animation-delay: 0.1s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__info[data-v-d7cdc58e] {
      font-size: 13px;
      line-height: 21px;
      color: grey;
      opacity: 0;
      margin-bottom: 30px;
      -webkit-animation-name: slideUp-data-v-d7cdc58e;
              animation-name: slideUp-data-v-d7cdc58e;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-delay: 0.2s;
              animation-delay: 0.2s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__return-home[data-v-d7cdc58e] {
      display: block;
      float: left;
      width: 110px;
      height: 36px;
      background: #1482f0;
      border-radius: 100px;
      text-align: center;
      color: #ffffff;
      opacity: 0;
      font-size: 14px;
      line-height: 36px;
      cursor: pointer;
      -webkit-animation-name: slideUp-data-v-d7cdc58e;
              animation-name: slideUp-data-v-d7cdc58e;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      -webkit-animation-delay: 0.3s;
              animation-delay: 0.3s;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards;
}
@-webkit-keyframes slideUp-data-v-d7cdc58e {
0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
}
100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
}
@keyframes slideUp-data-v-d7cdc58e {
0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
}
100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
}

.app_container[data-v-5404b34c] {
  /* background: #f8f8f8; */
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #ebebeb;
}
.box_top[data-v-5404b34c] {
  text-align: center;
  width: 100%;
}
.box_bottom[data-v-5404b34c] {
  text-align: center;
  width: 100%;
}
.box_font[data-v-5404b34c] {
  font-size: 0.37rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
}
.errPage-container[data-v-5404b34c] {
  width: 100%;
}
.errPage-container .text_box[data-v-5404b34c] {
    padding: 1rem;
}
.errPage-container .text_box .text-jumbo[data-v-5404b34c] {
      font-size: 60px;
      font-weight: 700;
      color: #484848;
}
.errPage-container .text_box .list-unstyled[data-v-5404b34c] {
      font-size: 14px;
}
.errPage-container .text_box .list-unstyled li[data-v-5404b34c] {
        padding-bottom: 5px;
}
.errPage-container .text_box .list-unstyled a[data-v-5404b34c] {
        color: #008489;
        text-decoration: none;
}
.errPage-container .text_box .list-unstyled a[data-v-5404b34c]:hover {
          text-decoration: underline;
}
.errPage-container .img[data-v-5404b34c] {
    width: 7.825rem;
    height: 10.7rem;
    padding: 0 1rem;
}

.app_container[data-v-194d6b00] {
  background: #f7f8fc;
  padding-top: 3.72rem;
  text-align: center;
  font-size: 0.38rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  min-height: 100vh;
}
.app_container img[data-v-194d6b00] {
    width: 4.15rem;
    height: 2.89rem;
    margin-bottom: 0.81rem;
}
.app_container .box_top[data-v-194d6b00] {
    margin-bottom: 0.2rem;
}
.app_container .btn-ctn[data-v-194d6b00] {
    height: 1.24rem;
    background: #3975c6;
    border-radius: 0.27rem;
    line-height: 1.24rem;
    text-align: center;
    font-size: 0.41rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0.41rem;
    margin-top: 1.66rem;
    cursor: pointer;
}

.container[data-v-4f42e8b9] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.container .wrap[data-v-4f42e8b9] {
    width: 100%;
    height: 100%;
    background: #ebebeb;
}
.container .wrap .content[data-v-4f42e8b9] {
      padding: 0.4rem;
}
.block-content[data-v-4f42e8b9] {
  padding: 0.4rem;
  background: #fff;
  margin-bottom: 0.2rem;
}
.item[data-v-4f42e8b9] {
  margin: 0.2rem 0;
}
.item div[data-v-4f42e8b9] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 0.37rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #1f1f1f;
}

.right[data-v-2a1d7f5f] {
  margin-right: 0.1rem;
}
.list-container[data-v-2a1d7f5f] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list-container .top-content[data-v-2a1d7f5f] {
    width: 100%;
    height: 1.65rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.list-container .top-content .van-search[data-v-2a1d7f5f] {
      height: 1.63rem;
      width: 100%;
}
.list-container .top-content .van-search .van-search__action[data-v-2a1d7f5f] {
        color: #ffffff;
}
.list-container .top-content .van-search .van-search__content[data-v-2a1d7f5f] {
        height: 0.93rem;
}
.list-container .top-content .van-search .van-search__content .van-cell[data-v-2a1d7f5f] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
}
.list-container .top-content .van-search .van-search__content .van-cell[data-v-2a1d7f5f] .van-field__value {
          font-weight: 400;
}
.list-container .top-content .van-search .van-search__content .van-cell[data-v-2a1d7f5f] .van-field__left-icon {
          width: 0.4rem;
          height: 0.4rem;
          margin: 0.08rem 0.25rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-2a1d7f5f] {
          width: 100%;
          height: 100%;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-cell__value[data-v-2a1d7f5f] {
          margin-left: 0.4rem;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2a1d7f5f]::-webkit-input-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2a1d7f5f]::-moz-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2a1d7f5f]::-ms-input-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.list-container .top-content .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2a1d7f5f]::placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.list-container .content-content[data-v-2a1d7f5f] {
    width: 100%;
    height: calc(100vh - 0.48rem);
    background: #fff;
    border-radius: 13px 13px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.list-container .content-content .list-content[data-v-2a1d7f5f] {
      z-index: 2;
      width: 100%;
      height: calc(100% - 2.5rem);
      background: #f7f8fc;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list-container .content-content .list-content .list-content-wrap[data-v-2a1d7f5f] {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
}
.list-container .content-content .list-content .list-content-wrap .total-ctn[data-v-2a1d7f5f] {
          margin: 0.2rem 0.3rem;
          color: #666666;
}
.list-container .content-content .list-content .list-content-wrap .van-list[data-v-2a1d7f5f] {
          height: auto !important;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner[data-v-2a1d7f5f] {
            margin: 0 0.3rem;
            padding-bottom: 0.3rem;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item[data-v-2a1d7f5f] {
              background: #ffffff;
              margin-bottom: 0.27rem;
              border-radius: 5px;
              padding: 15px 10px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item[data-v-2a1d7f5f] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                margin-bottom: 12px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .left-item[data-v-2a1d7f5f] {
                  width: 45px;
                  height: 45rpx;
                  text-align: center;
                  line-height: 45px;
                  background: #3975c6;
                  border-radius: 5px;
                  font-size: 16px;
                  font-weight: bold;
                  color: #ffffff;
                  margin-right: 10px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .right-item[data-v-2a1d7f5f] {
                  -webkit-box-flex: 1;
                      -ms-flex: 1;
                          flex: 1;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .right-item .top-ctn[data-v-2a1d7f5f] {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-flex: 1;
                        -ms-flex: 1;
                            flex: 1;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                            justify-content: space-between;
                    margin-right: 10px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .right-item .cus-ctn[data-v-2a1d7f5f] {
                    font-weight: bold;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .right-item .progress-ctn[data-v-2a1d7f5f] {
                    border: 1px solid #3975c6;
                    border-radius: 3px;
                    padding: 2px 5px;
                    font-size: 12px;
                    font-weight: 500;
                    color: #3975c6;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .item-top-id[data-v-2a1d7f5f] {
                  font-size: 0.37rem;
                  font-family: PingFang SC;
                  font-weight: 400;
                  color: #333333;
                  margin-bottom: 6px;
                  letter-spacing: 1px;
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  -webkit-box-pack: justify;
                      -ms-flex-pack: justify;
                          justify-content: space-between;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .item-top-id-imgs[data-v-2a1d7f5f] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  border-radius: 5px;
                  font-size: 0.3rem;
                  padding: 4px 6px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .btn-item[data-v-2a1d7f5f] {
                  border-radius: 4px;
                  font-size: 12px;
                  font-weight: 500;
                  color: #ffffff;
                  padding: 2px 6px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .blue-btn[data-v-2a1d7f5f] {
                  background: #3975c6;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .header-item .green-btn[data-v-2a1d7f5f] {
                  background: #24b277;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-top-ctn[data-v-2a1d7f5f] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-top-ctn .content-top-right[data-v-2a1d7f5f] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
                  color: #3975c6;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-top-ctn .content-top-right img[data-v-2a1d7f5f] {
                    width: 9px;
                    height: 6px;
                    margin-left: 4px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn[data-v-2a1d7f5f] {
                margin-top: 10px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item[data-v-2a1d7f5f] {
                  border: 1px solid #f0f2fa;
                  border-radius: 5px;
                  margin-bottom: 10px;
                  padding: 10px 10px 0;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn[data-v-2a1d7f5f] {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    margin-bottom: 10px;
                    -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                            justify-content: space-between;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-left-ctn[data-v-2a1d7f5f] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      -webkit-box-align: center;
                          -ms-flex-align: center;
                              align-items: center;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-left-ctn .left-title[data-v-2a1d7f5f] {
                        color: #666666;
                        margin-right: 10px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-left-ctn .copy-class[data-v-2a1d7f5f] {
                        color: #3975c6;
                        border: 1px solid #3975c6;
                        border-radius: 3px;
                        padding: 1px 3px;
                        margin-left: 2px;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-right-ctn[data-v-2a1d7f5f] {
                      font-size: 12px;
                      font-weight: 500;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-right-ctn .green-color[data-v-2a1d7f5f] {
                        color: #24b277;
}
.list-container .content-content .list-content .list-content-wrap .van-list .app-item-inner .app_item .item_content .content-list-ctn .list-item .item-ctn .item-right-ctn .blue-color[data-v-2a1d7f5f] {
                        color: #3975c6;
}

.select-item[data-v-a98b02f8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
}
.select-item .list_select-icon[data-v-a98b02f8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 0.38rem;
    margin-left: 0.1rem;
}
.select-item .list_select-icon span[data-v-a98b02f8] {
      margin-top: 0.05rem;
}
.select-item .list_select-icon .list_selectIcon-bottom[data-v-a98b02f8] {
      border-left: 0.1rem solid transparent;
      border-right: 0.1rem solid transparent;
      border-top: 0.16rem solid #c4c4c4;
}
.bottom-popup-ctn[data-v-a98b02f8] {
  width: 100%;
  max-height: 4rem;
  -webkit-transition: max-height 0.3s;
  transition: max-height 0.3s;
  background: #fff;
  border-radius: 0 0 15px 15px;
  position: fixed;
  left: 0;
  overflow: hidden;
  z-index: 10;
  border-top: 1px solid #cccaca;
  padding-top: 0.4rem;
  z-index: 20;
  margin-top: 12px;
}
.bottom-popup-ctn .popup-select-ctn[data-v-a98b02f8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.bottom-popup-ctn .popup-select-ctn .select-item[data-v-a98b02f8] {
      padding: 0 0.4rem 0.44rem;
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: calc(50% - 0.8rem);
}
.bottom-popup-ctn .btn-content[data-v-a98b02f8] {
    width: calc(100% - 0.8rem);
    height: 0.9rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 1rem;
    border: 1px solid #3975c6;
    margin: 0 0.4rem 0.4rem;
}
.bottom-popup-ctn .btn-content .btn[data-v-a98b02f8] {
      width: 50%;
      height: 100%;
      border: 0;
      border-radius: 1rem;
      background: #fff;
      color: #3975c6;
      font-size: 0.37rem;
      font-family: PingFang SC;
      font-weight: 500;
}
.bottom-popup-ctn .btn-content .btn-right[data-v-a98b02f8] {
      background: #3975c6;
      color: #fff;
}
.checkActive[data-v-a98b02f8] {
  color: #3975c6 !important;
}

@charset "UTF-8";
.ysje-view[data-v-59863390] {
  width: 81%;
  background: #FFFFFF;
  border-radius: 10px;
}
.ysje-title[data-v-59863390] {
  font-size: 0.38rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
  text-align: left;
  padding-left: 0.4rem;
  padding-top: 0.35rem;
}
.ysje-content[data-v-59863390] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.79);
  padding-left: 0.35rem;
  padding-top: 0.35rem;
}
.van-list[data-v-59863390] {
  height: auto !important;
}
.item_top[data-v-59863390] {
  padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.item_top .header-item[data-v-59863390] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 12px;
}
.item_top .header-item .left-item[data-v-59863390] {
      width: 45px;
      height: 45rpx;
      text-align: center;
      line-height: 45px;
      background: #3975C6;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      color: #FFFFFF;
      margin-right: 10px;
}
.item_top .header-item .right-item[data-v-59863390] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.item_top .header-item .right-item .top-ctn[data-v-59863390] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-right: 10px;
}
.item_top .header-item .right-item .cus-ctn[data-v-59863390] {
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 120px;
}
.item_top .header-item .right-item .progress-ctn[data-v-59863390] {
        border: 1px solid #3975C6;
        border-radius: 3px;
        padding: 2px 5px;
        font-size: 12px;
        font-weight: 500;
        color: #3975C6;
}
.bottom_r[data-v-59863390] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
}
.app_items[data-v-59863390] {
  background: #ebebeb;
  height: calc(100vh - 8.15rem);
  position: relative;
}
.app_item[data-v-59863390] {
  width: 100%;
  background: #ffffff;
  margin-bottom: 0.27rem;
  border-radius: 5px;
}
.app-item-inner[data-v-59863390] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.item_content[data-v-59863390] {
  margin-bottom: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item_content .content_title[data-v-59863390] {
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    width: 2.6667rem;
}
.item_content .content_value[data-v-59863390] {
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
}
.right[data-v-59863390] {
  margin-right: 0.1rem;
}
.list-container[data-v-59863390] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list-container .list-wrap[data-v-59863390] {
    width: 100%;
    height: 100%;
}
.list-container .list-wrap .top-content[data-v-59863390] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list-container .list-wrap .top-content .search-box[data-v-59863390] {
        width: 100%;
}
.list-container .list-wrap .top-content .add-box[data-v-59863390] {
        width: 1rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap[data-v-59863390] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-right: 0.4rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap img[data-v-59863390] {
            width: 0.5rem;
            height: 0.5rem;
}
.list-container .list-wrap .top-content .add-box .add-box-wrap div[data-v-59863390] {
            white-space: nowrap;
            -webkit-transform: scale(0.9);
                    transform: scale(0.9);
            font-size: 0.27rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
}
.list-container .list-wrap .content-content[data-v-59863390] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list-container .list-wrap .content-content .content-filter[data-v-59863390] {
        width: 100%;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap[data-v-59863390] {
          overflow-y: hidden;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter[data-v-59863390] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.2rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .month-filter[data-v-59863390] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box[data-v-59863390] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box span[data-v-59863390] {
                margin-right: 0.09rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .top-filter .filter-box .show-img[data-v-59863390] {
                width: 0.17rem;
                height: 0.12rem;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-59863390] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            padding-bottom: 40px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
}
.list-container .list-wrap .content-content .content-filter .content-filter-wrap .bottom-filter[data-v-59863390]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list-container .list-wrap .content-content .list-content[data-v-59863390] {
        z-index: 2;
        width: 100%;
        height: calc(100% - 2.5rem);
        background: #f7f8fc;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.list-container .list-wrap .content-content .list-content .list-total[data-v-59863390] {
          height: 1rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          padding: 0 0.41rem;
          line-height: 1rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap[data-v-59863390] {
          width: 100%;
          height: calc(100% - 1rem);
          overflow-y: scroll;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list[data-v-59863390] {
            width: 100%;
            height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item[data-v-59863390] {
              background: #fff;
              margin: 0 10px;
              margin-bottom: 0.19rem;
              border-radius: 7px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap[data-v-59863390] {
                padding: 15px 10px 0 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top[data-v-59863390] {
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  margin-bottom: 0.32rem;
                  -webkit-box-align: center;
                      -ms-flex-align: center;
                          align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l[data-v-59863390] {
                    width: 1.2rem;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                        -ms-flex-align: center;
                            align-items: center;
                    margin-right: 9px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img[data-v-59863390] {
                      width: 1.2rem;
                      height: 1.2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-l .top-l-img img[data-v-59863390] {
                        width: 100%;
                        height: 100%;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r[data-v-59863390] {
                    width: calc(100% - 1.2rem - 9px);
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                        -ms-flex-direction: column;
                            flex-direction: column;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top[data-v-59863390] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      -webkit-box-align: center;
                          -ms-flex-align: center;
                              align-items: center;
                      -webkit-box-pack: justify;
                          -ms-flex-pack: justify;
                              justify-content: space-between;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top[data-v-59863390] {
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: baseline;
                            -ms-flex-align: baseline;
                                align-items: baseline;
                        margin-bottom: 5px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .name[data-v-59863390] {
                          font-size: 0.43rem;
                          font-family: PingFang SC;
                          font-weight: bold;
                          color: #333333;
                          margin-right: 0.09rem;
                          overflow: hidden;
                          text-overflow: ellipsis;
                          white-space: nowrap;
                          max-width: 2rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-top .top-l-info-top .phone[data-v-59863390] {
                          font-size: 0.32rem;
                          font-family: PingFang SC;
                          font-weight: 500;
                          color: #666666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom[data-v-59863390] {
                      display: -webkit-box;
                      display: -ms-flexbox;
                      display: flex;
                      font-size: 0.32rem;
                      font-family: PingFang SC;
                      font-weight: 500;
                      color: #666666;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type[data-v-59863390] {
                        margin-right: 0.37rem;
                        max-width: 40%;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                            -ms-flex-align: center;
                                align-items: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .type img[data-v-59863390] {
                          width: 0.3rem;
                          height: 0.3rem;
                          margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-bottom .top-l-info-bottom .people img[data-v-59863390] {
                        width: 0.23rem;
                        height: 0.29rem;
                        margin-right: 0.08rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-top .top-r .top-r-tip[data-v-59863390] {
                      padding: 5px 8px;
                      border-radius: 7px;
                      color: #fff;
                      font-size: 12px;
                      font-family: PingFang SC;
                      font-weight: 500;
                      color: #ffffff;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address[data-v-59863390] {
                  width: 100%;
                  display: -webkit-box;
                  display: -ms-flexbox;
                  display: flex;
                  -webkit-box-align: baseline;
                      -ms-flex-align: baseline;
                          align-items: baseline;
                  margin-bottom: 0.27rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address img[data-v-59863390] {
                    width: 0.25rem;
                    height: 0.31rem;
                    margin-right: 0.13rem;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-address div[data-v-59863390] {
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    font-size: 0.32rem;
                    font-family: PingFang SC;
                    font-weight: 500;
                    color: #333333;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips[data-v-59863390] {
                  width: 100%;
                  overflow: hidden;
                  margin-bottom: 10px;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-content .list-item-content-wrap .item-tips .tips-item[data-v-59863390] {
                    width: 53px;
                    white-space: nowrap;
                    padding: 4px 11px;
                    background: #eeeeee;
                    border-radius: 15px;
                    margin-right: 3px;
                    float: left;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    text-align: center;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .line[data-v-59863390] {
                width: 100%;
                height: 1px;
                background: #f7f8fc;
}
.list-container .list-wrap .content-content .list-content .list-content-wrap .scroll-list .list-item .list-item-bottom .list-item-bottom-wrap[data-v-59863390] {
                padding: 0.27rem 10px;
                font-size: 0.32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #999999;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
/* 搜索框 */
.van-search[data-v-59863390] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-59863390] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-59863390] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-59863390] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-59863390] .van-field__value {
      font-weight: 400;
}
.van-search .van-search__content .van-cell[data-v-59863390] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-59863390] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-59863390] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-59863390]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-59863390]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-59863390]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-59863390]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.line[data-v-59863390] {
  height: 1px;
  background: #F7F8FC;
  width: 100%;
}
.green[data-v-59863390] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-59863390] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.people-content-item[data-v-59863390] {
  padding: 0.3rem 0;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.finished-text-box[data-v-59863390] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.finished-text-box .bottom-line[data-v-59863390] {
    width: 0.99rem;
    height: 1px;
    background: #999999;
}
.finished-text-box .finished-text[data-v-59863390] {
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 13px;
    margin: 0 0.2rem;
    padding: 0.35rem 0;
}
.item-top-id[data-v-59863390] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-bottom: 6px;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.changeClose[data-v-59863390] {
  margin-left: 0.4rem;
}
.changeClose .changeClose-wrap[data-v-59863390] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #eee;
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
    max-width: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 0.11rem;
    margin-bottom: 0.2rem;
    color: #666666;
    font-family: PingFang SC;
    font-size: .32rem;
}
.report_bottom[data-v-59863390] {
  padding: 0.2rem 0.29rem 0.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-ctn[data-v-59863390] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn-ctn .btn-item[data-v-59863390] {
    padding: 4px 10px;
    border: 1px solid #3975C6;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #3975C6;
}
.btn-ctn .detail-item[data-v-59863390] {
    background: #3975C6;
    color: #FFFFFF;
    margin-left: 10px;
}
.active[data-v-59863390] {
  color: #3975c6 !important;
}
.pop-peopleList[data-v-59863390] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item-top-id-imgs[data-v-59863390] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  font-size: 0.3rem;
  padding: 4px  6px;
}
.more[data-v-59863390] {
  border: 1px solid;
  background-color: #F5AB32;
  color: white;
  font-size: 0.3rem;
}
.many[data-v-59863390] {
  border: 1px solid;
  background-color: #ED853F;
  color: white;
  font-size: 0.3rem;
}
.ordinary[data-v-59863390] {
  border: 1px solid;
  background-color: #C83F3F;
  color: white;
  font-size: 0.3rem;
}
.low[data-v-59863390] {
  border: 1px solid;
  background-color: #24B277;
  color: white;
}
.img-sty[data-v-59863390] {
  width: 0.3rem;
  margin-right: 4px;
}
.people-item[data-v-59863390] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.pop-time[data-v-59863390] {
  padding: 0.2rem 0;
}
.right-icon[data-v-59863390] {
  font-size: 12px;
}
#peopleList[data-v-59863390] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  width: 100%;
  padding: 0.2rem 0;
}
.popup-wrap[data-v-59863390] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-59863390] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-59863390] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-59863390] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-59863390] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-59863390] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-59863390] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-59863390] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-59863390] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-59863390] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-59863390] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-59863390] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-59863390] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: Source Han Sans CN;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-59863390] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-59863390] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-59863390] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}
.pop-people-content[data-v-59863390] {
  padding: 0.2rem 0;
  max-height: 6rem;
  overflow: hidden;
}
.pop-people-content-inner[data-v-59863390] {
  width: 100%;
  max-height: 6rem;
  overflow-y: scroll;
}
.container-meidum[data-v-59863390] {
  border: 1px solid rgba(57, 117, 198, 0.51);
  margin: 0.25rem 0.3rem 0.25rem 0.3rem;
  border-radius: 5px;
  background: #ffffff;
  /*position: absolute;*/
  /*top: 4.30rem;*/
  /*padding-left: 26px;*/
  /*width: 100%;*/
  /*height: 4.00rem;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
  /*display: flex;
  flex-direction: column;*/
}
.container-meidum .title[data-v-59863390] {
    margin: 0.35rem 0 0 0.4rem;
    font-size: 0.37rem;
    font-family: PingFang SC;
    font-weight: bold;
    color: rgba(51, 51, 51, 0.79);
    font-weight: revert;
}
.container-meidum .kcMoney[data-v-59863390] {
    margin: 0.1rem 0 0 0.4rem;
    font-size: .64rem;
    font-family: PingFang SC;
    font-weight: 800;
    color: #3975C6;
    font-weight: revert;
}
.container-meidum .kcContext[data-v-59863390] {
    margin: 0.3rem 0 0.35rem 0.4rem;
    font-size: .37rem;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    font-weight: revert;
}
.container-meidum .kcContext .btn[data-v-59863390] {
      height: .56rem;
      line-height: 0.56rem;
      border-radius: 5px;
      background: #3975c6;
      color: #fff;
      font-size: .32rem;
      font-family: PingFang SC;
      font-weight: 500;
      float: right;
      margin-right: .4rem;
      padding: 0 6px;
      border: 0;
}
.divSolid[data-v-59863390] {
  border: 3px solid #000;
}
.bottom_time[data-v-59863390] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.container-bottom[data-v-59863390] {
  height: calc(100vh - 8.15rem);
  overflow-y: scroll;
  position: relative;
  top: 5.00rem;
}
.box_top[data-v-59863390] {
  font-size: .37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.list_select-btn[data-v-59863390] {
  font-size: 0.32rem;
  font-weight: 400;
  color: #666666;
}
.list_select-curBtn[data-v-59863390] {
  color: #5076b8 !important;
}
.edit-dialog-ctn[data-v-59863390] {
  padding: 20px 0;
  border-bottom: 1px solid rgba(222, 223, 226, 0.2);
}
.edit-dialog-ctn .progress-ctn[data-v-59863390] {
    padding: 10px 16px;
}
.edit-dialog-ctn .progress-ctn .progress-ctn-title[data-v-59863390] {
      font-size: 14px;
      font-weight: 500;
      color: #333333;
      margin-bottom: 14px;
}
.edit-dialog-ctn .progress-ctn .progress-ctn-main[data-v-59863390] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.edit-dialog-ctn .progress-ctn .progress-ctn-main .item-ctn[data-v-59863390] {
        background: #eeeeee;
        border-radius: 4px;
        padding: 5px 17px;
        font-size: 12px;
        font-weight: 500;
        margin-right: 7px;
        margin-bottom: 10px;
        color: #666666;
}
.edit-dialog-ctn .progress-ctn .progress-ctn-main .active-item[data-v-59863390] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378be;
}
.edit-dialog-ctn[data-v-59863390] .van-cell .van-cell__title {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}
.edit-dialog-ctn[data-v-59863390] .van-field__control {
    font-weight: 500;
}
.popup-ctn[data-v-59863390] {
  padding-bottom: 0.5333rem;
}
.popup-ctn .popup-header[data-v-59863390] {
    text-align: center;
    position: relative;
    padding: 0.4rem 0.38rem;
    font-size: 0.38rem;
}
.popup-ctn .popup-header .cancel-class[data-v-59863390] {
      position: absolute;
      left: 0.38rem;
      color: #548cdf;
}
.popup-ctn .add-btn[data-v-59863390] {
    background: #3975c6;
    color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 0.47rem;
    line-height: 0.35rem;
}
.popup-ctn .van-search[data-v-59863390] {
    margin: 0 0.1067rem;
}
.popup-ctn .van-search .van-search__content[data-v-59863390] {
      background: #f7f7f7;
      border-radius: 0.47rem;
}
.popup-ctn .van-search .van-cell[data-v-59863390] {
      padding: 0.2rem 0.4rem;
}
.popup-ctn .collection-list[data-v-59863390] {
    font-size: 0.41rem;
    color: #333;
    max-height: 5.3333rem;
    overflow-y: auto;
}
.popup-ctn .collection-list[data-v-59863390]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.popup-ctn .collection-list .collection-item[data-v-59863390] {
      text-align: center;
      padding: 0.2667rem 0;
}

.dropDown-sec-container[data-v-0cd273d8] {
  position: relative;
  margin-left: 0.4rem;
}
.dropDown-sec-container .show-content[data-v-0cd273d8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*background: #eeeeee;*/
    padding: 0.11rem 0.28rem;
    border-radius: 5px;
}
.dropDown-sec-container .show-content .show-text[data-v-0cd273d8] {
      max-width: 2rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      margin-right: 0.11rem;
      color: #666666;
      font-size: .33rem;
}
.dropDown-sec-container .show-content .show-img[data-v-0cd273d8] {
      width: 7px;
      height: 5px;
}
.dropDown-sec-container .shadow-content[data-v-0cd273d8] {
    width: 100%;
    height: 0.2rem;
    background: #fff;
    position: relative;
}
.dropDown-sec-container .show-content-content[data-v-0cd273d8] {
    border-radius: 5px 5px 0 0 !important;
}
.dropDown-sec-container .show-shadow-content[data-v-0cd273d8] {
    /*width: 100%;*/
    /*height: 0.2rem;*/
    /*position: relative;*/
    /*background: #eeeeee;*/
}
.dropDown-sec-container .value-content[data-v-0cd273d8] {
    width: 100%;
    position: fixed;
    background: #eeeeee;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    z-index: 5;
}
.dropDown-sec-container .value-content .value-wrap[data-v-0cd273d8] {
      padding: 0.4rem;
}
.dropDown-sec-container .value-content .value-wrap .select-content[data-v-0cd273d8] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.dropDown-sec-container .value-content .value-wrap .select-content .select-item[data-v-0cd273d8] {
          width: 48%;
          margin-bottom: 0.44rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #333333;
}
.dropDown-sec-container .value-content .value-wrap .btn-content[data-v-0cd273d8] {
        width: 100%;
        height: 0.9rem;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 1rem;
        border: 1px solid #3975c6;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn[data-v-0cd273d8] {
          width: 50%;
          height: 100%;
          border: 0;
          border-radius: 1rem;
          background: #fff;
          color: #3975c6;
          font-size: 0.37rem;
          font-family: PingFang SC;
          font-weight: 500;
}
.dropDown-sec-container .value-content .value-wrap .btn-content .btn-right[data-v-0cd273d8] {
          background: #3975c6;
          color: #fff;
}
.active[data-v-0cd273d8] {
  color: #3975c6;
}
.content-active[data-v-0cd273d8] {
  background: #d9e4f2;
  color: #3975c6;
}
@-webkit-keyframes slide-down-data-v-0cd273d8 {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}
@keyframes slide-down-data-v-0cd273d8 {
0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
}
100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
}
}

.empty-container[data-v-010a1e98] {
  background: #ebebeb;
  min-height: 100vh;
}
/* 列表 */
.report_container[data-v-010a1e98] {
  min-height: 100vh;
}
/*  */
.report_inner[data-v-010a1e98] {
  padding: 0.35rem 0;
  margin: 0 0.3rem;
}
.report_item[data-v-010a1e98] {
  background: #ffffff;
  margin: 0 auto 0.24rem;
  border-radius: 0.13rem;
}
.item_inner[data-v-010a1e98] {
  padding: 0.43rem 0.37rem 0.44rem 0.36rem;
  font-size: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-inner-name[data-v-010a1e98] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.item-inner-phoneBox[data-v-010a1e98] {
  margin-top: 0.45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.phoneBox-icon[data-v-010a1e98] {
  width: 0.27rem;
  height: 0.37rem;
}
.phoneBox-value[data-v-010a1e98] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  margin-left: 0.19rem;
}
.item-inner-right-icon[data-v-010a1e98] {
  width: 0.16rem;
  height: 0.29rem;
}
/* 搜索框 */
.search-box[data-v-010a1e98] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-010a1e98] {
  height: 1.63rem;
}
.van-search[data-v-010a1e98] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-010a1e98] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-010a1e98] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-010a1e98] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
/* /空列表/ */
.empty-box[data-v-010a1e98] {
  /* margin: 2.76rem auto; */
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.empty-img[data-v-010a1e98] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-010a1e98] {
  letter-spacing: 1px;
  margin-top: 0.57rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #999999;
}
.box_top[data-v-010a1e98] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-010a1e98] {
  text-align: center;
  width: 100%;
}
/* 新建按钮 */
.empty-bottom[data-v-010a1e98] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: fixed;
  bottom: 0;
}
.empty-bottom-inner[data-v-010a1e98] {
  padding: 0.53rem 0.4rem 0.64rem;
  height: 1.04rem;
}
.empty-bottom-inner-button[data-v-010a1e98] {
  width: 100%;
  height: 100%;
  background: #5076b8;
}

.chart-container[data-v-2061a616] {
  background: #3975c6;
  height: 100vh;
}
.chart-container .chart-wrap[data-v-2061a616] {
    width: 100%;
    height: 100%;
    background: #f7f8fc;
    border-radius: 10px 10px 0px 0px;
}
.chart-container .chart-wrap .top-filter[data-v-2061a616] {
      padding-top: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      background: #fff;
      border-radius: 10px 10px 0 0;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container[data-v-2061a616] {
        margin-left: 0 !important;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .show-content[data-v-2061a616] {
          background: #fff !important;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .shadow-content[data-v-2061a616] {
          background: #fff;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .value-content[data-v-2061a616] {
          background: #fff;
}
.chart-container .chart-wrap .chart-content[data-v-2061a616] {
      width: 100%;
      background: #f7f8fc;
      overflow-y: scroll;
}
.chart-container .chart-wrap .chart-content .content-wrap[data-v-2061a616] {
        padding: 10px;
}
.chart-container .chart-wrap .chart-content .content-wrap .chart-inner[data-v-2061a616] {
          border-radius: 10px;
          background: #fff;
}
.filter-box[data-v-2061a616] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #666666;
}
.filter-box span[data-v-2061a616] {
    margin-right: 0.09rem;
}
.filter-box .show-img[data-v-2061a616] {
    width: 0.17rem;
    height: 0.12rem;
}
.popup-wrap[data-v-2061a616] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-2061a616] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-2061a616] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-2061a616] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-2061a616] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-2061a616] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-2061a616] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-2061a616] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-2061a616] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-2061a616] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-2061a616] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-2061a616] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-2061a616] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: PingFang SC;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-2061a616] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-2061a616] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-2061a616] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}
[data-v-2061a616] .show-content {
  background: #ffffff !important;
}
[data-v-2061a616].show-img {
  width: .19rem !important;
  height: 5px !important;
}

.legned-content[data-v-024538ae] {
  padding: 0 0.3rem;
}





































































































.legend-box[data-v-1a394092] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.legend-item[data-v-1a394092] {
  width: 50%;
  margin-bottom: 0.3rem;
}
.item-top[data-v-1a394092] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.15rem;
}
.item-color[data-v-1a394092] {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.13rem;
}
.item-name[data-v-1a394092] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  margin-right: 0.11rem;
  overflow: hidden;
  white-space: nowrap;
}
.item-proportion[data-v-1a394092] {
  font-size: 0.27rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.item-vlaue[data-v-1a394092] {
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333333;
}
.disabled[data-v-1a394092] {
  color: #999999 !important;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-3ddaba69] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-3ddaba69] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-3ddaba69] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-3ddaba69] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-3ddaba69] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-3ddaba69] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-3ddaba69] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-3ddaba69]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-3ddaba69]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-3ddaba69]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-3ddaba69]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-3ddaba69] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-3ddaba69] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-3ddaba69] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-3ddaba69] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-3ddaba69] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-3ddaba69] {
  color: #333333 !important;
}
.flex-jus-between[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex-jus-center[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-center[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-container[data-v-3ddaba69] {
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.detail-inner[data-v-3ddaba69] {
  overflow-y: auto;
  height: calc(100vh - 2.91rem);
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.detail-box[data-v-3ddaba69] {
  top: 2.91rem;
  left: 0;
  right: 0;
}
.top-text[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666666;
}
.active-text[data-v-3ddaba69] {
  color: #5076b8;
}
.top-t[data-v-3ddaba69] {
  height: 1.28rem;
  background: #ffffff;
}
.top-t-inner[data-v-3ddaba69] {
  padding: 0.4rem 0.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-t-select[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.inner-item[data-v-3ddaba69] {
  margin-top: 0.27rem;
}
.item-top[data-v-3ddaba69] {
  height: 2.4rem;
  background: #ffffff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.item-searchTop[data-v-3ddaba69] {
  height: 2rem;
  background: #ffffff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.i-top-content[data-v-3ddaba69] {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.i-top-c-inner[data-v-3ddaba69] {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.go-img[data-v-3ddaba69] {
  height: 2rem;
  position: absolute;
  bottom: 0;
  right: -0.5rem;
  z-index: 1;
}
.i-top-inner[data-v-3ddaba69] {
  padding: 0.4rem;
}
.t-i-t[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 0.25rem;
}
.month-l[data-v-3ddaba69] {
  font-size: 0.64rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #5076b8;
  margin-right: 3px;
}
.month-r[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #5076b8;
  margin-right: 3px;
}
.month-t[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  margin-right: 10px;
}
.triangle-img[data-v-3ddaba69] {
  width: 0.23rem;
  height: 0.16rem;
}
.t-i-b[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.t-i-b-text[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.t-i-b-l[data-v-3ddaba69] {
  margin-right: 0.39rem;
}
.line[data-v-3ddaba69] {
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.item-content[data-v-3ddaba69] {
  background: #ffffff;
}
.item-content-inner[data-v-3ddaba69] {
  padding: 0.4rem 0.4rem 0;
}
.i-c-item[data-v-3ddaba69] {
  margin-bottom: 0.37rem;
}
.i-c-i-time[data-v-3ddaba69] {
  width: 1.09rem;
  height: 0.49rem;
  background: #dce4f1;
  border-radius: 5px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #5076b8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.4rem;
}
.i-c-i-item[data-v-3ddaba69] {
  margin-top: 0.4rem;
}
.i-c-i-item-money[data-v-3ddaba69] {
  margin-bottom: 0.4rem;
}
.i-c-i-item-address[data-v-3ddaba69] {
  margin-bottom: 0.28rem;
}
.item-money-name[data-v-3ddaba69] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-right: 0.29rem;
}
.item-money-tab[data-v-3ddaba69] {
  padding: 0 0.1rem;
  background: #ffffff;
  border: 1px solid #5076b8;
  border-radius: 4px;
  font-size: 0.27rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #5076b8;
}
.item-money-money[data-v-3ddaba69] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #333333;
}
.item-address[data-v-3ddaba69] {
  width: 80%;
}
.item-address-text[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #666666;
}
.item-approval-text[data-v-3ddaba69] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
}
.green[data-v-3ddaba69] {
  color: #3bb66f;
}
.blue[data-v-3ddaba69] {
  color: #5076b8;
}
.brown[data-v-3ddaba69] {
  color: #999999;
}
.empty-content[data-v-3ddaba69] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}
.empty-text[data-v-3ddaba69] {
  margin-top: 0.57rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-539a3998] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-539a3998] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-539a3998] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-539a3998] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-539a3998] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-539a3998] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-539a3998] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-539a3998] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-539a3998]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-539a3998]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-539a3998]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-539a3998]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-539a3998] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-539a3998] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-539a3998] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-539a3998] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-539a3998] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-539a3998] {
  color: #333333 !important;
}
.new-container[data-v-539a3998] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.new-container .new-wrap[data-v-539a3998] {
    width: 100%;
    height: 100%;
    background: #f7f8fc;
}
.new-container .new-title[data-v-539a3998] {
    width: 100%;
    height: 0.4rem;
    padding: 0.3rem 0.39rem 0;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
}
.new-container .content[data-v-539a3998] {
    height: calc(100vh - 1.63rem - 1.28rem);
}
.new-container .content .scroll-box[data-v-539a3998] {
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.new-container .content .scroll-box .box-wrap[data-v-539a3998] {
        height: 100%;
        margin: 0 0.26rem;
}
.customer-wrap[data-v-539a3998] {
  position: relative;
  margin: 10px 0;
  padding: 15px 15px 5px;
  border-radius: 10px;
  font-size: 0.34rem;
  background-color: #fff;
  overflow: hidden;
}
.red-spot[data-v-539a3998] {
  position: absolute;
  top: -2px;
  right: -5px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #e75e58;
}
.cusDetail-wrap[data-v-539a3998] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cusName[data-v-539a3998] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #666666;
}
.cusName-title[data-v-539a3998] {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333;
}
.cuslist-info-wrap[data-v-539a3998] {
  width: 100%;
  color: #191f25;
}
.cuslist-info-wrap div[data-v-539a3998] {
  /* white-space: normal; */
}
.cuslist-info-wrap .cusName[data-v-539a3998] {
  color: #191f25;
}
/* 厨衣木等小标签 */
.typeLabel[data-v-539a3998] {
  display: inline-block;
  width: 12px;
  height: 12px;
  line-height: 13px;
  text-align: center;
  font-size: 9px;
  margin: 0 2px;
  border-radius: 2px;
}
.typeLabel[data-v-539a3998]:nth-child(2) {
  margin-left: 8px;
  color: #3585ff;
  border: 1px solid #3585ff;
}
.typeLabel[data-v-539a3998]:nth-child(3) {
  color: #eb8e08;
  border: 1px solid #eb8e08;
}
.typeLabel[data-v-539a3998]:nth-child(4) {
  color: #f84343;
  border: 1px solid #f84343;
}
.typeLabel[data-v-539a3998]:nth-child(5) {
  color: #3bb66f;
  border: 1px solid #3bb66f;
}
/* 标签 */
.label-wrap[data-v-539a3998] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}
.label-item[data-v-539a3998]:nth-child(5n + 1) {
  margin: 0 5px 10px 0;
}
.label-item[data-v-539a3998]:nth-child(5n + 5) {
  margin: 0 0 10px 5px;
}
.label-item[data-v-539a3998] {
  width: calc((100% - 40px) / 5);
  text-align: center;
  color: #999999;
  font-size: .32rem;
  margin: 0 5px 10px;
  padding: .1rem;
  border-radius: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #e8ebf1;
}
/* 侧边筛选栏 */
.demo1-item[data-v-539a3998] {
  border: 1px solid #ececec;
}
.demo1-item-selected[data-v-539a3998] {
  border: 1px solid #5076b8;
  color: #5076b8 !important;
}
.filter-btn[data-v-539a3998] {
  display: inline-block;
  width: 45%;
  background-color: #5076b8;
  color: #fff;
  font-size: 0.4rem;
  margin-top: 15px;
}
.cusDetail_wrap-bottom[data-v-539a3998] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
  padding-bottom: .27rem;
}
.cuslist-tag-doing[data-v-539a3998] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
  color: #ffffff !important;
}
.cuslist-tag-scuess[data-v-539a3998] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
  color: #ffffff !important;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-207781b8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-207781b8] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-207781b8] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-207781b8] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-207781b8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-207781b8] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-207781b8] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-207781b8] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-207781b8]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-207781b8]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-207781b8]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-207781b8]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-207781b8] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-207781b8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-207781b8] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-207781b8] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-207781b8] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-207781b8] {
  color: #333333 !important;
}
.new-container[data-v-207781b8] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.new-container .new-wrap[data-v-207781b8] {
    width: 100%;
    height: 100%;
    background: #ebebeb;
}
.new-container .new-title[data-v-207781b8] {
    width: 100%;
    height: 0.4rem;
    padding: 0.3rem 0.39rem 0;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
}
.new-container .content[data-v-207781b8] {
    height: calc(100vh - 1.63rem - 1.28rem);
}
.new-container .content .scroll-box[data-v-207781b8] {
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.new-container .content .scroll-box .box-wrap[data-v-207781b8] {
        height: 100%;
        margin: 0 0.3rem;
}
.report_item[data-v-207781b8] {
  background: #ffffff;
  margin-top: 0.27rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-207781b8] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-207781b8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-207781b8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-left-icon[data-v-207781b8] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-207781b8] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.item-top-add-right[data-v-207781b8] {
  width: 70%;
  text-align: end;
}
.item-top-add-right-icon[data-v-207781b8] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-207781b8] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-207781b8] {
  padding: 0.32rem 0.29rem 0.32rem 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-207781b8] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item_top[data-v-207781b8] {
  padding: 0.32rem 0.29rem 0.1rem 0.51rem;
}
.item-top-inner[data-v-207781b8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-207781b8] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item-top-approval[data-v-207781b8] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
}
.green-color[data-v-207781b8] {
  background: #3bb66f !important;
}
.red-color[data-v-207781b8] {
  background: red;
}
.brown-color[data-v-207781b8] {
  background: #e0e0e0 !important;
  color: #999999 !important;
}
.item-top-approval-inner[data-v-207781b8] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-207781b8] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-207781b8] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-207781b8] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-207781b8] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
.black-color[data-v-207781b8] {
  color: #333333 !important;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-b29bc8a4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-b29bc8a4] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-b29bc8a4] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-b29bc8a4] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-b29bc8a4] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-b29bc8a4] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-b29bc8a4] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-b29bc8a4] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-b29bc8a4]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-b29bc8a4]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-b29bc8a4]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-b29bc8a4]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-b29bc8a4] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-b29bc8a4] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-b29bc8a4] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-b29bc8a4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-b29bc8a4] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-b29bc8a4] {
  color: #333333 !important;
}
.new-container[data-v-b29bc8a4] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.new-container .new-wrap[data-v-b29bc8a4] {
    width: 100%;
    height: 100%;
    background: #ebebeb;
}
.new-container .new-title[data-v-b29bc8a4] {
    width: 100%;
    height: 0.4rem;
    padding: 0.3rem 0.39rem 0;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
}
.new-container .content[data-v-b29bc8a4] {
    height: calc(100vh - 1.63rem - 1.28rem);
}
.new-container .content .scroll-box[data-v-b29bc8a4] {
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.new-container .content .scroll-box .box-wrap[data-v-b29bc8a4] {
        height: 100%;
        margin: 0 0.3rem;
}
.report_item[data-v-b29bc8a4] {
  background: #ffffff;
  margin-top: 0.27rem;
  border-radius: 0.13rem;
}
.item-top-id[data-v-b29bc8a4] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item-top-add[data-v-b29bc8a4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0.33rem 0;
}
.item-top-add-left[data-v-b29bc8a4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 30%;
}
.item-top-add-left-icon[data-v-b29bc8a4] {
  width: 0.33rem;
  height: 0.39rem;
  margin-right: 0.13rem;
}
.item-top-add-value[data-v-b29bc8a4] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.item-top-add-right[data-v-b29bc8a4] {
  width: 70%;
  text-align: end;
}
.item-top-add-right-icon[data-v-b29bc8a4] {
  width: 0.16rem;
  height: 0.29rem;
  margin-left: 0.19rem;
}
.line[data-v-b29bc8a4] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-b29bc8a4] {
  padding: 0.32rem 0.29rem 0.32rem 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-b29bc8a4] {
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item_top[data-v-b29bc8a4] {
  padding: 0.32rem 0.29rem 0.1rem 0.51rem;
}
.item-top-inner[data-v-b29bc8a4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item-top-inner-id[data-v-b29bc8a4] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.item-top-approval[data-v-b29bc8a4] {
  background: #5076b8;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
}
.green-color[data-v-b29bc8a4] {
  background: #3bb66f !important;
}
.red-color[data-v-b29bc8a4] {
  background: red;
}
.brown-color[data-v-b29bc8a4] {
  background: #e0e0e0 !important;
  color: #999999 !important;
}
.item-top-approval-inner[data-v-b29bc8a4] {
  padding: 0.12rem 0.24rem;
}
.font[data-v-b29bc8a4] {
  font-size: 0.35rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.top_overflow[data-v-b29bc8a4] {
  width: 7.17rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.11rem;
  font-size: 0.3rem;
}
.icon[data-v-b29bc8a4] {
  width: 1.52rem;
  height: 2.11rem;
  position: absolute;
  top: 3.73rem;
  left: 4.24rem;
}
.report_box[data-v-b29bc8a4] {
  position: absolute;
  top: 6.21rem;
  width: 100%;
}
.black-color[data-v-b29bc8a4] {
  color: #333333 !important;
}

@charset "UTF-8";
.right-box[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-t[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-b[data-v-c9e2c498] {
  border-radius: 6px;
}
.right-box .tab-r-t-wrap[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-t .tab-r-t-wrap[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-b .tab-r-t-wrap[data-v-c9e2c498] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.27rem 0.27rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.right-box .tab-r-t-wrap .img-box[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-t .tab-r-t-wrap .img-box[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-b .tab-r-t-wrap .img-box[data-v-c9e2c498] {
      margin-right: 0;
}
.right-box .tab-r-t-wrap .money-text[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-t .tab-r-t-wrap .money-text[data-v-c9e2c498], .collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-b .tab-r-t-wrap .money-text[data-v-c9e2c498] {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
}
.collectList-container[data-v-c9e2c498] {
  height: 100vh;
  background: #f7f8fc;
}
.collectList-container .fixed-tab[data-v-c9e2c498] {
    position: relative;
    width: 100%;
    height: 3.35rem;
}
.collectList-container .fixed-tab .tab-wrap[data-v-c9e2c498] {
      padding: 0.24rem 0.3rem;
}
.collectList-container .fixed-tab .tab-wrap .tab-content[data-v-c9e2c498] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #ffffff;
        padding: 0.37rem 0.4rem;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        border-radius: 6px;
}
.collectList-container .fixed-tab .tab-wrap .tab-content .tab-l[data-v-c9e2c498] {
          background: #e3eafe;
          border-radius: 6px;
          width: 40%;
}
.collectList-container .fixed-tab .tab-wrap .tab-content .tab-l .tab-l-warp[data-v-c9e2c498] {
            padding: 0.4rem 0.27rem 0.37rem;
}
.collectList-container .fixed-tab .tab-wrap .tab-content .tab-r[data-v-c9e2c498] {
          width: 56%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-t[data-v-c9e2c498] {
            background: #d7f5ec;
}
.collectList-container .fixed-tab .tab-wrap .tab-content .tab-r .tab-r-b[data-v-c9e2c498] {
            background: #fae7e5;
}
.collectList-container .collect-content[data-v-c9e2c498] {
    position: relative;
    width: 100%;
    height: calc(100vh - 3.35rem);
    background: #f7f8fc;
    overflow-y: scroll;
}
.collectList-container .collect-content .app_item[data-v-c9e2c498] {
      background: #fff;
      border-radius: 5px;
      margin: 0 0.3rem 0.3rem;
}
.img-box[data-v-c9e2c498] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.img-box img[data-v-c9e2c498] {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.11rem;
}
.img-box span[data-v-c9e2c498] {
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.money-text[data-v-c9e2c498] {
  font-size: 0.36rem;
  font-family: PingFang SC;
  font-weight: 800;
  color: #333;
  overflow-wrap: anywhere;
}
/* 新建按钮 */
.empty-bottom[data-v-c9e2c498] {
  width: 100%;
  height: 2.21rem;
  background: #ffffff;
  position: relative;
}
.empty-bottom .empty-bottom-inner[data-v-c9e2c498] {
    padding: 0.53rem 0.4rem 0.64rem;
    height: 1.04rem;
}
.empty-bottom .empty-bottom-inner .empty-bottom-inner-button[data-v-c9e2c498] {
      width: 100%;
      height: 100%;
      background: #5076b8;
}
.border-bottom-1px[data-v-c9e2c498]::after {
  position: relative;
  top: 13px;
  border-bottom: 1px solid #3c3c43;
}
.approval-label[data-v-c9e2c498] {
  width: 36px;
  height: 16px;
  margin-left: 10px;
}
/* 列表 */
.app_inner[data-v-c9e2c498] {
  padding: 0.37rem 0.35rem 0;
}
.item_top[data-v-c9e2c498] {
  padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.item-top-id[data-v-c9e2c498] {
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item_content[data-v-c9e2c498] {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_title[data-v-c9e2c498] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.content_value[data-v-c9e2c498] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.line[data-v-c9e2c498] {
  height: 1px;
  background: #eeeeee;
  width: 100%;
}
.report_bottom[data-v-c9e2c498] {
  padding: 0.3rem 0.51rem 0.25rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom_time[data-v-c9e2c498] {
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}
.bottom_r[data-v-c9e2c498] {
  background: #3975c6;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #ffffff;
}
.approval-accept[data-v-c9e2c498] {
  background: #3bb66f;
}
.approval-reback[data-v-c9e2c498] {
  background: #e75805;
}
.bottom-r-inner[data-v-c9e2c498] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-c9e2c498] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-7dcdfa7f] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-7dcdfa7f] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-7dcdfa7f] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-7dcdfa7f] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-7dcdfa7f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-7dcdfa7f] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-7dcdfa7f] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-7dcdfa7f] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7dcdfa7f]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7dcdfa7f]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7dcdfa7f]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-7dcdfa7f]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-7dcdfa7f] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-7dcdfa7f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-7dcdfa7f] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-7dcdfa7f] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-7dcdfa7f] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-7dcdfa7f] {
  color: #333333 !important;
}
.container[data-v-7dcdfa7f] {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #ebebeb;
}
.container .con-wrap[data-v-7dcdfa7f] {
    width: 100%;
    height: 100%;
}
.container .app-top .top-inner[data-v-7dcdfa7f] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
}
.container .content[data-v-7dcdfa7f] {
    height: calc(100vh - 1.28rem);
    overflow-y: scroll;
}
.container .content .content-wrap[data-v-7dcdfa7f] {
      padding: 0.3rem 0.23rem;
}
.container .content .content-wrap .content-inner[data-v-7dcdfa7f] {
        background: #ffffff;
        border-radius: 5px;
        padding: 0.3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.component-container[data-v-b11c8556] {
  width: 50%;
}
.component-container .comp-wrap[data-v-b11c8556] {
    padding: 0.1rem 0.1rem;
}
.component-container .comp-wrap .comp-content[data-v-b11c8556] {
      padding: 0.33rem 0.27rem;
      border-radius: 5px;
}
.component-container .comp-wrap .comp-content img[data-v-b11c8556] {
        width: 0.35rem;
        height: 0.35rem;
        margin-bottom: 0.1rem;
}
.component-container .comp-wrap .comp-content .money-text[data-v-b11c8556] {
        font-size: 0.48rem;
        font-family: PingFang SC;
        font-weight: 800;
        color: #333333;
        margin-bottom: 0.04rem;
}
.component-container .comp-wrap .comp-content .title-text[data-v-b11c8556] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
}
.color1[data-v-b11c8556] {
  background: #ecf2fc;
}
.color2[data-v-b11c8556] {
  background: #fff4ec;
}
.color3[data-v-b11c8556] {
  background: #fef0ef;
}
.color4[data-v-b11c8556] {
  background: #eff5fc;
}
.color5[data-v-b11c8556] {
  background: #eef9f4;
}
.color6[data-v-b11c8556] {
  background: #fffae8;
}
.color7[data-v-b11c8556] {
  background: #ebf7f9;
}
.color8[data-v-b11c8556] {
  background: #fff8ec;
}
.color9[data-v-b11c8556] {
  background: #faf3fc;
}
.color10[data-v-b11c8556] {
  background: #edeff5;
}
.color11[data-v-b11c8556] {
  background: #f4f0fb;
}

.img-wrap[data-v-620fc132] {
  margin: 0 !important;
}
.img-wrap img[data-v-620fc132] {
    margin-right: 0.25rem;
    width: 1.87rem;
    height: 1.87rem;
    border-radius: 5px;
}
.container[data-v-620fc132] {
  width: 100%;
  height: 100vh;
  background: #ebebeb;
}
.container .scroll_box[data-v-620fc132] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.container .scroll_box .wrap[data-v-620fc132] {
      padding: 0.3rem;
}
.container .scroll_box .wrap .content[data-v-620fc132] {
        width: 100%;
        height: 100%;
}
.container .scroll_box .wrap .content .section[data-v-620fc132] {
          border-radius: 5px;
}
.container .scroll_box .wrap .content .section .section_title[data-v-620fc132] {
            font-size: 0.4rem;
            font-family: Source Han Sans CN;
            font-weight: 550;
            color: #333333;
            margin-bottom: 0.25rem;
}
.container .scroll_box .wrap .content .section .section_wrap[data-v-620fc132] {
            background: #ffffff;
            border-radius: 7px;
}
.container .scroll_box .wrap .content .section .section_wrap .section_content[data-v-620fc132] {
              border-radius: 7px;
}
.container .scroll_box .wrap .content .section .section_wrap .section_content .van-cell-group[data-v-620fc132] {
                border-radius: 7px;
}
.container .scroll_box .wrap .content .section .section_wrap .section_content .van-cell-group .van-cell[data-v-620fc132] {
                  border-radius: 7px;
}
.container .scroll_box .wrap .content .section .section_wrap .section_content .van-cell-group .van-cell .van-cell__title[data-v-620fc132] {
                    font-size: 0.37rem;
                    font-family: Source Han Sans CN;
                    font-weight: 400;
                    color: #333333;
}

@charset "UTF-8";
.people-manage[data-v-26a8c0d7] {
  width: 100vw;
  height: 100vh;
}
.empty-img[data-v-26a8c0d7] {
  width: 3.12rem;
  height: 2.8rem;
  margin-top: 4.36rem;
}
.box_font[data-v-26a8c0d7] {
  margin-top: 0.64rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.box_top[data-v-26a8c0d7] {
  text-align: center;
  width: 100%;
  margin-bottom: 0.3rem;
}
.box_bottom[data-v-26a8c0d7] {
  text-align: center;
  width: 100%;
}
/* 内容 */
.wrap[data-v-26a8c0d7] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
}
.wrap .top-ctn[data-v-26a8c0d7] {
    background: -webkit-gradient(linear, left top, left bottom, from(#4575c7), to(#97b0e0));
    background: linear-gradient(#4575c7, #97b0e0);
    padding: 0 0.27rem;
    padding-bottom: 10px;
}
.wrap .main-ctn[data-v-26a8c0d7] {
    background: #f7f8fc;
    padding: 0.19rem 0.27rem 0;
    border-radius: 0.14rem;
    margin-top: -10px;
    position: relative;
}
.wrap .padding100[data-v-26a8c0d7] {
    padding-top: 100px;
}
.wrap .card_menus[data-v-26a8c0d7] {
    margin-bottom: 0.19rem;
}
.wrap .card_menus .card_item[data-v-26a8c0d7] {
      background-color: #ffffff;
      color: #333;
}
.wrap .card_menus .card_item .card_item-label[data-v-26a8c0d7] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.wrap .card_menus .card_item .card_item-label .card_item-title[data-v-26a8c0d7] {
          margin-left: 12px;
          font-size: 0.37rem;
          font-family: PingFang;
          font-weight: 400;
          color: #333333;
}
.wrap .card_menus .card_item .card_item-right .card_item-tag[data-v-26a8c0d7] {
        margin-right: 0.2rem;
        padding: 0.06rem 0.28rem;
        background: #dd1212;
        border-radius: 0.11rem;
        font-size: 0.27rem;
        font-weight: 500;
        color: #ffffff;
        padding: 0.1rem 0.28rem;
}
.wrap .card_menus .card-icon[data-v-26a8c0d7] {
      width: 15px;
      height: 13px;
}
.wrap .card_menus .card-arrow[data-v-26a8c0d7] {
      width: 0.13rem;
}
.wrap .card_menus .card-default[data-v-26a8c0d7] {
      padding: 0.43rem 0.4rem;
      border-radius: 0.27rem;
}
.wrap .card_menus .card-default .card-content[data-v-26a8c0d7] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.wrap .pm-header[data-v-26a8c0d7] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding: 0.61rem 0.4rem 0 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.56rem;
}
.wrap .pm-header .pm-header-l .pm-header-name[data-v-26a8c0d7] {
      font-size: 0.53rem;
      font-family: PingFang;
      font-weight: bold;
      color: #ffffff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
.wrap .pm-header .pm-header-l .pm-header-name span[data-v-26a8c0d7] {
        margin-left: 0.21rem;
        margin-top: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid #ffffff;
        border-radius: 4px;
        font-size: 0.32rem;
        font-weight: 500;
        height: 0.53rem;
        line-height: 0.56rem;
        padding: 0 0.19rem;
}
.wrap .pm-header .pm-header-l .pm-header-corp[data-v-26a8c0d7] {
      margin-top: 0.4rem;
      font-size: 0.37rem;
      font-weight: 400;
      color: #ffffff;
      opacity: 0.9;
}
.wrap .pm-header .pm-header-r img[data-v-26a8c0d7] {
      width: 1.65rem;
      height: 1.65rem;
      border-radius: 50%;
      border: 2px solid #ffffff;
}
.wrap .pm-card[data-v-26a8c0d7] {
    background-color: #ffffff;
    border-radius: 0.27rem;
    padding: 0.13rem 0.4rem;
    margin-bottom: 0.19rem;
}
.wrap .pm-card .pm-card-item[data-v-26a8c0d7] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 0.4rem 0;
}
.wrap .pm-card .pm-card-l[data-v-26a8c0d7] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.wrap .pm-card .pm-card-l span[data-v-26a8c0d7] {
        margin-left: 0.29rem;
        font-size: 0.37rem;
        font-family: PingFang;
        font-weight: 400;
        color: #333333;
}
.wrap .pm-card .pm-card-r img[data-v-26a8c0d7] {
      width: 0.13rem;
      height: 0.21rem;
}
.sign11-14[data-v-26a8c0d7] {
  width: 11px;
  height: 14px;
  margin-left: 1px;
}
.sign13-13[data-v-26a8c0d7] {
  width: 13px;
  height: 13px;
}
.sign13-14[data-v-26a8c0d7] {
  width: 13px;
  height: 14px;
}
.sign15-15[data-v-26a8c0d7] {
  width: 15px;
  height: 15px;
}
.sign15-14[data-v-26a8c0d7] {
  width: 14px;
  height: 17px;
}
.sign14-13[data-v-26a8c0d7] {
  width: 15px;
  height: 13px;
}
.sign15-13[data-v-26a8c0d7] {
  width: 15px;
  height: 13px;
}
.dialog-main[data-v-26a8c0d7] {
  padding: 30px 0;
  text-align: center;
}

.card-default[data-v-5cc4b4de] {
  background: url(https://oss.guango.com.cn/common/qw/images/billManage.png) no-repeat;
  background-size: 100%;
  padding: 0.25rem 0.3rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.2rem;
}
.card-default .card_show-content .card_show-label[data-v-5cc4b4de] {
    margin-bottom: 0.15rem;
}
.card-default .card_show-content .card_show-label .card_show-title[data-v-5cc4b4de] {
      font-size: 0.49rem;
      font-weight: 400;
      color: #ffca85;
}
.card-default .card_show-content .card_show-label .card_show-tag[data-v-5cc4b4de] {
      font-size: 0.32rem;
      font-weight: 500;
      color: #ffca85;
      margin-left: 0.2rem;
}
.card-default .card_show-content .card_show-note[data-v-5cc4b4de] {
    font-size: 0.32rem;
    font-weight: 500;
    color: #ffffff;
}
.card-default .card_show-btn[data-v-5cc4b4de] {
    background: -webkit-gradient(linear, left top, right top, from(#ffe6c2), to(#ffcc88));
    background: linear-gradient(90deg, #ffe6c2 0%, #ffcc88 100%);
    -webkit-box-shadow: 0rem 0rem 0rem 0rem rgba(255, 216, 164, 0.29);
            box-shadow: 0rem 0rem 0rem 0rem rgba(255, 216, 164, 0.29);
    border-radius: 0.14rem;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: bold;
    color: #9d540e;
    height: 0.65rem;
    line-height: 0.65rem;
    padding: 0 0.22rem;
}

.simide-ctn[data-v-617b1ea0] {
  margin-bottom: 0.19rem;
}
.card_menus[data-v-617b1ea0] {
  margin-bottom: 0.19rem;
}
.card_menus .card_item[data-v-617b1ea0] {
    background-color: #ffffff;
    color: #333;
}
.card_menus .card-arrow[data-v-617b1ea0] {
    width: 0.13rem;
}
.card-ctn[data-v-617b1ea0] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 0 !important;
}
.card-ctn > .card-item[data-v-617b1ea0]:first-of-type {
    margin-right: 10px;
    background: #D7E3F4;
}
.card-ctn > .card-item:first-of-type .num-ctn[data-v-617b1ea0] {
      color: #3975C6;
}
.card-ctn .card-item[data-v-617b1ea0] {
    border-radius: 5px;
    background: #DFD4F2;
    padding: 10px 15px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.card-ctn .card-item .card-item-top[data-v-617b1ea0] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 10px;
}
.card-ctn .card-item .card-item-top .top-left-ctn[data-v-617b1ea0] {
        font-weight: 400;
        font-size: 14px;
        color: #333333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.card-ctn .card-item .card-item-top .top-left-ctn img[data-v-617b1ea0] {
          width: 14px;
          height: 13px;
          margin-right: 4px;
}
.card-ctn .card-item .num-ctn[data-v-617b1ea0] {
      font-weight: 600;
      font-size: 18px;
      color: #9571D3;
}
.account-manage .header-ctn[data-v-617b1ea0] {
  background: linear-gradient(234deg, #d9e3f3 0%, #EEF3FC 100%);
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  position: relative;
}
.account-manage .header-ctn .item-ctn[data-v-617b1ea0] {
    margin-right: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #666666;
}
.account-manage .header-ctn .select_item[data-v-617b1ea0] {
    color: #3975C6;
    font-weight: bold;
}
.account-manage .header-ctn .bottom-line[data-v-617b1ea0] {
    width: 16px;
    height: 3px;
    background: #3975C6;
    position: absolute;
    bottom: 0;
    left: 34px;
}
.account-manage .header-ctn .select_line[data-v-617b1ea0] {
    left: 108px;
}
.account-manage .main-ctn[data-v-617b1ea0] {
  background: #fff;
  padding: 18px 16px;
  border: 1px solid;
  -o-border-image: linear-gradient(-65deg, #D1DEF1, #EEF3FC) 10 10;
     border-image: linear-gradient(-65deg, #D1DEF1, #EEF3FC) 10 10;
  border-radius: 0px 0px 5px 5px;
}
.account-manage .main-ctn .main-title-ctn[data-v-617b1ea0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 400;
    font-size: 12px;
    color: #333333;
    border-bottom: 1px solid #e4e3e3;
    padding-bottom: 12px;
}
.account-manage .main-ctn .main-title-ctn .title-left[data-v-617b1ea0] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.account-manage .main-ctn .main-title-ctn .title-left .arrow-down[data-v-617b1ea0] {
        margin-left: 4px;
}
.account-manage .main-ctn .main-title-ctn .arrow-right[data-v-617b1ea0] {
      width: 0.13rem;
      margin-left: 8px;
}
.account-manage .main-ctn .main-num-ctn[data-v-617b1ea0] {
    font-weight: 800;
    font-size: 21px;
    color: #3975C6;
    padding: 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
}
.account-manage .main-ctn .main-num-ctn .unit[data-v-617b1ea0] {
      font-size: 14px;
}
.account-manage .main-ctn .main-num-ctn .num-inner[data-v-617b1ea0] {
      font-weight: 400;
      font-size: 14px;
      color: #333333;
      margin-left: 4px;
}
.account-manage .main-ctn .main-num-ctn .num-inner span[data-v-617b1ea0] {
        color: #da291c;
}
.account-manage .main-ctn .main-list-ctn[data-v-617b1ea0] {
    background: #F7F8FC;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
}
.account-manage .main-ctn .main-list-ctn .item-ctn[data-v-617b1ea0] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 400;
      font-size: 14px;
      color: #333333;
}
.account-manage .main-ctn .main-list-ctn .item-ctn img[data-v-617b1ea0] {
        width: 15px;
        margin-right: 12px;
}
.account-manage .main-ctn .main-list-ctn .item-ctn .item-right[data-v-617b1ea0] {
        font-weight: 800;
        font-size: 16px;
        color: #60B28E;
}
.account-manage .main-ctn .main-list-ctn .second-item[data-v-617b1ea0] {
      margin-top: 6px;
}
.account-manage .main-ctn .main-list-ctn .second-item .item-right[data-v-617b1ea0] {
        color: #9571D3;
}

.circle-box[data-v-5aa9bbc8] {
  width: 0.58rem;
  height: auto;
  position: relative;
}
.circle-box .circle[data-v-5aa9bbc8] {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: #cad6ea;
    position: relative;
    margin-top: 0.1rem;
}
.flow-container[data-v-5aa9bbc8] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #ebebeb;
}
.flow-container .flow-wrap[data-v-5aa9bbc8] {
    padding: 0.3rem;
}
.flow-container .flow-wrap .flow-content[data-v-5aa9bbc8] {
      width: 100%;
      height: 100%;
      overflow-y: scroll;
      background: #ffffff;
      border-radius: 7px;
}
.flow-container .flow-wrap .flow-content .flow-inner[data-v-5aa9bbc8] {
        padding: 0.4rem 0.3rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item[data-v-5aa9bbc8] {
          min-height: 1.5rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .circle-box .circle[data-v-5aa9bbc8]::before {
            content: '';
            position: absolute;
            width: 0.16rem;
            height: 0.16rem;
            background: #5076b8;
            border-radius: 50%;
            top: 0.07rem;
            left: 0.07rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .circle-box[data-v-5aa9bbc8]::before {
            content: '';
            position: absolute;
            width: 0.03rem;
            height: 100%;
            background: #5076b8;
            top: 0.17rem;
            left: 0.135rem;
            z-index: 2;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .end-box[data-v-5aa9bbc8]::before {
            content: '';
            position: absolute;
            width: 0rem;
            height: 0;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box[data-v-5aa9bbc8] {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .line[data-v-5aa9bbc8] {
              width: 100%;
              height: 0.01rem;
              background: #ebebeb;
              margin: 0.25rem 0;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content[data-v-5aa9bbc8] {
              width: 100%;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .title-box[data-v-5aa9bbc8] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .title-box .item-content-icon[data-v-5aa9bbc8] {
                  width: 0.29rem;
                  height: 0.29rem;
                  margin-right: 0.21rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .title-box .item-content-title[data-v-5aa9bbc8] {
                  font-size: 0.37rem;
                  font-family: Source Han Sans CN;
                  font-weight: 400;
                  color: #333333;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .item-content-wrap .title-type[data-v-5aa9bbc8] {
                margin-left: 0.5rem;
                font-size: 0.32rem;
                font-family: Source Han Sans CN;
                font-weight: 400;
                color: #666666;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .employ-content .emplou-content-wrap[data-v-5aa9bbc8] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .employ-content .emplou-content-wrap img[data-v-5aa9bbc8] {
                  width: 0.67rem;
                  height: 0.67rem;
                  border-radius: 5px;
                  margin-right: 0.21rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .item-content .employ-content .emplou-content-wrap div[data-v-5aa9bbc8] {
                  font-size: 0.37rem;
                  font-family: Source Han Sans CN;
                  font-weight: 400;
                  color: #333333;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .copy-content[data-v-5aa9bbc8] {
              padding-bottom: 1rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .copy-content .copy-l[data-v-5aa9bbc8] {
                width: 40%;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .copy-content .copy-r[data-v-5aa9bbc8] {
                width: 60%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: horizontal;
                -webkit-box-direction: reverse;
                    -ms-flex-direction: row-reverse;
                        flex-direction: row-reverse;
                -ms-flex-wrap: wrap;
                    flex-wrap: wrap;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-content-box .copy-content .copy-r .emplou-content-wrap[data-v-5aa9bbc8] {
                  margin-left: 0.2rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-node-content[data-v-5aa9bbc8] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: baseline;
                -ms-flex-align: baseline;
                    align-items: baseline;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-node-content .title-box[data-v-5aa9bbc8] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-node-content .title-box .item-content-icon[data-v-5aa9bbc8] {
                width: 0.29rem;
                height: 0.29rem;
                margin-right: 0.21rem;
}
.flow-container .flow-wrap .flow-content .flow-inner .flow-item .item-node-content .title-box .item-content-title[data-v-5aa9bbc8] {
                font-size: 0.37rem;
                font-family: Source Han Sans CN;
                font-weight: 400;
                color: #333333;
}
.flow-container .flow-wrap .flow-content .flow-inner .end-item[data-v-5aa9bbc8] {
          min-height: 0;
}

.chart-container[data-v-44a1c3de] {
  background: #3975c6;
  height: 100vh;
}
.chart-container .chart-wrap[data-v-44a1c3de] {
    width: 100%;
    height: 100%;
    background: #f7f8fc;
    border-radius: 10px 10px 0px 0px;
}
.chart-container .chart-wrap .top-filter[data-v-44a1c3de] {
      padding-top: 15px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      background: #fff;
      border-radius: 10px 10px 0 0;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container[data-v-44a1c3de] {
        margin-left: 0 !important;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .show-content[data-v-44a1c3de] {
          background: #fff !important;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .shadow-content[data-v-44a1c3de] {
          background: #fff;
}
.chart-container .chart-wrap .top-filter .dropDown-sec-container > .value-content[data-v-44a1c3de] {
          background: #fff;
}
.chart-container .chart-wrap .chart-content[data-v-44a1c3de] {
      width: 100%;
      background: #f7f8fc;
      overflow-y: scroll;
}
.chart-container .chart-wrap .chart-content .content-wrap[data-v-44a1c3de] {
        padding: 10px;
}
.chart-container .chart-wrap .chart-content .content-wrap .chart-inner[data-v-44a1c3de] {
          border-radius: 10px;
          background: #fff;
}
.filter-box[data-v-44a1c3de] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #666666;
}
.filter-box span[data-v-44a1c3de] {
    margin-right: 0.09rem;
}
.filter-box .show-img[data-v-44a1c3de] {
    width: 0.17rem;
    height: 0.12rem;
}
.popup-wrap[data-v-44a1c3de] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-44a1c3de] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-44a1c3de] {
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-44a1c3de] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-44a1c3de] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-44a1c3de] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-44a1c3de] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-44a1c3de] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-44a1c3de] {
      width: 33.3%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 10px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-44a1c3de] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-44a1c3de] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-44a1c3de] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-44a1c3de] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-family: PingFang SC;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-44a1c3de] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-44a1c3de] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-44a1c3de] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}

.container[data-v-72d91108] {
  width: 100%;
  height: 100vh;
  background: #f7f8fc;
}
.container .wrap[data-v-72d91108] {
    width: 100%;
}
.container .wrap .content[data-v-72d91108] {
      padding: 15px 10px;
}
.container .wrap .content .cell-group[data-v-72d91108] {
        width: 100%;
}
.container .wrap .content .cell-group .cell[data-v-72d91108] {
          width: 100%;
}
.container .wrap .content .cell-group .cell .van-cell__title[data-v-72d91108] {
            width: 100%;
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #333333;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.container .wrap .content .cell-group .cell .van-cell__title .img-collect[data-v-72d91108] {
              width: 11px;
              height: 13px;
}
.container .wrap .content .cell-group .cell .van-cell__title .img-order[data-v-72d91108] {
              width: 12px;
              height: 11px;
}
.container .wrap .content .cell-group .cell .van-cell__title img[data-v-72d91108] {
              margin-right: 9px;
}
.container .wrap .content .cell-group .cell[data-v-72d91108]::after {
            border-bottom: 1px solid #f7f8fc;
}
.container .wrap .content .cell-group[data-v-72d91108]::after {
          border-width: 0px 0;
}
.van-cell-group[data-v-72d91108] {
  width: 100%;
  border-radius: 7px;
}
.van-cell-group .van-cell[data-v-72d91108] {
    width: 100%;
    border-radius: 7px;
}

.flex[data-v-d4dced88], .item_info_title[data-v-d4dced88], .collectList-container .wrap .collect-content .app_item .item_info .item_info_body[data-v-d4dced88] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.line[data-v-d4dced88] {
  background: #f7f8fc;
  width: 100%;
  height: 1px;
}
.item_info_title[data-v-d4dced88] {
  padding: 1px 0;
}
.item_info_title .info_title[data-v-d4dced88] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
.item_info_title .approval_type[data-v-d4dced88] {
    font-size: 10px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #24b277;
    border: 1px solid #24b277;
    border-radius: 5px;
    padding: 4px 7px;
}
.collectList-container[data-v-d4dced88] {
  min-height: 100vh;
  background: #f7f8fc;
}
.collectList-container .wrap[data-v-d4dced88] {
    padding: 15px 10px;
}
.collectList-container .wrap .collect-content[data-v-d4dced88] {
      position: relative;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.collectList-container .wrap .collect-content .app_item[data-v-d4dced88] {
        background: #fff;
        border-radius: 5px;
        margin-bottom: 10px;
}
.collectList-container .wrap .collect-content .app_item .item_info[data-v-d4dced88] {
          padding: 13px 16px;
}
.collectList-container .wrap .collect-content .app_item .item_info .item_info_body[data-v-d4dced88] {
            padding: 15px 0;
            font-family: PingFang SC;
            font-weight: 400;
}
.collectList-container .wrap .collect-content .app_item .item_info .item_info_body .body_title[data-v-d4dced88],
            .collectList-container .wrap .collect-content .app_item .item_info .item_info_body .body_value[data-v-d4dced88] {
              font-size: 14px;
              color: #333333;
}
.collectList-container .wrap .collect-content .app_item .item_info .item_info_body .info_time[data-v-d4dced88],
            .collectList-container .wrap .collect-content .app_item .item_info .item_info_body .info_user[data-v-d4dced88] {
              font-size: 12px;
              color: #666666;
}
.collectList-container .wrap .collect-content .app_item .follow_content[data-v-d4dced88] {
          padding: 0 16px 10px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .item_info_title[data-v-d4dced88] {
            margin-bottom: 13px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .item_info_title .info_title[data-v-d4dced88] {
              font-size: 14px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .item_info_title .follow_btn[data-v-d4dced88] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #ffffff;
              background: #3975c6;
              border-radius: 5px;
              padding: 6px 15px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box[data-v-d4dced88] {
            padding-left: 6px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list[data-v-d4dced88] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              padding-left: 15px;
              margin-bottom: 20px;
              position: relative;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-d4dced88] {
                font-size: 14px;
                font-family: PingFang SC;
                font-weight: 400;
                color: #333333;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                margin-bottom: 12px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_top .sync_name[data-v-d4dced88] {
                  margin-right: 15px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-d4dced88]::after {
                  content: '';
                  width: 6px;
                  height: 6px;
                  background: #5076b8;
                  border-radius: 50%;
                  position: absolute;
                  left: -3px;
                  z-index: 2;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-d4dced88]::before {
                  content: '';
                  position: absolute;
                  width: 12px;
                  height: 12px;
                  background: #cad6ea;
                  border-radius: 50%;
                  left: -6px;
                  z-index: 2;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_result[data-v-d4dced88] {
                font-size: 12px;
                font-family: PingFang SC;
                font-weight: 400;
                color: #666666;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
                margin-bottom: 10px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_result .sync_type[data-v-d4dced88] {
                  margin-right: 15px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list .sync_list_content .sync_bottom[data-v-d4dced88] {
                font-size: 12px;
                font-family: PingFang SC;
                font-weight: 400;
                color: #666666;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .sync_list[data-v-d4dced88]::after {
                content: '';
                position: absolute;
                width: 1px;
                height: calc(100% + 20px);
                background: #cad6ea;
                left: 0;
                top: 5px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_box .hide-line[data-v-d4dced88]::after {
              content: '';
              position: absolute;
              width: 0;
              height: calc(100% + 20px);
              background: #cad6ea;
              left: 0;
              top: 5px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_bottom[data-v-d4dced88] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            padding-left: 16px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_bottom img[data-v-d4dced88] {
              width: 10px;
              height: 10px;
              margin-right: 5px;
}
.collectList-container .wrap .collect-content .app_item .follow_content .follow_bottom span[data-v-d4dced88] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #999999;
}
.question_content .question_wrap[data-v-d4dced88] {
  padding: 17px 15px;
  background: #fff;
  border-radius: 7px;
}
.question_content .question_wrap .question_title[data-v-d4dced88] {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #333333;
}
.question_content .question_wrap .van-collapse[data-v-d4dced88]::after {
    border-width: 0px 0;
}
.question_content .question_wrap .van-collapse .van-collapse-item > .van-cell[data-v-d4dced88] {
    padding: 15px 0;
}
.question_content .question_wrap .van-collapse .van-collapse-item > .van-cell .van-cell__title[data-v-d4dced88] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
}
.question_content .question_wrap .van-collapse .van-collapse-item .van-collapse-item__wrapper .van-collapse-item__content .collapse_value[data-v-d4dced88] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.approval-accept[data-v-d4dced88] {
  color: #3975c6 !important;
  border: 1px solid #3975c6 !important;
}
.approval-reback[data-v-d4dced88] {
  background: #e75805;
}
.bottom-r-inner[data-v-d4dced88] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-d4dced88] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.success[data-v-d4dced88] {
  color: #24b277;
}
.fail[data-v-d4dced88] {
  color: #da291c;
}
.close-img[data-v-d4dced88] {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.container[data-v-ff525ea6] {
  width: 100%;
  height: 100vh;
  background: #f7f8fc;
  overflow: hidden;
  position: relative;
}
.container .wrap[data-v-ff525ea6] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.container .wrap .inner[data-v-ff525ea6] {
      padding: 15px 10px;
}
.container .wrap .inner .content[data-v-ff525ea6] {
        width: 100%;
        height: 100%;
        padding-bottom: 2.21rem;
}
.container .wrap .inner .content .business-info .cell-group .bussiness-info-title[data-v-ff525ea6] {
          padding: 15px 16px 5px;
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.collect-detail-item[data-v-ff525ea6] {
  margin-top: 0.3rem;
}
.collect-detail-item .van-group .detail-item-top[data-v-ff525ea6] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 17px 16px 5px;
}
.collect-detail-item .van-group .detail-item-top .item-top-text[data-v-ff525ea6] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
}
.van-cell-group[data-v-ff525ea6] {
  border-radius: 5px;
}
 > .van-cell[data-v-ff525ea6] {
  border-radius: 5px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
 > .van-cell .van-cell__title[data-v-ff525ea6] {
    font-size: 14px !important;
}
 > .van-cell .van-cell__value[data-v-ff525ea6] {
    color: #333;
}
 > .van-cell .van-cell__value .van-field__body .van-field__control[data-v-ff525ea6] {
      color: #333333;
}
.add_btn_box[data-v-ff525ea6] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.add_btn_box .sub_btn_box[data-v-ff525ea6] {
    height: 2.48rem;
    background: #ffffff;
    padding: 0.53rem 0.4rem 0.64rem;
}
.add_btn_box .sub_btn_box .submit_btn[data-v-ff525ea6] {
      width: 100%;
      height: 1.04rem;
      background: #4378be;
      border-radius: 1rem;
      font-size: 15px;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #ffffff;
}

.flex[data-v-56b4b543], .item_info_title[data-v-56b4b543] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.item_info_title[data-v-56b4b543] {
  padding: 1px 0;
}
.item_info_title .info_title[data-v-56b4b543] {
    font-size: 16px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
}
.item_info_title .approval_type[data-v-56b4b543] {
    font-size: 10px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #24b277;
    border: 1px solid #24b277;
    border-radius: 5px;
    padding: 4px 7px;
}
.collectList-container[data-v-56b4b543] {
  min-height: 100vh;
  background: #f7f8fc;
}
.collectList-container .wrap[data-v-56b4b543] {
    padding: 15px 10px;
}
.collectList-container .wrap .collect-content[data-v-56b4b543] {
      position: relative;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.collectList-container .wrap .collect-content .follow_content[data-v-56b4b543] {
        padding: 10px 16px;
        background: #fff;
        margin-bottom: 10px;
        border-radius: 10px;
}
.collectList-container .wrap .collect-content .follow_content .item_info_title[data-v-56b4b543] {
          margin-bottom: 13px;
}
.collectList-container .wrap .collect-content .follow_content .item_info_title .info_title[data-v-56b4b543] {
            font-size: 14px;
}
.collectList-container .wrap .collect-content .follow_content .item_info_title .follow_btn[data-v-56b4b543] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
            background: #3975c6;
            border-radius: 7px;
            padding: 6px 15px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box[data-v-56b4b543] {
          padding-left: 6px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list[data-v-56b4b543] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            padding-left: 15px;
            margin-bottom: 20px;
            position: relative;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-56b4b543] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #333333;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 12px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_top .sync_name[data-v-56b4b543] {
                margin-right: 15px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-56b4b543]::after {
                content: '';
                width: 6px;
                height: 6px;
                background: #5076b8;
                border-radius: 50%;
                position: absolute;
                left: -3px;
                z-index: 2;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_top[data-v-56b4b543]::before {
                content: '';
                position: absolute;
                width: 12px;
                height: 12px;
                background: #cad6ea;
                border-radius: 50%;
                left: -6px;
                z-index: 2;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_active[data-v-56b4b543] {
              margin-bottom: 0.32rem;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_result[data-v-56b4b543] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #666666;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              margin-bottom: 10px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_result .sync_type[data-v-56b4b543] {
                margin-right: 15px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list .sync_list_content .sync_bottom[data-v-56b4b543] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 400;
              color: #666666;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .sync_list[data-v-56b4b543]::after {
              content: '';
              position: absolute;
              width: 1px;
              height: calc(100% + 20px);
              background: #cad6ea;
              left: 0;
              top: 5px;
}
.collectList-container .wrap .collect-content .follow_content .follow_box .hide-line[data-v-56b4b543]::after {
            content: '';
            position: absolute;
            width: 0;
            height: calc(100% + 20px);
            background: #cad6ea;
            left: 0;
            top: 5px;
}
.collectList-container .wrap .collect-content .follow_content .follow_bottom[data-v-56b4b543] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          padding-left: 16px;
}
.collectList-container .wrap .collect-content .follow_content .follow_bottom img[data-v-56b4b543] {
            width: 10px;
            height: 10px;
            margin-right: 5px;
}
.collectList-container .wrap .collect-content .follow_content .follow_bottom span[data-v-56b4b543] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999999;
}
.collectList-container .wrap .collect-content .follow_content .empty_content[data-v-56b4b543] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          padding-bottom: 30px;
}
.collectList-container .wrap .collect-content .follow_content .empty_content img[data-v-56b4b543] {
            width: 135px;
            height: 104px;
            margin: 30px 0;
}
.collectList-container .wrap .collect-content .follow_content .empty_content span[data-v-56b4b543] {
            font-size: 14px;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999999;
}
.collectList-container .wrap .collect-content .follow_content .empty_content .span_top[data-v-56b4b543] {
            margin-bottom: 10px;
}
.question_content[data-v-56b4b543] {
  padding-bottom: 2.21rem;
}
.question_content .question_wrap[data-v-56b4b543] {
    padding: 17px 15px;
    background: #fff;
    border-radius: 7px;
}
.question_content .question_wrap .question_title[data-v-56b4b543] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
}
.question_content .question_wrap .van-collapse[data-v-56b4b543]::after {
      border-width: 0px 0;
}
.question_content .question_wrap .van-collapse .van-collapse-item > .van-cell[data-v-56b4b543] {
      padding: 15px 0;
}
.question_content .question_wrap .van-collapse .van-collapse-item > .van-cell .van-cell__title[data-v-56b4b543] {
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
}
.question_content .question_wrap .van-collapse .van-collapse-item .van-collapse-item__wrapper .van-collapse-item__content .collapse_value[data-v-56b4b543] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.add_btn_box[data-v-56b4b543] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.add_btn_box .sub_btn_box[data-v-56b4b543] {
    height: 2.48rem;
    background: #ffffff;
    padding: 0.53rem 0.4rem 0.64rem;
}
.add_btn_box .sub_btn_box .submit_btn[data-v-56b4b543] {
      width: 100%;
      height: 1.04rem;
      background: #5076b8;
      border-radius: 1rem;
      font-size: 0.4rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #ffffff;
}
.approval-accept[data-v-56b4b543] {
  color: #3975c6 !important;
  border: 1px solid #3975c6 !important;
}
.approval-reback[data-v-56b4b543] {
  background: #e75805;
}
.bottom-r-inner[data-v-56b4b543] {
  padding: 0.12rem 0.24rem;
}
.bottom-non[data-v-56b4b543] {
  background: #ebebeb;
  border-radius: 3px;
  font-size: 0.32rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #999999;
}
.success[data-v-56b4b543] {
  color: #24b277;
}
.fail[data-v-56b4b543] {
  color: #da291c;
}
.close-img[data-v-56b4b543] {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.flex[data-v-92198a42], .ele-contract-detail .wrap .collect-content .follow_content .item_info_title[data-v-92198a42] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ele-contract-detail[data-v-92198a42] {
  min-height: 100vh;
  background: #f7f8fc;
}
.ele-contract-detail .wrap[data-v-92198a42] {
    padding: 0.4rem 0.2667rem;
}
.ele-contract-detail .wrap .collect-content[data-v-92198a42] {
      position: relative;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
}
.ele-contract-detail .wrap .collect-content .follow_content[data-v-92198a42] {
        padding: 0.2667rem 0.4267rem;
        background: #fff;
        margin-bottom: 0.2667rem;
        border-radius: 0.2667rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .item_info_title[data-v-92198a42] {
          padding: 0.0267rem 0;
          margin-bottom: 0.3467rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .item_info_title .info_title[data-v-92198a42] {
            font-size: 0.4267rem;
            font-family: PingFang SC;
            font-weight: bold;
            color: #333333;
}
.ele-contract-detail .wrap .collect-content .follow_content .item_info_title .follow_btn[data-v-92198a42] {
            font-size: 0.2667rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #24b277;
            border: 0.0267rem solid #24b277;
            border-radius: 0.1333rem;
            padding: 0.1067rem 0.1867rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .record-title[data-v-92198a42] {
          font-size: 0.3733rem;
          color: #333;
          margin-bottom: 0.08rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .record-content[data-v-92198a42] {
          font-size: 0.32rem;
          color: #999;
          margin-top: 0.16rem;
          margin-bottom: 0.08rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .empty_content[data-v-92198a42] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          padding-bottom: 0.8rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .empty_content img[data-v-92198a42] {
            margin: 1.73rem 0;
            width: 3.35rem;
            height: 3.03rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .empty_content span[data-v-92198a42] {
            font-size: 0.3733rem;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999999;
}
.ele-contract-detail .wrap .collect-content .follow_content .empty_content .span_top[data-v-92198a42] {
            margin-top: 0.4rem;
            color: #666;
            font-size: 0.4rem;
}
.ele-contract-detail .wrap .collect-content .follow_content .empty_content .second-record-text[data-v-92198a42] {
            margin-top: 0.2rem;
}
.ele-contract-detail .wrap .collect-content .question_content[data-v-92198a42] {
        padding-bottom: 2.21rem;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap[data-v-92198a42] {
          padding: 0.4533rem 0.4rem;
          background: #fff;
          border-radius: 0.1867rem;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap .question_title[data-v-92198a42] {
            font-size: 0.3733rem;
            font-family: PingFang SC;
            font-weight: 800;
            color: #333333;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap .van-collapse[data-v-92198a42]::after {
            border-width: 0 0;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap .van-collapse .van-collapse-item > .van-cell[data-v-92198a42] {
            padding: 0.4rem 0;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap .van-collapse .van-collapse-item > .van-cell .van-cell__title[data-v-92198a42] {
              font-size: 0.3733rem;
              font-family: PingFang SC;
              font-weight: 400;
              color: #666666;
}
.ele-contract-detail .wrap .collect-content .question_content .question_wrap .van-collapse .van-collapse-item .van-collapse-item__wrapper .van-collapse-item__content .collapse_value[data-v-92198a42] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
}
.ele-contract-detail .wrap .collect-content .add_btn_box[data-v-92198a42] {
        width: 100%;
        height: 2.21rem;
        position: fixed;
        left: 0;
        bottom: 0;
        background: #ffffff;
        -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
                box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
}
.ele-contract-detail .wrap .collect-content .add_btn_box .sub_btn_box[data-v-92198a42] {
          height: 2.48rem;
          background: #ffffff;
          padding: 0.53rem 0.4rem 0.64rem;
}
.ele-contract-detail .wrap .collect-content .add_btn_box .sub_btn_box .submit_btn[data-v-92198a42] {
            width: 100%;
            height: 1.04rem;
            background: #5076b8;
            border-radius: 1rem;
            font-size: 0.4rem;
            font-family: Source Han Sans CN;
            font-weight: 400;
            color: #ffffff;
}

.container[data-v-677b5c50] {
  width: 100%;
  height: 100vh;
  background: #ebebeb;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
  overflow: hidden;
  position: relative;
}
.container .wrap[data-v-677b5c50] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.container .wrap .wrap-mainItem[data-v-677b5c50] {
      margin-top: 0.2rem;
}
.container .wrap .inner[data-v-677b5c50] {
      padding: 0.41rem 0.27rem;
}
.container .wrap .inner .content[data-v-677b5c50] {
        width: 100%;
        height: 100%;
        padding-bottom: 2.21rem;
}
.container .wrap .inner .content .business-info .bussiness-info-title[data-v-677b5c50] {
          margin: 0.4rem 0.15rem;
          color: #333;
          font-size: 0.43rem;
          font-weight: bold;
}
.container .wrap .inner .content .business-info .cell-group .bussiness-info-title[data-v-677b5c50] {
          padding: 0.4rem 0.4267rem 0.1333rem;
          font-size: 0.3733rem;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.container .wrap .inner .content .form-title[data-v-677b5c50] {
          font-size: 0.37rem !important;
          color: #333;
          padding-left: 0.4267rem;
          padding-top: 0.2667rem;
          font-weight: 400 !important;
}
[data-v-677b5c50] .van-field__label {
  color: #333;
  font-weight: 400 !important;
}
[data-v-677b5c50] .van-field__word-limit {
  color: #646566;
  font-size: 0.32rem;
  font-weight: 400;
}
[data-v-677b5c50] .van-hairline--top-bottom::after {
  border-width: 0px;
}
[data-v-677b5c50] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
  font-weight: 400 !important;
}
[data-v-677b5c50] .van-cell__value {
  color: #333;
  font-weight: 400 !important;
}
[data-v-677b5c50] .van-cell__title {
  font-size: 0.3733rem !important;
  font-weight: 400 !important;
}
.collect-detail-item[data-v-677b5c50] {
  margin-top: 0.3rem;
}
.collect-detail-item .detail-item-top[data-v-677b5c50] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0.1rem;
}
.collect-detail-item .detail-item-top .item-top-text[data-v-677b5c50] {
      font-size: 0.35rem;
      font-family: Source Han Sans CN;
      font-weight: 500;
      color: #333333;
}
.cell-title-required[data-v-677b5c50] {
  position: relative;
}
.cell-title-required[data-v-677b5c50]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.van-cell--required[data-v-677b5c50]::before {
  display: none;
}
.van-cell-group[data-v-677b5c50] {
  border-radius: 0.19rem;
}
 > .van-cell[data-v-677b5c50] {
  border-radius: 0.1333rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
 > .van-cell[data-v-677b5c50] .van-field__control {
    color: #333333;
}
.add_btn_box[data-v-677b5c50] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
}
.add_btn_box .sub_btn_box[data-v-677b5c50] {
    height: 2.48rem;
    background: #ffffff;
    padding: 0.53rem 0.4rem 0.64rem;
}
.add_btn_box .sub_btn_box .submit_btn[data-v-677b5c50] {
      width: 100%;
      height: 1.04rem;
      background: #5076b8;
      border-radius: 1rem;
      font-size: 0.4rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #ffffff;
}
[data-v-677b5c50] .van-cell--required::before {
  display: none;
}

.container[data-v-70f2dd36] {
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.container[data-v-70f2dd36]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.container .cell-title-required[data-v-70f2dd36] {
    position: relative;
}
.container .cell-title-required[data-v-70f2dd36]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.container .wrap[data-v-70f2dd36] {
    width: 100vw;
    height: 100%;
    padding-bottom: 2.5rem;
    overflow-y: scroll;
}
.container .wrap .wrap-mainItem[data-v-70f2dd36] {
      margin-top: .2rem;
}
.container .wrap .inner[data-v-70f2dd36] {
      padding: .2rem .27rem;
      width: 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.container .wrap .inner .content[data-v-70f2dd36] {
        width: 100%;
        height: 100%;
        padding-bottom: 2.21rem;
}
.container .wrap .inner .content .business-info .cell-group .bussiness-info-title[data-v-70f2dd36] {
          padding: 15px 16px 5px;
          font-size: 14px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.progress-ctn[data-v-70f2dd36] {
  padding: 10px 16px;
}
.progress-ctn .progress-ctn-title[data-v-70f2dd36] {
    color: #646566;
    font-size: 0.37rem !important;
    margin-bottom: 0.3rem;
}
.progress-ctn .progress-ctn-main[data-v-70f2dd36] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.progress-ctn .progress-ctn-main .item-ctn[data-v-70f2dd36] {
      background: #eeeeee;
      border-radius: 4px;
      padding: 5px 17px;
      font-size: 12px;
      font-weight: 500;
      margin-right: 7px;
      margin-bottom: 10px;
      color: #666666;
}
.progress-ctn .progress-ctn-main .active-item[data-v-70f2dd36] {
      background: rgba(67, 120, 190, 0.2);
      color: #4378be;
}
.switch-ctn[data-v-70f2dd36] {
  position: relative;
  font-size: 12px;
  color: #fff;
  height: 0.57rem;
}
.switch-ctn img[data-v-70f2dd36] {
    width: 1.27rem;
    height: 0.57rem;
}
.switch-ctn .selected[data-v-70f2dd36] {
    position: absolute;
    left: 7px;
    color: #fff;
}
.switch-ctn .no-selected[data-v-70f2dd36] {
    position: absolute;
    right: 7px;
    color: #fff;
}
.collect-detail-item[data-v-70f2dd36] {
  margin-top: 0.3rem;
}
.collect-detail-item .detail-item-top[data-v-70f2dd36] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0.1rem;
}
.collect-detail-item .detail-item-top .item-top-text[data-v-70f2dd36] {
      font-size: 0.35rem;
      font-family: Source Han Sans CN;
      font-weight: 500;
      color: #333333;
}
.van-cell-group[data-v-70f2dd36] {
  border-radius: 5px;
}
 > .van-cell[data-v-70f2dd36] {
  border-radius: 5px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
 > .van-cell .van-cell__value[data-v-70f2dd36] {
    color: #333;
}
 > .van-cell .van-cell__value .van-field__body .van-field__control[data-v-70f2dd36] {
      color: #333333;
}
.add_btn_box[data-v-70f2dd36] {
  width: 100%;
  height: 2.21rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.add_btn_box .sub_btn_box[data-v-70f2dd36] {
    height: 2.48rem;
    background: #ffffff;
    padding: 0.53rem 0.4rem 0.64rem;
}
.add_btn_box .sub_btn_box .submit_btn[data-v-70f2dd36] {
      width: 100%;
      height: 1.04rem;
      background: #5076b8;
      border-radius: 1rem;
      font-size: 0.4rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #ffffff;
}
[data-v-70f2dd36] .van-cell,[data-v-70f2dd36] .van-field__body {
  font-weight: 400 !important;
}
[data-v-70f2dd36] .van-cell {
  font-size: .38rem;
}
[data-v-70f2dd36] .van-cell__title {
  color: #333;
  font-size: .38rem !important;
}
[data-v-70f2dd36] .van-cell__label {
  font-size: .38rem;
}
[data-v-70f2dd36] .van-cell__value {
  color: #666;
}
[data-v-70f2dd36] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-70f2dd36] .van-field__label {
  color: #333333;
}
[data-v-70f2dd36] .van-cell-group__title {
  margin: 0;
  padding: .43rem .47rem .41rem .04rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-70f2dd36] .van-cell--required::before {
  display: none;
}
[data-v-70f2dd36] .van-field__error-message {
  text-align: right;
}
[data-v-70f2dd36] .van-cell-group--inset {
  margin-left: .27rem;
  margin-right: .27rem;
  margin-top: .27rem;
}
[data-v-70f2dd36] .van-cell-group__title--inset {
  padding: .53rem .34rem .41rem;
}
.no-is-link[data-v-70f2dd36] .van-field__error-message {
  margin-right: .53rem;
}
.activity-collection .popup-header[data-v-70f2dd36] {
  text-align: center;
  position: relative;
  padding: 0.4rem 0.38rem;
  font-size: 0.38rem;
}
.activity-collection .popup-header .cancel-class[data-v-70f2dd36] {
    position: absolute;
    left: 0.38rem;
    color: #548cdf;
}
.activity-collection .add-btn[data-v-70f2dd36] {
  background: #3975c6;
  color: #fff;
  padding: 0.3rem 0.5rem;
  border-radius: 0.47rem;
  line-height: 0.35rem;
}
.activity-collection .van-search[data-v-70f2dd36] {
  margin: 0 .1067rem;
}
.activity-collection .van-search .van-search__content[data-v-70f2dd36] {
    background: #f7f7f7;
    border-radius: 0.47rem;
}
.activity-collection .van-search .van-cell[data-v-70f2dd36] {
    padding: 0.2rem 0.4rem;
}
.activity-collection .van-field__control[data-v-70f2dd36] {
  font-size: 0.38rem;
  color: #999;
}
.collection-list[data-v-70f2dd36] {
  font-size: 0.41rem;
  color: #333;
  max-height: 5.3333rem;
  overflow-y: auto;
}
.collection-list[data-v-70f2dd36]::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}
.collection-list .collection-item[data-v-70f2dd36] {
    text-align: center;
    padding: .2667rem 0;
}
.popup-ctn[data-v-70f2dd36] {
  padding-bottom: .5333rem;
}
.textarea-field[data-v-70f2dd36] {
  display: block;
}
.textarea-field[data-v-70f2dd36] .van-field__label {
    margin-bottom: 5px;
}

.result_container[data-v-4e2e1989] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result_container span[data-v-4e2e1989] {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
}
.result_container .fail_text[data-v-4e2e1989] {
    margin-bottom: 10px;
}
.img-success[data-v-4e2e1989] {
  width: 156px;
  height: 118px;
  margin-top: 166px;
  margin-bottom: 30px;
}
.img-fail[data-v-4e2e1989] {
  width: 136px;
  height: 118px;
  margin-top: 166px;
  margin-bottom: 30px;
}

@charset "UTF-8";
/* 导航 */
.search-tab[data-v-16ebcac8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #3975c6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.van-search[data-v-16ebcac8] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-16ebcac8] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-16ebcac8] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-16ebcac8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.van-search .van-search__content .van-cell[data-v-16ebcac8] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-16ebcac8] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-16ebcac8] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-16ebcac8]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-16ebcac8]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-16ebcac8]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-16ebcac8]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.app-top[data-v-16ebcac8] {
  width: 100%;
  height: 1.28rem;
  background: #ffffff;
}
.app-top .top-inner[data-v-16ebcac8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.4rem 0;
    width: 95%;
    margin: 0 auto;
    overflow-x: hidden;
}
.app-top .top-inner .drop-width[data-v-16ebcac8] {
      min-width: 20%;
      max-width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.app-top .top-inner .drop-width > .drop-top[data-v-16ebcac8] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        width: 100%;
        overflow-x: hidden;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.c-t-select[data-v-16ebcac8] {
  min-width: 20%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.black-color[data-v-16ebcac8] {
  color: #333333 !important;
}
.container[data-v-16ebcac8] {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #ebebeb;
}
.container .con-wrap[data-v-16ebcac8] {
    width: 100%;
    height: 100%;
}
.container .app-top .top-inner[data-v-16ebcac8] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
}
.container .content[data-v-16ebcac8] {
    height: calc(100vh - 1.28rem);
    overflow-y: scroll;
}
.container .content .content-wrap[data-v-16ebcac8] {
      padding: 0.3rem 0.23rem;
}
.container .content .content-wrap .content-inner[data-v-16ebcac8] {
        background: #ffffff;
        border-radius: 5px;
        padding: 0.3rem;
}
.container .content .content-wrap .content-inner .title[data-v-16ebcac8] {
          padding-bottom: 0.3rem;
}
.container .content .content-wrap .content-inner .item-wrap[data-v-16ebcac8] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
}

.profit-container[data-v-20011438] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
}
.profit-container .profit-wrap[data-v-20011438] {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #f7f8fc;
    /*border-radius: 10px 10px 0px 0px;*/
}
.profit-container .profit-card[data-v-20011438] {
    padding-bottom: 20px;
}
.profit-container .profit-card .card-contaienr[data-v-20011438] {
      background: url("https://oss.guango.com.cn/common/qw/images/info-bg.png");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 160px;
      margin: 0 10px;
      position: relative;
}
.profit-container .profit-card .card-contaienr .card-money[data-v-20011438] {
        width: 56px;
        height: 74px;
        position: absolute;
        top: 5px;
        right: 24px;
}
.profit-container .profit-card .card-contaienr .card-wrap[data-v-20011438] {
        padding: 20px 15px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top[data-v-20011438] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          font-family: PingFang SC;
          font-weight: 400;
          color: #ffffff;
          line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-label[data-v-20011438] {
            font-size: 14px;
            margin-bottom: 14px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-money[data-v-20011438] {
            font-size: 24px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom[data-v-20011438] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item[data-v-20011438] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            font-family: PingFang SC;
            font-weight: 400;
            color: #ffffff;
            line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-label[data-v-20011438] {
              font-size: 12px;
              margin-bottom: 14px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-num[data-v-20011438] {
              font-size: 18px;
}
.profit-container .table-container[data-v-20011438] {
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
    height: calc(100vh - 6.2rem);
}
.profit-container .table-container .vxe-table[data-v-20011438] {
      border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper {
        border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper .vxe-table--main-wrapper {
          border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper {
            color: #333333;
            border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper .vxe-table--header-border-line {
              border-bottom: 0px solid #ecf0f9 !important;
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--body-wrapper .vxe-table--body tbody tr td {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf0f9), to(#ecf0f9));
            background-image: linear-gradient(#ecf0f9, #ecf0f9);
}
.profit-container .table-container .vxe-table[data-v-20011438] .vxe-table--render-wrapper .vxe-table--fixed-wrapper .vxe-table--fixed-left-wrapper .vxe-table--header-wrapper {
          color: #333333;
          border-radius: 10px 10px 0px 0px;
}
.profit-container .no-more-data[data-v-20011438] {
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #666;
    font-size: 14px;
}
.c-select[data-v-20011438] {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select .c-select-r[data-v-20011438] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.c-select .drop-l[data-v-20011438] {
    margin-right: 0.63rem;
}
.line[data-v-20011438] {
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.1;
  margin: 20px 0 15px;
}
.business-contaienr[data-v-20011438] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 13px;
}
.business-contaienr .business-top[data-v-20011438] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
}
.business-contaienr .business-top .business-name[data-v-20011438] {
      font-size: 14px;
}
.business-contaienr .business-top .business-phone[data-v-20011438] {
      font-size: 12px;
      color: #666666;
}
.business-contaienr .business-address[data-v-20011438] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.vxe-table--render-default[data-v-20011438] {
  overflow: hidden;
  color: #333333;
  font-family: PingFang SC;
}
.vxe-table--render-default .vxe-table--body[data-v-20011438], .vxe-table--render-default .vxe-table--footer[data-v-20011438], .vxe-table--render-default .vxe-table--header[data-v-20011438] {
  border: 0;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  overflow: hidden;
}
.vxe-table--render-default .vxe-table--body[data-v-20011438], .vxe-table--render-default .vxe-table--footer[data-v-20011438], .vxe-table--render-default .vxe-table--header[data-v-20011438] {
  overflow: hidden;
}
[data-v-20011438] .vxe-icon--caret-top:before,[data-v-20011438] .vxe-icon--caret-bottom:before {
  border-bottom-width: 0.4em;
  border-left-width: 0.3em;
  border-right-width: 0.3em;
}

.profit-container[data-v-549ffee7] {
  width: 100%;
  min-height: 100vh;
  background: #3975c6;
}
.profit-container .profit-wrap[data-v-549ffee7] {
    width: 100%;
    min-height: calc(100vh - 1.63rem);
    background: #f7f8fc;
    border-radius: 10px 10px 0px 0px;
}
.profit-container .profit-card[data-v-549ffee7] {
    padding-bottom: 20px;
}
.profit-container .profit-card .card-contaienr[data-v-549ffee7] {
      background: url("https://oss.guango.com.cn/common/qw/images/info-bg.png");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 160px;
      margin: 0 10px;
      position: relative;
}
.profit-container .profit-card .card-contaienr .card-money[data-v-549ffee7] {
        width: 56px;
        height: 74px;
        position: absolute;
        top: 5px;
        right: 24px;
}
.profit-container .profit-card .card-contaienr .card-wrap[data-v-549ffee7] {
        padding: 20px 15px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top[data-v-549ffee7] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          font-family: PingFang SC;
          font-weight: 400;
          color: #ffffff;
          line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-label[data-v-549ffee7] {
            font-size: 14px;
            margin-bottom: 14px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-money[data-v-549ffee7] {
            font-size: 24px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom[data-v-549ffee7] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item[data-v-549ffee7] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            font-family: PingFang SC;
            font-weight: 400;
            color: #ffffff;
            line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-label[data-v-549ffee7] {
              font-size: 12px;
              margin-bottom: 14px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-num[data-v-549ffee7] {
              font-size: 18px;
}
.profit-container .table-container[data-v-549ffee7] {
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] {
      border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper {
        border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper .vxe-table--main-wrapper {
          border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper {
            border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper .vxe-table--header-border-line {
              border-bottom: 0px solid #ecf0f9 !important;
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--body-wrapper .vxe-table--body tbody tr td {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf0f9), to(#ecf0f9));
            background-image: linear-gradient(#ecf0f9, #ecf0f9);
}
.profit-container .table-container .vxe-table[data-v-549ffee7] .vxe-table--render-wrapper .vxe-table--fixed-wrapper .vxe-table--fixed-left-wrapper .vxe-table--header-wrapper {
          border-radius: 10px 10px 0px 0px;
}
.c-select[data-v-549ffee7] {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.c-select .c-select-r[data-v-549ffee7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.c-select .drop-l[data-v-549ffee7] {
    margin-right: 0.63rem;
}
.line[data-v-549ffee7] {
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.1;
  margin: 20px 0 15px;
}
.business-contaienr[data-v-549ffee7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 13px;
}
.business-contaienr .business-top[data-v-549ffee7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
}
.business-contaienr .business-top .business-name[data-v-549ffee7] {
      font-size: 14px;
      margin-right: 6px;
}
.business-contaienr .business-top .business-phone[data-v-549ffee7] {
      font-size: 12px;
}
.business-contaienr .business-address[data-v-549ffee7] {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.van-search[data-v-549ffee7] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-549ffee7] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-549ffee7] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-549ffee7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-549ffee7] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-549ffee7] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-549ffee7] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-549ffee7]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-549ffee7]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-549ffee7]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-549ffee7]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}

.c-statistic[data-v-356f3593] {
  margin: 0 10px 19px 10px;
  background: #FFFFFF;
  border: 1px solid #3975C6;
  border-radius: 0.48rem;
  padding: 0.5rem 0.4rem;
}
.statistic-sum[data-v-356f3593] {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ECF0F9;
}
.statistic-sum .sum-title[data-v-356f3593] {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 13px;
    display: block;
    margin-bottom: 7px;
}
.statistic-sum .sum-money[data-v-356f3593] {
    font-size: 24px;
    font-family: PingFang SC;
    font-weight: 800;
    color: #3975C6;
}
.statistic-wrap[data-v-356f3593] {
  padding-left: 13px;
  padding-right: 13px;
  /*background: #f7f8fc;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.statistic-item[data-v-356f3593] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.item-title[data-v-356f3593] {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-bottom: 10px;
}
.item-money[data-v-356f3593] {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.profit-container[data-v-356f3593] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f7f8fc;
}
.profit-container .profit-wrap[data-v-356f3593] {
    font-family: PingFang SC;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(35%, #f7f8fc));
    background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 35%);
}
.profit-container .profit-card[data-v-356f3593] {
    padding: 20px 0 17px 0;
}
.profit-container .profit-card .card-contaienr[data-v-356f3593] {
      background-repeat: no-repeat;
      background-size: 100% 100%;
      margin: 0 10px;
      position: relative;
}
.profit-container .profit-card .card-contaienr .card-wrap[data-v-356f3593] {
        padding: 0 15px 0 15px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top[data-v-356f3593] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          font-family: PingFang SC;
          font-weight: 400;
          color: #ffffff;
          line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-name[data-v-356f3593] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 14px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-name .name[data-v-356f3593] {
              font-size: 18px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-name .type[data-v-356f3593] {
              background: rgba(255, 255, 255, 0.23);
              -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                      box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
              border-radius: 5px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-name .type .type-inner[data-v-356f3593] {
                font-size: 12px;
                font-weight: 500;
                padding: 5px 8px;
                -webkit-transform: scale(0.92);
                        transform: scale(0.92);
                opacity: 0.77;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-info[data-v-356f3593] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-info .info-phone .info-img[data-v-356f3593] {
              width: 12px;
              height: 12px;
              margin-right: 1px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-info .info-type .info-img[data-v-356f3593] {
              width: 13px;
              height: 13px;
              margin-right: 3px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-info .info-name .info-img[data-v-356f3593] {
              width: 11px;
              height: 14px;
              margin-right: 3px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-info .info-value[data-v-356f3593] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #ffffff;
              line-height: 13px;
              margin-right: 15px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-address[data-v-356f3593] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            margin-top: 8px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-address .info-img[data-v-356f3593] {
              width: 12px;
              height: 14px;
              margin-right: 2px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-top .top-address .info-value[data-v-356f3593] {
              font-size: 14px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #ffffff;
              line-height: 18px;
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom[data-v-356f3593] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item[data-v-356f3593] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            font-family: PingFang SC;
            font-weight: 400;
            color: #ffffff;
            line-height: 13px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-label[data-v-356f3593] {
              font-size: 14px;
              margin-right: 6px;
}
.profit-container .profit-card .card-contaienr .card-wrap .card-bottom .bottom-item .bottom-num[data-v-356f3593] {
              font-size: 16px;
}
.profit-container .vxe-table--render-default[data-v-356f3593] {
    color: #333333;
    font-family: PingFang SC;
}
.profit-container .table-container[data-v-356f3593] {
    background: #ffffff;
    border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-356f3593] {
      border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper {
        border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper .vxe-table--main-wrapper {
          border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper {
            color: #333333;
            border-radius: 10px 10px 0px 0px;
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--header-wrapper .vxe-table--header-border-line {
              border-bottom: 0px solid #ecf0f9 !important;
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper .vxe-table--main-wrapper .vxe-table--body-wrapper .vxe-table--body tbody tr td {
            background-image: -webkit-gradient(linear, left top, left bottom, from(#ecf0f9), to(#ecf0f9));
            background-image: linear-gradient(#ecf0f9, #ecf0f9);
}
.profit-container .table-container .vxe-table[data-v-356f3593] .vxe-table--render-wrapper .vxe-table--fixed-wrapper .vxe-table--fixed-left-wrapper .vxe-table--header-wrapper {
          color: #333333;
          border-radius: 10px 10px 0px 0px;
}
.line[data-v-356f3593] {
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.1;
  margin: 15px 0 15px;
}
.business-contaienr[data-v-356f3593] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 13px;
}
.business-contaienr .business-top[data-v-356f3593] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
}
.business-contaienr .business-top .business-name[data-v-356f3593] {
      font-size: 14px;
      margin-right: 6px;
}
.business-contaienr .business-top .business-phone[data-v-356f3593] {
      font-size: 12px;
}
.business-contaienr .business-address[data-v-356f3593] {
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.business-contaienr .business-address .business-money[data-v-356f3593] {
      font-size: 12px;
      color: #666666;
      margin-top: 11px;
}
.vxe-table--render-default[data-v-356f3593] {
  overflow: hidden;
}
.statistic-wrap[data-v-06eac1e6][data-v-356f3593] {
  padding-left: 13px;
  padding-right: 13px;
  /* background: #f7f8fc; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.profit-container .profit-card[data-v-06eac1e6][data-v-356f3593] {
  padding-top: 20px;
}

/*.vxe-table--footer-wrapper{*/

/*    background-color: #fff;*/

/*    overflow: hidden;*/

/*  }*/

/*.vxe-table--render-default .vxe-table--footer-wrapper {*/

/*  overflow: hidden;*/

/*  background-color: #fff;*/

/*}*/
.vxe-table--render-default .vxe-table--body[data-v-356f3593], .vxe-table--render-default .vxe-table--footer[data-v-356f3593], .vxe-table--render-default .vxe-table--header[data-v-356f3593] {
  border: 0;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  overflow: hidden;
}
.vxe-table--render-default .vxe-table--body[data-v-356f3593], .vxe-table--render-default .vxe-table--footer[data-v-356f3593], .vxe-table--render-default .vxe-table--header[data-v-356f3593] {
  overflow: hidden;
}
[data-v-356f3593] .vxe-icon--caret-bottom::before,[data-v-356f3593] .vxe-icon--caret-left::before,[data-v-356f3593] .vxe-icon--caret-right::before,[data-v-356f3593] .vxe-icon--caret-top::before {
  border-width: .3em !important;
}
[data-v-356f3593] .vxe-icon--caret-bottom:before {
  top: 0.20em;
}

.RankingContent[data-v-4a764654] {
  background-color: #f7f8fc;
}
.RankingContent .rc-nav[data-v-4a764654] {
    background-color: #ffffff;
    border-radius: 10px 10px 0px 0px;
}
.RankingContent .rc-select[data-v-4a764654] {
    background-color: #ffffff;
    padding: 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    border-top: 1px solid #F7F8FC;
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}
.RankingContent .rc-select[data-v-4a764654]::-webkit-scrollbar {
      display: none;
}
.RankingContent .rc-select .rc-select-item[data-v-4a764654] {
      white-space: nowrap;
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 500;
      color: #666666;
      background: #EEEEEE;
      border-radius: 4px;
      padding: 0 .27rem;
      height: .59rem;
      line-height: .59rem;
      margin-right: .21rem;
}
.RankingContent .rc-select .active-item[data-v-4a764654] {
      background: rgba(67, 120, 190, 0.2);
      color: #4378BE;
}
.RankingContent .rc-list[data-v-4a764654] {
    margin: 15px 10px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: .56rem .4rem .27rem;
}
.RankingContent .re-rule[data-v-4a764654] {
    background-color: #ffffff;
    margin: 15px 10px;
    border-radius: 12px;
    padding-top: .45rem;
    padding-bottom: .35rem;
}
.RankingContent .re-rule .re-rule-title[data-v-4a764654] {
      padding-left: .37rem;
      font-size: .37rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      padding-bottom: 12px;
      border-bottom: 1px solid #ECF0F9;
}
.RankingContent .re-rule .re-rule-content[data-v-4a764654] {
      padding-left: .37rem;
      font-size: 12px;
      font-family: PingFang SC;
      font-weight: 400;
      color: #333333;
      margin: 13px 0 7px 0;
}
.RankingContent .re-bottom[data-v-4a764654] {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    bottom: 0;
}
.RankingContent .re-bottom .re-bottom-self[data-v-4a764654] {
      width: 100%;
      height: 1.76rem;
      border-bottom: 1px solid #ECF0F9;
}
.RankingContent .re-bottom .re-bottom-btn[data-v-4a764654] {
      width: 9.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      margin: 0 auto;
      font-size: 15px;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #FFFFFF;
      text-align: center;
      line-height: 1.04rem;
      margin-top: 10px;
      margin-bottom: .64rem;
}
.sign-1[data-v-4a764654] {
  height: .56rem;
}
.sign-2[data-v-4a764654] {
  height: .56rem;
}
.sign-3[data-v-4a764654] {
  height: .56rem;
}
.sign-4[data-v-4a764654] {
  height: .59rem;
}
.sign-5[data-v-4a764654] {
  height: .67rem;
}
.sign-6[data-v-4a764654] {
  height: .72rem;
}
.rl-list-item[data-v-4a764654] {
  border-radius: 5px;
  padding: .32rem 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: .19rem;
}
.rl-list-item .item-left[data-v-4a764654] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.rl-list-item .item-left .item-left-num[data-v-4a764654] {
      font-size: .4rem;
      font-family: PingFang SC;
      font-weight: 800;
      color: #999999;
      margin-right: .45rem;
      margin-top: .27rem;
}
.rl-list-item .item-left .item-left-content[data-v-4a764654] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: end;
          align-content: flex-end;
}
.rl-list-item .item-left .item-left-content .item-content-head[data-v-4a764654] {
        width: 1.15rem;
        height: 1.15rem;
}
.rl-list-item .item-left .item-left-content .item-content-head img[data-v-4a764654] {
          width: 100%;
          height: 100%;
          border-radius: 50%;
}
.rl-list-item .item-left .item-left-content .item-content-deal[data-v-4a764654] {
        font-size: .37rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
        margin-left: 10px;
}
.rl-list-item .item-left .item-left-content .item-content-deal span[data-v-4a764654] {
          margin-left: 2px;
}
.rl-list-item .item-right[data-v-4a764654] {
    font-size: .37rem;
    font-family: PingFang SC;
    font-weight: 800;
    color: #548CDF;
    margin-top: .27rem;
}
.notList[data-v-4a764654] {
  font-size: .32rem;
  color: #548CDF;
  font-family: PingFang SC;
}
[data-v-4a764654] .van-tab {
  font-size: 13px !important;
  font-family: PingFang SC !important;
  font-weight: 500 !important;
  color: #333333;
}
[data-v-4a764654] .van-tabs__nav {
  background-color: transparent !important;
}

.RankingShare[data-v-7a8bebbe] {
  background-image: url("https://oss.guango.com.cn/common/qw/images/bg.png");
  background-size: 100% 100%;
  overflow-x: hidden;
}
.RankingShare .rs-top[data-v-7a8bebbe] {
    padding-top: 0.69rem;
    padding-left: 0.53rem;
    position: relative;
}
.RankingShare .rs-top .rs-top-logo img[data-v-7a8bebbe] {
      width: 2.08rem;
      height: 0.85rem;
}
.RankingShare .rs-top .rs-top-name[data-v-7a8bebbe] {
      margin-top: 0.59rem;
      font-size: 0.4rem;
      font-family: Source Han Sans CN;
      font-weight: bold;
      color: #ffffff;
}
.RankingShare .rs-top .rs-top-title[data-v-7a8bebbe] {
      margin-top: 0.27rem;
      font-size: 0.96rem;
      font-family: Source Han Sans CN;
      font-weight: bold;
      color: #ffffff;
}
.RankingShare .rs-top .rs-top-time[data-v-7a8bebbe] {
      margin-top: 0.27rem;
      width: 4.59rem;
      height: 0.64rem;
      background: #f7f8fc;
      border-radius: 0.32rem;
      font-size: 0.32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #386ede;
      text-align: center;
      line-height: 0.64rem;
}
.RankingShare .rs-top .rs-top-ikon[data-v-7a8bebbe] {
      top: 0.69rem;
      right: -1.25rem;
      position: absolute;
      z-index: 0;
}
.RankingShare .rs-top .rs-top-ikon img[data-v-7a8bebbe] {
        height: 5.65rem;
}
.RankingShare .rs-list[data-v-7a8bebbe] {
    background-color: #ffffff;
    margin: 0.67rem 0.27rem 0.53rem;
    border-radius: 0.32rem;
    padding: 20px 15px 15px;
    position: relative;
    z-index: 100;
}

.turnlist[data-v-2467cf76] {
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-bottom: .8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.turnlist-sum[data-v-2467cf76] {
  margin: .27rem;
  font-size: .32rem;
  font-family: PingFang;
  font-weight: 500;
  color: #666666;
}
.turnlist-list[data-v-2467cf76] {
  margin: 0 .27rem;
}
.turnlist-list .list-item[data-v-2467cf76] {
    background-color: #ffffff;
    border-radius: .13rem;
    margin-bottom: .19rem;
    padding: .4rem .27rem;
}
.turnlist-list .list-item .list-item-t[data-v-2467cf76] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.turnlist-list .list-item .list-item-t-l[data-v-2467cf76] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.turnlist-list .list-item .list-item-t-l img[data-v-2467cf76] {
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 50%;
        margin-right: .24rem;
}
.turnlist-list .list-item .list-item-t-l p[data-v-2467cf76] {
        font-size: .37rem;
        font-family: PingFang;
        font-weight: bold;
        color: #333333;
        margin-bottom: .13rem;
}
.turnlist-list .list-item .list-item-t-l span[data-v-2467cf76] {
        font-size: .32rem;
        font-family: PingFang;
        font-weight: 500;
        color: #666666;
}
.turnlist-list .list-item .list-item-t-r[data-v-2467cf76] {
      font-size: .32rem;
      font-family: PingFang;
      font-weight: bold;
      color: #3975C6;
}
.turnlist-list .list-item .list-item-t-r img[data-v-2467cf76] {
        width: .13rem;
        height: .21rem;
}
.turnlist-list .list-item .list-item-title[data-v-2467cf76] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-size: .32rem;
      font-family: PingFang;
      font-weight: 500;
      margin-top: .35rem;
}
.turnlist-list .list-item .list-item-title .list-item-title-l[data-v-2467cf76] {
        color: #666666;
}
.turnlist-list .list-item .list-item-title .list-item-title-r[data-v-2467cf76] {
        color: #333333;
        display: inline-block;
        white-space: nowrap;
        width: 5.33rem;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: right;
}

@charset "UTF-8";
/*
 * @Description: 弹窗样式（布局见turnto.vue）
 * @Autor: xiong
 * @Date: 2021-11-09 15:27:55
 */
[data-v-7d8ff357] .van-dialog {
  border-radius: .13rem;
}
[data-v-7d8ff357] .van-dialog__header {
  font-size: .45rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #333333;
}
.dialog[data-v-7d8ff357] {
  margin: .61rem 0 .96rem 0;
}
.dialog .dialog-line[data-v-7d8ff357] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: .32rem 0;
    margin: 0 .43rem;
    border-bottom: 1px solid rgba(222, 223, 226, 0.5);
}
.dialog .dialog-line .dialog-line-l[data-v-7d8ff357] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
}
.dialog .dialog-line .dialog-line-l span[data-v-7d8ff357] {
        color: #DB1717;
}
.dialog .dialog-line .dialog-line-r[data-v-7d8ff357] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 400;
      color: #999999;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.dialog .dialog-line .dialog-line-r img[data-v-7d8ff357] {
        margin-left: .27rem;
        width: .13rem;
        height: .21rem;
}
.turnTo[data-v-7d8ff357] {
  padding-top: .4rem;
  background-color: #f7f8fc;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.turnTo-head[data-v-7d8ff357] {
  background-color: #ffffff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .4rem .27rem;
  margin: 0 .27rem .19rem;
}
.turnTo-head img[data-v-7d8ff357] {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    margin-right: .24rem;
}
.turnTo-head p[data-v-7d8ff357] {
    font-size: .37rem;
    font-family: PingFang;
    font-weight: bold;
    color: #333333;
    margin-bottom: .13rem;
}
.turnTo-head span[data-v-7d8ff357] {
    font-size: .32rem;
    font-family: PingFang;
    font-weight: 500;
    color: #666666;
}
.turnTo-info[data-v-7d8ff357] {
  background-color: #ffffff;
  border: 1px solid #3975C6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 16px;
  margin: 0 .27rem .19rem;
}
.turnTo-info .turnTo-info-l[data-v-7d8ff357] {
    font-size: .37rem;
    font-family: PingFang;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: start;
        align-content: flex-start;
}
.turnTo-info .turnTo-info-l span[data-v-7d8ff357] {
      color: #333333;
      margin-left: 9px;
      line-height: 13px;
}
.turnTo-info .turnTo-info-r[data-v-7d8ff357] {
    color: #999999;
}
.turnTo-info .turnTo-info-r img[data-v-7d8ff357] {
      width: .13rem;
      height: .21rem;
      margin-left: .21rem;
}
.turnTo-btn[data-v-7d8ff357] {
  height: 2.21rem;
  background: #FFFFFF;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.turnTo-btn button[data-v-7d8ff357] {
    width: 9.2rem;
    height: 1.04rem;
    background: #4378BE;
    border-radius: .53rem;
    border: none;
    font-size: .4rem;
    font-family: SourceHanSansCN;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 auto;
}

.hall-popup .head-ctn {
  position: relative;
  text-align: center;
  padding-top: 0.41rem;
  font-size: 0.43rem;
  color: #333;
  font-weight: 800;
}
.hall-popup .head-ctn .van-icon-arrow-left {
  position: absolute;
  top: 0.41rem;
  left: 0.41rem;
  font-size: 0.4267rem;
  color: rgb(153, 153, 153);
}
.hall-popup .van-popup__close-icon {
  color: rgb(153, 153, 153);
}

.turnResult[data-v-2b6441fa] {
  width: 100%;
  height: 100vh;
  background-color: #f7f8fc;
  padding-top: 4.27rem;
}
.turnResult .turnResult-content[data-v-2b6441fa] {
    text-align: center;
    margin: 0 auto;
}
.turnResult .turnResult-content img[data-v-2b6441fa] {
      width: 4.08rem;
      height: 3.31rem;
}
.turnResult .turnResult-content p[data-v-2b6441fa] {
      font-size: .37rem;
      font-family: PingFang;
      font-weight: 400;
      color: #666666;
      margin-top: .8rem;
}

@charset "UTF-8";
.to-btn[data-v-65d68b83] {
  background-color: #ffffff;
  width: 100%;
  height: 2.21rem;
  position: fixed;
  bottom: 0;
  left: 0;
}
.to-btn .to-btn-content[data-v-65d68b83] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .53rem;
}
.to-btn .to-btn-content .to-btn-content-l[data-v-65d68b83] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.to-btn .to-btn-content img[data-v-65d68b83] {
      width: .4rem;
      height: .4rem;
}
.to-btn .to-btn-content span[data-v-65d68b83] {
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #333333;
      margin: 0 12px 0 5px;
}
.to-btn .to-btn-content button[data-v-65d68b83] {
      width: 7.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      border: none;
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #FFFFFF;
}
.choose[data-v-65d68b83] {
  border: 1px solid #3975C6;
}
.turnReferenceList[data-v-65d68b83] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: .4rem;
  padding-bottom: 2.67rem;
}
.referenceList[data-v-65d68b83] {
  margin: 0 .27rem;
}
.referenceList .list-item[data-v-65d68b83] {
    background-color: #fff;
    border-radius: 5px;
    padding: .45rem .37rem;
    padding-bottom: .13rem;
    margin-bottom: .19rem;
}
.referenceList .list-item .list-item-title[data-v-65d68b83] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .8rem;
}
.referenceList .list-item .list-item-title .title-l[data-v-65d68b83] {
        font-size: .37rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.referenceList .list-item .list-item-title .title-r[data-v-65d68b83] {
        font-size: 10px;
        display: inline-block;
        padding: .08rem .16rem;
        color: #ffffff;
        border-radius: 5px;
}
.referenceList .list-item .list-item-row[data-v-65d68b83] {
      margin-bottom: .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: .32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #333333;
}
.referenceList .list-item .list-item-row .row-l[data-v-65d68b83] {
        color: #666666;
}
.line[data-v-65d68b83] {
  width: 100%;
  height: 1px;
  background: #ECF0F9;
  margin: 10px 0;
}
.green[data-v-65d68b83] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-65d68b83] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.brown[data-v-65d68b83] {
  background: #e0e0e0;
  color: #999999;
}
.red[data-v-65d68b83] {
  background: red;
}
.top-content[data-v-65d68b83] {
  width: 100%;
  height: 61.88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-content .search-box[data-v-65d68b83] {
    width: 100%;
}
.top-content .search-box[data-v-65d68b83] .van-field__control {
      font-weight: 500;
}
.top-content .add-box[data-v-65d68b83] {
    width: 37.5px;
}
.top-content .add-box .add-box-wrap[data-v-65d68b83] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-right: 15px;
}
.top-content .add-box .add-box-wrap img[data-v-65d68b83] {
        width: 18.75px;
        height: 18.75px;
}
.top-content .add-box .add-box-wrap div[data-v-65d68b83] {
        white-space: nowrap;
        -webkit-transform: scale(0.9);
                transform: scale(0.9);
        font-size: 10.13px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #ffffff;
}
/* 搜索框 */
.van-search[data-v-65d68b83] {
  height: 61.12px;
  width: 100%;
}
.van-search .van-search__action[data-v-65d68b83] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-65d68b83] {
    height: 34.88px;
}
.van-search .van-search__content .van-cell[data-v-65d68b83] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-65d68b83] .van-field__left-icon {
      width: 15px;
      height: 15px;
      margin: 3px 9.38px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-65d68b83] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-65d68b83] {
      margin-left: 15px;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-65d68b83]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-65d68b83]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-65d68b83]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-65d68b83]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.turnOpportunityList[data-v-65d68b83] {
  background-color: #3975c6;
  width: 100%;
}
.to-list[data-v-65d68b83] {
  margin: 0 10.13px;
  padding-top: 15px;
}
.to-list-item[data-v-65d68b83] {
  background-color: #ffffff;
  border-radius: .13rem;
  padding: 13.88px 10.13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 7.13px;
}
.to-list-item .list-item-top[data-v-65d68b83] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.to-list-item .list-item-top .top-head[data-v-65d68b83] {
      width: 45px;
      height: 45px;
}
.to-list-item .list-item-top .item-top-info[data-v-65d68b83] {
      width: 100%;
      margin-left: .21rem;
}
.to-list-item .list-item-top .item-top-info .info-t[data-v-65d68b83] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.to-list-item .list-item-top .item-top-info .info-t .info-t-r[data-v-65d68b83] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end;
}
.to-list-item .list-item-top .item-top-info .info-t .name[data-v-65d68b83] {
          font-size: 16.13px;
          font-family: PingFang;
          font-weight: bold;
          color: #333333;
          max-width: 2.13rem;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
}
.to-list-item .list-item-top .item-top-info .info-t .phone[data-v-65d68b83] {
          font-size: 12px;
          font-family: PingFang;
          font-weight: 500;
          color: #666666;
          margin-left: .08rem;
}
.to-list-item .list-item-top .item-top-info .info-t .sign span[data-v-65d68b83] {
          font-size: 10.13px;
          font-family: PingFang;
          font-weight: 500;
          color: #FFFFFF;
          display: inline-block;
          padding: .05rem .21rem;
          border-radius: .13rem;
}
.to-list-item .list-item-top .item-top-info .info-b[data-v-65d68b83] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 4.88px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign[data-v-65d68b83] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-right: 13.88px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign img[data-v-65d68b83] {
            height: 10.88px;
            margin-right: 3px;
}
.to-list-item .list-item-top .item-top-info .info-b .info-b-sign span[data-v-65d68b83] {
            font-size: 12px;
            font-family: PingFang;
            font-weight: 500;
            color: #666666;
}
.to-list-item .item-address[data-v-65d68b83] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 13.13px;
}
.to-list-item .item-address img[data-v-65d68b83] {
      width: 10.13px;
      height: 12px;
      margin-right: 4.88px;
}
.to-list-item .item-address span[data-v-65d68b83] {
      font-size: 12px;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
      display: inline-block;
      max-width: 90%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}
.to-list-item .item-tips[data-v-65d68b83] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.to-list-item .item-tips .item-tips-item[data-v-65d68b83] {
      background: #EEEEEE;
      border-radius: .27rem;
      padding: .11rem .32rem;
      margin: .27rem .13rem 0 0;
}
.to-list-item .item-line[data-v-65d68b83] {
    width: 100%;
    height: .03rem;
    background: #F7F8FC;
    margin: .27rem 0;
}
.to-list-item .item-time[data-v-65d68b83] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 12px;
    font-family: PingFang;
    font-weight: 500;
    color: #999999;
}

.to-btn[data-v-7fff3917] {
  background-color: #ffffff;
  width: 100%;
  height: 2.21rem;
  position: fixed;
  bottom: 0;
  left: 0;
}
.to-btn .to-btn-content[data-v-7fff3917] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .53rem;
}
.to-btn .to-btn-content .to-btn-content-l[data-v-7fff3917] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.to-btn .to-btn-content img[data-v-7fff3917] {
      width: .4rem;
      height: .4rem;
}
.to-btn .to-btn-content span[data-v-7fff3917] {
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #333333;
      margin: 0 12px 0 5px;
}
.to-btn .to-btn-content button[data-v-7fff3917] {
      width: 7.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      border: none;
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #FFFFFF;
}
.choose[data-v-7fff3917] {
  border: 1px solid #3975C6;
}
.turnReferenceList[data-v-7fff3917] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: .4rem;
  padding-bottom: 2.67rem;
}
.referenceList[data-v-7fff3917] {
  margin: 0 .27rem;
}
.referenceList .list-item[data-v-7fff3917] {
    background-color: #fff;
    border-radius: 5px;
    padding: .45rem .37rem;
    padding-bottom: .13rem;
    margin-bottom: .19rem;
}
.referenceList .list-item .list-item-title[data-v-7fff3917] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .8rem;
}
.referenceList .list-item .list-item-title .title-l[data-v-7fff3917] {
        font-size: .37rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.referenceList .list-item .list-item-title .title-r[data-v-7fff3917] {
        font-size: 10px;
        display: inline-block;
        padding: .08rem .16rem;
        color: #ffffff;
        border-radius: 5px;
}
.referenceList .list-item .list-item-row[data-v-7fff3917] {
      margin-bottom: .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: .32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #333333;
}
.referenceList .list-item .list-item-row .row-l[data-v-7fff3917] {
        color: #666666;
}
.line[data-v-7fff3917] {
  width: 100%;
  height: 1px;
  background: #ECF0F9;
  margin: 10px 0;
}
.green[data-v-7fff3917] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-7fff3917] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.brown[data-v-7fff3917] {
  background: #e0e0e0;
  color: #999999;
}
.red[data-v-7fff3917] {
  background: red;
}

.to-btn[data-v-3675ffd8] {
  background-color: #ffffff;
  width: 100%;
  height: 2.21rem;
  position: fixed;
  bottom: 0;
  left: 0;
}
.to-btn .to-btn-content[data-v-3675ffd8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .53rem;
}
.to-btn .to-btn-content .to-btn-content-l[data-v-3675ffd8] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.to-btn .to-btn-content img[data-v-3675ffd8] {
      width: .4rem;
      height: .4rem;
}
.to-btn .to-btn-content span[data-v-3675ffd8] {
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #333333;
      margin: 0 12px 0 5px;
}
.to-btn .to-btn-content button[data-v-3675ffd8] {
      width: 7.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      border: none;
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #FFFFFF;
}
.choose[data-v-3675ffd8] {
  border: 1px solid #3975C6;
}
.turnReferenceList[data-v-3675ffd8] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: .4rem;
  padding-bottom: 2.67rem;
}
.referenceList[data-v-3675ffd8] {
  margin: 0 .27rem;
}
.referenceList .list-item[data-v-3675ffd8] {
    background-color: #fff;
    border-radius: 5px;
    padding: .45rem .37rem;
    padding-bottom: .13rem;
    margin-bottom: .19rem;
}
.referenceList .list-item .list-item-title[data-v-3675ffd8] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .8rem;
}
.referenceList .list-item .list-item-title .title-l[data-v-3675ffd8] {
        font-size: .37rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.referenceList .list-item .list-item-title .title-r[data-v-3675ffd8] {
        font-size: 10px;
        display: inline-block;
        padding: .08rem .16rem;
        color: #ffffff;
        border-radius: 5px;
}
.referenceList .list-item .list-item-row[data-v-3675ffd8] {
      margin-bottom: .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: .32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #333333;
}
.referenceList .list-item .list-item-row .row-l[data-v-3675ffd8] {
        color: #666666;
}
.line[data-v-3675ffd8] {
  width: 100%;
  height: 1px;
  background: #ECF0F9;
  margin: 10px 0;
}
.green[data-v-3675ffd8] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-3675ffd8] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.brown[data-v-3675ffd8] {
  background: #e0e0e0;
  color: #999999;
}
.red[data-v-3675ffd8] {
  background: red;
}

.to-btn[data-v-1c48fab3] {
  background-color: #ffffff;
  width: 100%;
  height: 2.21rem;
  position: fixed;
  bottom: 0;
  left: 0;
}
.to-btn .to-btn-content[data-v-1c48fab3] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: .53rem;
}
.to-btn .to-btn-content .to-btn-content-l[data-v-1c48fab3] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.to-btn .to-btn-content img[data-v-1c48fab3] {
      width: .4rem;
      height: .4rem;
}
.to-btn .to-btn-content span[data-v-1c48fab3] {
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #333333;
      margin: 0 12px 0 5px;
}
.to-btn .to-btn-content button[data-v-1c48fab3] {
      width: 7.2rem;
      height: 1.04rem;
      background: #4378BE;
      border-radius: .53rem;
      border: none;
      font-size: .4rem;
      font-family: SourceHanSansCN;
      font-weight: 400;
      color: #FFFFFF;
}
.choose[data-v-1c48fab3] {
  border: 1px solid #3975C6;
}
.turnReferenceList[data-v-1c48fab3] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: .4rem;
  padding-bottom: 2.67rem;
}
.referenceList[data-v-1c48fab3] {
  margin: 0 .27rem;
}
.referenceList .list-item[data-v-1c48fab3] {
    background-color: #fff;
    border-radius: 5px;
    padding: .45rem .37rem;
    padding-bottom: .13rem;
    margin-bottom: .19rem;
}
.referenceList .list-item .list-item-title[data-v-1c48fab3] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: .8rem;
}
.referenceList .list-item .list-item-title .title-l[data-v-1c48fab3] {
        font-size: .37rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.referenceList .list-item .list-item-title .title-r[data-v-1c48fab3] {
        font-size: 10px;
        display: inline-block;
        padding: .08rem .16rem;
        color: #ffffff;
        border-radius: 5px;
}
.referenceList .list-item .list-item-row[data-v-1c48fab3] {
      margin-bottom: .27rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: .32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #333333;
}
.referenceList .list-item .list-item-row .row-l[data-v-1c48fab3] {
        color: #666666;
}
.line[data-v-1c48fab3] {
  width: 100%;
  height: 1px;
  background: #ECF0F9;
  margin: 10px 0;
}
.green[data-v-1c48fab3] {
  background: #24b277;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.blue[data-v-1c48fab3] {
  background: #3975c6;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.brown[data-v-1c48fab3] {
  background: #e0e0e0;
  color: #999999;
}
.red[data-v-1c48fab3] {
  background: red;
}

.team[data-v-2d9d2866] {
  width: 100%;
  min-height: 100vh;
  background-color: #f7f8fc;
  padding-top: 0.53rem;
  padding-bottom: 2.67rem;
}
.team .team-list .list-item[data-v-2d9d2866] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 0.4rem 0.27rem;
    margin: 0 10px 7px;
}
.team .team-list .list-item .list-item-info[data-v-2d9d2866] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.team .team-list .list-item .list-item-info img[data-v-2d9d2866] {
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 50%;
        margin-right: 9px;
}
.team .team-list .list-item .list-item-info .list-item-info-title span[data-v-2d9d2866] {
        font-size: 0.37rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
}
.team .team-list .list-item .list-item-info .list-item-info-title p[data-v-2d9d2866] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #3976c6;
        margin-top: 6px;
}
.team .team-list .list-item .list-item-btn[data-v-2d9d2866] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.team .team-list .list-item .list-item-btn button[data-v-2d9d2866] {
        border: none;
        border-radius: 5px;
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        background-color: transparent;
        height: 0.64rem;
}
.team .team-list .list-item .list-item-btn .btn-remove[data-v-2d9d2866] {
        border: 1px solid #da291c;
        color: #da291c;
        margin-right: 0.13rem;
        width: 1.55rem;
}
.team .team-list .list-item .list-item-btn .btn-anew[data-v-2d9d2866] {
        color: #ffffff;
        background: #3975c6;
        padding: 0 0.16rem;
}
.team-btn[data-v-2d9d2866] {
  width: 100%;
  height: 83px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-btn .btn-edit[data-v-2d9d2866] {
    width: 9.2rem;
    height: 1.04rem;
    background: #4378be;
    border-radius: 0.53rem;
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
    border: none;
}
.team-btn .btn-add[data-v-2d9d2866] {
    border: none;
    width: 5.44rem;
    height: 1.04rem;
    background: rgba(67, 120, 190, 0.2);
    border-radius: 0.53rem;
    margin-right: 0.4rem;
    font-size: 0.4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #4378be;
}
.team-btn .btn-add .btn-add-div[data-v-2d9d2866] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.team-btn .btn-add img[data-v-2d9d2866] {
      width: 0.43rem;
      height: 0.43rem;
      margin-right: 0.13rem;
}
.team-btn .btn-confirm[data-v-2d9d2866] {
    border: none;
    width: 3.36rem;
    height: 1.04rem;
    background: #4378be;
    border-radius: 0.53rem;
    font-size: 0.4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
}
.delete-text[data-v-2d9d2866] {
  text-align: center;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin: 24px 0 1.23rem 0;
}
[data-v-2d9d2866] .van-dialog {
  border-radius: 0.13rem;
}
[data-v-2d9d2866] .van-dialog__header {
  font-size: 0.45rem;
  font-family: SourceHanSansCN;
  font-weight: 500;
  color: #333333;
}
.dialog[data-v-2d9d2866] {
  margin: 0.61rem 0 0.96rem 0;
}
.dialog .dialog-line[data-v-2d9d2866] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.32rem 0;
    margin: 0 0.43rem;
    border-bottom: 1px solid rgba(222, 223, 226, 0.5);
}
.dialog .dialog-line .dialog-line-l[data-v-2d9d2866] {
      font-size: 0.37rem;
      font-family: PingFang;
      font-weight: 500;
      color: #333333;
}
.dialog .dialog-line .dialog-line-l span[data-v-2d9d2866] {
        color: #db1717;
}
.dialog .dialog-line .dialog-line-r[data-v-2d9d2866] {
      font-size: 0.37rem;
      font-family: PingFang;
      font-weight: 400;
      color: #999999;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.dialog .dialog-line .dialog-line-r img[data-v-2d9d2866] {
        margin-left: 0.27rem;
        width: 0.13rem;
        height: 0.21rem;
}

@charset "UTF-8";
.list_container[data-v-9d2f603a] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list_container .cell-title-required[data-v-9d2f603a] {
    position: relative;
}
.list_container .cell-title-required[data-v-9d2f603a]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.list_container .list_wrap[data-v-9d2f603a] {
    width: 100%;
    height: 100%;
}
.list_container .list_wrap .list_search[data-v-9d2f603a] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list_container .list_wrap .list_search .list_search-content[data-v-9d2f603a] {
        width: 100%;
}
.list_container .list_wrap .list_search .add-box[data-v-9d2f603a] {
        width: 1rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap[data-v-9d2f603a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-right: 0.4rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap img[data-v-9d2f603a] {
            width: 0.5rem;
            height: 0.5rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap div[data-v-9d2f603a] {
            white-space: nowrap;
            -webkit-transform: scale(0.9);
                    transform: scale(0.9);
            font-size: 0.27rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
}
.list_container .list_wrap .list_content[data-v-9d2f603a] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_content .list_filter[data-v-9d2f603a] {
        width: 100%;
        height: 1.24rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap[data-v-9d2f603a] {
          overflow-y: hidden;
          padding-top: 0.28rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head[data-v-9d2f603a] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.4rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .dropDown-sec-container[data-v-9d2f603a] {
              margin-left: 0 !important;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .month-filter[data-v-9d2f603a] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box[data-v-9d2f603a] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box span[data-v-9d2f603a] {
                margin-right: 0.09rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box .show-img[data-v-9d2f603a] {
                width: 0.17rem;
                height: 0.12rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-9d2f603a] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            padding-bottom: 40px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-9d2f603a]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list_container .list_wrap .list_main[data-v-9d2f603a] {
      z-index: 2;
      width: 100%;
      height: calc(100% - 1.24rem);
      background: #f7f8fc;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_main .list_main-wrap[data-v-9d2f603a] {
        width: 100%;
        height: calc(100% - 1rem);
        overflow-y: scroll;
}
.list_container .list_wrap .list_main .list_main-wrap .list_main-total[data-v-9d2f603a] {
          font-size: 0.32rem;
          font-weight: 500;
          color: #666666;
}
.list_container .list_wrap .list_main .list_main-wrap .title-ctn[data-v-9d2f603a] {
          padding: 0.35rem 0.42rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn[data-v-9d2f603a] {
          font-size: 0.32rem;
          font-weight: 500;
          color: #666666;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn img[data-v-9d2f603a] {
            width: 0.49rem;
            height: 0.49rem;
            display: inline-block;
            vertical-align: middle;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn span[data-v-9d2f603a] {
            display: inline-block;
            vertical-align: middle;
            margin-left: 0.12rem;
            color: #3975C6;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list[data-v-9d2f603a] {
          width: 100%;
          height: 100%;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item[data-v-9d2f603a] {
            margin-bottom: 0.19rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-9d2f603a] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-9d2f603a] {
                font-size: 0.32rem;
                font-weight: 500;
                color: #666666;
                line-height: 0.65rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-9d2f603a]:last-of-type {
                  color: #333;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .item-btn[data-v-9d2f603a] {
              background: #eeeeee;
              border-radius: 6px;
              padding: 0 0.26rem;
              font-size: 0.32rem;
              font-weight: 500;
              color: #999999;
              margin-left: 0.2rem;
              display: inline-block;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .item-btn-info[data-v-9d2f603a] {
              background: #3975c6 !important;
              color: #fff !important;
}
.list_container[data-v-9d2f603a] .van-cell-group--inset {
    margin: 0 .27rem;
    padding-top: .1rem;
}
.list_container[data-v-9d2f603a] .van-cell-group--inset .van-cell {
      padding-left: .27rem;
      padding-right: .27rem;
}
.list_container[data-v-9d2f603a] .van-cell-group--inset .van-cell::after {
        border-bottom-color: #F7F8FC;
}
/* 搜索框 */
.van-search[data-v-9d2f603a] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-9d2f603a] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-9d2f603a] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-9d2f603a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-9d2f603a] .van-field__left-icon {
        width: 0.4rem;
        height: 0.4rem;
        margin: 0.08rem 0.25rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-9d2f603a] {
        width: 100%;
        height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-9d2f603a] {
        margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-9d2f603a]::-webkit-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-9d2f603a]::-moz-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-9d2f603a]::-ms-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-9d2f603a]::placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .popup_content[data-v-9d2f603a] {
    width: 8.27rem;
    height: 6.61rem;
    background: #ffffff;
    border-radius: 0rem;
}
.icon-box[data-v-9d2f603a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-box .icon-btn-img[data-v-9d2f603a] {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.1rem;
}
.icon-box .icon-btn[data-v-9d2f603a] {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.1rem;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.icon-box .icon-minus[data-v-9d2f603a] {
    background: #24b277;
}
.icon-box .icon-minus[data-v-9d2f603a]::before {
      content: "";
      width: 0.2rem;
      height: 0.04rem;
      background: #fff;
      position: absolute;
      top: calc(50% - 0.02rem);
      left: calc(50% - 0.1rem);
}
.icon-box .icon-add[data-v-9d2f603a] {
    background: #da291c;
}
.icon-box .icon-add[data-v-9d2f603a]::before {
      content: "";
      width: 0.2rem;
      height: 0.04rem;
      background: #fff;
      position: absolute;
      top: calc(50% - 0.02rem);
      left: calc(50% - 0.1rem);
}
.icon-box .icon-add[data-v-9d2f603a]::after {
      content: "";
      width: 0.05rem;
      height: 0.2rem;
      background: #fff;
      position: absolute;
      top: calc(50% - 0.1rem);
      left: calc(50% - 0.02rem);
}
.popup_search-designer .title[data-v-9d2f603a] {
  font-size: 0.43rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: 0.5rem 0 0;
}
.popup_search-designer .empty-box[data-v-9d2f603a] {
  text-align: center;
}
.popup_search-designer .btn-group[data-v-9d2f603a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem 0;
}
.popup_search-designer .btn-group .btn-canel[data-v-9d2f603a] {
    width: 4.46rem;
    height: 1.05rem;
    background: #eeeeee;
    border-radius: 1rem;
    font-size: 0.41rem;
    font-weight: 500;
    color: #666666;
}
.popup_search-designer .btn-group .btn-submit[data-v-9d2f603a] {
    width: 4.46rem;
    height: 1.05rem;
    background: #4378be !important;
    border-radius: 1rem;
    font-size: 0.41rem;
    font-weight: 500;
    color: #ffffff;
}
.popup_search-designer[data-v-9d2f603a] .van-search__content .van-cell {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}
[data-v-9d2f603a] .van-picker-column__item--selected {
  color: #3975c6;
}
[data-v-9d2f603a] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
[data-v-9d2f603a] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
[data-v-9d2f603a] .van-field__control {
  font-weight: 500;
}
[data-v-9d2f603a] .van-cell {
  font-weight: 500 !important;
}
[data-v-9d2f603a] .van-cell .van-cell__title {
    font-size: 0.38rem !important;
    color: #333;
}
[data-v-9d2f603a] .van-dialog {
  border-radius: 5px !important;
}
[data-v-9d2f603a] .van-dialog .van-dialog__header {
    padding-bottom: 0.5rem;
}
[data-v-9d2f603a] .van-dialog .van-dialog__confirm,[data-v-9d2f603a] .van-dialog .van-dialog__confirm:active {
    color: #4378BE !important;
}
[data-v-9d2f603a] .van-search .van-search__content .van-cell {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@charset "UTF-8";
.list_container[data-v-252255ae] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list_container .list_wrap[data-v-252255ae] {
    width: 100%;
    height: 100%;
}
.list_container .list_wrap .list_search[data-v-252255ae] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list_container .list_wrap .list_search .list_search-content[data-v-252255ae] {
        width: 100%;
}
.list_container .list_wrap .list_content[data-v-252255ae] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_content .list_filter[data-v-252255ae] {
        width: 100%;
        height: 1.24rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap[data-v-252255ae] {
          overflow-y: hidden;
          padding-top: 0.28rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head[data-v-252255ae] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.4rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .dropDown-sec-container[data-v-252255ae] {
              margin-left: 0 !important;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .month-filter[data-v-252255ae] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box[data-v-252255ae] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box span[data-v-252255ae] {
                margin-right: 0.09rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box .show-img[data-v-252255ae] {
                width: 0.17rem;
                height: 0.12rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-252255ae] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            padding-bottom: 40px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-252255ae]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list_container .list_wrap .list_content .list_main[data-v-252255ae] {
        z-index: 2;
        width: 100%;
        height: calc(100% - 1.24rem);
        background: #f7f8fc;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap[data-v-252255ae] {
          width: 100%;
          height: calc(100% - 1rem);
          overflow-y: scroll;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .list_main-total[data-v-252255ae] {
            display: block;
            font-size: 0.32rem;
            font-weight: 500;
            color: #666666;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list[data-v-252255ae] {
            width: 100%;
            height: 100%;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item[data-v-252255ae] {
              margin-bottom: 0.19rem;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .title-item[data-v-252255ae] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -ms-flex-line-pack: center;
                    align-content: center;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-tag[data-v-252255ae] {
                  padding: 0.06rem 0.12rem;
                  border-color: #3975c6;
                  font-size: 0.32rem;
                  font-weight: 500;
                  color: #3975c6;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .title-btn[data-v-252255ae] {
                background: #3975c6;
                -webkit-box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
                        box-shadow: 0 3px 9px 0 rgba(57, 117, 198, 0.31);
                font-size: 0.32rem;
                font-weight: 500;
                color: #ffffff;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .item-btn[data-v-252255ae] {
                background: #eeeeee;
                border-radius: 6px;
                padding: 0 0.26rem;
                font-size: 0.32rem;
                font-weight: 500;
                color: #999999;
                margin-left: 0.2rem;
                display: inline-block;
                margin-right: 10px;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-252255ae] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-252255ae] {
                  font-size: 0.32rem;
                  font-weight: 500;
                  color: #666666;
                  line-height: 0.65rem;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-252255ae]:last-of-type {
                    color: #333;
}
.list_container .list_wrap .list_content .list_main .list_main-wrap .scroll-list .list_main-item .label-item span .label-btn[data-v-252255ae] {
                    color: #3975c6;
                    margin: 0 0.2rem;
                    font-style: normal;
}
.list_container .list_wrap .list_content .list_main .title-ctn[data-v-252255ae] {
          padding: 0.35rem 0.42rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.list_container .list_wrap .list_content .list_main .title-ctn .clear-all-ctn[data-v-252255ae] {
            font-size: 0.32rem;
            font-weight: 500;
            color: #666666;
}
.list_container .list_wrap .list_content .list_main .title-ctn .clear-all-ctn img[data-v-252255ae] {
              width: 0.49rem;
              height: 0.49rem;
              display: inline-block;
              vertical-align: middle;
}
.list_container .list_wrap .list_content .list_main .title-ctn .clear-all-ctn span[data-v-252255ae] {
              display: inline-block;
              vertical-align: middle;
              margin-left: 0.12rem;
              color: #3975c6;
}
.list_container[data-v-252255ae] .van-cell-group--inset {
    margin: 0 0.27rem;
    padding-top: 0.1rem;
}
.list_container[data-v-252255ae] .van-cell-group--inset .van-cell {
      padding-left: 0.27rem;
      padding-right: 0.27rem;
}
.list_container[data-v-252255ae] .van-cell-group--inset .van-cell::after {
        border-bottom-color: #f7f8fc;
}
/* 搜索框 */
.van-search[data-v-252255ae] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-252255ae] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-252255ae] {
    height: 0.93rem;
}
.van-search .van-search__content[data-v-252255ae] .van-field__control {
    font-weight: 500;
}
.van-search .van-search__content .van-cell[data-v-252255ae] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-252255ae] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-252255ae] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-252255ae] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-252255ae]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-252255ae]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-252255ae]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-252255ae]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .popup_content[data-v-252255ae] {
    width: 8.27rem;
    height: 6.61rem;
    background: #ffffff;
    border-radius: 0rem;
}

.detail-ctn[data-v-4b3659f2] {
  border-top-left-radius: 0.2667rem;
  border-top-right-radius: 0.2667rem;
  background: #f7f8fc;
  min-height: 100vh;
}
.detail-ctn .tab-select[data-v-4b3659f2] {
    padding-left: 0.5333rem;
    background: #fff;
    margin-bottom: 0.2133rem;
}
.detail-ctn .echarts-ctn[data-v-4b3659f2] {
    background: #fff;
    border-radius: 0.14rem;
}
.detail-ctn .echarts-ctn .echarts-title[data-v-4b3659f2] {
      padding: 0.32rem;
      color: #333;
      font-size: 0.4267rem;
      font-weight: bold;
}

.data-select[data-v-a395f5f8] {
  padding: 0.4267rem 0.16rem;
  background: #fff;
  border-radius: 0.14rem;
  margin-bottom: 0.2133rem;
}
.data-select .year-select[data-v-a395f5f8] {
    margin-bottom: 0.4267rem;
    margin-left: 0.4267rem;
    position: relative;
}
.data-select .year-select .year-ctn[data-v-a395f5f8] {
      color: #3975c6;
      font-size: 0.4267rem;
      font-weight: 600;
      margin-right: 0.1067rem;
}
.data-select .year-select .select-img[data-v-a395f5f8] {
      width: 0.23rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
}
.data-select .month-select[data-v-a395f5f8] {
    color: #333;
}
.data-select .month-select[data-v-a395f5f8] .van-grid-item__content {
      padding: 0.16rem 0;
}
.data-select .month-select[data-v-a395f5f8] .van-grid-item__content--surround::after {
      border: none;
}
.data-select .month-select .month[data-v-a395f5f8] {
      font-size: 0.3733rem;
      margin-bottom: 0.1067rem;
}
.data-select .month-select .data[data-v-a395f5f8] {
      font-size: 0.3467rem;
}
.data-select .month-select .data .active-text[data-v-a395f5f8] {
        color: #24b277;
}
.data-select .month-select .data .inactive-text[data-v-a395f5f8] {
        color: #f5ab32;
}
.data-select .month-select .data .fill-text[data-v-a395f5f8] {
        font-size: 0.32rem;
        color: #3975c6;
}
.data-select .month-select .data .set-text[data-v-a395f5f8] {
        font-size: 0.32rem;
        color: #999999;
}
.data-select .month-select .active-item[data-v-a395f5f8] {
      background: #3975c6 !important;
      color: #fff !important;
}
.data-select .month-select .active-item .active-text[data-v-a395f5f8] {
        color: #fff !important;
}
.data-select .month-select .active-item .inactive-text[data-v-a395f5f8] {
        color: #fff !important;
}
.data-select .month-select .active-item .fill-text[data-v-a395f5f8] {
        color: #fff !important;
}
.data-select .month-select .active-item .set-text[data-v-a395f5f8] {
        color: #fff !important;
}
.data-select .month-select .select-month-ctn[data-v-a395f5f8] {
      background: #f7f8fc;
      padding: 0.2rem 0;
      width: 1.5rem;
      text-align: center;
      border-radius: 0.14rem;
}
[data-v-a395f5f8] .van-picker__columns .van-picker-column:nth-child(2) {
  display: none;
}

[data-v-64c47677] .vxe-cell {
  padding-left: 0.1067rem;
  padding-right: 0.1067rem;
}
.vxe-header--row .vxe-cell[data-v-64c47677] {
  padding: 0.1067rem;
}
.fill-text[data-v-64c47677] {
  color: #3975c6;
}
.detail-ctn[data-v-64c47677] {
  font-size: 0.32rem;
  font-weight: 500;
  text-decoration: underline;
  color: #3975c6;
  margin-left: 2px;
}
.ban-text[data-v-64c47677] {
  color: #b80909;
}
.edit-png[data-v-64c47677] {
  width: 0.32rem;
  margin-left: 0.08rem;
}
.active-text[data-v-64c47677] {
  color: #24b277;
}
.inactive-text[data-v-64c47677] {
  color: #f5ab32;
}
[data-v-64c47677] .vxe-icon--caret-top:before,[data-v-64c47677] .vxe-icon--caret-bottom:before {
  border-bottom-width: 0.4em;
  border-left-width: 0.3em;
  border-right-width: 0.3em;
}

.detail-ctn[data-v-3eaeadee] {
  border-top-left-radius: 0.2667rem;
  border-top-right-radius: 0.2667rem;
  background: #f7f8fc;
  min-height: 100vh;
}
.detail-ctn .tab-select[data-v-3eaeadee] {
    padding-left: 0.5333rem;
    background: #fff;
    margin-bottom: 0.2133rem;
}
.detail-ctn .echarts-ctn[data-v-3eaeadee] {
    background: #fff;
    border-radius: 0.14rem;
}
.detail-ctn .echarts-ctn .echarts-title[data-v-3eaeadee] {
      padding: 0.32rem;
      color: #333;
      font-size: 0.4267rem;
      font-weight: bold;
}

.report_forms[data-v-ac79fe1a] {
  overflow-y: scroll;
}
.report_forms[data-v-ac79fe1a]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.report_forms .report_forms-content[data-v-ac79fe1a] {
    padding: 0 0.27rem;
}
.report_forms .report_forms-content .report_forms-finished[data-v-ac79fe1a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 0.5rem;
}
.report_forms .report_forms-content .report_forms-finished .report_forms-title[data-v-ac79fe1a] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #999999;
        position: relative;
        display: block;
}
.report_forms .report_forms-content .report_forms-finished .report_forms-title[data-v-ac79fe1a]::before {
          content: "";
          width: 0.96rem;
          height: 1px;
          background: #999;
          position: absolute;
          -webkit-transform: translate(-120%, 0.2rem);
                  transform: translate(-120%, 0.2rem);
}
.report_forms .report_forms-content .report_forms-finished .report_forms-title[data-v-ac79fe1a]::after {
          content: "";
          width: 0.96rem;
          height: 1px;
          background: #999;
          position: absolute;
          -webkit-transform: translate(20%, 0.2rem);
                  transform: translate(20%, 0.2rem);
}

.order-search-ctn[data-v-01d72a27] {
  background-color: #ffffff;
  border-radius: 0.13rem;
  margin: 0.26rem auto;
  padding: 0.4rem 0.37rem;
  position: relative;
}
.order-search-ctn .search-ctn[data-v-01d72a27] {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f2fa;
}
.order-search-ctn .search-ctn .search-title[data-v-01d72a27] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      margin-bottom: 10px;
}
.order-search-ctn .search-ctn[data-v-01d72a27] .van-search {
      padding: 0;
}
.order-search-ctn .search-ctn[data-v-01d72a27] .van-field__control {
      font-size: 14px;
      font-weight: 500;
      color: #999999;
}
.order-search-ctn .order-ctn .order-header[data-v-01d72a27] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10px;
}
.order-search-ctn .order-ctn .order-header .header-left .header-type[data-v-01d72a27] {
      font-size: 0.32rem;
      color: #3975c6;
      border: 1px solid #3975c6;
      padding: 0.09rem 0.11rem;
      border-radius: 0.08rem;
}
.order-search-ctn .order-ctn .order-header .header-left .header-code[data-v-01d72a27] {
      font-size: 0.38rem;
      font-weight: bold;
      color: #333;
      margin: 0 0.11rem;
}
.order-search-ctn .order-ctn .order-header .header-left .header-copy[data-v-01d72a27] {
      font-size: 0.27rem;
      color: #333;
      padding: 0.08rem 0.11rem;
      border: 1px solid #333;
      border-radius: 0.11rem;
}
.order-search-ctn .order-ctn .order-header .header-right img[data-v-01d72a27] {
      width: 0.57rem;
      height: 0.57rem;
}
.order-search-ctn .no-order-ctn[data-v-01d72a27] {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 60px 0;
}
.order-search-ctn .no-order-ctn img[data-v-01d72a27] {
      width: 118px;
      height: 122px;
      margin-bottom: 30px;
}

.order-info-ctn .item-class[data-v-783a59f0] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
}
.order-info-ctn .item-class .item-right[data-v-783a59f0] {
    color: #333;
}
.order-info-ctn .detail-ctn > .detail-item-ctn:first-of-type .detail-title[data-v-783a59f0] {
  margin: 0 0 15px;
}
.order-info-ctn .detail-ctn > .detail-item-ctn[data-v-783a59f0]:last-of-type {
  margin-bottom: 0;
}
.order-info-ctn .detail-ctn .detail-item-ctn[data-v-783a59f0] {
  margin-bottom: 25px;
}
.order-info-ctn .detail-ctn .detail-item-ctn .detail-title[data-v-783a59f0] {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin: 15px 0;
}
.order-info-ctn .detail-ctn .detail-item-ctn .detail-item[data-v-783a59f0] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.order-info-ctn .logistics_box[data-v-783a59f0] {
  padding: 0 0.2rem;
  height: calc(100vh - 4.9rem);
  overflow-y: auto;
  overflow-x: hidden;
  width: calc(100% - 0.82rem);
}
.order-info-ctn .logistics_box .logistics_list[data-v-783a59f0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px;
    padding-top: 4px;
    margin-bottom: 12px;
    position: relative;
    width: calc(100% - 0.41rem);
}
.order-info-ctn .logistics_box .logistics_list .logistics_list_content[data-v-783a59f0] {
      width: 100%;
      padding: 0 0.27rem;
}
.order-info-ctn .logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-783a59f0] {
        font-size: 0.32rem;
        font-weight: 500;
        color: #333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 12px;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.order-info-ctn .logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-783a59f0]::after {
          content: "";
          width: 0.2rem;
          height: 0.2rem;
          background: #5076b8;
          border-radius: 50%;
          position: absolute;
          left: -3px;
          z-index: 2;
}
.order-info-ctn .logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-783a59f0]::before {
          content: "";
          position: absolute;
          width: 0.42rem;
          height: 0.42rem;
          background: #cad6ea;
          border-radius: 50%;
          left: -7px;
          z-index: 2;
}
.order-info-ctn .logistics_box .logistics_list .logistics_list_content .logistics_bottom[data-v-783a59f0] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.4rem;
}
.order-info-ctn .logistics_box .logistics_list[data-v-783a59f0]::after {
      content: "";
      position: absolute;
      height: calc(100% - 7px);
      left: 0;
      top: 0.5rem;
      border-left: 2px dashed #cad6ea;
}
.order-info-ctn .logistics_box .hide-line[data-v-783a59f0]::after {
    content: "";
    position: absolute;
    height: calc(100% + 20px);
    left: 0;
    top: 0.6rem;
    border-left: 0 dashed #cad6ea;
}
.order-info-ctn .file-ctn[data-v-783a59f0] {
  background: #f7f8fc;
  padding: 1px 0;
}
.order-info-ctn .file-ctn .file-item[data-v-783a59f0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    margin: 10px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}
.order-info-ctn .file-ctn .file-item .file-left[data-v-783a59f0] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #666;
}
.order-info-ctn .file-ctn .file-item .file-left img[data-v-783a59f0] {
        width: 16px;
        margin-right: 4px;
}
.order-info-ctn .file-ctn .file-item .file-right .btn-item[data-v-783a59f0] {
      font-size: 10px;
      font-weight: 500;
      color: #3975C6;
      padding: 4px 6px;
      border: 1px solid #3975C6;
      border-radius: 4px;
      margin-left: 4px;
}
.order-info-ctn .file-ctn .file-item .file-right .a-btn[data-v-783a59f0] {
      background: #4575C7;
      color: #fff;
      border: none;
}
.order-info-ctn .file-ctn .empty-ctn[data-v-783a59f0] {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    padding: 60px 0;
}
.order-info-ctn .file-ctn .empty-ctn img[data-v-783a59f0] {
      width: 118px;
      height: 122px;
      margin-bottom: 30px;
}
.gray-bg[data-v-783a59f0] {
  margin-top: 8px;
  background: #f7f8fc;
  border-radius: 5px;
  padding: 18px 15px;
}
.no-padding[data-v-783a59f0] {
  margin-top: 0;
  padding: 0;
}

.jgf-ctn .info-item .header-ctn[data-v-5ecf371a] {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  padding: 16px;
}
.jgf-ctn .info-item .main-ctn[data-v-5ecf371a] {
  margin: 0 10px;
  background: #fff;
  padding: 0 15px;
}
.jgf-ctn .info-item .main-ctn .item-ctn[data-v-5ecf371a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f7f8fc;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}
.jgf-ctn .info-item .main-ctn .item-ctn .item-left[data-v-5ecf371a] {
      width: 90px;
      word-break: break-all;
}
.jgf-ctn .info-item .main-ctn .item-ctn .item-right[data-v-5ecf371a] {
      color: #333333;
      text-align: right;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      word-break: break-all;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn[data-v-5ecf371a] {
      background: #EEF3FC;
      padding: 0 15px;
      border-radius: 5px;
      margin-bottom: 10px;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-title[data-v-5ecf371a] {
        font-weight: bold;
        font-size: 14px;
        color: #333333;
        padding: 12px 0;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-item[data-v-5ecf371a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 12px 0;
        border-bottom: 1px solid #f7f8fc;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-item .inner-left[data-v-5ecf371a] {
          width: 100px;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-item .inner-right[data-v-5ecf371a] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          color: #333333;
          text-align: right;
          word-break: break-all;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-item .img-list[data-v-5ecf371a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 10px;
}
.jgf-ctn .info-item .main-ctn .item-ctn .list-ctn .item-inner-ctn .inner-item .img-list img[data-v-5ecf371a] {
            width: 53px;
            height: 53px;
            border-radius: 5px;
            margin-right: 10px;
}

.orderList[data-v-5d47d5ce] {
  background: #eee;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.manage-header[data-v-9e37dfc2] {
  padding: 0.54rem 0.27rem 0;
  background: #4575c7;
}
.card_list[data-v-9e37dfc2] {
  height: calc(100vh - 2.5rem);
  padding: 0 0.27rem;
}
.card_list .my-swipe[data-v-9e37dfc2] {
    border-radius: 0.2rem;
    margin-bottom: 0.19rem;
    margin-top: 0.4rem;
}
.card_list .my-swipe .van-swipe-item[data-v-9e37dfc2] {
      width: 100%;
}
.card_list .my-swipe .van-swipe-item img[data-v-9e37dfc2] {
        width: 100%;
}
.card_list .card_scroll[data-v-9e37dfc2] {
    height: 100%;
    overflow-y: scroll;
}
.card_list .card_scroll[data-v-9e37dfc2]::-webkit-scrollbar {
      display: none;
}
.card_list .card_scroll .card_scroll-list .card_list-group[data-v-9e37dfc2] {
      margin: 0 0 0.19rem !important;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card_list-default[data-v-9e37dfc2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card-content[data-v-9e37dfc2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0.1rem 0;
        font-size: 0.32rem;
        font-weight: 500;
        color: #666666;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card-content .title-ctn[data-v-9e37dfc2] {
          font-size: 0.38rem;
          font-weight: bold;
          color: #333333;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card-content .state-class[data-v-9e37dfc2] {
          font-size: 0.32rem;
          font-weight: 500;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card-content .card-content-list[data-v-9e37dfc2] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .card-content .card-content-list .card-content-listItem[data-v-9e37dfc2] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.card_list .card_scroll .card_scroll-list .card_list-group .card_list-item .left-class[data-v-9e37dfc2] {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
}
.card_list .card_scroll .card_scroll-list .card_list-group .last-item[data-v-9e37dfc2] {
        padding: 0 16px 10px;
}
.card_list .color-red[data-v-9e37dfc2] {
    color: #dd1212;
}
.card_list .color-blue[data-v-9e37dfc2] {
    color: #3975c6;
}
.card_list .color-orange[data-v-9e37dfc2] {
    color: #ef9b13;
}
.card_list .line_through[data-v-9e37dfc2] {
    text-decoration: line-through;
    color: #999;
    font-size: 0.27rem;
    font-weight: 500;
}
.card_list .price-class[data-v-9e37dfc2] {
    color: #333;
    font-size: 0.32rem;
    font-weight: 500;
}

.service-btn-ctn[data-v-93c9861a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.service-btn-ctn .service-btn[data-v-93c9861a] {
    margin-left: 0.2rem;
    padding: 0.1rem 0.27rem;
    line-height: 0.3rem;
    font-size: 0.32rem;
    font-weight: 500;
    color: #3975c6;
    border: 1px solid #3975c6;
    border-radius: 0.14rem;
}
.service-btn-ctn .service-btn-blue[data-v-93c9861a] {
    background: #3975c6 !important;
    color: #ffffff !important;
    border-color: #3975c6 !important;
}
.service-btn-ctn .service-btn-gray[data-v-93c9861a] {
    background: #e5e5e5 !important;
    color: #666 !important;
    border-color: #e5e5e5 !important;
}
.is-detail[data-v-93c9861a] {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0.3rem;
}
.is-detail .service-btn[data-v-93c9861a] {
    border: 1px solid #3975c6;
    border-radius: 0.14rem;
    margin-right: 0.2rem;
    line-height: 0.3rem;
    padding: 0.2rem 0.36rem;
    font-size: 0.38rem;
    font-weight: 500;
    color: #3975c6;
    margin-left: 0;
}

.line_through[data-v-14b04f86] {
  text-decoration: line-through;
  color: #999;
}
.border-class[data-v-14b04f86] {
  padding-bottom: 0.2rem !important;
}
.bill-text[data-v-14b04f86] {
  font-size: 0.38rem;
  font-family: PingFang SC;
  color: #333333;
}
.red-color[data-v-14b04f86] {
  color: #db1717;
}
.line-class[data-v-14b04f86] {
  border-top: 1px solid #f0f2fa;
  padding-top: 0.2rem !important;
}
.orderDetails[data-v-14b04f86] {
  background: #f7f8fc;
  height: 100vh;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.orderDetails .orderDetails_top[data-v-14b04f86] {
    padding: 0.4rem 0.5rem 0.6rem;
    background: #4575c7;
}
.orderDetails .orderDetails_top .orderDetails_top-title[data-v-14b04f86] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #ffffff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.orderDetails .orderDetails_top .orderDetails_top-title img[data-v-14b04f86] {
        width: 0.73rem;
        height: 0.73rem;
        margin-right: 0.2rem;
}
.orderDetails .full-main[data-v-14b04f86] {
    height: 100% !important;
}
.orderDetails .orderDetail_main[data-v-14b04f86] {
    margin-top: -0.2rem;
    background: #f7f8fc;
    padding: 0.54rem 0.27rem 0.27rem;
    border-radius: 0.27rem;
    height: calc(100% - 4.7rem);
    overflow: auto;
}
.orderDetails .orderDetail_main[data-v-14b04f86]::-webkit-scrollbar {
      display: none;
}
.orderDetails .orderDetail_main .main-order-ctn[data-v-14b04f86] .van-cell__title {
      font-size: 0.38rem !important;
      font-weight: 500 !important;
      color: #666666 !important;
}
.orderDetails .orderDetail_main .orderDetails_head-title[data-v-14b04f86] {
      font-size: 0.43rem !important;
      font-weight: bold !important;
      color: #333333 !important;
      margin-bottom: 0.1rem !important;
}
.orderDetails .orderDetail_main .orderDetails_head-title span[data-v-14b04f86] {
        font-size: 0.43rem !important;
        font-weight: bold !important;
        color: #333333 !important;
        margin-bottom: 0.1rem !important;
}
.orderDetails .orderDetail_main .type-title div[data-v-14b04f86] {
      font-size: 0.38rem;
      font-weight: 500;
      color: #666666;
}
.orderDetails .orderDetails_head .orderDetails_head-logo img[data-v-14b04f86] {
    width: 1.89rem;
    height: 1.89rem;
}
.orderDetails .orderDetails_head .orderDetails_head-item[data-v-14b04f86] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.orderDetails .orderDetails_head .orderDetails_head-item .orderDetails_head-time[data-v-14b04f86] {
      font-size: 0.38rem;
      font-weight: 500;
      color: #666666;
}
.orderDetails .orderDetails_head .time-ctn[data-v-14b04f86] {
    text-align: left;
}
.orderDetails .orderDetails_head[data-v-14b04f86] .van-cell__title {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 0.43rem;
}
.orderDetails .orderDetails_server[data-v-14b04f86] {
    margin-bottom: 1rem;
}
.orderDetails .orderDetails_footer[data-v-14b04f86] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.orderDetails .orderDetails_footer .orderDetails_footer-btn[data-v-14b04f86] {
      background: #ffffff;
      padding: 0.53rem 0.4rem 0.64rem;
}
.orderDetails[data-v-14b04f86] .van-cell-group--inset {
    margin: 0 0 0.2rem;
    overflow: initial;
    padding: 0.46rem 0.27rem 0.16rem;
}
.orderDetails[data-v-14b04f86] .van-cell {
    padding: 0;
    margin-bottom: 0.3rem;
}
.orderDetails[data-v-14b04f86] .van-cell__label,
  .orderDetails[data-v-14b04f86] .van-cell__title,
  .orderDetails[data-v-14b04f86] .van-cell__value {
    font-weight: 400;
}
.orderDetails[data-v-14b04f86] .van-field .van-field__body input {
    border: 1px solid #eee;
    display: inline-block;
    height: 0.8rem;
    text-indent: 0.2rem;
}
.orderDetails[data-v-14b04f86] .van-field .van-field__body .van-button {
    font-size: 0.34rem;
}

.cashier_wrap[data-v-099a6e09] {
  height: 100vh;
  padding: 1.2rem 0.27rem 0;
  background: #f7f8fc;
}
.cashier_wrap .cashier_title[data-v-099a6e09] {
    margin: 0.3rem 0;
    display: block;
    font-size: 0.43rem;
    font-weight: bold;
    color: #333333;
    text-align: center;
}
.cashier_wrap .cashier_content .cashier_prices[data-v-099a6e09] {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0.8rem;
    text-align: center;
}
.cashier_wrap .cashier_content .cashier_prices .cashier_prices-item[data-v-099a6e09] {
      margin: 0.1rem;
      font-size: 0.49rem;
      font-weight: bold;
      color: #4575c7;
}
.cashier_wrap .cashier_content .cashier_prices .cashier_prices-item span[data-v-099a6e09] {
        font-size: 0.97rem;
}
.cashier_wrap .cashier_content .cashier_prices .cashier_prices-small[data-v-099a6e09] {
      font-size: 0.32rem;
      font-weight: 500;
      text-decoration: line-through;
      color: #999999;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.cashier_wrap .cashier_content .cashier_qr[data-v-099a6e09] {
    text-align: center;
}
.cashier_wrap .cashier_content .cashier_qr .cashier_qr-img[data-v-099a6e09] {
      margin: auto auto 0.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-explain[data-v-099a6e09] {
    background: #eef3fc;
    border: 1px solid #3975c6;
    border-radius: 0.14rem;
    margin: 0;
    padding: 0.3rem 0;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-explain .title-ctn span[data-v-099a6e09] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-explain[data-v-099a6e09] .van-cell {
      background: unset;
      padding: 0.12rem 0.42rem;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-explain[data-v-099a6e09] .van-cell .van-cell__title,
      .cashier_wrap .cashier_content .cashier_options-list .cashier_options-explain[data-v-099a6e09] .van-cell .van-cell__value {
        font-size: 0.38rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes[data-v-099a6e09] {
    background: #eee;
    margin: 0;
    margin-bottom: 0.5rem;
    border-radius: 0.1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 0.6rem;
    font-size: 0.34rem;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes .cashier_options-ul[data-v-099a6e09] {
      margin-top: 0.2rem;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes[data-v-099a6e09] .van-cell {
      background: #eee;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes[data-v-099a6e09] .van-cell .van-cell__title,
      .cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes[data-v-099a6e09] .van-cell .van-cell__label {
        font-weight: 500;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-notes[data-v-099a6e09] .van-cell .van-cell__label {
        font-size: inherit;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-btnGroup[data-v-099a6e09] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.cashier_wrap .cashier_content .cashier_options-list .cashier_options-detail .cashier_options-btnGroup .cashier_options-btn[data-v-099a6e09] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.cashier_wrap .cashier_content .cashier_options[data-v-099a6e09] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: unset;
    margin: 0.2rem 0;
}
.cashier_wrap .cashier_content .cashier_options .cashier_options-item[data-v-099a6e09] {
      background: #fff;
      margin-bottom: 0.3rem;
      padding: 0.4rem;
      border-radius: 0.14rem;
}
.cashier_wrap .cashier_content .cashier_options .cashier_options-item[data-v-099a6e09] .van-cell__title {
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.cashier_wrap .cashier_content .cashier_options .cashier_options-item .item_img[data-v-099a6e09] {
        width: 0.5rem;
        height: 0.5rem;
        margin-right: 0.15rem;
}
.cashier_wrap .cashier_content .cashier_options .disabled-item[data-v-099a6e09] {
      background: #eeeeee;
}
.cashier_wrap .cashier_content .cashier_options .disabled-item span[data-v-099a6e09] {
        color: #999;
}
.cashier_wrap .cashier_content .cashier_options-small .cashier_options-item[data-v-099a6e09] {
    padding: 0.5rem 0;
}

.message_container[data-v-32bb47bd] {
  width: 84vw;
  padding-top: 0.74rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.message_container .message_container-title[data-v-32bb47bd] {
    font-size: 0.46rem;
    font-weight: 800;
    color: #333333;
}
.message_container .message_container-note[data-v-32bb47bd] {
    margin: 0.4rem 0.5rem 0.2rem;
    font-size: 0.38rem;
    font-weight: 400;
    color: #333333;
    line-break: anywhere;
}
.message_container .message_container-input .message_container-code[data-v-32bb47bd] {
    min-width: 2.12rem;
}
.message_container .message_container-btnGroup[data-v-32bb47bd] {
    width: 100%;
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.message_container .message_container-btnGroup .message_container-btn[data-v-32bb47bd] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      font-size: 0.38rem;
      line-height: 1rem;
      color: #548be0;
}
.message_container .message_container-btnGroup .message_container-btnFull[data-v-32bb47bd] {
      background: #548be0;
      color: #fff;
}
.message_container .message_container-btnGroup .message_container-disabled[data-v-32bb47bd] {
      opacity: 0.5;
}
[data-v-32bb47bd] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  overflow: initial;
}
[data-v-32bb47bd] .van-cell__label,[data-v-32bb47bd] .van-cell__title,[data-v-32bb47bd] .van-cell__value {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #eee;
}
[data-v-32bb47bd] .van-field .van-field__body .van-field__control {
  font-weight: 500;
}
[data-v-32bb47bd] .van-field .van-field__body input {
  display: inline-block;
  height: 0.8rem;
  text-indent: 0.2rem;
}
[data-v-32bb47bd] .van-field .van-field__body .van-button {
  font-size: 0.34rem;
  height: 0.61rem;
  line-height: 0.61rem;
}

.bill_result[data-v-6df9cd05] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
.bill_result .img-ctn[data-v-6df9cd05] {
    width: 4.27rem;
    height: 3.35rem;
    margin: 1.3rem 0;
}
.bill_result .bill_result-title[data-v-6df9cd05] {
    font-size: 0.97rem;
    font-weight: bold;
    color: #4575c7;
}
.bill_result .bill_result-subtitle[data-v-6df9cd05] {
    text-align: center;
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
    margin-top: 0.47rem;
}
.bill_result .bill_result-steps[data-v-6df9cd05] {
    width: 100%;
}
.bill_result .bill_result-steps .first-steps[data-v-6df9cd05] .van-step__title {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-step__circle {
      width: 0.308rem;
      height: 0.308rem;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-step__icon--active {
      border-radius: 50%;
      background: #3975c6;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-step__line {
      height: 0.08rem;
      background: #e8e8e8;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-step--finish .van-step__line {
      background: #d2dff2 !important;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-step__title--active {
      font-size: 0.32rem;
      font-weight: 500;
      color: #333333 !important;
}
.bill_result .bill_result-steps .last-steps[data-v-6df9cd05] .van-step__title {
      -webkit-transform: translateX(50%);
              transform: translateX(50%);
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-steps--horizontal {
      padding-top: 1rem;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-steps--horizontal .van-steps__items {
        margin: 0 1.5rem;
        padding-top: 0.6rem;
        padding-bottom: 0;
}
.bill_result .bill_result-steps[data-v-6df9cd05] .van-steps--horizontal .van-steps__items .van-step__circle-container,
        .bill_result .bill_result-steps[data-v-6df9cd05] .van-steps--horizontal .van-steps__items .van-step__line {
          top: -0.5rem;
}
.bill_result .bill_result-group[data-v-6df9cd05] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.7rem;
    width: calc(100% - 1.5rem);
}
.bill_result .bill_result-group .bill_result-btn[data-v-6df9cd05] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin: 0 0.2rem;
}
.bill_result .bill_result-group .detail-btn[data-v-6df9cd05] {
      background: #3975C6;
      border: 1px solid #3975C6;
      color: #fff;
}
.bill_result .bill_result-foot[data-v-6df9cd05] {
    position: fixed;
    bottom: 1rem;
    color: #548be0;
}

@charset "UTF-8";
.employee-manage[data-v-8771853a] {
  background: #f7f8ff;
  position: relative;
  height: 100vh;
}
.employee-manage .filter-ctn[data-v-8771853a] {
    background: #3975c6;
}
.employee-manage .filter-ctn .input-ctn[data-v-8771853a] {
      /* 搜索框 */
}
.employee-manage .filter-ctn .input-ctn .van-search[data-v-8771853a] {
        height: 1.67rem;
        width: 100%;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__action[data-v-8771853a] {
          color: #ffffff;
}
.employee-manage .filter-ctn .input-ctn .van-search[data-v-8771853a] .van-field__control {
          font-weight: 500;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content[data-v-8771853a] {
          height: 0.95rem;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell[data-v-8771853a] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell[data-v-8771853a] .van-field__left-icon {
              width: 0.4rem;
              height: 0.4rem;
              margin: 0.08rem 0.25rem;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-8771853a] {
              width: 100%;
              height: 100%;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-cell__value[data-v-8771853a] {
              margin-left: 0.4rem;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-8771853a]::-webkit-input-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-8771853a]::-moz-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-8771853a]::-ms-input-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.employee-manage .filter-ctn .input-ctn .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-8771853a]::placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.employee-manage .main-list[data-v-8771853a] {
    margin-top: -0.0267rem;
    background: #f7f8ff;
    padding: 0.4rem 0.27rem;
    height: calc(100% - 7.4667rem);
    overflow: auto;
}
.employee-manage .main-list .item-info[data-v-8771853a] {
      background: #fff;
      padding: 0.41rem 0.27rem;
      border-radius: 0.14rem;
      margin-bottom: 0.19rem;
}
.employee-manage .main-list .item-info .info_top[data-v-8771853a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.employee-manage .main-list .item-info .info_top .avatar-class[data-v-8771853a] {
          width: 1.22rem;
          height: 1.22rem;
          border-radius: 50%;
}
.employee-manage .main-list .item-info .info_top .info-ctn[data-v-8771853a] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          padding: 0 0.2667rem;
          font-size: 0.32rem;
          color: #666;
          min-height: 1.5rem;
}
.employee-manage .main-list .item-info .info_top .info-ctn .info-one[data-v-8771853a] {
            margin-bottom: 0.1333rem;
}
.employee-manage .main-list .item-info .info_top .info-ctn .info-one .name-class[data-v-8771853a] {
              font-size: 0.38rem;
              font-weight: bold;
              color: #333;
}
.employee-manage .main-list .item-info .info_top .role-class[data-v-8771853a] {
          height: 0.32rem;
          line-height: 0.32rem;
          background: #3975c6;
          color: #fff;
          padding: 0.14rem 0.24rem;
          border-radius: 0.14rem;
          font-size: 0.32rem;
}
.employee-manage .main-list .item-info .info-two[data-v-8771853a] {
        line-height: 1.5;
}
.employee-manage .main-list .item-info .info-two img[data-v-8771853a] {
          width: 10px;
          height: 10px;
          margin-right: 5px;
}
.employee-manage .main-list .item-info .btn_bottom[data-v-8771853a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 0.42rem;
}
.employee-manage .main-list .item-info .btn_bottom .button-item[data-v-8771853a] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          font-size: 0.32rem;
          color: #333;
          text-align: center;
          height: 0.38rem;
          line-height: 0.38rem;
}
.employee-manage .main-list .item-info .btn_bottom .button-item img[data-v-8771853a] {
            width: 0.38rem;
            height: 0.38rem;
            vertical-align: middle;
}
.employee-manage .main-list .disable_bg[data-v-8771853a] {
      background: #eee;
}
.employee-manage .main-list .disable_bg .disable_img[data-v-8771853a] {
        opacity: 0.5;
}
.employee-manage .no-bottom-ctn[data-v-8771853a] {
    height: calc(100% - 5.25rem);
}
.employee-manage .add-ctn[data-v-8771853a] {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 2.24rem;
    line-height: 2.24rem;
    background: #fff;
}
.employee-manage .add-ctn button[data-v-8771853a] {
      width: 90%;
}
.employee-manage .dialog-ctn[data-v-8771853a] .van-dialog__header {
    font-size: 0.46rem;
    font-weight: bold;
}
.employee-manage .dialog-ctn[data-v-8771853a] .van-button--default {
    font-size: 0.46rem;
}
.employee-manage .dialog-ctn .handle-dialog .tip-ctn[data-v-8771853a] {
    padding: 0.6rem;
    font-size: 0.38rem;
    color: #333;
    text-align: center;
    line-height: 2;
}
.employee-manage .dialog-ctn .handle-dialog .align-class[data-v-8771853a] {
    text-align: center;
}

.static-ctn[data-v-49492f22] {
  background: #fff;
  padding: 0.5rem;
  border-top-left-radius: 0.27rem;
  border-top-right-radius: 0.27rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.static-ctn .left-static[data-v-49492f22] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.static-ctn .left-static .left-top[data-v-49492f22] {
      margin-bottom: 0.2rem;
}
.static-ctn .left-static .left-top .left-top-main[data-v-49492f22] {
        font-size: 0.43rem;
        color: #3975c6;
        font-weight: 800;
}
.static-ctn .left-static .left-top .left-top-other[data-v-49492f22] {
        font-size: 0.38rem;
        color: #333;
        vertical-align: top;
}
.static-ctn .left-static .left-bottom[data-v-49492f22] {
      font-size: 0.32rem;
      color: #999;
}
.static-ctn .right-refresh[data-v-49492f22] {
    width: 0.76rem;
    position: relative;
}
.static-ctn .right-refresh img[data-v-49492f22] {
      width: 0.76rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
}

.add-dialog .van-form[data-v-2c88fc88] {
  padding: 0.6933rem 0;
}
.add-dialog .cell-title-required[data-v-2c88fc88] {
  position: relative;
}
.add-dialog .cell-title-required[data-v-2c88fc88]::after {
    position: absolute;
    top: 0.0267rem;
    right: -0.2667rem;
    color: #ee0a24;
    font-size: 0.3733rem;
    content: "*";
}
.add-dialog .tip-ctn[data-v-2c88fc88] {
  font-size: 0.32rem;
  font-weight: 500;
  color: #3975c6;
  margin: 0.2667rem 0.4267rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.add-dialog .tip-ctn img[data-v-2c88fc88] {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 4px;
}

.hall-popup .head-ctn {
  position: relative;
  text-align: center;
  padding-top: 0.41rem;
  font-size: 0.43rem;
  color: #333;
  font-weight: 800;
}
.hall-popup .head-ctn .van-icon-arrow-left {
  position: absolute;
  top: 0.41rem;
  left: 0.41rem;
  font-size: 0.4267rem;
  color: rgb(153, 153, 153);
}
.hall-popup .van-popup__close-icon {
  color: rgb(153, 153, 153);
}

.permission-ctn[data-v-e1f9b5a4] {
  height: calc(100% - 1.0667rem);
}
.permission-ctn .permission-list[data-v-e1f9b5a4] {
    height: calc(100% - 2rem);
    overflow: auto;
}
.permission-ctn .permission-list[data-v-e1f9b5a4]::-webkit-scrollbar {
      display: none;
}
.permission-ctn .permission-list .first-level .second-level[data-v-e1f9b5a4] {
      padding-left: 0.63rem;
}
.permission-ctn .permission-list .first-level .van-checkbox[data-v-e1f9b5a4] {
      padding: 0.35rem 0;
      position: relative;
      border-bottom: 1px solid rgba(238, 238, 238, 0.6);
      margin: 0 0.41rem;
}
.permission-ctn .permission-list .first-level .van-checkbox .van-icon-arrow[data-v-e1f9b5a4] {
        position: absolute;
        right: 0;
        top: 0.6rem;
}
.permission-ctn .permission-list .first-level .img-icon[data-v-e1f9b5a4] {
      width: 0.38rem;
      height: 0.38rem;
}
.permission-ctn .permission-list .first-level .book-class[data-v-e1f9b5a4] {
      width: 0.38rem;
      height: 0.38rem;
      margin-right: 0.2rem;
      margin-top: 0.16rem;
}
.permission-ctn .permission-list .first-level .van-checkbox__label[data-v-e1f9b5a4] {
      font-size: 0.38rem;
      color: #333;
}
.permission-ctn .permission-select .left-select-ctn[data-v-e1f9b5a4] {
    white-space: nowrap;
    overflow: auto;
    margin-left: 0.41rem;
    margin-top: 0.6rem;
}
.permission-ctn .permission-select .left-select-ctn[data-v-e1f9b5a4]::-webkit-scrollbar {
      display: none;
}
.permission-ctn .permission-select[data-v-e1f9b5a4] .van-tag {
    padding: 0.24rem;
    font-size: 0.38rem;
    border-radius: 0.14rem;
    margin-right: 0.22rem;
}
.permission-ctn .permission-select .right-button[data-v-e1f9b5a4] {
    margin-top: 0.6rem;
}
.permission-ctn .permission-select .right-button .van-button[data-v-e1f9b5a4] {
      font-size: 0.38rem;
      height: 0.86rem;
      padding: 0 0.34rem;
}

@charset "UTF-8";
.list_container[data-v-946dcdb2] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list_container .list_wrap[data-v-946dcdb2] {
    width: 100%;
    height: 100%;
}
.list_container .list_wrap .list_search[data-v-946dcdb2] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list_container .list_wrap .list_search .list_search-content[data-v-946dcdb2] {
        width: 100%;
}
.list_container .list_wrap .list_content[data-v-946dcdb2] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #f7f8fc;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_content .list_filter[data-v-946dcdb2] {
        width: 100%;
        height: 1.24rem;
}
.list_container .list_wrap .list_preview[data-v-946dcdb2] {
      margin-bottom: 0.1rem;
      padding: 0.41rem;
}
.list_container .list_wrap .list_preview .list_preview-wrap[data-v-946dcdb2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: scroll;
}
.list_container .list_wrap .list_preview .list_preview-wrap .list_preview-left[data-v-946dcdb2] {
          height: 6.26rem;
          min-width: 3rem;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
}
.list_container .list_wrap .list_preview .list_preview-wrap .list_preview-right[data-v-946dcdb2] {
          min-width: 4.97rem;
          margin-left: 0.19rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -ms-flex-negative: 0;
              flex-shrink: 0;
}
.list_container .list_wrap .list_preview .list_preview-bgOne[data-v-946dcdb2] {
        background-image: url(https://oss.guango.com.cn/common/qw/images/chart.png);
        background-size: 2.8rem 3.2rem;
        background-repeat: no-repeat;
        background-position: right bottom;
}
.list_container .list_wrap .list_preview .list_preview-bgTwo[data-v-946dcdb2] {
        background-image: url(https://oss.guango.com.cn/common/qw/images/prices.png);
        background-size: 1.76rem;
        background-repeat: no-repeat;
        background-position: right top;
}
.list_container .list_wrap .list_preview .list_preview-content[data-v-946dcdb2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0.36rem 0.24rem;
        border-radius: 0.14rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form[data-v-946dcdb2] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-icon[data-v-946dcdb2] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-icon .list_preview-img[data-v-946dcdb2] {
              width: 0.38rem;
              height: 0.31rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-icon .list_preview-arrow[data-v-946dcdb2] {
              width: 0.11rem;
              height: 0.19rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-title[data-v-946dcdb2] {
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #666666;
            line-height: 0.75rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-subTitle[data-v-946dcdb2] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            line-height: 0.78rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-subTitle .list_preview-price[data-v-946dcdb2] {
              font-size: 0.49rem;
              font-family: PingFang SC;
              font-weight: 800;
              color: #333333;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-subTitle .list_preview-price .rebate-count[data-v-946dcdb2] {
                font-weight: 500;
                font-size: 0.32rem;
}
.list_container .list_wrap .list_preview .list_preview-content .list_preview-form .list_preview-subTitle .list_preview-percent[data-v-946dcdb2] {
              background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAcCAMAAABBJv+bAAAAAXNSR0IArs4c6QAAAM9QTFRFAAAAAP8AAICAAKpVQL+AM5lmIL+AGrOAK6qAJLZ/IK9wJrNzJLZ5IrJ3IbVzI7F4IrN1JrN5I7R6JbV1I7R4JrR1I7F2JLJ4IrN5JLF4JbN3I7F2JLN4JLF3JbN2I7F4JbF2I7N4JLJ3JLJ2I7J4JLN4JLN3JLJ2I7J2JLN3JLJ3I7N3JLJ3JLJ3JLN3I7F4JLJ3JLJ3JLJ3JLJ3JLJ3JLJ2I7N3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLJ3JLN3JLJ3JLJ3JLJ3JLJ3JLJ30OKqEQAAAER0Uk5TAAECAwQFCAoMDhAUFR4fJCUoLDAzPUFGSlVaX2RpbnN9goeMkZOWm6aqr7S2ub7CzdDU1+Hi5ufq7O/x9ff4+vv8/f6tA8f+AAAAp0lEQVQoz6XJRRLCQAAEwMHdHYK7uzvM/9/EAYjupoqirw38wNF22nWJis36N9wG5N0g2ZRu7ELyGpf1gCQ5lGyOb3nhuhefXnpEXeFXVbChg9rHsLU71HQtm7rr+pE294R6U4dxCzQqGta7MvXap+8azeq6jZwsfY5q3aNVX93MU9DMftY5Ey3nrncrFCsDAII7Se+DANCkTAtA4irtWxIYUW6M/7wA1nRgTvdzRwYAAAAASUVORK5CYII=);
              background-repeat: no-repeat;
              background-position: left center;
              background-size: 0.2rem;
              color: #24b277;
              text-indent: 0.25rem;
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
}
.list_container .list_wrap .list_preview .list_preview-other[data-v-946dcdb2] {
        padding: 0;
        border-radius: 0;
        display: unset;
}
.list_container .list_wrap .list_preview .list_preview-other .list_preview-form[data-v-946dcdb2] {
          border-radius: 0.14rem;
          padding: 0.24rem 0.24rem 0.46rem;
          height: unset;
          margin-top: 0.2rem;
}
.list_container .list_wrap .list_preview .list_preview-other .list_preview-title[data-v-946dcdb2] {
          margin-left: 0.1rem;
}
.list_container .list_wrap .list_preview .list_preview-other .list_preview-icon[data-v-946dcdb2] {
          margin-top: 0 !important;
          line-height: 0.35rem;
}
.list_container .list_wrap .list_preview .list_preview-other .list_preview-subTitle[data-v-946dcdb2] {
          line-height: 0.35rem !important;
          margin-top: 0.1rem;
}
.list_container .list_wrap .list_main[data-v-946dcdb2] {
      z-index: 2;
      margin-top: 0.34rem;
      width: 100%;
      height: calc(100% - 1.24rem);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_main .list_main-wrap[data-v-946dcdb2] {
        width: 100%;
        height: calc(100% - 1rem);
        overflow-y: scroll;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list[data-v-946dcdb2] {
          width: 100%;
          height: 100%;
          margin-top: 0.19rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item[data-v-946dcdb2] {
            margin-bottom: 0.19rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .title-item[data-v-946dcdb2] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -ms-flex-line-pack: center;
                  align-content: center;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .title-item .title-tag[data-v-946dcdb2] {
                margin-left: 0.19rem;
                padding: 0.06rem 0.12rem;
                border-color: #3975c6;
                font-size: 0.32rem;
                font-weight: 500;
                color: #3975c6;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .title-item .list_item-title[data-v-946dcdb2] {
                font-size: 0.38rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #333333;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .title-item .list_item-price[data-v-946dcdb2] {
                font-size: 0.38rem;
                font-family: PingFang SC;
                font-weight: bold;
                color: #333333;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .title-item .list_item-priceSpe[data-v-946dcdb2] {
                color: #da291c;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-946dcdb2] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-946dcdb2] {
                font-size: 0.32rem;
                font-weight: 500;
                color: #666666;
                line-height: 0.65rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item .label-tag[data-v-946dcdb2] {
                font-size: 0.32rem;
                font-family: PingFang SC;
                font-weight: 500;
                color: #333;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item .label-tag-green[data-v-946dcdb2] {
                color: #5eac89 !important;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item .label-tag-blue[data-v-946dcdb2] {
                color: #5084c4;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item .label-date[data-v-946dcdb2] {
                color: #333;
}
.list_container[data-v-946dcdb2] .van-cell-group--inset {
    margin: 0 0.27rem;
    padding-top: 0.1rem;
}
.list_container[data-v-946dcdb2] .van-cell-group--inset .van-cell {
      padding: 0.41rem 0.27rem;
}
.list_container[data-v-946dcdb2] .van-cell-group--inset .van-cell::after {
        border-bottom-color: #f7f8fc;
}
/* 搜索框 */
.van-search[data-v-946dcdb2] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-946dcdb2] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-946dcdb2] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-946dcdb2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-946dcdb2] .van-field__left-icon {
        width: 0.4rem;
        height: 0.4rem;
        margin: 0.08rem 0.25rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-946dcdb2] {
        width: 100%;
        height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-946dcdb2] {
        margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-946dcdb2]::-webkit-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-946dcdb2]::-moz-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-946dcdb2]::-ms-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-946dcdb2]::placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.van-search .popup_content[data-v-946dcdb2] {
    width: 8.27rem;
    height: 6.61rem;
    background: #ffffff;
    border-radius: 0rem;
}
[data-v-946dcdb2] .van-picker-column__item--selected {
  color: #3975c6;
}
[data-v-946dcdb2] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
[data-v-946dcdb2] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
[data-v-946dcdb2] .van-field__control {
  font-weight: 500;
}
[data-v-946dcdb2] .van-cell {
  font-weight: 500 !important;
}
[data-v-946dcdb2] .van-cell .van-cell__title {
    font-size: 0.38rem !important;
    color: #333;
}
[data-v-946dcdb2] .van-dialog {
  border-radius: 5px !important;
}
[data-v-946dcdb2] .van-dialog .van-dialog__header {
    padding-bottom: 0.5rem;
}
[data-v-946dcdb2] .van-dialog .van-dialog__confirm,[data-v-946dcdb2] .van-dialog .van-dialog__confirm:active {
    color: #4378be !important;
}
[data-v-946dcdb2] .van-search .van-search__content .van-cell {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.funnel_chart[data-v-0b54a2df] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.funnel_chart .funnel_chart-main[data-v-0b54a2df] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 80%;
}
.funnel_chart .funnel_chart-report[data-v-0b54a2df] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.verification[data-v-5f1dafa3] {
  background: #f7f8fc;
  height: 100vh;
}
.verification .verification_group[data-v-5f1dafa3] {
    padding: 0.41rem 0 0;
}
.verification .verification_group .verification_cell[data-v-5f1dafa3] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.verification .verification_group .verification_cell .verification_cell-item[data-v-5f1dafa3] {
        width: 3.85rem;
        height: 1.81rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background: #d9e4f2;
        border: 0.026rem solid #3975c6;
        border-radius: 0.14rem;
        font-size: 0.38rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #3975c6;
        line-height: 0.35rem;
}
.verification .verification_group .verification_cell .verification_cell-speItem[data-v-5f1dafa3] {
        background: #fcdee3;
        border-color: #f25a73;
        color: #f25a73;
}
.verification .verification_popup[data-v-5f1dafa3] {
    width: 80vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    background: #f7f8fc;
}
.verification .verification_popup .verification_popup-title[data-v-5f1dafa3] {
      margin-top: 0.78rem;
      display: inline-block;
      font-size: 0.46rem;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
      margin-bottom: 0.1rem;
}
.verification .verification_popup .cell-group[data-v-5f1dafa3] {
      max-height: 8rem;
      overflow: scroll;
}
.verification .verification_popup .cell-group[data-v-5f1dafa3]::-webkit-scrollbar {
        display: none;
}
.verification .verification_popup .verification_popup-radio[data-v-5f1dafa3] {
      margin-top: 0.5rem;
      margin-bottom: 0.2rem;
      margin: 0.18rem 0.27rem;
}
.verification .verification_popup .verification_popup-radio .cell-title[data-v-5f1dafa3] {
        text-align: left;
        padding: 0.41rem 0.32rem;
        font-size: 0.38rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
        border-bottom: 1px solid #eee;
}
.verification .verification_popup .verification_popup-radio .verification_popup-item[data-v-5f1dafa3] {
        text-align: left;
}
.verification .verification_popup .verification_popup-radio .verification_popup-item[data-v-5f1dafa3] .van-cell,
        .verification .verification_popup .verification_popup-radio .verification_popup-item .van-cell__title[data-v-5f1dafa3] {
          font-weight: normal !important;
}
.verification .verification_popup .title-ctn[data-v-5f1dafa3] {
      padding: 0.24rem 0.41rem;
      background: #fff;
}
.verification .verification_popup .verification_popup-subTitle[data-v-5f1dafa3] {
      text-align: left;
      display: block;
      padding: 0 0.21rem;
      font-size: 0.32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #db1b1b;
}
.verification .verification_popup .button-ctn[data-v-5f1dafa3] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      background: #fff;
      border: 1px solid #dedfe2;
}
.verification .verification_popup .button-ctn div[data-v-5f1dafa3] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 0.3rem;
        font-size: 0.46rem;
        font-weight: 400;
        color: #333333;
}
.verification .verification_popup .button-ctn .cancel-btn[data-v-5f1dafa3] {
        border-right: 1px solid #dedfe2;
}
.verification .verification_popup .button-ctn .next-btn[data-v-5f1dafa3] {
        color: #4378be;
}
.verification .verification_popup .verification_popup-btn[data-v-5f1dafa3] {
      margin-top: 0.2rem;
      width: 100%;
      border-radius: 10px;
}
[data-v-5f1dafa3] .van-cell-group--inset {
  margin: 0 0.41rem;
}
[data-v-5f1dafa3] .van-cell-group--inset .van-cell__title {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #333333;
}
[data-v-5f1dafa3] .van-cell-group__title {
  font-size: 0.43rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
[data-v-5f1dafa3] .van-cell-group__title--inset {
  padding: 0.54rem 0 0.41rem 0.47rem;
}

.qr-code-ctn[data-v-ef715528] {
    width: 100vw;
    height: 100vh;
}
.qr-scanner[data-v-ef715528] {
    width: calc(100% - 40px);
    height: 100vh;
    position: relative;
    background-color: #1110;
    padding: 0 20px;
}
.qr-scanner .line[data-v-ef715528] {
    height: 4px;
    width: 100%;
    border-radius: 50% 50% 0 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(248,253,249,0.1)), to(rgba(204,250,214,0.4)));
    background: linear-gradient(180deg, rgba(248,253,249,0.1), rgba(204,250,214,0.4));
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-animation: radar-beam-data-v-ef715528 5s infinite alternate;
            animation: radar-beam-data-v-ef715528 5s infinite alternate;
    -webkit-animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
            animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
}
@-webkit-keyframes radar-beam-data-v-ef715528 {
0% {
        -webkit-transform: translateY(100vh);
                transform: translateY(100vh);
}
100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
}
}
@keyframes radar-beam-data-v-ef715528 {
0% {
        -webkit-transform: translateY(100vh);
                transform: translateY(100vh);
}
100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
}
}

.verification_list[data-v-6a95b1da] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.verification_list .list_content[data-v-6a95b1da] {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.verification_list .list_content .list_filter[data-v-6a95b1da] {
      height: 1.24rem;
}
.verification_list .list_content .list_filter .list_select-btn[data-v-6a95b1da] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666666;
}
.verification_list .list_content .list_main[data-v-6a95b1da] {
      height: calc(100% - 1.24rem);
      background: #f7f8fc;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.verification_list .list_content .list_main .list_main-wrap[data-v-6a95b1da] {
        padding: 0.42rem 0.41rem 0;
        overflow-y: scroll;
}
.verification_list .list_content .list_main .list_main-wrap .list_main-total[data-v-6a95b1da] {
          font-size: 0.43rem;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list[data-v-6a95b1da] {
          margin-top: 0.39rem;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item[data-v-6a95b1da] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-step[data-v-6a95b1da] {
              width: 0.66rem;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
                  -ms-flex-direction: column;
                      flex-direction: column;
              -webkit-box-align: start;
                  -ms-flex-align: start;
                      align-items: flex-start;
              -webkit-transform: translateY(0.51rem);
                      transform: translateY(0.51rem);
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-step .list_step-icon[data-v-6a95b1da] {
                width: 0.44rem;
                height: 0.44rem;
                background: rgba(70, 118, 200, 0.2);
                border-radius: 50%;
                position: relative;
                -ms-flex-negative: 0;
                    flex-shrink: 0;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-step .list_step-icon[data-v-6a95b1da]::after {
                  content: "";
                  width: 0.22rem;
                  height: 0.22rem;
                  background: #4575c7;
                  opacity: 0.9;
                  border-radius: 50%;
                  position: absolute;
                  -webkit-transform: translate(0.11rem, 0.11rem);
                          transform: translate(0.11rem, 0.11rem);
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-step .list_step-divider[data-v-6a95b1da] {
                height: 100%;
                width: 0.19rem;
                border-right: 0.06rem dashed #dae3f4;
                display: block;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell[data-v-6a95b1da] {
              -webkit-box-flex: 1;
                  -ms-flex: 1;
                      flex: 1;
              height: 2.81rem;
              margin-bottom: 0.19rem;
              padding: 0.38rem 0.28rem;
              border-radius: 0.14rem;
              background: #ffffff;
              font-family: PingFang SC;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
                  -ms-flex-direction: column;
                      flex-direction: column;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-label[data-v-6a95b1da] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-label .list_item-name[data-v-6a95b1da] {
                  font-size: 0.38rem;
                  font-weight: bold;
                  color: #333333;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-label .list_item-tag[data-v-6a95b1da] {
                  font-size: 0.38rem;
                  font-weight: bold;
                  color: #24b277;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-label .list_item-speTag[data-v-6a95b1da] {
                  color: #da291c;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-value[data-v-6a95b1da] {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                        justify-content: space-between;
                -webkit-box-align: center;
                    -ms-flex-align: center;
                        align-items: center;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-value .list_item-title[data-v-6a95b1da] {
                  font-size: 0.32rem;
                  font-weight: 500;
                  color: #666666;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-value .list_item-subTitle[data-v-6a95b1da] {
                  font-size: 0.32rem;
                  font-weight: 500;
                  color: #333333;
}
.verification_list .list_content .list_main .list_main-wrap .scroll-list .list_main-item .list_item-cell .list_item-default[data-v-6a95b1da] {
                font-size: 0.32rem;
                font-weight: 500;
                color: #999999;
                border-top: 0.03rem solid #f7f8fc;
                padding-top: 0.2rem;
}
.verification_list[data-v-6a95b1da] .van-divider {
    margin: 0;
}

.verification[data-v-14181ab4] {
  background: #f7f8fc;
  height: 100vh;
}
.verification .verification_result[data-v-14181ab4] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
}
.verification .verification_result .verification_result-img[data-v-14181ab4] {
      width: 4.2rem;
      height: 3.19rem;
      margin-bottom: 0.81rem;
}
.verification .verification_result .verification_result-title[data-v-14181ab4] {
      margin-bottom: 0.32rem;
      font-size: 0.38rem;
      font-family: PingFang SC;
      font-weight: 400;
      color: #666666;
}

.order-list-container[data-v-e33a60ba] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
}
.order-list-container .order-list-ctn[data-v-e33a60ba] {
    height: 100%;
    background: #f7f8fc;
    border-radius: 0.3467rem 0.3467rem 0 0;
}
.order-list-container .order-list-ctn .top-btn-ctn[data-v-e33a60ba] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-top: 0.72rem;
      padding-bottom: 0.51rem;
      background: #fff;
      border-radius: 0.3467rem 0.3467rem 0 0;
}
.order-list-container .order-list-ctn .top-btn-ctn .btn-item[data-v-e33a60ba] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
        font-size: 0.32rem;
        color: #333;
}
.order-list-container .order-list-ctn .top-btn-ctn .btn-item img[data-v-e33a60ba] {
          width: 1.47rem;
          height: 1.47rem;
}
.order-list-container .order-list-ctn .order-list-main .list-title[data-v-e33a60ba] {
      font-size: 0.43rem;
      color: #333;
      font-weight: bold;
      padding: 0.49rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box[data-v-e33a60ba] {
      padding: 0 0.41rem 0 0.5rem;
      height: calc(100vh - 4.9rem);
      overflow-y: auto;
      overflow-x: hidden;
      width: calc(100% - 0.91rem);
}
.order-list-container .order-list-ctn .order-list-main .order-list_box[data-v-e33a60ba]::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list[data-v-e33a60ba] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-left: 15px;
        margin-bottom: 20px;
        position: relative;
        width: calc(100% - 0.41rem);
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content[data-v-e33a60ba] {
          width: 100%;
          padding: 0.51rem 0.27rem;
          background: #fff;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top[data-v-e33a60ba] {
            font-size: 0.38rem;
            font-family: PingFang SC;
            font-weight: 400;
            color: #333333;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            margin-bottom: 12px;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .left-ctn[data-v-e33a60ba] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .left-ctn .sync_custype[data-v-e33a60ba] {
                font-size: 0.32rem;
                color: #3975c6;
                padding: 0.05rem 0.1rem;
                border: 1px solid #3975c6;
                border-radius: 0.08rem;
                margin-right: 0.1rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .active_state[data-v-e33a60ba] {
              font-weight: bold;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .active_state_success[data-v-e33a60ba] {
              color: #24b277;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .order_num[data-v-e33a60ba] {
              font-size: 0.38rem;
              font-weight: bold;
              color: #333;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .order_num .num_class[data-v-e33a60ba] {
                max-width: 4rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                display: inline-block;
                vertical-align: middle;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .active_state_fail[data-v-e33a60ba] {
              color: #da291c;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .sync_text[data-v-e33a60ba] {
              color: #548cdf;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top .sync_name[data-v-e33a60ba] {
              margin-right: 15px;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top[data-v-e33a60ba]::after {
              content: "";
              width: 0.2rem;
              height: 0.2rem;
              background: #5076b8;
              border-radius: 50%;
              position: absolute;
              left: -3px;
              z-index: 2;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_top[data-v-e33a60ba]::before {
              content: "";
              position: absolute;
              width: 0.42rem;
              height: 0.42rem;
              background: #cad6ea;
              border-radius: 50%;
              left: -7px;
              z-index: 2;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result[data-v-e33a60ba] {
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 400;
            color: #666666;
            width: 100%;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result > div[data-v-e33a60ba] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
              line-height: 0.65rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result > div .content_text[data-v-e33a60ba] {
                width: 2rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result > div .content_value[data-v-e33a60ba] {
                color: #333;
                -webkit-box-flex: 1;
                    -ms-flex: 1;
                        flex: 1;
                text-align: right;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result > div .content_value img[data-v-e33a60ba] {
                  width: 5px;
                  margin-left: 4px;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result .sync_type[data-v-e33a60ba] {
              margin-right: 15px;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_result .num_copy[data-v-e33a60ba] {
              margin-right: 0.2rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .item_row[data-v-e33a60ba] {
            display: block !important;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .item_row .content_value[data-v-e33a60ba] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .item_row .content_value .time-ctn[data-v-e33a60ba] {
                color: #666;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .sync_bottom[data-v-e33a60ba] {
            font-size: 0.32rem;
            font-family: PingFang SC;
            font-weight: 400;
            color: #999;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-top: 0.4rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list .sync_list_content .num_copy[data-v-e33a60ba] {
            font-size: 0.27rem;
            font-weight: 500;
            border: 1px solid #333;
            border-radius: 0.11rem;
            padding: 0 0.08rem;
            padding-bottom: 0.02rem;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .sync_list[data-v-e33a60ba]::after {
          content: "";
          position: absolute;
          height: calc(100% + 20px);
          left: 0;
          top: 0.6rem;
          border-left: 2px dashed #cad6ea;
}
.order-list-container .order-list-ctn .order-list-main .order-list_box .hide-line[data-v-e33a60ba]::after {
        content: "";
        position: absolute;
        height: calc(100% + 20px);
        left: 0;
        top: 0.6rem;
        border-left: 0 dashed #cad6ea;
}
.order-list-container .order-list-ctn .order-list-main .no-order[data-v-e33a60ba] {
      text-align: center;
      padding-top: 3rem;
}
.order-list-container .order-list-ctn .order-list-main .no-order img[data-v-e33a60ba] {
        width: 4.43rem;
        margin-bottom: 0.8rem;
}
.order-list-container .order-list-ctn .order-list-main .no-order div[data-v-e33a60ba] {
        font-size: 0.38rem;
        font-weight: 400;
        color: #666666;
}

.sync-detail-ctn[data-v-025feb7a] {
  background: #4575c7;
  padding-top: 0.41rem;
  height: calc(100vh - 5rem);
}
.sync-detail-ctn .card-ctn[data-v-025feb7a] {
    background: #fff;
    padding: 0.36rem 0.41rem;
    margin: 0 0.27rem 0.41rem;
    border-radius: 0.27rem;
}
.sync-detail-ctn .card-ctn .card-items .card-item[data-v-025feb7a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 0.2rem;
      font-size: 0.32rem;
}
.sync-detail-ctn .card-ctn .card-items .card-item > span[data-v-025feb7a]:first-of-type {
        color: #666;
}
.sync-detail-ctn .card-ctn .card-items .card-item > span[data-v-025feb7a]:last-of-type {
        color: #333;
}
.sync-detail-ctn .card-ctn .card-items .foot-class[data-v-025feb7a] {
      margin-top: 0.4rem;
      margin-bottom: 0;
}
.sync-detail-ctn .card-ctn .card-items .foot-class > span[data-v-025feb7a]:first-of-type {
        color: #999;
}
.sync-detail-ctn .card-ctn .card-items .foot-class > span[data-v-025feb7a]:last-of-type {
        color: #999;
}
.sync-detail-ctn .sync-detail-header[data-v-025feb7a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.36rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
}
.sync-detail-ctn .header-left .header-type[data-v-025feb7a] {
    font-size: 0.32rem;
    color: #3975c6;
    border: 1px solid #3975c6;
    padding: 0.09rem 0.11rem;
    border-radius: 0.08rem;
}
.sync-detail-ctn .header-left .header-code[data-v-025feb7a] {
    font-size: 0.38rem;
    font-weight: bold;
    color: #333;
    margin: 0 0.11rem;
}
.sync-detail-ctn .header-left .header-copy[data-v-025feb7a] {
    font-size: 0.27rem;
    color: #333;
    padding: 0.08rem 0.11rem;
    border: 1px solid #333;
    border-radius: 0.11rem;
}
.sync-detail-ctn .header-right[data-v-025feb7a] {
    font-size: 0.38rem;
}
.sync-detail-ctn .header-right img[data-v-025feb7a] {
      width: 0.57rem;
      height: 0.57rem;
}
.sync-detail-ctn .header-right .success-class[data-v-025feb7a] {
      color: #24b277;
}
.sync-detail-ctn .header-right .fail-class[data-v-025feb7a] {
      color: #da291c;
}
.sync-detail-ctn .header-main[data-v-025feb7a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0.2rem 0.4rem;
}
.sync-detail-ctn .select-ctn[data-v-025feb7a] {
    width: calc(100% - 20px);
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin: 0 10px;
}
.sync-detail-ctn .select-ctn[data-v-025feb7a]::-webkit-scrollbar {
      display: none;
      width: 0;
      height: 0;
}
.sync-detail-ctn .select-ctn .select-item[data-v-025feb7a] {
      display: inline-block;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 260px;
      border-radius: 10px;
      margin-right: 10px;
      padding: 14px 10px;
      background: #EAEAEA;
}
.sync-detail-ctn .select-ctn .select-item .select-title-ctn[data-v-025feb7a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-weight: bold;
        font-size: 14px;
        color: #4575C7;
}
.sync-detail-ctn .select-ctn .select-item .select-title-ctn .btn-item[data-v-025feb7a] {
          font-size: 10px;
          font-weight: 500;
          color: #3975C6;
          padding: 2px 4px;
          border: 1px solid #3975C6;
          border-radius: 4px;
          margin-left: 4px;
}
.sync-detail-ctn .select-ctn .select-item .select-title-ctn .title-right[data-v-025feb7a] {
          font-weight: 500;
          font-size: 12px;
          color: #333333;
}
.sync-detail-ctn .select-ctn .select-item .select-title-ctn .green-color[data-v-025feb7a] {
          color: #24B277;
}
.sync-detail-ctn .select-ctn .select-item .select-content-ctn[data-v-025feb7a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 10px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
}
.sync-detail-ctn .select-ctn .selected-item[data-v-025feb7a] {
      border: 1px solid #3975C6;
      background: #D9E4F2;
}
.sync-detail-ctn .sync-detail-main[data-v-025feb7a] {
    background: #fff;
    border-top-left-radius: 0.27rem;
    border-top-right-radius: 0.27rem;
    padding-top: 0.3rem;
    min-height: calc(100vh - 5.8rem);
}
.sync-detail-ctn .sync-detail-main .tabs-content[data-v-025feb7a] {
      background: #f7f8fc;
      padding-bottom: 0.3rem;
}
.sync-detail-ctn .sync-detail-main .tabs-content[data-v-025feb7a]::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
}
.sync-detail-ctn .sync-detail-main .file-ctn[data-v-025feb7a] {
      padding-top: 1px;
}
.sync-detail-ctn .sync-detail-main .file-ctn .file-item[data-v-025feb7a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 14px;
        font-weight: 400;
        margin: 10px;
        background: #fff;
        padding: 15px;
        border-radius: 5px;
}
.sync-detail-ctn .sync-detail-main .file-ctn .file-item .file-left[data-v-025feb7a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          color: #666;
}
.sync-detail-ctn .sync-detail-main .file-ctn .file-item .file-left img[data-v-025feb7a] {
            width: 16px;
            margin-right: 4px;
}
.sync-detail-ctn .sync-detail-main .file-ctn .file-item .file-right .btn-item[data-v-025feb7a] {
          font-size: 10px;
          font-weight: 500;
          color: #3975C6;
          padding: 4px 6px;
          border: 1px solid #3975C6;
          border-radius: 4px;
          margin-left: 4px;
}
.sync-detail-ctn .sync-detail-main .file-ctn .file-item .file-right .a-btn[data-v-025feb7a] {
          background: #4575C7;
          color: #fff;
          border: none;
}
.sync-detail-ctn .sync-detail-main .file-ctn .empty-ctn[data-v-025feb7a] {
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        color: #666666;
        padding: 60px 0;
}
.sync-detail-ctn .sync-detail-main .file-ctn .empty-ctn img[data-v-025feb7a] {
          width: 118px;
          height: 122px;
          margin-bottom: 30px;
}

.charge-detail-ctn .detail-ctn[data-v-91ca9440] {
  margin: 0 0.27rem;
}
.charge-detail-ctn .detail-ctn .detail-title[data-v-91ca9440] {
    font-size: 0.43rem;
    font-weight: bold;
    color: #333333;
    padding: 0.4rem 0.2rem;
}
.charge-detail-ctn .detail-ctn .detail-items[data-v-91ca9440] {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    background: #fff;
    padding: 0 0.41rem;
}
.charge-detail-ctn .detail-ctn .detail-items .item-class[data-v-91ca9440] {
      font-size: 0.38rem;
      font-weight: 400;
      padding: 0.46rem 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      border-bottom: .0267rem solid #F7F8FC;
}
.charge-detail-ctn .detail-ctn .detail-items .item-class .item-label[data-v-91ca9440] {
        color: #666666;
}
.charge-detail-ctn .detail-ctn .detail-items .item-class .item-value[data-v-91ca9440] {
        color: #333;
}

.order-info[data-v-e19b0df2] {
  font-size: 0.38rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  background: #fff;
  padding: 0 0.41rem;
  margin: 0.5rem 0.27rem;
}
.order-info .item-class[data-v-e19b0df2] {
    font-size: 0.38rem;
    font-weight: 400;
    padding: 0.46rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 0.0267rem solid #f7f8fc;
}
.order-info .item-class .item-label[data-v-e19b0df2] {
      color: #666666;
}
.order-info .item-class .item-value[data-v-e19b0df2] {
      color: #333;
}
.no-delivery-ctn[data-v-e19b0df2] {
  text-align: center;
  margin-top: 2rem;
}
.no-delivery-ctn img[data-v-e19b0df2] {
    width: 5.28rem;
}
.no-delivery-ctn div[data-v-e19b0df2] {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 0.32rem;
    margin-top: 0.81rem;
}

.order-detail-ctn .detail-ctn[data-v-50419537] {
  margin: 0 0.27rem;
}
.order-detail-ctn .detail-ctn .detail-title[data-v-50419537] {
    font-size: 0.43rem;
    font-weight: bold;
    color: #333333;
    padding: 0.4rem 0.2rem;
}
.order-detail-ctn .detail-ctn .detail-items[data-v-50419537] {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    background: #fff;
    padding: 0 0.41rem;
}
.order-detail-ctn .detail-ctn .detail-items .item-class[data-v-50419537] {
      font-size: 0.38rem;
      font-weight: 400;
      padding: 0.46rem 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-bottom: 0.0267rem solid #f7f8fc;
}
.order-detail-ctn .detail-ctn .detail-items .item-class .item-label[data-v-50419537] {
        color: #666666;
}
.order-detail-ctn .detail-ctn .detail-items .item-class .item-value[data-v-50419537] {
        color: #333;
}

.logistics_box[data-v-444d1f06] {
  padding: 0.41rem;
  height: calc(100vh - 4.9rem);
  overflow-y: auto;
  overflow-x: hidden;
  width: calc(100% - 0.82rem);
}
.logistics_box .logistics_list[data-v-444d1f06] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px;
    margin-bottom: 20px;
    position: relative;
    width: calc(100% - 0.41rem);
}
.logistics_box .logistics_list .logistics_list_content[data-v-444d1f06] {
      width: 100%;
      padding: 0.51rem 0.27rem;
      background: #fff;
}
.logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-444d1f06] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 12px;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-444d1f06]::after {
          content: "";
          width: 0.2rem;
          height: 0.2rem;
          background: #5076b8;
          border-radius: 50%;
          position: absolute;
          left: -3px;
          z-index: 2;
}
.logistics_box .logistics_list .logistics_list_content .logistics_top[data-v-444d1f06]::before {
          content: "";
          position: absolute;
          width: 0.42rem;
          height: 0.42rem;
          background: #cad6ea;
          border-radius: 50%;
          left: -7px;
          z-index: 2;
}
.logistics_box .logistics_list .logistics_list_content .logistics_bottom[data-v-444d1f06] {
        font-size: 0.38rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.4rem;
}
.logistics_box .logistics_list[data-v-444d1f06]::after {
      content: "";
      position: absolute;
      height: calc(100% + 20px);
      left: 0;
      top: 0.6rem;
      border-left: 2px dashed #cad6ea;
}
.logistics_box .hide-line[data-v-444d1f06]::after {
    content: "";
    position: absolute;
    height: calc(100% + 20px);
    left: 0;
    top: 0.6rem;
    border-left: 0 dashed #cad6ea;
}
.no-logistics-ctn[data-v-444d1f06] {
  text-align: center;
  margin-top: 2rem;
}
.no-logistics-ctn img[data-v-444d1f06] {
    width: 5.28rem;
}
.no-logistics-ctn div[data-v-444d1f06] {
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 0.32rem;
    margin-top: 0.81rem;
}

.other-detail-ctn[data-v-15c0a4b3] {
  background: #4575c7;
  padding-top: 0.41rem;
  height: calc(100vh - 5rem);
}
.other-detail-ctn .other-detail-header[data-v-15c0a4b3] {
    padding: 0.36rem 0.41rem;
    margin: 0 0.27rem 0.41rem;
    border-radius: 0.27rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.other-detail-ctn .other-detail-header .header-left .cus-type-class[data-v-15c0a4b3] {
      font-size: 0.32rem;
      color: #3975c6;
      border: 1px solid #3975c6;
      padding: 0.05rem 0.11rem;
      border-radius: 0.08rem;
}
.other-detail-ctn .other-detail-header .header-left .type-class[data-v-15c0a4b3] {
      font-size: 0.38rem;
      color: #333;
      font-weight: bold;
      margin-left: 0.1rem;
}
.other-detail-ctn .other-detail-header .header-left .copy-class[data-v-15c0a4b3] {
      font-size: 0.27rem;
      font-weight: 500;
      color: #333333;
      border: 1px solid #333333;
      padding: 0.03rem 0.1rem;
      border-radius: 0.11rem;
      margin-left: 0.1rem;
}
.other-detail-ctn .other-detail-header .header-right[data-v-15c0a4b3] {
      font-size: 0.38rem;
}
.other-detail-ctn .other-detail-header .header-right .success-class[data-v-15c0a4b3] {
        color: #24b277;
}
.other-detail-ctn .other-detail-header .header-right .fail-class[data-v-15c0a4b3] {
        color: #da291c;
}
.other-detail-ctn .other-detail-main[data-v-15c0a4b3] {
    background: #f7f8fc;
    border-top-left-radius: 0.27rem;
    border-top-right-radius: 0.27rem;
    padding: 0.51rem 0.27rem;
    height: calc(100vh - 3.1rem);
}
.other-detail-ctn .other-detail-main .main-items[data-v-15c0a4b3] {
      font-size: 0.38rem;
      background: #fff;
      padding: 0.2rem 0.42rem;
      border-radius: 0.14rem;
}
.other-detail-ctn .other-detail-main .main-items .item-class[data-v-15c0a4b3] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0.2rem 0;
        color: #333;
}
.other-detail-ctn .other-detail-main .main-items .item-class > span[data-v-15c0a4b3]:first-of-type {
          color: #666;
}

.budget-ctn[data-v-ec6fe01c] {
  background: #f7f8fc;
}
.budget-ctn .budget-ctn-statics[data-v-ec6fe01c] {
    padding: 0.62rem 0.27rem;
    background: #fff;
    border-top-left-radius: 0.27rem;
    border-top-right-radius: 0.27rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner[data-v-ec6fe01c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 0.34rem;
      border-radius: 0.27rem;
      background: url("https://oss.guango.com.cn/common/qw/images/budgetbBg.png");
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item[data-v-ec6fe01c] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: left;
        padding-left: 0.39rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item .icon[data-v-ec6fe01c] {
          margin-bottom: 0.2rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item .icon img[data-v-ec6fe01c] {
            width: 0.41rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item .second-icon img[data-v-ec6fe01c] {
          width: 0.36rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item .title[data-v-ec6fe01c] {
          font-size: 0.32rem;
          font-weight: 400;
          color: #ffffff;
          margin-bottom: 0.2rem;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .statics-item .value[data-v-ec6fe01c] {
          font-size: 0.49rem;
          font-weight: 800;
          color: #ffffff;
}
.budget-ctn .budget-ctn-statics .budget-ctn-statics-inner .total-class[data-v-ec6fe01c] {
        border-right: 1px solid rgba(244, 245, 247, 0.2);
}
.budget-ctn .budget-main .budget-item[data-v-ec6fe01c] {
    background: #fff;
    margin: 0.27rem;
    padding: 0.5rem 0.41rem;
    border-radius: 0.14rem;
}
.budget-ctn .budget-main .budget-item .title-ctn[data-v-ec6fe01c] {
      margin-bottom: 0.3rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -ms-flex-line-pack: center;
          align-content: center;
}
.budget-ctn .budget-main .budget-item .title-ctn .left-title[data-v-ec6fe01c] {
        font-size: 0.38rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
}
.budget-ctn .budget-main .budget-item .title-ctn .right-btn span[data-v-ec6fe01c] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 500;
        color: #ffffff;
        background: #3975c6;
        border-radius: 0.14rem;
        padding: 0.12rem 0.18rem;
        -webkit-box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
                box-shadow: 0px 3px 9px 0px rgba(57, 117, 198, 0.31);
}
.budget-ctn .budget-main .budget-item .number-ctn[data-v-ec6fe01c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-left[data-v-ec6fe01c] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
        border-right: 1px solid rgba(160, 160, 160, 0.2);
}
.budget-ctn .budget-main .budget-item .number-ctn .item-left .left-num[data-v-ec6fe01c] {
          font-size: 0.46rem;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
          margin-bottom: 0.2rem;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-left .left-edit[data-v-ec6fe01c] {
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #3975c6;
          line-height: 0.32rem;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-left .left-edit img[data-v-ec6fe01c] {
            width: 0.3rem;
            height: 0.32rem;
            display: inline-block;
            vertical-align: middle;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-left .left-edit span[data-v-ec6fe01c] {
            display: inline-block;
            vertical-align: middle;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-right[data-v-ec6fe01c] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-right .right-num[data-v-ec6fe01c] {
          font-size: 0.46rem;
          font-family: PingFang SC;
          font-weight: bold;
          color: #333333;
          margin-bottom: 0.2rem;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-right .right-edit[data-v-ec6fe01c] {
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #f5ab32;
          line-height: 0.32rem;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-right .right-edit img[data-v-ec6fe01c] {
            width: 0.32rem;
            height: 0.32rem;
            display: inline-block;
            vertical-align: middle;
}
.budget-ctn .budget-main .budget-item .number-ctn .item-right .right-edit span[data-v-ec6fe01c] {
            display: inline-block;
            vertical-align: middle;
}
.budget-ctn .dialog-ctn .van-dialog__header[data-v-ec6fe01c] {
    font-size: 0.46rem;
    font-weight: bold;
    color: #333333;
}
.budget-ctn .dialog-ctn .cell-title-required[data-v-ec6fe01c] {
    position: relative;
    font-size: 0.38rem;
    font-weight: 500;
    color: #333333;
}
.budget-ctn .dialog-ctn .cell-title-required[data-v-ec6fe01c]::after {
      position: absolute;
      top: 0.0267rem;
      right: -0.2667rem;
      color: #ee0a24;
      font-size: 0.3733rem;
      content: "*";
}
.budget-ctn .dialog-ctn .tip-ctn[data-v-ec6fe01c] {
    padding: 0.2rem 0.42rem;
    text-align: right;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #db1b1b;
}

.wrap[data-v-10f52ff8] {
  background-color: #f7f8fc;
  padding-top: 0.4rem;
}
.wrap .labelling[data-v-10f52ff8] {
    margin: 0.4rem 0.27rem;
    margin-top: 0;
}
.wrap .labelling .lable-type[data-v-10f52ff8] {
      background-color: #ffffff;
      border-radius: 10px;
      margin-bottom: 10px;
}
.wrap .labelling .lable-type .lable-type-title[data-v-10f52ff8] {
        font-size: 0.37rem;
        font-family: PingFang SC;
        font-weight: bold;
        color: #333333;
        width: 100%;
        border-bottom: 1px solid #ecf0f9;
        padding: 0.48rem 0 0.32rem 0.35rem;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
}
.wrap .labelling .lable-type .lable-type-list[data-v-10f52ff8] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 0.24rem;
        padding: 0 0.27rem 0.48rem 0.19rem;
}
.wrap .labelling .lable-type .lable-type-list .list-item[data-v-10f52ff8] {
          height: 23px;
          background: #eeeeee;
          line-height: 0.61rem;
          border-radius: 0.27rem;
          font-size: 0.32rem;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          margin-left: 5px;
          margin-bottom: 0.19rem;
          padding: 0 0.19rem;
}
.wrap .labelling .lable-type .lable-type-list .active-label[data-v-10f52ff8] {
          background: rgba(57, 117, 198, 0.2);
          color: #3975c6;
}
.wrap .labelling .lable-type .lable-type-list .list-item-add[data-v-10f52ff8] {
          width: 62px;
          padding: 0;
          text-align: center;
}
.wrap .labelling .lable-type .lable-type-list .list-item-add img[data-v-10f52ff8] {
            width: 0.27rem;
            height: 0.27rem;
}
.save-btn[data-v-10f52ff8] {
  width: 100%;
  height: 2.21rem;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
}
.save-btn button[data-v-10f52ff8] {
    width: 9.2rem;
    height: 1.04rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #4378be;
    border-radius: 0.53rem;
    border: none;
    font-size: 0.4rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #ffffff;
}
[data-v-10f52ff8] .van-dialog {
  border-radius: 5px;
}
[data-v-10f52ff8] .van-dialog__header {
  font-size: 0.45rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
}
[data-v-10f52ff8] .van-field__control {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #dedfe2;
  margin-bottom: 0.4rem;
  -webkit-appearance: none !important;
  border-radius: 0 !important;
}
[data-v-10f52ff8] .van-button--default {
  font-size: 0.45rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
}

@charset "UTF-8";
.list_container[data-v-396eea90] {
  width: 100%;
  height: 100vh;
  background: #3975c6;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list_container .cell-title-required[data-v-396eea90] {
    position: relative;
}
.list_container .cell-title-required[data-v-396eea90]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.list_container .list_wrap[data-v-396eea90] {
    width: 100%;
    height: 100%;
}
.list_container .list_wrap .list_search[data-v-396eea90] {
      width: 100%;
      height: 1.65rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      /* 搜索框 */
}
.list_container .list_wrap .list_search .list_search-content[data-v-396eea90] {
        width: 100%;
}
.list_container .list_wrap .list_search .add-box[data-v-396eea90] {
        width: 1rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap[data-v-396eea90] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding-right: 0.4rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap img[data-v-396eea90] {
            width: 0.5rem;
            height: 0.5rem;
}
.list_container .list_wrap .list_search .add-box .add-box-wrap div[data-v-396eea90] {
            white-space: nowrap;
            -webkit-transform: scale(0.9);
                    transform: scale(0.9);
            font-size: 0.27rem;
            font-family: PingFang SC;
            font-weight: 500;
            color: #ffffff;
}
.list_container .list_wrap .list_search .van-search[data-v-396eea90] {
        height: 1.63rem;
        width: 100%;
}
.list_container .list_wrap .list_search .van-search .van-search__action[data-v-396eea90] {
          color: #ffffff;
}
.list_container .list_wrap .list_search .van-search .van-search__content[data-v-396eea90] {
          height: 0.93rem;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell[data-v-396eea90] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell[data-v-396eea90] .van-field__left-icon {
              width: 0.4rem;
              height: 0.4rem;
              margin: 0.08rem 0.25rem;
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-396eea90] {
              width: 100%;
              height: 100%;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-cell__value[data-v-396eea90] {
              margin-left: 0.4rem;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-396eea90]::-webkit-input-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-396eea90]::-moz-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-396eea90]::-ms-input-placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.list_container .list_wrap .list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-396eea90]::placeholder {
                color: #4378be !important;
                opacity: 0.3;
}
.list_container .list_wrap .list_search .van-search .popup_content[data-v-396eea90] {
          width: 8.27rem;
          height: 6.61rem;
          background: #ffffff;
          border-radius: 0rem;
}
.list_container .list_wrap .list_content[data-v-396eea90] {
      width: 100%;
      height: calc(100vh - 1.65rem);
      background: #fff;
      border-radius: 13px 13px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_content .list_filter[data-v-396eea90] {
        width: 100%;
        height: 1.24rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap[data-v-396eea90] {
          overflow-y: hidden;
          padding-top: 0.28rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head[data-v-396eea90] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            margin-bottom: 0.39rem;
            padding: 0 0.4rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .dropDown-sec-container[data-v-396eea90] {
              margin-left: 0 !important;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .month-filter[data-v-396eea90] {
              font-size: 12px;
              font-family: PingFang SC;
              font-weight: 500;
              color: #666666;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box[data-v-396eea90] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
                  -ms-flex-align: center;
                      align-items: center;
              font-size: 0.32rem;
              font-family: PingFang SC;
              font-weight: 500;
              color: #333333;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box span[data-v-396eea90] {
                margin-right: 0.09rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .list_filter-head .filter-box .show-img[data-v-396eea90] {
                width: 0.17rem;
                height: 0.12rem;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-396eea90] {
            width: 100%;
            overflow-x: scroll;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            padding-bottom: 40px;
            margin-bottom: -40px;
            overflow-y: hidden;
            z-index: 1;
}
.list_container .list_wrap .list_content .list_filter .list_filter-wrap .bottom-filter[data-v-396eea90]::-webkit-scrollbar {
              width: 0 !important;
              height: 0 !important;
}
.list_container .list_wrap .list_main[data-v-396eea90] {
      z-index: 2;
      width: 100%;
      height: calc(100% - 1.24rem);
      background: #f7f8fc;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
}
.list_container .list_wrap .list_main .list_main-wrap[data-v-396eea90] {
        width: 100%;
        height: calc(100% - 1rem);
        overflow-y: scroll;
}
.list_container .list_wrap .list_main .list_main-wrap .list_main-total[data-v-396eea90] {
          font-size: 0.32rem;
          font-weight: 500;
          color: #666666;
          color: #3975c6;
          margin: 0 2px;
}
.list_container .list_wrap .list_main .list_main-wrap .title-ctn[data-v-396eea90] {
          padding: 0.35rem 0.42rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          border: 1px solid #3975C6;
          border-radius: 5px;
          margin: 0.27rem;
          background: #fff;
          font-size: 14px;
          font-weight: 400;
          color: #333333;
}
.list_container .list_wrap .list_main .list_main-wrap .title-ctn .money-div[data-v-396eea90] {
            font-size: 24px;
            font-weight: 800;
            color: #3975C6;
            margin-top: 10px;
            margin-bottom: 20px;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn[data-v-396eea90] {
          font-size: 0.32rem;
          font-weight: 500;
          color: #666666;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn img[data-v-396eea90] {
            width: 0.49rem;
            height: 0.49rem;
            display: inline-block;
            vertical-align: middle;
}
.list_container .list_wrap .list_main .list_main-wrap .clear-all-ctn span[data-v-396eea90] {
            display: inline-block;
            vertical-align: middle;
            margin-left: 0.12rem;
            color: #3975c6;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list[data-v-396eea90] {
          width: 100%;
          height: 100%;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item[data-v-396eea90] {
            margin-bottom: 0.19rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item[data-v-396eea90] {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
                  -ms-flex-pack: justify;
                      justify-content: space-between;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-396eea90] {
                font-size: 0.32rem;
                font-weight: 500;
                color: #666666;
                line-height: 0.65rem;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .label-item span[data-v-396eea90]:last-of-type {
                  color: #333;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .item-btn[data-v-396eea90] {
              background: #eeeeee;
              border-radius: 6px;
              padding: 0.02rem 0.26rem;
              font-size: 0.32rem;
              font-weight: 500;
              color: #999999;
              margin-left: 0.2rem;
              display: inline-block;
}
.list_container .list_wrap .list_main .list_main-wrap .scroll-list .list_main-item .item-btn-info[data-v-396eea90] {
              background: #3975c6 !important;
              color: #fff !important;
}
.list_container .list_wrap .cust-name[data-v-396eea90] {
      font-size: 0.32rem;
      font-family: PingFang SC;
      font-weight: 500;
      color: #3975c6;
      border: 1px solid #3975c6;
      border-radius: 0.08rem;
      padding: 0.05rem 0.11rem;
}
.list_container[data-v-396eea90] .van-cell-group--inset {
    margin: 0 0.27rem;
    padding-top: 0.1rem;
}
.list_container[data-v-396eea90] .van-cell-group--inset .van-cell {
      padding-left: 0.27rem;
      padding-right: 0.27rem;
}
.list_container[data-v-396eea90] .van-cell-group--inset .van-cell::after {
        border-bottom-color: #f7f8fc;
}
[data-v-396eea90] .van-picker-column__item--selected {
  color: #3975c6;
}
[data-v-396eea90] .van-picker__frame {
  right: 15px;
  left: 16px;
  height: 36px !important;
}
[data-v-396eea90] .van-picker__frame::after {
    background: rgba(57, 117, 198, 0.1);
    border: 1px solid #3975c6;
    border-radius: 50px;
}
[data-v-396eea90] .van-field__control {
  font-weight: 500;
}
[data-v-396eea90] .van-cell {
  font-weight: 500 !important;
}
[data-v-396eea90] .van-cell .van-cell__title {
    font-size: 0.38rem !important;
    color: #333;
}
[data-v-396eea90] .van-search .van-search__content .van-cell {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.overdraft-dialog {
  border-radius: 5px !important;
  width: 8.72rem;
}
.overdraft-dialog .van-dialog__header {
    padding-bottom: 0.5rem;
    font-size: 0.46rem;
    font-weight: bold;
    color: #333333;
}
.overdraft-dialog .van-dialog__content {
    margin: 0.3rem 0px 0.8rem;
}
.overdraft-dialog .van-dialog__content .van-dialog__message {
      margin: auto;
      width: 6.6rem;
      display: block;
      text-align: center;
      font-size: 0.38rem;
      font-family: "PingFang SC";
      font-weight: 500;
      color: #333333;
}
.overdraft-dialog .van-dialog__confirm {
    color: #4378be !important;
}
.overdraft-dialog .van-dialog__confirm:active {
    color: #4378be !important;
}

.add-order-ctn[data-v-220c6193] {
  margin-top: -1px;
}
.list_search[data-v-220c6193] {
  width: 100%;
  height: 1.65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list_search .list_search-content[data-v-220c6193] {
    width: 100%;
}
.list_search .van-search[data-v-220c6193] {
    height: 1.63rem;
    width: 100%;
}
.list_search .van-search .van-search__action[data-v-220c6193] {
      color: #ffffff;
}
.list_search .van-search .van-search__content[data-v-220c6193] {
      height: 0.93rem;
}
.list_search .van-search .van-search__content[data-v-220c6193] .van-field__control {
      font-weight: 500;
}
.list_search .van-search .van-search__content .van-cell[data-v-220c6193] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
.list_search .van-search .van-search__content .van-cell[data-v-220c6193] .van-field__left-icon {
        width: 0.4rem;
        height: 0.4rem;
        margin: 0.08rem 0.25rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.list_search .van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-220c6193] {
        width: 100%;
        height: 100%;
}
.list_search .van-search .van-search__content .van-cell > .van-cell__value[data-v-220c6193] {
        margin-left: 0.4rem;
}
.list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-220c6193]::-webkit-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-220c6193]::-moz-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-220c6193]::-ms-input-placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.list_search .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-220c6193]::placeholder {
          color: #4378be !important;
          opacity: 0.3;
}
.list-main[data-v-220c6193] {
  width: 100%;
  height: calc(100vh - 1.65rem);
  margin-top: -1px;
  background: #f7f8fc;
}
.list-main .list-filter-ctn[data-v-220c6193] {
    width: 100%;
    height: 1.28rem;
    position: relative;
    background: #3975c6;
}
.list-main .list-filter-ctn .list-filter[data-v-220c6193] {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1.28rem;
      background: #ffffff;
      border-radius: 0.27rem 0.27rem 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      line-height: 1.28rem;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 0.5rem;
      font-size: 0.32rem;
      font-weight: 500;
      color: #666666;
}
.list-main .list-filter-ctn .list-filter .active-item[data-v-220c6193] {
        color: #3975c6;
}
.list-main .tip-ctn[data-v-220c6193] {
    height: 0.88rem;
    line-height: 0.88rem;
    background: #da291c;
    font-size: 0.32rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}
.list-main .list-ctn[data-v-220c6193] {
    height: calc(100vh - 4.6rem);
    overflow-y: scroll;
}
.list-main .list-ctn .list-total-ctn[data-v-220c6193] {
      padding: 0.3rem 0.42rem;
      font-size: 0.32rem;
      font-weight: 400;
      color: #666666;
}
.list-main .list-ctn .list-main-ctn[data-v-220c6193] {
      margin: 0 0.27rem;
      height: 100%;
}
.list-main .list-ctn .list-main-ctn .item-ctn[data-v-220c6193] {
        background: #fff;
        padding: 0.4rem 0.27rem;
        margin-bottom: 0.2rem;
}
.list-main .list-ctn .list-main-ctn .item-ctn > div[data-v-220c6193] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: baseline;
              -ms-flex-align: baseline;
                  align-items: baseline;
          margin-bottom: 0.4rem;
          font-size: 0.32rem;
          font-weight: 400;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-one[data-v-220c6193] {
          color: #666666;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-one .name[data-v-220c6193] {
            font-size: 0.43rem;
            font-weight: 600;
            color: #333333;
            margin-right: 0.1rem;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-two[data-v-220c6193] {
          color: #333333;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-two img[data-v-220c6193] {
            width: 0.26rem;
            height: 0.31rem;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-two .address[data-v-220c6193] {
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            word-wrap: break-word;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-left: 0.1rem;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-three[data-v-220c6193] {
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          color: #999999;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-btns[data-v-220c6193] {
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: end;
          margin-bottom: 0;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-btns .item-btn .btn-ctn[data-v-220c6193] {
            padding: 0.1rem 0.26rem;
            background: #3975c6;
            color: #fff;
            border-radius: 0.14rem;
            margin-left: 0.2rem;
}
.list-main .list-ctn .list-main-ctn .item-ctn .item-btns .item-btn .white-ctn[data-v-220c6193] {
            color: #3975c6;
            background: #fff;
            border: 1px solid #3975c6;
}
.dialog-ctn[data-v-220c6193] {
  padding: 0.72rem 0.36rem;
  font-size: 0.38rem;
}
.dialog-ctn .header[data-v-220c6193] {
    color: #da291c;
    margin-bottom: 0.8rem;
}
.dialog-ctn .main[data-v-220c6193] {
    color: #333333;
    line-height: 0.65rem;
}
[data-v-220c6193] .van-dialog__header {
  font-size: 0.46rem;
  font-weight: bold;
  color: #333333;
}

.other-detail-ctn[data-v-7860f601] {
  background: #4575c7;
  padding-top: 0.41rem;
  height: calc(100vh - 5rem);
}
.other-detail-ctn .other-detail-header[data-v-7860f601] {
    padding: 0.36rem 0.41rem;
    margin: 0 0.27rem 0.41rem;
    border-radius: 0.27rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.other-detail-ctn .other-detail-header .header-left .cus-type-class[data-v-7860f601] {
      font-size: 0.32rem;
      color: #3975c6;
      border: 1px solid #3975c6;
      padding: 0.05rem 0.11rem;
      border-radius: 0.08rem;
}
.other-detail-ctn .other-detail-header .header-left .type-class[data-v-7860f601] {
      font-size: 0.38rem;
      color: #333;
      font-weight: bold;
      margin-left: 0.1rem;
}
.other-detail-ctn .other-detail-header .header-left .copy-class[data-v-7860f601] {
      font-size: 0.27rem;
      font-weight: 500;
      color: #333333;
      border: 1px solid #333333;
      padding: 0.03rem 0.1rem;
      border-radius: 0.11rem;
      margin-left: 0.1rem;
}
.other-detail-ctn .other-detail-header .header-right[data-v-7860f601] {
      font-size: 0.38rem;
      font-weight: 500;
      color: #4575c7;
}
.other-detail-ctn .other-detail-main[data-v-7860f601] {
    background: #f7f8fc;
    border-top-left-radius: 0.27rem;
    border-top-right-radius: 0.27rem;
    padding: 0.51rem 0.27rem;
    height: calc(100vh - 3.1rem);
}
.other-detail-ctn .other-detail-main .main-items[data-v-7860f601] {
      font-size: 0.38rem;
      background: #fff;
      padding: 0.2rem 0.42rem;
      border-radius: 0.14rem;
}
.other-detail-ctn .other-detail-main .main-items .item-class[data-v-7860f601] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0.3rem 0;
        color: #333;
}
.other-detail-ctn .other-detail-main .main-items .item-class > span[data-v-7860f601]:first-of-type {
          color: #666;
}

.add-order-ctn[data-v-5014421b] {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 0.4rem 0;
  margin-bottom: 2.5rem;
}
.add-order-ctn[data-v-5014421b]::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}
.add-order-ctn[data-v-5014421b]::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.add-order-ctn .add_btn_box[data-v-5014421b] {
    width: 100%;
    height: 2.21rem;
    position: fixed;
    left: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.add-order-ctn .add_btn_box .sub_btn_box[data-v-5014421b] {
      height: 2.48rem;
      background: #ffffff;
      padding: 0.53rem 0.4rem 0.64rem;
}
.add-order-ctn .add_btn_box .sub_btn_box .submit_btn[data-v-5014421b] {
        width: 100%;
        height: 1.04rem;
        background: #5076b8;
        border-radius: 1rem;
        font-size: 0.4rem;
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #ffffff;
}
.add-order-ctn[data-v-5014421b] .van-field__control {
    color: #666;
}
.add-order-ctn .cell-title-required[data-v-5014421b] {
    position: relative;
}
.add-order-ctn .cell-title-required[data-v-5014421b]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.add-order-ctn .van-cell--required[data-v-5014421b]::before {
    display: none;
}
.add-order-ctn .van-cell__value[data-v-5014421b] {
    color: #666;
}
.add-order-ctn .van-cell__value .van-field__body .van-field__control[data-v-5014421b] {
      color: #666;
}
.add-order-ctn .van-field__error-message[data-v-5014421b] {
    text-align: right;
}
.add-order-ctn[data-v-5014421b] .van-field__error-message {
    display: none;
}
.add-order-ctn .van-cell-group__title[data-v-5014421b] {
    margin: 0;
    padding: 0.43rem 0.47rem 0.41rem 0.04rem;
    font-size: 0.43rem;
    font-weight: 600;
    color: black;
}
.add-order-ctn .van-cell-group__title--inset[data-v-5014421b] {
    padding: 0.53rem 0.34rem 0.41rem;
}
.add-order-ctn .van-cell-group--inset[data-v-5014421b] {
    margin-left: 0.27rem;
    margin-right: 0.27rem;
    margin-top: 0.27rem;
}
.add-order-ctn .popup-ctn[data-v-5014421b] {
    padding-bottom: 0.5333rem;
}
.add-order-ctn .popup-ctn .popup-header[data-v-5014421b] {
      text-align: center;
      position: relative;
      padding: 0.4rem 0.38rem;
      font-size: 0.38rem;
}
.add-order-ctn .popup-ctn .popup-header .cancel-class[data-v-5014421b] {
        position: absolute;
        left: 0.38rem;
        color: #548cdf;
}
.add-order-ctn .popup-ctn .add-btn[data-v-5014421b] {
      background: #3975c6;
      color: #fff;
      padding: 0.3rem 0.5rem;
      border-radius: 0.47rem;
      line-height: 0.35rem;
}
.add-order-ctn .popup-ctn .collection-list[data-v-5014421b] {
      font-size: 0.41rem;
      color: #333;
      max-height: 5.3333rem;
      overflow-y: auto;
}
.add-order-ctn .popup-ctn .collection-list[data-v-5014421b]::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
}
.add-order-ctn .popup-ctn .collection-list .collection-item[data-v-5014421b] {
        text-align: center;
        padding: 0.2667rem 0;
}

.partner-ctn[data-v-46277d07] {
  padding: 0.4rem 0.3rem;
  background: #f7f8fc;
}
.partner-ctn .main-ctn[data-v-46277d07] {
    height: calc(100vh - 2.8rem);
    overflow: auto;
}
.partner-ctn .main-ctn[data-v-46277d07]::-webkit-scrollbar {
      display: none;
}
.partner-ctn .main-ctn .info-ctn[data-v-46277d07] {
      background: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0.3rem 0.2rem;
      margin: 0.2rem 0;
      border-radius: 0.13rem;
}
.partner-ctn .main-ctn .info-ctn .info-left[data-v-46277d07] {
        position: relative;
}
.partner-ctn .main-ctn .info-ctn .info-left img[data-v-46277d07] {
          width: 50px;
          height: 53px;
          border-radius: 50%;
}
.partner-ctn .main-ctn .info-ctn .info-left .icon-bg[data-v-46277d07] {
          position: absolute;
          top: -2px;
          left: -3px;
          width: 55px;
          height: 62px;
}
.partner-ctn .main-ctn .info-ctn .info-right[data-v-46277d07] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        margin-left: 0.3rem;
}
.partner-ctn .main-ctn .info-ctn .info-right .right-info-ctn[data-v-46277d07] {
          font-size: 0.37rem;
          font-weight: bold;
          color: #333333;
}
.partner-ctn .main-ctn .info-ctn .info-right .right-info-ctn .mobile-ctn[data-v-46277d07] {
            font-size: 0.32rem;
            font-weight: 500;
            color: #333333;
            margin-top: 0.2rem;
}
.partner-ctn .main-ctn .info-ctn .info-right .right-type-ctn[data-v-46277d07] {
          padding: 0.1rem 0.3rem;
          background: #3975c6;
          -webkit-box-shadow: 0rem 0rem 0rem 0rem rgba(57, 117, 198, 0.31);
                  box-shadow: 0rem 0rem 0rem 0rem rgba(57, 117, 198, 0.31);
          border-radius: 0.29rem;
          font-size: 0.32rem;
          font-weight: 500;
          color: #ffffff;
}
.partner-ctn .main-ctn .form-ctn[data-v-46277d07] {
      padding: 0.4rem;
      background: #fff;
      border-radius: 0.13rem;
      margin: 0.2rem 0;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-title[data-v-46277d07] {
        font-size: 0.37rem;
        font-weight: 400;
        color: #333;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input[data-v-46277d07] {
        border-bottom: 1px solid #e5e5e5;
        margin-bottom: 0.4rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 0.43rem;
        font-weight: 400;
        color: #333333;
        padding: 0.2667rem 0;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input input[data-v-46277d07] {
          width: 100%;
          border: none;
          font-size: 0.43rem;
          font-weight: 400;
          color: #333333;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input input[data-v-46277d07]::-webkit-input-placeholder {
            color: #999 !important;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input input[data-v-46277d07]::-moz-placeholder {
            color: #999 !important;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input input[data-v-46277d07]::-ms-input-placeholder {
            color: #999 !important;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input input[data-v-46277d07]::placeholder {
            color: #999 !important;
}
.partner-ctn .main-ctn .form-ctn .form-item .item-input .right-btn[data-v-46277d07] {
          font-size: 0.27rem;
          font-weight: 500;
          color: #ffffff;
          padding: 0.1rem 0.2rem;
          background: #4575c7;
          border-radius: 0.11rem;
}
.partner-ctn .main-ctn .form-ctn .form-item .mobile-class[data-v-46277d07] {
        padding-bottom: 0.2667rem;
}
.partner-ctn .main-ctn .form-ctn .radio-ctn .radio_type[data-v-46277d07] {
        width: 0.39rem;
        height: 0.39rem;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        position: relative;
        margin: 0 3px 0 0;
}
.partner-ctn .main-ctn .form-ctn .radio-ctn .radio_type[data-v-46277d07]:before {
          content: "";
          width: 0.39rem;
          height: 0.39rem;
          border: 1px solid #7d7d7d;
          display: inline-block;
          border-radius: 50%;
          vertical-align: middle;
}
.partner-ctn .main-ctn .form-ctn .radio-ctn .radio_type[data-v-46277d07]:checked:before {
          content: "";
          width: 0.39rem;
          height: 0.39rem;
          border: 1px solid RGBA(69, 117, 199, 1);
          background: RGBA(69, 117, 199, 1);
          display: inline-block;
          border-radius: 50%;
          vertical-align: middle;
}
.partner-ctn .main-ctn .form-ctn .radio-ctn .radio_type[data-v-46277d07]:checked:after {
          content: "";
          content: "";
          width: 8px;
          height: 4px;
          border: 2px solid white;
          border-top: transparent;
          border-right: transparent;
          text-align: center;
          display: block;
          position: absolute;
          top: 5px;
          left: 4px;
          -webkit-transform: rotate(-45deg);
                  transform: rotate(-45deg);
}
.partner-ctn .main-ctn .form-ctn .radio-ctn .radio_type:checked + label[data-v-46277d07] {
          color: RGBA(69, 117, 199, 1);
}
.partner-ctn .main-ctn .form-ctn .radio-ctn label[data-v-46277d07] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #333333;
        padding: 0.1rem;
}
.partner-ctn .main-ctn .advertise-img[data-v-46277d07] {
      width: 100%;
      border-radius: 0.13rem;
}
.partner-ctn .main-ctn .share-list-ctn[data-v-46277d07] {
      border-radius: 0.13rem;
      margin-bottom: 20px;
}
.partner-ctn .main-ctn .share-list-ctn .share-title[data-v-46277d07] {
        font-size: 0.43rem;
        font-weight: bold;
        color: #333333;
        padding: 0.4rem 0;
}
.partner-ctn .main-ctn .share-list-ctn .share-sub-title-ctn[data-v-46277d07] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        background: #01c251;
        border-radius: 0.13rem 0.13rem 0rem 0rem;
        font-size: 0.32rem;
        font-weight: 400;
        color: #ffffff;
        padding: 0.4rem 0.3rem;
        line-height: 1.6;
}
.partner-ctn .main-ctn .share-list-ctn .share-sub-title-ctn img[data-v-46277d07] {
          width: 1.33rem;
          height: 1.09rem;
          margin-left: 1.6rem;
}
.partner-ctn .main-ctn .share-list-ctn .share-list[data-v-46277d07] {
        background: #fff;
}
.partner-ctn .main-ctn .share-list-ctn .share-list .share-item[data-v-46277d07] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 0.37rem;
          font-weight: 400;
          color: #333333;
          padding: 0.4rem 0.3rem;
}
.partner-ctn .main-ctn .share-list-ctn .share-list .share-item .item-right[data-v-46277d07] {
            color: #4575c7;
}
.partner-ctn .main-ctn .share-list-ctn .share-list .share-item .success-class[data-v-46277d07] {
            color: #25b273;
}
.partner-ctn .main-ctn .share-list-ctn .no-data[data-v-46277d07] {
        padding: 20px 0;
        text-align: center;
        font-size: 16px;
        font-weight: 400;
        color: #333333;
}
.partner-ctn .bottom-ctn[data-v-46277d07] {
    background: #ffffff;
    padding: 0.5rem 0.4rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.partner-ctn .bottom-ctn .btn-ctn[data-v-46277d07] {
      background: #4378be;
      border-radius: 0.52rem;
      padding: 0.32rem 0;
      font-size: 0.4rem;
      font-weight: 400;
      color: #ffffff;
      text-align: center;
}

.auth-list[data-v-ea953496] {
  padding: 0 16px;
  background: #f7f8f7;
}
.auth-list .total-ctn[data-v-ea953496] {
    padding: 13px 0;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
}
.auth-list .list-ctn .item-ctn[data-v-ea953496] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 7px;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px 10px;
}
.auth-list .list-ctn .item-ctn .item-left .status-ctn[data-v-ea953496] {
      font-weight: 500;
      font-size: 12px;
      background: #FFFFFF;
      border-radius: 3px;
      padding: 2px 6px;
      color: #F5AB32;
      border: 1px solid #F5AB32;
      margin-right: 2px;
}
.auth-list .list-ctn .item-ctn .item-left .status1[data-v-ea953496] {
      color: #4575C7;
      border: 1px solid #4575C7;
}
.auth-list .list-ctn .item-ctn .item-left .status2[data-v-ea953496] {
      color: #24B277;
      border: 1px solid #24B277;
}
.auth-list .list-ctn .item-ctn .item-left .status3[data-v-ea953496] {
      color: #DA291C;
      border: 1px solid #DA291C;
}
.auth-list .list-ctn .item-ctn .item-left .name-ctn[data-v-ea953496] {
      font-weight: bold;
      font-size: 14px;
      color: #333333;
}
.auth-list .list-ctn .item-ctn .item-left .mobile-ctn[data-v-ea953496] {
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.auth-list .list-ctn .item-ctn .item-right .btn-ctn[data-v-ea953496] {
      background: #F5AB32;
      border-radius: 5px;
      padding: 4px 10px;
      font-weight: 500;
      font-size: 12px;
      color: #FFFFFF;
}
.auth-list .list-ctn .item-ctn .item-right .btn1[data-v-ea953496] {
      background: #FFFFFF;
      border: 1px solid #3975C6;
      color: #3975C6;
}
.auth-list .list-ctn .item-ctn .item-right .btn2[data-v-ea953496] {
      background: #4575C7;
}

.auth-index .main-ctn[data-v-07caa568] {
  background: url(../../static/img/bg.064556d.png) no-repeat;
  background-size: 100% 100%;
  text-align: center;
  height: 100vh;
  overflow: auto;
}
.auth-index .title-img[data-v-07caa568] {
  width: 311px;
  height: 50px;
  margin-top: 36px;
}
.auth-index .form-ctn[data-v-07caa568] {
  width: 355px;
  height: 503px;
  background: url(../../static/img/form-bg.f5c7ccb.png) no-repeat;
  background-size: 100% 100%;
  margin: 32px auto 86px;
  text-align: left;
}
.auth-index .form-ctn .form-items[data-v-07caa568] {
    padding-top: 260px;
}
.auth-index .form-ctn .form-items[data-v-07caa568] .van-cell {
      background-color: unset;
      text-align: left;
      font-size: 14px !important;
      color: #0A3F7C !important;
      margin: 10px 31px;
      padding: 0;
      width: unset;
}
.auth-index .form-ctn .form-items[data-v-07caa568] .van-field {
      padding: 0 0 6px;
      margin: 0;
}
.auth-index .form-ctn .form-items .row-item[data-v-07caa568] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 0 31px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(166, 212, 245, 0.3);
}
.auth-index .form-ctn .form-items .row-item .row-left[data-v-07caa568] {
        font-weight: 550;
        font-size: 14px;
        color: #0A3F7C;
}
.auth-index .form-ctn .form-items .row-item .row-right[data-v-07caa568] {
        font-weight: 500;
        font-size: 14px;
        color: #02162D;
}
.auth-index .form-ctn .form-items[data-v-07caa568] .van-cell__title {
      font-weight: 500 !important;
      font-size: 14px !important;
      color: #0A3F7C !important;
}
.auth-index .form-ctn .form-items[data-v-07caa568] .van-field__label {
      width: 7em;
      font-weight: 500;
      font-size: 14px;
      color: #0A3F7C;
}
.auth-index .form-ctn .form-items[data-v-07caa568] .van-cell::after {
      border-bottom: 1px solid #A6D4F5;
      right: 0;
      left: 0;
}
.auth-index .form-ctn .form-items .row-ctn[data-v-07caa568] .van-field {
      padding: 0 31px;
}
.bottom-ctn[data-v-07caa568] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 15px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
}
.bottom-ctn .btn-ctn[data-v-07caa568] {
    padding: 13px 0;
    text-align: center;
    background: #3975C6;
    border-radius: 20px;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
}
.cell-title-required[data-v-07caa568] {
  position: relative;
}
.cell-title-required[data-v-07caa568]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}

.pdf-ctn[data-v-51683e7b] {
  padding: 15px 10px 0;
  font-size: 0.4rem;
  font-weight: bold;
  color: #333333;
  position: relative;
  background: #f7f8fc;
}
.pdf-ctn .pdf-container[data-v-51683e7b] {
    width: 100%;
    height: calc(100vh - 2.5rem);
    overflow: auto;
}
.pdf-ctn .pdf-container[data-v-51683e7b]::-webkit-scrollbar {
      display: none;
}
.pdf-ctn .pdf-container img[data-v-51683e7b] {
      width: 100%;
}
.pdf-ctn .bottom-ctn[data-v-51683e7b] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: #fff;
}
.pdf-ctn .bottom-ctn .btn-item[data-v-51683e7b] {
      background: #4378be;
      border-radius: 20px;
      padding: 12px 0;
      text-align: center;
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
}

.code-error-ctn[data-v-297612f6] {
  padding: 15px 12px;
}
.code-error-ctn .main-ctn[data-v-297612f6] {
    text-align: center;
    margin-top: 70px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 12px;
}
.code-error-ctn .main-ctn img[data-v-297612f6] {
      width: 145px;
      height: 139px;
      margin-bottom: 30px;
}
.code-error-ctn .btn[data-v-297612f6] {
    margin-top: 60px;
    background: #3975c6;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

.share-ctn[data-v-a3ccbe0c] {
  position: relative;
}
.share-ctn .image-ctn[data-v-a3ccbe0c] {
    height: calc(100vh - 2.1rem);
    overflow: auto;
}
.share-ctn .image-ctn img[data-v-a3ccbe0c] {
      width: 100%;
}
.share-ctn .btn-ctn[data-v-a3ccbe0c] {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.share-ctn .btn-ctn .btn-item[data-v-a3ccbe0c] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: rgba(57, 117, 198, 0.2);
      border-radius: 20px;
      font-size: 15px;
      font-weight: 400;
      padding: 13px 0;
      color: #3975c6;
      text-align: center;
}
.share-ctn .btn-ctn .share-btn[data-v-a3ccbe0c] {
      background: #3975c6;
      color: #fff;
      margin-left: 10px;
}

.confirmation-ctn[data-v-fdfaa146] {
  position: relative;
  height: calc(100vh - 30px);
  padding: 15px 10px;
  background: #f7f8fc;
}
.confirmation-ctn .confirmation-main-ctn[data-v-fdfaa146] {
    padding: 22px 15px;
    background: #fff;
    height: calc(100vh - 4rem);
    overflow: auto;
}
.confirmation-ctn .confirmation-main-ctn[data-v-fdfaa146]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-title[data-v-fdfaa146] {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      color: #3975c6;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text[data-v-fdfaa146] {
      font-size: 14px;
      font-weight: 400;
      color: #666666;
      line-height: 2;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text .mrt20[data-v-fdfaa146] {
        margin-top: 15px;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text .padding20[data-v-fdfaa146] {
        padding: 15px 0;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text .right-item[data-v-fdfaa146] {
        text-align: right;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text .pad20-item[data-v-fdfaa146] {
        padding: 15px 0;
        margin-bottom: 15px;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-text .border-item[data-v-fdfaa146] {
        border-bottom: 1px solid #eee;
}
.confirmation-ctn .confirmation-main-ctn .bold-font[data-v-fdfaa146] {
      font-weight: bold;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn[data-v-fdfaa146] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      font-size: 14px;
      font-weight: 400;
      color: #666666;
      line-height: 40px;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn .image-container[data-v-fdfaa146] {
        width: 100px;
        height: 38px;
        position: relative;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn .img-ctn[data-v-fdfaa146] {
        width: 38px;
        height: 100px;
        -webkit-transform: translate(-50%, -50%) rotate(270deg);
                transform: translate(-50%, -50%) rotate(270deg);
        position: absolute;
        top: 50%;
        left: 50%;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn .none-ctn[data-v-fdfaa146] {
        width: 100px;
        height: 38px;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn .name-ctn[data-v-fdfaa146] {
        width: 70px;
        text-align: left;
}
.confirmation-ctn .confirmation-main-ctn .confirmation-img-ctn .value-ctn[data-v-fdfaa146] {
        width: 100px;
}
.confirmation-ctn .confirmation-main-img[data-v-fdfaa146] {
    height: calc(100vh - 3rem);
    overflow: auto;
}
.confirmation-ctn .confirmation-main-img[data-v-fdfaa146]::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
}
.confirmation-ctn .confirmation-main-img img[data-v-fdfaa146] {
      width: 100%;
}
.confirmation-ctn .confirmation-bottom-ctn[data-v-fdfaa146] {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px;
    margin-top: 27px;
    background: #fff;
}
.confirmation-ctn .confirmation-bottom-ctn .btn-item[data-v-fdfaa146] {
      color: #000;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      background: rgba(57, 117, 198, 0.2);
      border-radius: 20px;
      padding: 12px 0;
      font-size: 15px;
      font-weight: 400;
      color: #3975c6;
}
.confirmation-ctn .confirmation-bottom-ctn .sure-btn[data-v-fdfaa146] {
      background: #3975c6;
      color: #fff;
      margin-left: 20px;
}

.canvaspanel[data-v-4f907a26] {
  background: #f7f8fc;
  height: 100vh;
}
.canvasborder[data-v-4f907a26] {
  height: calc(100% - 20px);
  background: #fff;
  width: calc(100% - 90px);
  float: right;
  margin: 10px;
  position: relative;
}
.canvasborder .title-ctn[data-v-4f907a26] {
    position: absolute;
    top: 50%;
    left: -130px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    font-size: 94px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    line-height: 82px;
    opacity: 0.1;
    width: 200%;
}
.canvasborder .sub-title-ctn[data-v-4f907a26] {
    position: absolute;
    top: 50%;
    right: -90px;
    -webkit-transform: rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    font-size: 94px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #333333;
    line-height: 82px;
    opacity: 0.1;
    width: 200%;
    font-size: 18px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 13px;
    opacity: 0.2;
}
.canvaspanel canvas[data-v-4f907a26] {
  width: 100% !important;
  height: 100% !important;
  background: #ffffff;
}
.buttongroup[data-v-4f907a26] {
  left: -140px;
  position: absolute;
  bottom: 200px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.van-toast--fail[data-v-4f907a26] {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.empty[data-v-4f907a26],
.autograph[data-v-4f907a26] {
  height: 39px;
  width: 168px;
  line-height: 40px;
  font-size: 1rem;
  float: left;
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #3975c6;
  border-radius: 20px;
}
.empty[data-v-4f907a26] {
  background: rgba(57, 117, 198, 0.2);
  margin-right: 20px;
}
.autograph[data-v-4f907a26] {
  background: #3975c6;
  color: #fff;
}

canvas[data-v-a1968bcc] {
  max-width: 100%;
  display: block;
}

.confir-success-ctn[data-v-3a616f8a] {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  padding: 15px;
  text-align: center;
  padding-top: 100px;
}
.confir-success-ctn img[data-v-3a616f8a] {
    width: 160px;
    height: 148px;
}
.confir-success-ctn .title-ctn[data-v-3a616f8a] {
    margin-top: 30px;
}
.confir-success-ctn .button-ctn[data-v-3a616f8a] {
    border: 1px solid #3975c6;
    background: #fff;
    border-radius: 10px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 400;
    color: #3975c6;
    margin-top: 20px;
}
.confir-success-ctn .detail-btn[data-v-3a616f8a] {
    margin-top: 63px;
    color: #ffffff;
    background: #3975c6;
}

.turnover-list[data-v-85279890] {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.list-content-wrap[data-v-85279890] {
  width: 100%;
  height: calc(100vh - 4rem);
  overflow-y: scroll;
  background: #f7f8fc;
  margin-top: -1px;
}
.list-content-wrap .scroll-list[data-v-85279890] {
    width: 100%;
    height: 100%;
}
.list-content-wrap .scroll-list .van-list[data-v-85279890] {
      height: auto !important;
}
.list-content-wrap .scroll-list .total-ctn[data-v-85279890] {
      padding: 0.3rem;
      font-size: 12px;
      font-weight: 500;
      color: #666666;
}
.list-content-wrap .scroll-list .no-data-ctn[data-v-85279890] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-top: 2.23rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.list-content-wrap .scroll-list .no-data-ctn .no-data-img[data-v-85279890] {
        margin-bottom: 0.8rem;
        width: 5.33rem;
        height: 2.45rem;
}

.turnover-filter-ctn[data-v-5b06f21c] {
  background: #3975c6;
}
.turnover-filter-ctn .search-box[data-v-5b06f21c] {
    width: 100%;
    height: 1.65rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.turnover-filter-ctn .search-box .van-search[data-v-5b06f21c] {
      height: 1.63rem;
      width: 100%;
}
.turnover-filter-ctn .search-box .van-search .van-search__action[data-v-5b06f21c] {
        color: #ffffff;
}
.turnover-filter-ctn .search-box .van-search .van-search__content[data-v-5b06f21c] {
        height: 0.93rem;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell[data-v-5b06f21c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell[data-v-5b06f21c] .van-field__value {
          font-weight: 400;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell[data-v-5b06f21c] .van-field__left-icon {
          width: 0.4rem;
          height: 0.4rem;
          margin: 0.08rem 0.25rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-5b06f21c] {
          width: 100%;
          height: 100%;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-cell__value[data-v-5b06f21c] {
          margin-left: 0.4rem;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-5b06f21c]::-webkit-input-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-5b06f21c]::-moz-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-5b06f21c]::-ms-input-placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.turnover-filter-ctn .search-box .van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-5b06f21c]::placeholder {
            color: #4378be !important;
            opacity: 0.3;
}
.turnover-filter-ctn .content-filter-wrap[data-v-5b06f21c] {
    overflow-y: hidden;
    background: #fff;
    border-radius: 0.2rem 0.2rem 0 0;
}
.turnover-filter-ctn .content-filter-wrap .list_select-btn[data-v-5b06f21c] {
      font-size: 0.32rem;
      font-weight: 400;
      color: #666666;
}
.turnover-filter-ctn .content-filter-wrap .list_select-curBtn[data-v-5b06f21c] {
      color: #5076b8 !important;
}
.turnover-filter-ctn .content-filter-wrap .bottom-filter[data-v-5b06f21c] {
      width: 100%;
      overflow-x: scroll;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-bottom: 40px;
      margin-bottom: -40px;
      overflow-y: hidden;
      z-index: 1;
}
.turnover-filter-ctn .content-filter-wrap .bottom-filter[data-v-5b06f21c]::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
}
.turnover-filter-ctn .popup-wrap[data-v-5b06f21c] {
    padding: 18px 15px 24px;
}
.turnover-filter-ctn .popup-wrap .title[data-v-5b06f21c] {
      font-size: 16px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      line-height: 13px;
      text-align: center;
      margin-bottom: 15px;
}
.turnover-filter-ctn .popup-wrap .filter-item .item-title[data-v-5b06f21c] {
      font-size: 15px;
      font-family: PingFang SC;
      font-weight: 800;
      color: #333333;
      margin-bottom: 12px;
}
.turnover-filter-ctn .popup-wrap .filter-item .item-content[data-v-5b06f21c] {
      margin-bottom: 25px;
}
.turnover-filter-ctn .popup-wrap .filter-item .item-content .pop-time-box[data-v-5b06f21c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 0.4rem;
}
.turnover-filter-ctn .popup-wrap .filter-item .item-content .pop-startend-time[data-v-5b06f21c] {
        width: 4.24rem;
        height: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #999999;
        background: #f7f7f7;
        border-radius: 18px;
}
.turnover-filter-ctn .popup-wrap .filter-item .item-content .pop-time-line[data-v-5b06f21c] {
        width: 8px;
        height: 2px;
        background: #333333;
}
.turnover-filter-ctn .popup-wrap .btn-box[data-v-5b06f21c] {
      margin-top: 26px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.turnover-filter-ctn .popup-wrap .btn-box .btn-wrap[data-v-5b06f21c] {
        width: 47%;
        height: 39px;
        border-radius: 20px;
}
.turnover-filter-ctn .popup-wrap .btn-box .btn-wrap button[data-v-5b06f21c] {
          width: 100%;
          height: 100%;
          border-radius: 20px;
          border: none;
          font-size: 15px;
          font-family: Source Han Sans CN;
          font-weight: 400;
}
.turnover-filter-ctn .popup-wrap .btn-box .btn-wrap .btn-l[data-v-5b06f21c] {
          background: #d9e4f2;
          color: #4378be;
}
.turnover-filter-ctn .popup-wrap .btn-box .btn-wrap .btn-r[data-v-5b06f21c] {
          background: #4378be;
          color: #ffffff;
}

.app-item-inner[data-v-fffaa3d2] {
  margin: 0 0.3rem;
  padding-bottom: 0.3rem;
}
.app-item-inner .app_item[data-v-fffaa3d2] {
    width: 100%;
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
}
.app-item-inner .app_item .item_top[data-v-fffaa3d2] {
      padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.app-item-inner .app_item .item_top .item-top-id[data-v-fffaa3d2] {
        font-size: 0.37rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
        margin-bottom: 0.3rem;
        letter-spacing: 1px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.app-item-inner .app_item .item_top .item-top-id span[data-v-fffaa3d2] {
          font-weight: bold;
}
.app-item-inner .app_item .item_top .item-top-id .title-tag[data-v-fffaa3d2] {
          padding: 0.06rem 0.12rem;
          border-color: #3975c6;
          font-size: 0.32rem;
          font-weight: 500;
          color: #3975c6;
          margin-left: 5px;
          border-radius: 3px;
}
.app-item-inner .app_item .item_content[data-v-fffaa3d2] {
      margin-bottom: 0.2rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.app-item-inner .app_item .item_content .content_title[data-v-fffaa3d2] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #666666;
        width: 2.6667rem;
}
.app-item-inner .app_item .item_content .content_value[data-v-fffaa3d2] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: right;
}
.app-item-inner .app_item .line[data-v-fffaa3d2] {
      width: 100%;
      height: 1px;
      background: #f7f8fc;
}
.app-item-inner .app_item .report_bottom[data-v-fffaa3d2] {
      padding: 0.2rem 0.29rem 0.2rem 0.4rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      color: #a9a9a9;
}
.app-item-inner .app_item .report_bottom .bottom_time[data-v-fffaa3d2] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
        color: #333333;
}
.app-item-inner .app_item .report_bottom .bottom_r[data-v-fffaa3d2] {
        font-size: 0.32rem;
        font-family: PingFang SC;
        font-weight: 400;
}
.app-item-inner .app_item .btn-ctn[data-v-fffaa3d2] {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
.app-item-inner .app_item .btn-ctn .btn-item[data-v-fffaa3d2] {
        background: #3975c6;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 500;
        color: #ffffff;
        padding: 5px 10px;
}
.app-item-inner .app_item .btn-ctn .item-detail[data-v-fffaa3d2] {
        border: 1px solid #3975c6;
        background: #fff;
        color: #3975c6;
}
.van-cell__title[data-v-fffaa3d2] {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}
.textarea-ctn[data-v-fffaa3d2] {
  border-radius: 4px;
  border: 1px solid #eeeeee;
  margin: 10px 16px;
  width: unset;
}

.earnest-order-detail .detail-header[data-v-318bb35e] {
  padding-bottom: 0.48rem;
  background: #fff;
}
.earnest-order-detail .detail-header .manage_tab[data-v-318bb35e] {
    margin: 0.48rem 0.3733rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.earnest-order-detail .detail-header .manage_tab .manage_tab-item[data-v-318bb35e] {
      width: 2.88rem;
      height: 0.8533rem;
      background: rgba(25, 103, 232, 0.1);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 0.2667rem;
      font-size: 0.3733rem;
      font-weight: 500;
      color: #1967e8;
}
.earnest-order-detail .detail-header .manage_tab .manage_tab-active[data-v-318bb35e] {
      background: #1967e8;
      color: #fff;
}
.earnest-order-detail .detail-main[data-v-318bb35e] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f6f7fc;
  padding: 0.3733rem 0.4rem 0.5rem;
  overflow: scroll;
  height: calc(100vh - 3.7rem);
}
.earnest-order-detail .has-export[data-v-318bb35e] {
  height: calc(100vh - 5.65rem);
}
.earnest-order-detail .export-ctn[data-v-318bb35e] {
  background: #ffffff;
  -webkit-box-shadow: 0 0 16px 0 rgba(217, 217, 217, 0.4);
          box-shadow: 0 0 16px 0 rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.earnest-order-detail .export-ctn .export-btn[data-v-318bb35e] {
    height: 39px;
    line-height: 39px;
    background: #1967e8;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
}

.static-ctn[data-v-5f48c932] {
  border-radius: 0.32rem;
  border: 0.0267rem solid #1967e8;
  padding: 0.4933rem 0.4rem;
  background: #fff;
  margin-bottom: 0.4rem;
}
.static-ctn .title-ctn[data-v-5f48c932] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.32rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.1333rem;
}
.static-ctn .title-ctn .left-title[data-v-5f48c932] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.static-ctn .title-ctn .right-title[data-v-5f48c932] {
      width: 2.4rem;
}
.static-ctn .data-ctn[data-v-5f48c932] {
    font-size: 0.2667rem;
    font-weight: 500;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.static-ctn .data-ctn .left-data[data-v-5f48c932] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
}
.static-ctn .data-ctn .left-data .data-total[data-v-5f48c932] {
        font-size: 0.48rem;
        font-weight: 800;
        color: #136be5;
}
.static-ctn .data-ctn .left-data image[data-v-5f48c932] {
        width: 0.16rem;
        height: 0.24rem;
}
.static-ctn .data-ctn .left-data .first-img[data-v-5f48c932] {
        margin-right: 0.2133rem;
        margin-left: 0.0533rem;
}
.static-ctn .data-ctn .left-data .second-img[data-v-5f48c932] {
        margin-right: 0.0533rem;
        margin-left: 0.0533rem;
}
.static-ctn .data-ctn .left-data text[data-v-5f48c932] {
        margin-left: 0.0533rem;
}
.static-ctn .data-ctn .right-data[data-v-5f48c932] {
      font-size: 0.48rem;
      font-weight: 800;
      color: #f98c0e;
      width: 2.4rem;
}
.static-ctn .red-color[data-v-5f48c932] {
    color: #e53232;
}
.static-ctn .green-color[data-v-5f48c932] {
    color: #2ea32a;
}

.detail-list[data-v-244ef3c8] {
  width: 9.2rem;
  padding: 0.4rem;
  background: #ffffff;
  border-radius: 0.32rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.detail-list .tabs-ctn[data-v-244ef3c8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0.2667rem 0 0.6667rem;
}
.detail-list .tabs-ctn .tab-item[data-v-244ef3c8] {
      text-align: center;
      position: relative;
}
.detail-list .tabs-ctn .tab-item .title-ctn[data-v-244ef3c8] {
        font-size: 0.3733rem;
        font-weight: bold;
        color: #2ea32a;
        margin-top: 0.1333rem;
        text-align: center;
}
.detail-list .tabs-ctn .tab-item .sub-title-ctn[data-v-244ef3c8] {
        font-size: 0.2667rem;
        font-family: PingFang SC-Medium, PingFang SC;
        font-weight: 500;
        color: #666666;
        margin-top: 0.1333rem;
}
.detail-list .tabs-ctn .tab-item .line-ctn[data-v-244ef3c8] {
        width: 0.6667rem;
        height: 0.08rem;
        position: absolute;
        left: 50%;
        bottom: -0.28rem;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
}
.detail-list .manage_list-item[data-v-244ef3c8] {
    margin-top: 0.1867rem;
    padding: 0.24rem 0.4rem;
    background: #f7f8fc;
    border-radius: 0.1333rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.detail-list .manage_list-item .manage_list-content[data-v-244ef3c8] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
}
.detail-list .manage_list-item .manage_list-content .manage_list-icon[data-v-244ef3c8] {
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 0.4rem;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA8CAMAAAAJ1/l9AAAAAXNSR0IArs4c6QAAAMNQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wYQtnwAAAEB0Uk5TAAECBwgJExQVIiMkMTIzQEFCT1BRUl5fYG1ub3BxfH1+f4uMjZqbnKmqq6+4ubrHyMnK1tfY4+Xm5/P09fj7/FjFLSsAAAF2SURBVEjH1ddZV4JQFAXgq2HOhppDOGWYKOSIEFmh//9XiW4e1CBw81Ln8Wy+tYB174ErhBA9e0+V3RNHvafr6G2e2x7fJ6g/wh3jsky0V0ZwOVfcEJfVRLsjgsuI4CW0NZJLLm6e5AIP/5km+QT9Isn76D+SvIb+M8nz6OskT21PfYvkYnHq7ySSjxGUSa4gaJFcRqCSPItgRnKBTemwfIYkS3IViUzyFhKF5GUkY5L7E2PJ8Fy1o32fkm3qJp6ptEfzj7NpXIjJ08XGULd218O8HoOvutr6K/hbMIjBf6lpMr4huYtX70o3c2emtsqSFjoxQvl2OVZkf5t0QidGAHc300G9cL5Iqgheornp3euPi3LI3qg17xUW3zvL5wjvST5C+EDyNsInklcQvpI8g+23ILmwQiZGTK4jzZN8iLRG8gbSPsmLSCckT2OAmSQXa2zGO5L7E6NE8i7iZgR3Qv68V/44iPgh/6eHkYQHsYTHwCSH0ANk6dKhgUwNZgAAAABJRU5ErkJggg==);
        background-size: 0.4rem 0.4rem;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #1967e8;
}
.detail-list .manage_list-item .manage_list-content .manage_list-wrap[data-v-244ef3c8] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-left: 0.2533rem;
}
.detail-list .manage_list-item .manage_list-content .manage_list-wrap .manage_list-title[data-v-244ef3c8] {
          font-size: 0.3733rem;
          font-weight: 400;
          color: #333333;
}
.detail-list .manage_list-item .manage_list-content .manage_list-wrap .manage_list-title .manage_title-text[data-v-244ef3c8] {
            margin-right: 0.1333rem;
}
.detail-list .manage_list-item .manage_list-content .manage_list-wrap .manage_list-subTitle[data-v-244ef3c8] {
          font-size: 0.32rem;
          font-weight: 400;
          color: #666666;
          margin-top: 0.1067rem;
}
.detail-list .manage_list-item .manage_list-content .manage_list-wrap .manage_list-subTitle .manage_subTitle-text[data-v-244ef3c8] {
            margin-right: 0.1333rem;
}
.detail-list .manage_list-item .manage_list-count[data-v-244ef3c8] {
      font-size: 0.32rem;
      font-weight: 400;
      color: #666666;
      width: 2.1333rem;
      text-align: right;
}
.detail-list .manage_list-item .manage_list-count .right-count[data-v-244ef3c8] {
        font-size: 0.4267rem;
        font-weight: bold;
        color: #000000;
}
.detail-list .red-color[data-v-244ef3c8] {
    color: #e53232;
}
.detail-list .green-color[data-v-244ef3c8] {
    color: #2ea32a;
}
.detail-list .yellow-color[data-v-244ef3c8] {
    color: #f98c0e;
}

.sign-ctn[data-v-606b2c0b] {
  width: 100%;
  height: calc(100vh - 0.8rem);
  padding: 0.4rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(50%, #f7f8fc));
  background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 50%);
  position: relative;
}
.sign-ctn .select-item-ctn[data-v-606b2c0b] {
    padding: 10px 16px 0;
}
.sign-ctn .select-item-ctn .item-top[data-v-606b2c0b] {
      font-size: 14px;
      font-weight: 500;
      color: #333333;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.sign-ctn .select-item-ctn .item-top .tips-ctn[data-v-606b2c0b] {
        font-size: 11px;
        font-weight: 500;
        color: #4378be;
        padding: 3px 7px;
        background: rgba(67, 120, 190, 0.2);
        border-radius: 4px;
}
.sign-ctn .select-item-ctn .img-ctn img[data-v-606b2c0b] {
      width: 44px;
      height: 44px;
}
.sign-ctn .select-item-ctn[data-v-606b2c0b] .van-cell {
      padding: 8px 0;
}
.sign-ctn .select-item-ctn[data-v-606b2c0b] .van-field__value {
      width: 80px;
      -webkit-box-flex: unset;
          -ms-flex: unset;
              flex: unset;
}
.sign-ctn[data-v-606b2c0b] .van-cell__title {
    color: #666 !important;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.sign-ctn .btn-ctn[data-v-606b2c0b] {
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 8px 0px rgba(217, 217, 217, 0.4);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
.sign-ctn .btn-ctn .btn-item[data-v-606b2c0b] {
      background: #3975c6;
      border-radius: 20px;
      height: 39px;
      line-height: 39px;
      text-align: center;
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      margin: 20px 15px;
}
.sign-ctn .title-ctn[data-v-606b2c0b] {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.sign-ctn .title-ctn .require-text[data-v-606b2c0b] {
      color: red;
      font-size: 15px;
      font-weight: 800;
      line-height: 13px;
      margin-right: 1px;
}
.sign-ctn .title-ctn span[data-v-606b2c0b] {
      font-size: 17px;
      font-weight: 500;
      color: #333333;
}
.sign-ctn .title-ctn .tips-ctn[data-v-606b2c0b] {
      position: absolute;
      top: 0;
      right: 15px;
      font-size: 11px;
      font-weight: 500;
      color: #4378be;
      padding: 0px 7px;
      background: rgba(67, 120, 190, 0.2);
      border-radius: 4px;
}
.sign-ctn .title-ctn .state-span span[data-v-606b2c0b] {
      padding: 2px 7px;
      font-size: 11px !important;
      font-weight: 500 !important;
      border-radius: 4px;
      margin-left: 2px;
}
.sign-ctn .title-ctn .green-class[data-v-606b2c0b] {
      color: #60b28e;
      border: 1px solid #60b28e;
}
.sign-ctn .title-ctn .blue-class[data-v-606b2c0b] {
      color: #548cdf;
      border: 1px solid #548cdf;
}
.sign-ctn .title-ctn .red-class[data-v-606b2c0b] {
      color: #da291c;
      border: 1px solid #da291c;
}
.sign-ctn .bar-ctn[data-v-606b2c0b] {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.city-dialog-ctn[data-v-606b2c0b] {
  padding: 0 13px;
  background: #fff;
}
.city-dialog-ctn .title-ctn[data-v-606b2c0b] {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    padding: 18px 0;
    text-align: center;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn[data-v-606b2c0b] {
    margin-bottom: 23px;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .main-city-text[data-v-606b2c0b] {
      font-size: 15px;
      font-weight: 800;
      color: #333333;
      margin-bottom: 12px;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .city-items[data-v-606b2c0b] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .city-items .city-item[data-v-606b2c0b] {
        background: #f7f7f7;
        border-radius: 18px;
        font-size: 14px;
        font-weight: 500;
        color: #999999;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
        height: 45px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .city-items .select-item[data-v-606b2c0b] {
        background: rgba(57, 117, 198, 0.1);
        border: 1px solid #3975c6;
        color: #3975c6;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .city-items .left-item[data-v-606b2c0b] {
        margin-right: 5px;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .regions-items[data-v-606b2c0b] {
      display: unset;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      max-height: 300px;
      overflow: auto;
}
.city-dialog-ctn .main-ctn .main-city-select-ctn .regions-items .city-item[data-v-606b2c0b] {
        width: 107px;
        -webkit-box-flex: unset;
            -ms-flex: unset;
                flex: unset;
        margin-bottom: 10px;
}
.city-dialog-ctn .btn-ctn[data-v-606b2c0b] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 26px;
    margin-bottom: 24px;
}
.city-dialog-ctn .btn-ctn .btn-item[data-v-606b2c0b] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: #4378be;
      border-radius: 20px;
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      padding: 12px 0;
      text-align: center;
}
.city-dialog-ctn .btn-ctn .left-item[data-v-606b2c0b] {
      margin-right: 15px;
      background: rgba(67, 120, 190, 0.2);
      color: #4378be;
}
[data-v-606b2c0b] .van-field__control {
  font-weight: 500;
}
[data-v-606b2c0b] .van-field__control::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-606b2c0b] .van-cell .van-cell__title {
  color: #333;
  font-weight: 500;
}

.title-ctn[data-v-1e9a5f62] {
  position: relative;
}
.title-ctn span[data-v-1e9a5f62] {
    font-size: 17px;
    font-weight: 500;
    color: #333333;
}
.title-ctn .tips-ctn[data-v-1e9a5f62] {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 11px;
    font-weight: 500;
    color: #4378be;
    padding: 0px 7px;
    background: rgba(67, 120, 190, 0.2);
    border-radius: 4px;
}
.sign-dialog-select[data-v-1e9a5f62] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 15px;
}
.sign-dialog-select > .sign-item[data-v-1e9a5f62]:first-of-type {
    margin-right: 10px;
}
.sign-dialog-select .sign-item[data-v-1e9a5f62] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-weight: 400;
    padding: 15px;
    border-radius: 4px;
}
.sign-dialog-select .sign-item .item-title[data-v-1e9a5f62] {
      font-size: 15px;
      color: #3975c6;
      margin-bottom: 10px;
}
.sign-dialog-select .sign-item .item-subtitle[data-v-1e9a5f62] {
      font-size: 12px;
      color: #999999;
}
.sign-dialog-select .bg1[data-v-1e9a5f62] {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQoAAACCCAYAAAC+X4bIAAAAAXNSR0IArs4c6QAADmxJREFUeF7tne1yG7cVhg92+SlRlkXJjmQrrZvUd5ALaafO5EdyB03amfY+MtPGvYP8cpxpLyR34Ext15JlfZAUxW9yl+iclSnTEkXuYrFcYPlixpOJvDgAnrN6vQAODgTNKC9eyOL2nv8nKemPQtIXwqE9Kak461n8DARAwF4CQtBAjulICvpFCPp37cj9+fFjMbg+InH9B7WW9yURfS+I9u0dPnoOAiCgQkASHRDR37Y3cj9N178SCiml02j7/yCib1UaQB0QAIFMEXi6VXH/KoQY86iuhKLe8n6ASGTK0RgMCMQl8LS6kfvuSih4uiGInsW1ivogAALZIuAQfXV3I/dMSCmLjc74V5ISaxLZ8jFGAwKxCUiiw2rF/VzUm4OvyXF/jG0RBkAABLJJYOx/Ixot7ydJ9CSbI8SoQAAE4hKQRM9F/cJ7SYIexTWG+iAAAhklIOmVaLS9PoKpMupgDAsENBDgoCxRb3lSgy2YAAEQyDABCEWGnYuhgYAuAhAKXSRhBwQyTABCkWHnYmggoIsAhEIXSdgBgQwTgFBk2LkYGgjoIgCh0EUSdkAgwwQgFBl2LoYGAroIQCh0kYQdEMgwAQhFhp2LoYGALgIQCl0kYQcEMkwAQpFh52JoIKCLAIRCF0nYAYEME4BQZNi5GBoI6CIAodBFEnZAIMMEIBQZdi6GBgK6CEAodJGEHRBYIoGxlHRUH1C1kqdy0U28ZQhF4ojRAAjoJSAl0bvzPnX6PglB9KBaonIhWbGAUOj1IayBQOIEzi6GdN4ZXbWzDLGAUCTuVjQAAvoINDsjOr0Y3jCYtFhAKPT5EJZAIFECnb5HR40bF41/9GXxsFqiUgLTEAhFoq6FcRDQQ2Aw8umg1iden5hXnGDNokylgqOn4fdWIBRaccIYCOgn4PljenPWJ38cLmF+EmIBodDvV1gEAW0ExmMZfEkMvXEkm7rFAkIRCT8eBoHlEZBS0tvGgHoDX6lRFouH22Uq5uNPQyAUSi5AJRBInsDJ+YAuel6shnSJBYQilhtQGQSSIVBvD6ne+hArEacVHWIBoYjjAdQFgQQItHoeHZ/fvg2q0qTrCHq4XaJCTm0aAqFQoY46IJAQgd7Qp7e8DZqA/ThiAaFIwCEwCQIqBHhn4+CsRyF3QVWaIFWxgFAo4UYlENBLgGMkWCRGfhLfEh/3VUUsIBR6/Q1rIBCZAB8Z5+lGfxQtViJyQ1MVoooFhCIObdQFgZgEOCT7+LxP7b5arESc5qOIBYQiDmnUBYGYBK4fGY9pLnJ1Fov97RLlF+yGQCgio0UFENBDoNkd0Wnz5pFxPdbDW8m5gvjU6TyxgFCE54knQUAbgc7Ap6N6X5u9uIYWiQWEIi5h1AeBiAQGozEd1HoLj4xHNBv78XliAaGIjRcGQCA8AT4yfnDWJy/JYInw3bnxZCAWvGbhfhzBCaGIARVVQSAKAdUj41Ha0PHsLLGAUOggCxsgsIAAHxnnNHZdxSPjywZ8XSwgFMv2ANpbSQInzQFddOMdGV82uHwwDSkTiwaEYtn00d7KEWi0R1Rrpb8NqgK+lHdof6cMoVCBhzogEJZAEkfGw7Yd97lCTtDe1mV8Bb4o4tJEfRC4hUB/6NNhQkfGk4bON4/tbhWD06ZcIBRJE4f9lSQw4iPjtfCZs02CdGctR/fuFEjwrULvC4TCJA+hL5kgsMwj47qB7WwU6G4lf8MshEI3adhbeQI6kuIuGyJ/POzeLdJ6KTezaQjFsj2C9jJPIPiiqPVo5CWfhEYHTN7+5EXLeWn9IRQ6SMMGCFwj4PmSDuvmiwWLA4sEi8W8AqHAKw4CCREwXSzWSy59crdIztSi5W0oIBQJvSQwCwJMwFSx2KrkqVrhnY1wfoJQhOOEp0BAmYBpYnF/s0i8BRqlQCii0MKzIKBIIBALXuBcQpbt27roOLxoWSQOpopaIBRRieF5EJhBgEO1O30vmPNPBypNP5qmWPABrwcL0t1hMROvNggkSOC8MyJOkstlvXgZ+mySWFwPx1ZBgS8KFWqoAwJExDkmWCCa146PmyQWd8o5urf5cTi2ivMgFCrUUGflCYz8MR03Brde2mOCWGxvFIh3N3QUCIUOirCxMgQ41vKiO6LaxXDhHaFpicWicGwVZ0EoVKihzkoS4GPjPNWIcvXfIrHgLxM+is4LnTpKjnc2qkUq5qPvbGAxU4cHYGNlCfSGPnGWKtV8l8sSi2LOob3q4nBsFUfii0KFGupknoDvS2r1PWp1PRp48S8PTlosooRjqzgPQqFCDXUyR4B3MPhinu7QD74c+sP44nAdUlJisbWep+pG+HBsFedBKFSooY61BPhuDV4P4AhJXh8YeuNAIIajMelZJZiPRrdYqIRjqzgPQqFCDXWMIsDrB5Obt/jLQEqOcbiMc+ALucZSEueI4D/887TLQrHwxnRYn7/Ayaks+Xh4uah30fI2NhCKtN8atB+LAIvBf4+7RghAlIHEEYu44dhR+jl5FkKhQg11jCHA04Y3Zz1j+hOlIypioSMcO0ofIRQqtFDHOALN7ohOm3ZersMwo4iFrnBsFSfii0KFGuoYQ+D4fEB8ctPmEkYseCdmc11POLYKKwiFCjXUMYbAq5OutqjGNAe1SCzS7Bu3DaFI2wNoX5mA54/p1Ymd6xOzBl0p8RH1kjKPJCtCKJKkC9uJErD5Xs9ZYDjpzUY5Woq6RAFPGYdQLIs02tFOwMaLdm6DsHOnQHdTXINY5BwIxSJC+HtjCWRlfWKT7/rcLBrLGWsURrsGnZtHgMOvX2dgfaKUd+jhdunW1HmmvAX4ojDFE+hHJAKcPObE4vgJHiyHYX96r0x514k09jQehlCkQR1txibwrtGndt+PbSdNA5zLcnMtvdiIKGOHUEShhWeNIMAHu16edIlPgtpaginHTplCXtSV+jAhFKm7AB2ISoBT0h3U+lGrGfX8/naJSgoX8aQ1CAhFWuTRrjKBemtI9fZIuX7aFdeKbnAZj00FQmGTt9DXgMDBWS9SglvTsPEuh8q1fmmOA0KRJn20HZkAJ595edyNXM+UCpwAl3c6bCsQCts8tuL91R22Xcw7lM85QTYszpPJQpRkMT0C87axQyiSfCtgWzsBXcfKywUniIYs5D7EMPBuSrvv0Slf7pOQYPzu/hq5ri17HR/cB6HQ/irDYFIE+N/6V8fd2P/q8ynNebeOc8Jd3lXRLRalgkP72/ZNO9ifEIqk3mrY1U6gP/Lp4CzetqjrCPrtvTI5HBY5p+ie4nBT1Y08VSsF7VyWYRBCsQzKaEMLAR3bonxpL1/eu6jwNIQPnelcs7AtdmKaEYRi0RuDvzeGACfR5WS6ccreVpHWS+FyPhw1+tTRFCbO3y+f7a4Zf/gLi5lx3i7UTZ2ArmxWHOjEAU9hyrvzAbU15ePk3ZVPd+xcn8AaRZi3Bc8YQUBXtu1q5fL6vTBFxxfMpJ07azniW71sLZh62Oq5Fev323pf+TbxCap8TtDDaplyIbYneefjf6f68nHaGj8xYQehWLFfOBuHy1cCcjRmnOsAo4gEB1+xMPU0XlTM1//xjeO2FgiFrZ5boX53+h4dNQbKI44iEhw7cdIcaM918ZudMhXy5ieowWKm8muGimkTiBONOU8k+FZzzpTFx72DEO7RmC66ntYt0Qm7zz5ZWxi7kTbnee3ji8Jk76BvwXRDNZ5hkUgc1ns08pI92xHsGAiiz3fXrfYmhMJq92W/872hT4cKSWpMEQn2EC+ePrq/ZrWzIBRWuy/7nT+7GNJ5J1qSGpNEgj1kewxF8FVUby3h2yv77zNGmBCB1yddGvnhpwemiQRj4SQ1nKzG5gKhsNl7Ge87h2tz0FPYYqJIcN/5AuI9y1LfXWcOoQj7FuK5pROIcgjMVJFgaJVSjna37I3KxNRj6a8+GoxC4M1pjwbe4kNgJosEj5cvHub8FzYXfFHY7L0M933kjel1iBBq00WCXWT7OQ98UWT4F832oTXaI6q1hnOHYYNI8AA21/N07064g2im+g1fFKZ6ZsX7tSglvy0iAaFY8RcZw0+OwKLcEzaJBEdlcvo7zqxlc8EXhc3ey2jfm51RkAl7VjFdJDgKk+MmOJFuKe9SISeszWo1zR9CkdFfNpuHdVjrzTzibaJIsDCsFVwqF13iKwByrr0nROe9MxAKm3+jMth3PtHJh8CuF1NEgrN3rxWcIJ0ei0M+o8JwnT+EIoO/bDYPada0I22RKOUvhYH/FPNucBp01QqEYtU8bvh4+aQonxidlDREgu/+mAgD/5f/f9ULhGLV3wCDxu/7kl5OTTuWKRJ8wpPPZKyV3n81GMTFhK6IRtvrS0l2x5eaQBJ9iE1getqRtEjw9IF3JziPJQtEVhchYzvlMvHOQNQvvJck6JEOg7ABAnEITKYdSYnEZErBd4/yQqSziosNKg6S9Eo0Wt5PkuiJSn3UAQFdBCbTDt0ikXdFcDMYfzlwXAO0IbrHJNFzUW8OvibH/TF6ddQAAX0EeNpx3h3deu8Gb5uGzXFZzDmXU4pSLsguhRKTwNj/Rrx4IYvVXf9XQbQf0xyqg4AygdPmgLYqhZmX84QRCd7CZGHgaUU+B3FQdsTNige1d+7vg32f85b35ZjomUbjMAUCkQjwreGztiHniQRHQnJSGP56wGJkJNyhH5ZEX21v5J5dbRDXW94PRPRtaAt4EAQSJjBLJHingr8a+OshzNWACXcx0+aFI55urbvf8SCvhEJK6TTa/j+J6M+ZHj0GZwWBaZGYiAN/Pbgh7g21YoDmd/JfWxX3L0KIIMXYjZCz99OQ7wlrFua7MqM95GkI58ss5C6nFhCHpTr6QBL9nacb063OjE3lBc7tPf+JkPQHKekLEvSAiOxO0bNU1mgMBKwhMCRJb4WgX6Sg/9SO3OePH4sbF73+H/tI+L2KBQfFAAAAAElFTkSuQmCC);
    background-size: 100% 100%;
}
.sign-dialog-select .border1[data-v-1e9a5f62] {
    border: 1px solid #548cdf;
}
.sign-dialog-select .bg2[data-v-1e9a5f62] {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQoAAACCCAYAAAC+X4bIAAAAAXNSR0IArs4c6QAAC2lJREFUeF7tnetyFMcZht+v96RdHQBjFIiFIba5A19IUoHyD/sOYidVyX24KjG5A/8CXMmF+A4gBgcRYMEcdNjVnuZL9a6QhSyzM7M93T2zb/9RldT9HZ6v9VbPTM+04JSmd++2sHX2j6r6B0A/hcglKFqn9eXvSIAESkxAMIDqY0C+F5F/YfvVd3Lt2uBkRnLyF+Ne94YBvgawVeL0GToJkEA+AtsC/FU6m7ePDz8SClU1Sf/Z3wX4Mp99jiIBEqgKAQVumvaFv4hIYnM6EopJ78k3AkORqEqlmQcJLEhAkdysdS5+dSQU2uveUODWgnY5nARIoGIEBPhMOpu3RFVb2n9+D1Dek6hYkZkOCTgg8EjaFz6W8d7Tz42Rbx0YpAkSIIEKEkgS/UK0172twPUK5seUSIAE3BC4I0mvex/AVTf2aIUESKCCBB5I0u8ecDNVBUvLlEjAFQHBwK4o1JU92iEBEqgmAQpFNevKrEjAKQEKhVOcNEYC1SRAoahmXZkVCTglQKFwipPGSKCaBCgU1awrsyIBpwQoFE5x0hgJVJMAhaKadWVWJOCUAIXCKU4aI4FqEqBQVLOuzIoEnBKgUDjFSWMkUE0CFIpq1pVZkYBTAhQKpzhprNIEVKHJABj3oZMhkIwAHQN6+LqUCCB1wDQgtSZQb0NMC7C/L3mjUJS8gAy/eAJqhWG4A4z3AZ1kcyg1oL4KaW5A6u1sYyPqTaGIqBgMJS4COt6HHrwAJgduAqutQFbeg9RX3djzaIVC4RE2XZWDgCYjaP/ZbAVRRLMrjPYFiGkUYb0QmxSKQrDSaFkJ6HAX2u8CmB5nUWAzkPYmpLleoA93pikU7ljSUqkJKLT/E3T40msW0jwHaZ8/fsSOV/9pnVEo0pJiv+oSsE8z+l3oaCdIjtLYmK4uYn46QqEIMjXoNCYCU5EYvg4akjTPzMQi0kahiLQwDMsPAR28hB489+NsjhdZeR/SOhdFLCeDoFBEWRYG5YOAjg+g+w99uErtQ1YvQ+orqfv76kih8EWafuIioIpk78fZ7sqYmmnArF2J7n4FhSKmScJYvBGwG6l08JM3f1kcSev8dGNWTI1CEVM1GIsfAjpBsvsA0KL3SuRMRwzM+lXAbv+OpFEoIikEw/BHQAcvoAdxribeUJCV85BWPKsKCoW/+UlPURDQ2WoiGUcRza8GYeqzVQXiePOUQhH3dGF0jglM3wTd33ZstRhzsroVzRunFIpiakyrkRKweybs3okyNLunwu6tiKFRKGKoAmPwRiDZe+jutfGio66twKxdLtpLKvsUilSY2KkSBOzeiZ3/ADj8IlX0SQnMxsdR7KmgUEQ/WRigKwKaDKG7P7oy58WOrF+BmKYXX+9yQqEIXgIG4IuAjnvQ/Ue+3DnxI6sfQOodJ7YWMUKhWIQex5aKgI72oL3HpYpZOpcgjbXgMVMogpeAAfgioKNdaO+JL3dO/EjnIqQR/itYFAon5aSRMhDgiiJ/lSgU+dlxZMkI8B5F/oJRKPKz48iSEbCH9qh9tbxETdauzA4TCtwoFIELQPceCUz3Udzz6HBxV2bjE+6jWBwjLZBANgKJ3UeRDLMNCtXbNGHWr4Ty/pZfriiiKAOD8EUg6T8F7PGAZWjNDZj2b6KIlEIRRRkYhC8CZXryEcseClsbCoWvGUo/cRDQBMnODyV438O+5/ERICYKbhSKKMrAIHwSSHpPgUCH/aTOs7EB04njsoMritRVY8cqEYjxM/0n+cb22X6uKKr0H8BcUhNI7Feuxv3U/b12rLdhVre8upznjEIxjxD/XkkCMX8SL6ZP4L0pPoWikv8GTCoNgcS+STraS9PVX5/GGkznkj9/KT1RKFKCYrfqEdBkdPghm1i+eCWYfaimER1sCkV0JWFAPgnEdMZHbGd5HK8DhcLnrKSv+AjY9z/sQcWTQdjYai2Y1ctRvNdxGggKRdjpQe8RENDJALr336CRyNqHkForaAzvck6hiLY0DMwnAXvEoL0MCdHs0YH2siPmRqGIuTqMzR8BewliVxW+3yy1b4iufRjtJcebAlAo/E1FeoqcQIgdm7HtwPy1ElEoIp+8DM8vAa/vgUT2PgfvUfida/RWYgKajKH2tPPCTxOzeyauQky9FLS4oihFmRikTwJJvwsMXxfrsnkGpr1ZrA+H1ikUDmHSVDUI+HhcGvvj0JOVpFBUY24zC8cECv22ZkTfwkyLjUKRlhT7LRUBPXgGHbwqJGdpnYWsXCjEdlFGKRRFkaXdUhPQ4S60X8zxg9K+CGmGPyYwS4EoFFlose/SECjyexUxfm9iXmEpFPMI8e9LSaDIG5plu5FpJwCFYin/DZj0PAIUircJUSjmzRj+fSkJUCgoFEs58Zl0NgIUCgpFthnD3ktJgEJBoVjKic+ksxGgUFAoss0Y9l5KAhQKCsVSTnwmnY0AhYJCkW3GsPdSEqBQUCiWcuIz6WwENJkAo91sg9L2bqxDTC1t7yj6cR9FFGVgECQQNwEKRdz1YXQkEAUBCkUUZWAQJBA3AQpF3PVhdKEJaALoxE0UUgPEuLHl2QqFwjNwuouYQDKBJoPp8YL2qcf0mEHX53yYJlBrzU4Fsz9NCyjBjU0KRcTzlqEVRUChkxFwJArDmSjouCiH77Yr9UPxmIkIjBUSe6K5hInnFK8UimhKwUAKIaB6tEr4eaUwBJAU4s6dUQPUmkcrj6PVh4QRDwqFu8rSUmgCPi4dQucY6NKFQhG68PSfg8DxS4fhz/cTQl065MjA6ZCjSxd736NZyKULhcJpxWjMOYHSXjo4J5HRoNtLFwpFRvzsXiwBnRwA435xTx2KDT9+68cvXeptSG0lVcwUilSY2MkHAXuOhj1Pg80fAXu+iD1nZF6jUMwjxL97I5DYw4GTkTd/dATANGDWr85FQaGYi4gdfBFIdn5wtwvSV9Bl9yM1mI2P5mZBoZiLiB18EaBQ+CJ9zA+FIgB0ulyIAIViIXz5BlMo8nHjqHAEKBQB2FMoAkCny4UIUCgWwpdvMIUiHzeOCkeAQhGAPYUiAHS6XIgAhWIhfPkGUyjyceOocAQoFAHYUygCQKfLhQhQKBbCl28whSIfN44KR4BCEYA9hSIAdLpciACFYiF8+QZTKPJx46hwBCgUAdhTKAJAp8uFCFAoFsKXbzCFIh83jgpHgEIRgD2FIgB0ulyIAIViIXz5BlMo8nHjqHAEkp374T6ZHy7tsJ6lDrPxu7kx8DXzuYjYwReBpPekuBPEfSVRNj+NdZjOxblRUyjmImIHbwQ0QTJ4MTuMh614ArUWTOu9VMccUiiKLwc9kEDpCVAoSl9CJkACxROgUBTPmB5IoPQEKBSlLyETIIHiCVAoimdMDxkJ6MFz6Gg/4yh2z0JAGquQlfdTD6FQpEbFjr4ITIVi8NKXu6X0I61zGYWi3z2AorWUtJh0lATUHim4vx1lbFUJSla3IPV2unQEA7uiuA9g/lFB6UyyFwk4IZDsPQTsOaRs7gnUVmDWLmex+0C0172twPUso9iXBIomoJMhdP8hoEnRrpbLvhjI6mVIrZkl7zsy3nv6uTHybZZR7EsCPgjoZADtPeZ5pK5gmwakcwlSy3anIUn0C9G7d1v6wZl7ALZcxUM7JOCMgCp0tAMd7c0EgyuMbGjFTA8ilsYapLEBiGQbD2zLo9efTEdpr3tDgVtZLbA/CZBAtQkI8Jl0Nm8dycuk1/1GgC+rnTazIwESSEtAgJvS2fzK9j8SClU1Sf/ZPwT4U1pD7EcCJFBNAgr9p2lv/llEpneTf3HBcngZ8jXvWVRzAjArEphDYDsB/lbvbL51K+LUOxv2Bie2zl6H6u8V+imA3wKS6XkKy0ECJFAGAjoE8D+BfA+Rf2P71R25du0XHwT5P/v0xxdNJxycAAAAAElFTkSuQmCC);
    background-size: 100% 100%;
}
.sign-dialog-select .border2[data-v-1e9a5f62] {
    border: 1px solid #f5ab32;
}
.sign-dialog-example[data-v-1e9a5f62],
.sign-dialog-success[data-v-1e9a5f62] {
  padding: 20px 15px;
}
.sign-dialog-example .example-title-ctn[data-v-1e9a5f62],
  .sign-dialog-success .example-title-ctn[data-v-1e9a5f62] {
    text-align: center;
}
.sign-dialog-example .example-title-ctn .title-item[data-v-1e9a5f62],
    .sign-dialog-success .example-title-ctn .title-item[data-v-1e9a5f62] {
      font-size: 14px;
      font-weight: 500;
      color: #333333;
}
.sign-dialog-example .example-img[data-v-1e9a5f62],
  .sign-dialog-success .example-img[data-v-1e9a5f62] {
    width: 100%;
}
.upload-ctn[data-v-1e9a5f62] {
  padding: 20px 15px;
  text-align: center;
}
[data-v-1e9a5f62] .van-uploader__upload {
  width: 90px !important;
  height: 90px !important;
}
[data-v-1e9a5f62] .van-uploader__upload-icon {
  width: 90px !important;
  height: 90px !important;
}
[data-v-1e9a5f62] .van-uploader__preview-image {
  width: 90px !important;
  height: 90px !important;
}

.title-ctn[data-v-43c80425] {
  position: relative;
}
.title-ctn span[data-v-43c80425] {
    font-size: 17px;
    font-weight: 500;
    color: #333333;
}
.title-ctn .tips-ctn[data-v-43c80425] {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 11px;
    font-weight: 500;
    color: #4378be;
    padding: 0px 7px;
    background: rgba(67, 120, 190, 0.2);
    border-radius: 4px;
}
.dialog-input-ctn[data-v-43c80425] {
  border-bottom: 1px solid #ebedf0;
  padding: 10px 0;
  margin: 20px 15px;
  width: unset;
}

.safe-verify-ctn[data-v-5e39589a] {
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(70%, #f7f8fc));
  background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 70%);
}
.top-ctn[data-v-5e39589a] {
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
  position: relative;
  padding: 33px 0 26px;
}
.top-ctn .top-text[data-v-5e39589a] {
    font-size: 30px;
    color: #FFFFFF;
}
.top-ctn img[data-v-5e39589a] {
    width: 133px;
    height: 166px;
    margin-top: 14px;
}
.main-ctn[data-v-5e39589a] {
  margin: 0 16px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 16px;
  margin-top: -10px;
  z-index: 100;
  position: relative;
}
.main-ctn .main-text[data-v-5e39589a] {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    line-height: 2;
}
.main-ctn .main-form[data-v-5e39589a] {
    margin-top: 30px;
}
.main-ctn .main-form .van-cell[data-v-5e39589a] {
      padding: 10px 0;
}
.main-ctn .main-form .van-cell .van-cell__title[data-v-5e39589a] {
        font-weight: 500;
        font-size: 12px;
        color: #666666;
}
.main-ctn .main-form .van-cell[data-v-5e39589a] ::-webkit-input-placeholder {
        font-weight: 500;
        font-size: 14px;
        color: #999999;
}
.main-ctn .main-form .van-cell[data-v-5e39589a] ::-moz-placeholder {
        font-weight: 500;
        font-size: 14px;
        color: #999999;
}
.main-ctn .main-form .van-cell[data-v-5e39589a] ::-ms-input-placeholder {
        font-weight: 500;
        font-size: 14px;
        color: #999999;
}
.main-ctn .main-form .van-cell[data-v-5e39589a] ::placeholder {
        font-weight: 500;
        font-size: 14px;
        color: #999999;
}
.main-ctn .main-form .last-cell[data-v-5e39589a] {
      border-bottom: 1px solid #EBEBEB;
}
.main-ctn .main-form .last-cell .van-cell[data-v-5e39589a] {
        width: unset;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
}
.main-ctn .main-form .last-cell .code-ctn[data-v-5e39589a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.main-ctn .main-form .last-cell .code-ctn .btn-item[data-v-5e39589a] {
          font-weight: 500;
          font-size: 12px;
          color: #3975C6;
          padding: 5px 0;
          border-radius: 5px;
          border: 1px solid #3975C6;
          width: 76px;
          text-align: center;
}
.main-ctn .main-form .btn-ctn[data-v-5e39589a] {
      background: #3975C6;
      border-radius: 23px;
      font-weight: 500;
      font-size: 15px;
      color: #FFFFFF;
      padding: 12px 0;
      text-align: center;
      margin-top: 20px;
}

.img-ctn img[data-v-d6b85e16] {
  width: 100%;
}

.cashier-ctn[data-v-28b74a66] {
  background: #f7f8fc;
  height: calc(100vh - 30px);
  padding: 15px 10px;
}
.cashier-ctn .select-ctn[data-v-28b74a66] {
    background: #3975c6;
    padding: 10px;
}
.cashier-ctn .select-ctn .select-item[data-v-28b74a66] {
      background: #ffffff;
      border-radius: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 12px;
}
.cashier-ctn .select-ctn .select-item .select-btn[data-v-28b74a66] {
        background: #ffffff;
        border: 1px solid #3975c6;
        border-radius: 5px;
        padding: 5px 11px;
        font-size: 12px;
        font-weight: 500;
        color: #3975c6;
}
.cashier-ctn .cashier-header-ctn[data-v-28b74a66] {
    background: #ffffff;
    border: 1px solid #3975c6;
    border-radius: 5px;
    padding: 20px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-top: 12px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top[data-v-28b74a66] {
      border-bottom: 1px solid #f7f8fc;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item[data-v-28b74a66] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 10px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .top-right-item[data-v-28b74a66] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 12px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .top-right-item img[data-v-28b74a66] {
            width: 7px;
            height: 4px;
            margin-left: 4px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .money-ctn[data-v-28b74a66] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: baseline;
              -ms-flex-align: baseline;
                  align-items: baseline;
          color: #60b28e;
          font-size: 24px;
          font-weight: 800;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .money-ctn .total-detail-ctn[data-v-28b74a66] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .money-ctn .unit[data-v-28b74a66] {
            font-size: 15px;
            font-weight: 600;
}
.cashier-ctn .cashier-header-ctn .header-ctn-top .top-item .money-ctn img[data-v-28b74a66] {
            width: 7px;
            height: 10px;
            margin-left: 10px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom[data-v-28b74a66] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-top: 18px;
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom .bottom-money-ctn[data-v-28b74a66] {
        font-size: 16px;
        font-weight: bold;
        color: #333333;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom .detail-color[data-v-28b74a66] {
        font-size: 12px;
        font-weight: 500;
        color: #3975c6;
        margin-left: 4px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom .bottom-left-top[data-v-28b74a66] {
        margin-bottom: 8px;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom .bottom-right-bottom[data-v-28b74a66] {
        font-size: 16px;
        font-weight: bold;
        color: #60b28e;
}
.cashier-ctn .cashier-header-ctn .header-ctn-bottom .bottom-right-bottom .detail-btn[data-v-28b74a66] {
          font-size: 12px;
          font-weight: 500;
          color: #3975c6;
          padding: 1px 8px;
          border: 1px solid #3975c6;
          border-radius: 2px;
          margin-left: 2px;
}

.cashier-order-ctn[data-v-49534b26] {
  background: #ffffff;
  border-radius: 5px;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  margin-top: 12px;
}
.cashier-order-ctn .title-ctn[data-v-49534b26] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 12px;
}
.cashier-order-ctn .title-ctn .title-text[data-v-49534b26] {
      font-size: 0.43rem;
      font-weight: bold;
      color: #333333;
}
.cashier-order-ctn .title-ctn .export-ctn[data-v-49534b26] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 3px 9px;
      border: 1px solid #1967e8;
      background: #1967e8;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.cashier-order-ctn .title-ctn .export-ctn .export-img[data-v-49534b26] {
        width: 12px;
        height: 11px;
        margin-right: 4px;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAsBAMAAADROCZUAAAAAXNSR0IArs4c6QAAACpQTFRFAAAA////////////////////////////////////////////////////hrvKLwAAAA10Uk5TAAgeLFdYXW+Dr8vv/pSieZkAAACVSURBVDjLY2AgAnA04JDovYFDw9272LX03r17A4cG7Fp6QRI3cGjApqUXInEDhwZMLb0wiRs4NKBr6UVI3MChAVVLL7IEshZBEBC7ezcRzEB3MevduwFYA3EAJGLvXsWUAAkOPwmm0FAFrBJowTHAErdmYoC1YAms4CqDL3aJKww22CUOM7DvxSZ+u4CBgVEQCxBgAACBRxqwTE4txgAAAABJRU5ErkJggg==);
        background-repeat: no-repeat;
        background-size: cover;
}
.cashier-order-ctn .drop-ctn[data-v-49534b26] {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 0.32rem;
    color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cashier-order-ctn .drop-ctn img[data-v-49534b26] {
      width: 7px;
      height: 4px;
      margin-left: 4px;
}
.cashier-order-ctn .items-ctn[data-v-49534b26] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cashier-order-ctn .items-ctn .item-ctn[data-v-49534b26] {
      padding: 0.3rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      background: #eef3fc;
      font-size: 0.38rem;
      font-weight: 800;
      color: #333333;
}
.cashier-order-ctn .items-ctn .item-ctn .text-ctn[data-v-49534b26] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666666;
        margin-top: 0.12rem;
}
.cashier-order-ctn .items-ctn .second-item[data-v-49534b26] {
      background: #fef6ea;
}
.cashier-order-ctn .items-ctn .third-item[data-v-49534b26] {
      background: #eff7f3;
}
.date-dialog-ctn .dialog-header[data-v-49534b26] {
  position: relative;
  padding: 25px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}
.date-dialog-ctn .dialog-header .cross-icon[data-v-49534b26] {
    position: absolute;
    left: 18px;
    top: 28px;
}
.date-dialog-ctn .date-items[data-v-49534b26] {
  padding: 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.date-dialog-ctn .date-items .date-item[data-v-49534b26] {
    min-width: 100px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-bottom: 17px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
}
.date-dialog-ctn .date-items .selected-item[data-v-49534b26] {
    background: rgba(25, 103, 232, 0.1);
    border: 1rpx solid #1967e8;
    color: #1967e8;
}
.date-dialog-ctn .date-ctn[data-v-49534b26] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px;
  border-top: 1px solid #f7f8fc;
}
.date-dialog-ctn .date-ctn > .date-field[data-v-49534b26]:first-of-type {
    margin-right: 12px;
}
.date-dialog-ctn .date-ctn .date-field[data-v-49534b26] {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 6px 16px;
}
.date-dialog-ctn .date-ctn .aaa[data-v-49534b26] {
    display: inline-block;
    width: 160px;
    height: 32px;
    line-height: 32px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #999999;
    text-align: center;
}
.date-dialog-ctn .sure-btn[data-v-49534b26] {
  height: 39px;
  margin: 12px 19px;
  background: #1967e8;
  border-radius: 39px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 39px;
}
[data-v-49534b26] .van-field__control {
  font-weight: 400;
}

.cashier-ctn[data-v-2caad8d4] {
  background: #f7f8fc;
  height: calc(100vh - 1.6rem);
}
.main-ctn[data-v-2caad8d4] {
  padding: 15px 10px;
}
.main-ctn .total-ctn[data-v-2caad8d4] {
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #3975C6;
    padding: 20px 15px;
    margin-bottom: 10px;
}
.main-ctn .total-ctn .total-top-ctn[data-v-2caad8d4] {
      border-bottom: 1px solid #DBDBDB;
      margin-bottom: 17px;
      padding-bottom: 17px;
}
.main-ctn .total-ctn .total-top-ctn .top-row[data-v-2caad8d4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-weight: 400;
        font-size: 14px;
        color: #333333;
        margin-bottom: 10px;
}
.main-ctn .total-ctn .total-top-ctn .top-row .row-left[data-v-2caad8d4] {
          font-size: 12px;
}
.main-ctn .total-ctn .total-top-ctn .top-row img[data-v-2caad8d4] {
          width: 4px;
          height: 8px;
          margin-left: 6px;
}
.main-ctn .total-ctn .total-top-ctn .top-row1[data-v-2caad8d4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-weight: 800;
        font-size: 24px;
        color: #60B28E;
}
.main-ctn .total-ctn .total-top-ctn .top-row1 span[data-v-2caad8d4] {
          font-size: 15px;
}
.main-ctn .total-ctn .total-top-ctn .top-row1 img[data-v-2caad8d4] {
          width: 6px;
          height: 12px;
          margin-left: 6px;
}
.main-ctn .total-ctn .total-bottom-ctn .bottom-item[data-v-2caad8d4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 10px;
}
.main-ctn .total-ctn .total-bottom-ctn .bottom-item .bottom-left[data-v-2caad8d4] {
        font-weight: 400;
        font-size: 14px;
        color: #333333;
}
.main-ctn .total-ctn .total-bottom-ctn .bottom-item .bottom-right[data-v-2caad8d4] {
        font-weight: bold;
        font-size: 16px;
        color: #333333;
}
.main-ctn .order-ctn[data-v-2caad8d4] {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 15px;
}
.main-ctn .order-ctn .order-title-ctn[data-v-2caad8d4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 12px;
}
.main-ctn .order-ctn .order-title-ctn .title-left[data-v-2caad8d4] {
        font-weight: bold;
        font-size: 16px;
        color: #333333;
}
.main-ctn .order-ctn .order-title-ctn .title-right[data-v-2caad8d4] {
        background: #548CDF;
        border-radius: 5px;
        padding: 4px 10px;
        font-weight: 500;
        font-size: 12px;
        color: #FFFFFF;
}
.main-ctn .order-ctn .order-item-ctn[data-v-2caad8d4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 10px;
      background: #F7F8FC;
      border-radius: 5px;
      margin-bottom: 8px;
}
.main-ctn .order-ctn .order-item-ctn .item-left[data-v-2caad8d4] {
        font-weight: 400;
        font-size: 12px;
        color: #333333;
        letter-spacing: 1px;
}
.main-ctn .order-ctn .order-item-ctn .item-right[data-v-2caad8d4] {
        font-weight: 800;
        font-size: 18px;
        color: #548CDF;
}
.main-ctn .order-ctn .order-row-ctn[data-v-2caad8d4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.main-ctn .order-ctn .order-row-ctn .row-item[data-v-2caad8d4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 12px 10px;
        background: #F7F8FC;
        border-radius: 5px;
}
.main-ctn .order-ctn .order-row-ctn .row-item .item-left[data-v-2caad8d4] {
          font-weight: 400;
          font-size: 12px;
          color: #333333;
          letter-spacing: 1px;
}
.main-ctn .order-ctn .order-row-ctn .row-item .item-right[data-v-2caad8d4] {
          font-weight: 800;
          font-size: 18px;
          color: #F5AB32;
}
.main-ctn .order-ctn .order-row-ctn .left-item[data-v-2caad8d4] {
        margin-right: 10px;
}
.main-ctn .order-ctn .order-row-ctn .left-item .item-right[data-v-2caad8d4] {
          color: #60B28E;
}

.filter-ctn[data-v-f296fe1c] {
  background: #3975C6;
}
.filter-ctn .filter-inner[data-v-f296fe1c] {
    background: #FFFFFF;
    border-radius: 10px 10px 0px 0px;
    padding: 20px 20px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.filter-ctn .filter-inner .filter-item[data-v-f296fe1c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.filter-ctn .filter-inner .filter-item img[data-v-f296fe1c] {
        width: 7px;
        height: 5px;
        margin-left: 4px;
}
.popup-wrap[data-v-f296fe1c] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-f296fe1c] {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-f296fe1c] {
    font-size: 15px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-f296fe1c] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-f296fe1c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-f296fe1c] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-f296fe1c] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .btn-box[data-v-f296fe1c] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-f296fe1c] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-f296fe1c] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-f296fe1c] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-f296fe1c] {
        background: #4378be;
        color: #ffffff;
}

.detail-ctn[data-v-5fd1cc8c] {
  padding: 20px 10px;
  background: #f7f8fc;
  height: calc(100vh - 40px);
}
.detail-ctn .detail-ctn-inner[data-v-5fd1cc8c] {
    background: #ffffff;
    border-radius: 5px;
    padding: 27px 15px;
}
.detail-ctn .detail-ctn-inner .header-ctn[data-v-5fd1cc8c] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      text-align: center;
}
.detail-ctn .detail-ctn-inner .header-ctn span[data-v-5fd1cc8c] {
        background: #ffffff;
        border: 1px solid #24b277;
        border-radius: 2px;
        font-size: 10px;
        font-weight: 500;
        color: #24b277;
        padding: 1px 5px;
        margin-left: 2px;
}
.detail-ctn .detail-ctn-inner .header-ctn .yellow-item[data-v-5fd1cc8c] {
        border: 1px solid #f5ab32;
        color: #f5ab32;
}
.detail-ctn .detail-ctn-inner .header-ctn .money-class[data-v-5fd1cc8c] {
        font-size: 36px;
        font-weight: bold;
        color: #4575c7;
        margin-top: 10px;
}
.detail-ctn .detail-ctn-inner .header-ctn .unit[data-v-5fd1cc8c] {
        border: none;
        font-size: 36px;
        font-weight: bold;
        color: #4575c7;
        margin-top: 10px;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-title-ctn[data-v-5fd1cc8c] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      margin-bottom: 15px;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn[data-v-5fd1cc8c] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-5fd1cc8c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-bottom: 30px;
        position: relative;
        padding-left: 25px;
        border-left: 1px dashed #cad6ea;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-5fd1cc8c]::after {
          content: "";
          width: 0.2rem;
          height: 0.2rem;
          background: #5076b8;
          border-radius: 50%;
          position: absolute;
          left: -4px;
          top: 4px;
          z-index: 2;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-5fd1cc8c]::before {
          content: "";
          position: absolute;
          width: 0.42rem;
          height: 0.42rem;
          background: #cad6ea;
          border-radius: 50%;
          left: -8px;
          top: 0;
          z-index: 2;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .no-border[data-v-5fd1cc8c] {
        border: none;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-border[data-v-5fd1cc8c] {
        border-color: #eee;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-bg[data-v-5fd1cc8c]::after {
        background: #999;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-bg[data-v-5fd1cc8c]::before {
        width: 0;
        height: 0;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-color[data-v-5fd1cc8c] {
        color: #999;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-right[data-v-5fd1cc8c] {
        font-size: 12px;
        font-weight: 500;
        color: #999999;
}
.detail-ctn .detail-ctn-inner .info-ctn[data-v-5fd1cc8c] {
      margin-top: 20px;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item[data-v-5fd1cc8c] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 10px;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-left[data-v-5fd1cc8c] {
          width: 80px;
          color: #666666;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-right[data-v-5fd1cc8c] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          color: #333333;
          text-align: right;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-right .copy-class[data-v-5fd1cc8c] {
            display: inline-block;
            color: #3975c6;
            border: 1px solid #3975c6;
            border-radius: 3px;
            padding: 1px 3px;
            margin-right: 2px;
}
.detail-ctn .detail-ctn-inner .btn-ctn[data-v-5fd1cc8c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin-top: 20px;
}
.detail-ctn .detail-ctn-inner .btn-ctn .btn-item[data-v-5fd1cc8c] {
        background: #ffffff;
        border: 1px solid #3975c6;
        border-radius: 5px;
        padding: 4px 9px;
        font-size: 14px;
        font-weight: 500;
        color: #3975c6;
}
.detail-ctn .detail-ctn-inner .btn-ctn .first-btn[data-v-5fd1cc8c] {
        margin-right: 8px;
}

.cashier-list[data-v-6a087fc7] {
  background: #f7f8fc;
  height: 100vh;
}
.list-ctn[data-v-6a087fc7] {
  padding: 10px;
  height: calc(100% - 2rem);
  overflow: auto;
}
.list-ctn .item-info[data-v-6a087fc7] {
    padding: 20px 15px;
    margin-bottom: 10px;
}
.list-ctn .item-info .item-header[data-v-6a087fc7] {
      font-size: 12px;
      font-weight: 400;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
}
.list-ctn .item-info .item-header .header-date-ctn[data-v-6a087fc7] {
        color: #4575c7;
}
.list-ctn .item-info .item-header .header-date-ctn .month-text[data-v-6a087fc7] {
          font-size: 24px;
          font-weight: bold;
          color: #4575c7;
}
.list-ctn .item-info .item-header .header-sub-text[data-v-6a087fc7] {
        color: #333333;
}
.list-ctn .item-info .item-header .header-sub-text .mr12[data-v-6a087fc7] {
          margin-right: 12px;
}
.list-ctn .item-info .item-main .main-item[data-v-6a087fc7] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      font-weight: 500;
      color: #333333;
}
.list-ctn .item-info .item-main .main-item .main-item-left[data-v-6a087fc7] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.list-ctn .item-info .item-main .main-item .main-item-left img[data-v-6a087fc7] {
          width: 39px;
          height: 39px;
          margin-right: 8px;
}
.list-ctn .item-info .item-main .main-item .main-item-left .btn-item[data-v-6a087fc7] {
          background: #ffffff;
          border: 1px solid #24b277;
          border-radius: 2px;
          font-size: 10px;
          font-weight: 500;
          color: #24b277;
          padding: 1px 5px;
          margin-left: 7px;
}
.list-ctn .item-info .item-main .main-item .main-item-left .yellow-item[data-v-6a087fc7] {
          border: 1px solid #f5ab32;
          color: #f5ab32;
}
.list-ctn .item-info .item-main .main-item .main-item-left .date-class[data-v-6a087fc7] {
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: #666666;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.list-ctn .item-info .item-main .main-item .main-item-left .date-class .split-line[data-v-6a087fc7] {
            width: 1px;
            margin: 0 6px;
            background: #999;
            height: 12px;
}
.list-ctn .item-info .item-main .main-item .main-item-right[data-v-6a087fc7] {
        text-align: right;
}
.list-ctn .item-info .item-main .main-item .main-item-right .detail-btn[data-v-6a087fc7] {
          font-size: 12px;
          font-weight: 500;
          color: #4575c7;
}

.cashier-list[data-v-4e950bd4] {
  background: #f7f8fc;
  height: 100vh;
}
.cashier-list .list-filter[data-v-4e950bd4] {
    background: #fff;
}
.cashier-list .list-filter .list_select-item[data-v-4e950bd4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.cashier-list .list-filter .list_select-item .list_select-title[data-v-4e950bd4] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666666;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.cashier-list .list-filter .list_select-item .list_select-icon[data-v-4e950bd4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 0.38rem;
        margin-left: 0.1rem;
}
.cashier-list .list-filter .list_select-item .list_select-icon .list_selectIcon-bottom[data-v-4e950bd4] {
          border-left: 0.1rem solid transparent;
          border-right: 0.1rem solid transparent;
          border-top: 0.16rem solid #c4c4c4;
}
.cashier-list .list-ctn[data-v-4e950bd4] {
    padding: 10px;
    height: calc(100% - 2rem);
    overflow: auto;
}
.cashier-list .list-ctn .item-info[data-v-4e950bd4] {
      padding: 20px 15px;
      margin-bottom: 10px;
}
.cashier-list .list-ctn .item-info .item-header[data-v-4e950bd4] {
        font-size: 12px;
        font-weight: 400;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
}
.cashier-list .list-ctn .item-info .item-header .header-date-ctn[data-v-4e950bd4] {
          color: #4575c7;
}
.cashier-list .list-ctn .item-info .item-header .header-date-ctn .month-text[data-v-4e950bd4] {
            font-size: 24px;
            font-weight: bold;
            color: #4575c7;
}
.cashier-list .list-ctn .item-info .item-header .header-sub-text[data-v-4e950bd4] {
          color: #333333;
}
.cashier-list .list-ctn .item-info .item-header .header-sub-text .mr12[data-v-4e950bd4] {
            margin-right: 12px;
}
.cashier-list .list-ctn .item-info .item-main .main-item[data-v-4e950bd4] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
        font-weight: 500;
        color: #333333;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left[data-v-4e950bd4] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left img[data-v-4e950bd4] {
            width: 39px;
            height: 39px;
            margin-right: 8px;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left .btn-item[data-v-4e950bd4] {
            background: #ffffff;
            border: 1px solid #24b277;
            border-radius: 2px;
            font-size: 10px;
            font-weight: 500;
            color: #24b277;
            padding: 1px 5px;
            margin-left: 7px;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left .yellow-item[data-v-4e950bd4] {
            border: 1px solid #f5ab32;
            color: #f5ab32;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left .date-class[data-v-4e950bd4] {
            font-size: 12px;
            font-family: PingFang SC;
            font-weight: 500;
            color: #666666;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-left .date-class .split-line[data-v-4e950bd4] {
              width: 1px;
              margin: 0 6px;
              background: #999;
              height: 12px;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-right[data-v-4e950bd4] {
          text-align: right;
}
.cashier-list .list-ctn .item-info .item-main .main-item .main-item-right .detail-btn[data-v-4e950bd4] {
            font-size: 12px;
            font-weight: 500;
            color: #4575c7;
}

.inner[data-v-3eb85d17] {
  padding: 0.25rem;
}
.pop-time[data-v-3eb85d17] {
  padding: 0.2rem 0;
}
.pop-time-title[data-v-3eb85d17] {
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.pop-time-box[data-v-3eb85d17] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.4rem;
}
.pop-time-box .box-input[data-v-3eb85d17] {
    border: 1px solid #b8b8b8;
    width: 4.24rem;
    background: #fefefe;
    padding: 8px 15px;
    text-align: center;
    border-radius: unset;
}
.pop-time-box[data-v-3eb85d17] .van-field__control {
    font-size: 0.37rem;
    font-weight: 400;
    color: #999999;
}
.pop-startend-time[data-v-3eb85d17] {
  width: 4.24rem;
  height: 0.92rem;
  background: #fefefe;
  border: 1px solid #b8b8b8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.pop-time-line[data-v-3eb85d17] {
  width: 0.2rem;
  height: 1px;
  background: #999999;
}
.van-search[data-v-3eb85d17] {
  width: 100%;
  padding: 0;
  border: 1px solid #b8b8b8;
  background: #fefefe;
}
.right[data-v-3eb85d17] {
  margin-right: 0.1rem;
}
.right-icon[data-v-3eb85d17] {
  font-size: 12px;
}
.pop-peopleList[data-v-3eb85d17] {
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
#peopleList[data-v-3eb85d17] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  width: 100%;
  padding: 0.2rem 0;
}
.people-item[data-v-3eb85d17] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.pop-people-content[data-v-3eb85d17] {
  padding: 0.2rem 0;
  max-height: 6rem;
  overflow: hidden;
}
.pop-people-content-inner[data-v-3eb85d17] {
  width: 100%;
  max-height: 6rem;
  overflow-y: scroll;
}
.people-content-item[data-v-3eb85d17] {
  padding: 0.3rem 0;
  font-size: 0.37rem;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pop-bottom[data-v-3eb85d17] {
  padding: 0.4rem 0;
}
.btn-box[data-v-3eb85d17] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-box-item[data-v-3eb85d17] {
  width: 4.53rem;
}
.btn-style[data-v-3eb85d17] {
  width: 100%;
  font-size: 0.4rem;
  font-family: PingFang SC;
  font-weight: 400;
  border-radius: 5px;
}
.btn-l[data-v-3eb85d17] {
  background: #c5daff;
  color: #5076b8;
}
.btn-r[data-v-3eb85d17] {
  background: #5076b8;
  color: #ffffff;
}

.detail-ctn[data-v-96b15372] {
  padding: 20px 10px;
  background: #f7f8fc;
  height: calc(100vh - 40px);
}
.detail-ctn .detail-ctn-inner[data-v-96b15372] {
    background: #ffffff;
    border-radius: 5px;
    padding: 27px 15px;
}
.detail-ctn .detail-ctn-inner .header-ctn[data-v-96b15372] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      text-align: center;
}
.detail-ctn .detail-ctn-inner .header-ctn span[data-v-96b15372] {
        background: #ffffff;
        border: 1px solid #24b277;
        border-radius: 2px;
        font-size: 10px;
        font-weight: 500;
        color: #24b277;
        padding: 1px 5px;
        margin-left: 2px;
}
.detail-ctn .detail-ctn-inner .header-ctn .yellow-item[data-v-96b15372] {
        border: 1px solid #f5ab32;
        color: #f5ab32;
}
.detail-ctn .detail-ctn-inner .header-ctn .money-class[data-v-96b15372] {
        font-size: 36px;
        font-weight: bold;
        color: #4575c7;
        margin-top: 10px;
}
.detail-ctn .detail-ctn-inner .header-ctn .unit[data-v-96b15372] {
        border: none;
        font-size: 36px;
        font-weight: bold;
        color: #4575c7;
        margin-top: 10px;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-title-ctn[data-v-96b15372] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      margin-bottom: 15px;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn[data-v-96b15372] {
      font-size: 14px;
      font-family: PingFang SC;
      font-weight: bold;
      color: #333333;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-96b15372] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-bottom: 30px;
        position: relative;
        padding-left: 25px;
        border-left: 1px dashed #cad6ea;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-96b15372]::after {
          content: "";
          width: 0.2rem;
          height: 0.2rem;
          background: #5076b8;
          border-radius: 50%;
          position: absolute;
          left: -4px;
          top: 4px;
          z-index: 2;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-item[data-v-96b15372]::before {
          content: "";
          position: absolute;
          width: 0.42rem;
          height: 0.42rem;
          background: #cad6ea;
          border-radius: 50%;
          left: -8px;
          top: 0;
          z-index: 2;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .no-border[data-v-96b15372] {
        border: none;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-border[data-v-96b15372] {
        border-color: #eee;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-bg[data-v-96b15372]::after {
        background: #999;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-bg[data-v-96b15372]::before {
        width: 0;
        height: 0;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .gray-color[data-v-96b15372] {
        color: #999;
}
.detail-ctn .detail-ctn-inner .state-ctn .state-main-ctn .state-right[data-v-96b15372] {
        font-size: 12px;
        font-weight: 500;
        color: #999999;
}
.detail-ctn .detail-ctn-inner .info-ctn[data-v-96b15372] {
      margin-top: 20px;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item[data-v-96b15372] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 10px;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-left[data-v-96b15372] {
          width: 80px;
          color: #666666;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-right[data-v-96b15372] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          color: #333333;
          text-align: right;
}
.detail-ctn .detail-ctn-inner .info-ctn .info-item .info-item-right .copy-class[data-v-96b15372] {
            display: inline-block;
            color: #3975c6;
            border: 1px solid #3975c6;
            border-radius: 3px;
            padding: 1px 3px;
            margin-right: 2px;
}
.detail-ctn .detail-ctn-inner .btn-ctn[data-v-96b15372] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      margin-top: 20px;
}
.detail-ctn .detail-ctn-inner .btn-ctn .btn-item[data-v-96b15372] {
        background: #ffffff;
        border: 1px solid #3975c6;
        border-radius: 5px;
        padding: 4px 9px;
        font-size: 14px;
        font-weight: 500;
        color: #3975c6;
}
.detail-ctn .detail-ctn-inner .btn-ctn .first-btn[data-v-96b15372] {
        margin-right: 8px;
}

@charset "UTF-8";
.serach-detail-container[data-v-ffff6766] {
  position: relative;
  background: #ebebeb;
  height: 100vh;
  overflow: hidden;
}
.container-top[data-v-ffff6766] {
  position: absolute;
  width: 100%;
  height: 1.6rem;
}
/* 列表 */
.report_container[data-v-ffff6766] {
  height: calc(100vh - 1.6rem);
  position: relative;
  top: 1.6rem;
  background: #f7f8fc;
}
.roport_scroll_box[data-v-ffff6766] {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.report_inner[data-v-ffff6766] {
  height: calc(100% - 0.3rem);
  margin: 0.3rem 0.3rem 0;
}
/* 搜索框 */
.search-box[data-v-ffff6766] {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.van-search[data-v-ffff6766] {
  height: 1.63rem;
}
.van-search[data-v-ffff6766] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-ffff6766] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-ffff6766] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-ffff6766] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
[data-v-ffff6766] .van-field__control {
  font-weight: 500;
}

.detail-ctn[data-v-89206274] {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(70%, #f7f8fc));
  background: linear-gradient(180deg, #3975c6 0%, #f7f8fc 70%);
}
.detail-ctn .detail-header-ctn[data-v-89206274] {
    margin: 18px 10px;
    border-radius: 12px;
}
.detail-ctn .detail-static-ctn[data-v-89206274] {
    margin: 18px 10px;
    border-radius: 12px;
    background: #fff;
    padding: 15px 10px 1px;
    margin-bottom: 10px;
}
.detail-ctn .detail-static-ctn .static-header[data-v-89206274] {
      padding-bottom: 6px;
      margin-bottom: 10px;
      border-bottom: 1px solid #ECF0F9;
      font-weight: 800;
      font-size: 24px;
      color: #3975C6;
}
.detail-ctn .detail-static-ctn .static-header .static-title[data-v-89206274] {
        margin-bottom: 2px;
        font-weight: 400;
        font-size: 14px;
        color: #333333;
}
.detail-ctn .detail-static-ctn .static-items[data-v-89206274] {
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.detail-ctn .detail-static-ctn .static-items .static-item[data-v-89206274] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 10px;
}
.detail-ctn .detail-static-ctn .static-items .static-item .static-value[data-v-89206274] {
          color: #333;
}
.detail-ctn .detail-main-ctn[data-v-89206274] {
    margin: 18px 10px;
    border-radius: 12px;
    background: #fff;
    padding: 15px 10px 1px;
}
.detail-ctn .detail-main-ctn .main-header-ctn[data-v-89206274] {
      font-weight: bold;
      font-size: 14px;
      color: #333333;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .cus-items[data-v-89206274] {
      display: inline-block;
      margin: 12px 0 0;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .cus-items .cus-items-inner[data-v-89206274] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background: #EEF3FC;
        border-radius: 5px;
        padding: 3px;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .cus-items .cus-items-inner .cus-item[data-v-89206274] {
          font-weight: 500;
          font-size: 14px;
          padding: 2px 13px;
          color: #3975C6;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .cus-items .cus-items-inner .active-cus-item[data-v-89206274] {
          background: #3975C6;
          border-radius: 5px;
          color: #FFFFFF;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .dd-code-tabs[data-v-89206274] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      overflow-x: auto;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .dd-code-tabs[data-v-89206274]::-webkit-scrollbar {
        width: 0;
        height: 0;
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .dd-code-items[data-v-89206274] {
      font-weight: 500;
      font-size: 14px;
      padding: 8px 0;
      margin: 10px 0 10px;
      margin-right: 16px;
      color: #666;
      border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.detail-ctn .detail-main-ctn .main-tabs-ctn .active-item[data-v-89206274] {
      color: #3975C6;
      border-bottom: 2px solid #3975C6;
}
.detail-ctn .detail-main-ctn .main-table-ctn[data-v-89206274] {
      padding: 18px 15px 8px;
      background: #F7F8FC;
      border-radius: 5px;
      margin-bottom: 10px;
}
.detail-ctn .detail-main-ctn .main-table-ctn .item-ctn[data-v-89206274] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        margin-bottom: 10px;
}
.detail-ctn .detail-main-ctn .main-table-ctn .item-ctn .item-right[data-v-89206274] {
          color: #333333;
}

.earnest-order-detail .detail-header[data-v-4f3abb4d] {
  padding-bottom: 0.48rem;
  background: #fff;
}
.earnest-order-detail .detail-header .manage_tab[data-v-4f3abb4d] {
    margin: 0.48rem 0.3733rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.earnest-order-detail .detail-header .manage_tab .manage_tab-item[data-v-4f3abb4d] {
      width: 2.88rem;
      height: 0.8533rem;
      background: rgba(25, 103, 232, 0.1);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 0.2667rem;
      font-size: 0.3733rem;
      font-weight: 500;
      color: #1967e8;
}
.earnest-order-detail .detail-header .manage_tab .manage_tab-active[data-v-4f3abb4d] {
      background: #1967e8;
      color: #fff;
}
.earnest-order-detail .detail-main[data-v-4f3abb4d] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f6f7fc;
  padding: 0.3733rem 0.4rem 0.5rem;
  overflow: scroll;
  height: calc(100vh - 3.7rem);
}
.earnest-order-detail .detail-main .detail-list[data-v-4f3abb4d] {
    width: 9.2rem;
    padding: 0.4rem;
    background: #ffffff;
    border-radius: 0.32rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item[data-v-4f3abb4d] {
      margin-top: 0.1867rem;
      padding: 0.24rem 0.4rem;
      background: #f7f8fc;
      border-radius: 0.1333rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item .manage_list-content[data-v-4f3abb4d] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        height: 100%;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item .manage_list-content .manage_list-icon[data-v-4f3abb4d] {
          width: 0.8rem;
          height: 0.8rem;
          border-radius: 0.4rem;
          background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAAA8CAMAAAAJ1/l9AAAAAXNSR0IArs4c6QAAAMNQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wYQtnwAAAEB0Uk5TAAECBwgJExQVIiMkMTIzQEFCT1BRUl5fYG1ub3BxfH1+f4uMjZqbnKmqq6+4ubrHyMnK1tfY4+Xm5/P09fj7/FjFLSsAAAF2SURBVEjH1ddZV4JQFAXgq2HOhppDOGWYKOSIEFmh//9XiW4e1CBw81Ln8Wy+tYB174ErhBA9e0+V3RNHvafr6G2e2x7fJ6g/wh3jsky0V0ZwOVfcEJfVRLsjgsuI4CW0NZJLLm6e5AIP/5km+QT9Isn76D+SvIb+M8nz6OskT21PfYvkYnHq7ySSjxGUSa4gaJFcRqCSPItgRnKBTemwfIYkS3IViUzyFhKF5GUkY5L7E2PJ8Fy1o32fkm3qJp6ptEfzj7NpXIjJ08XGULd218O8HoOvutr6K/hbMIjBf6lpMr4huYtX70o3c2emtsqSFjoxQvl2OVZkf5t0QidGAHc300G9cL5Iqgheornp3euPi3LI3qg17xUW3zvL5wjvST5C+EDyNsInklcQvpI8g+23ILmwQiZGTK4jzZN8iLRG8gbSPsmLSCckT2OAmSQXa2zGO5L7E6NE8i7iZgR3Qv68V/44iPgh/6eHkYQHsYTHwCSH0ANk6dKhgUwNZgAAAABJRU5ErkJggg==);
          background-size: 0.4rem 0.4rem;
          background-position: center;
          background-repeat: no-repeat;
          background-color: #1967e8;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item .manage_list-content .manage_list-wrap[data-v-4f3abb4d] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          margin-left: 0.2533rem;
          font-size: 0.3733rem;
          font-weight: 400;
          color: #333333;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item .manage_list-content .manage_list-wrap .manage_title-text[data-v-4f3abb4d] {
            margin-right: 0.1333rem;
}
.earnest-order-detail .detail-main .detail-list .manage_list-item .manage_list-count[data-v-4f3abb4d] {
        font-size: 0.32rem;
        font-weight: 400;
        color: #666666;
        width: 2.1333rem;
        text-align: right;
        font-size: 0.4267rem;
        font-weight: bold;
        color: #000000;
}
.earnest-order-detail .no-data[data-v-4f3abb4d] {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}
.earnest-order-detail .no-data img[data-v-4f3abb4d] {
    width: 156px;
    height: 126px;
    margin-bottom: 30px;
    margin-top: 150px;
}

.simide-ctn[data-v-26363141] {
  background: #f7f8fc;
  height: 100vh;
  position: inherit;
}
.header-ctn[data-v-26363141] {
  background: #fff;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.header-ctn[data-v-26363141] .van-tabs {
    width: 100%;
}
.header-ctn[data-v-26363141] .van-tabs__nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.header-ctn[data-v-26363141] .van-tabs__line {
    background-color: #3975C6;
}
.content-container[data-v-26363141] {
  height: calc(100vh - 122px);
  overflow: auto;
}
.content-container .detail-ctn[data-v-26363141] {
    padding: 0 10px;
}
.content-container .detail-ctn .detail-title-ctn[data-v-26363141] {
      font-weight: bold;
      font-size: 16px;
      color: #333333;
      margin: 12px 0;
}
.content-container .detail-ctn .absolute-position[data-v-26363141] {
      position: absolute;
      top: 44px;
      left: 10px;
      right: 10px;
      z-index: 1000;
      background: #fff;
}
.content-container .detail-ctn[data-v-26363141] .van-search {
      padding: 0;
}
.content-container .detail-ctn[data-v-26363141] .van-field__control {
      font-size: 14px;
      font-weight: 500;
      color: #999999;
}
.content-container .detail-ctn[data-v-26363141] .van-search__content {
      background-color: #fff;
}
.full-height[data-v-26363141] {
  height: calc(100vh - 46px);
}
.bottom-ctn[data-v-26363141] {
  padding: 16px;
  background-color: #Fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.bottom-ctn .bottom-btn[data-v-26363141] {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    padding: 12px 0;
    background: #3975C6;
    border-radius: 20px;
}
.bottom-ctn1[data-v-26363141] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-ctn1 .btn-left[data-v-26363141] {
    margin-right: 10px;
}

.detail-select-ctn[data-v-11d4767d] {
  padding: 0 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.32rem;
  font-weight: 400;
  color: #333333;
  margin: 12px 0;
}
.detail-select-ctn .select-left[data-v-11d4767d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
}
.detail-select-ctn .select-left .drop-l[data-v-11d4767d] {
      margin-right: 0.63rem;
}
.detail-select-ctn .select-right[data-v-11d4767d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.detail-select-ctn .select-right div[data-v-11d4767d] {
      margin-right: 0.1rem;
}
.detail-select-ctn .select-right img[data-v-11d4767d] {
      width: 0.29rem;
      height: 0.29rem;
}
.popup-wrap[data-v-11d4767d] {
  padding: 18px 15px 24px;
}
.popup-wrap .title[data-v-11d4767d] {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 15px;
}
.popup-wrap .filter-item .item-title[data-v-11d4767d] {
    font-size: 15px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 12px;
}
.popup-wrap .filter-item .item-content[data-v-11d4767d] {
    margin-bottom: 25px;
}
.popup-wrap .filter-item .item-content .pop-time-box[data-v-11d4767d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-top: 0.4rem;
}
.popup-wrap .filter-item .item-content .pop-startend-time[data-v-11d4767d] {
      width: 4.24rem;
      height: 35px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-weight: 500;
      color: #999999;
      background: #f7f7f7;
      border-radius: 18px;
}
.popup-wrap .filter-item .item-content .pop-time-line[data-v-11d4767d] {
      width: 8px;
      height: 2px;
      background: #333333;
}
.popup-wrap .filter-item .star-content[data-v-11d4767d] {
    margin-bottom: 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.popup-wrap .filter-item .star-content .star-item[data-v-11d4767d] {
      width: 50%;
      height: 35px;
      border-radius: 18px;
      margin-bottom: 12px;
}
.popup-wrap .filter-item .star-content .star-item .star-wrap[data-v-11d4767d] {
        background: #f7f7f7;
        width: 90%;
        height: 100%;
        border-radius: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        font-size: 14px;
        font-weight: 500;
        color: #333333;
        border: 1px solid #f7f7f7;
}
.popup-wrap .btn-box[data-v-11d4767d] {
    margin-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.popup-wrap .btn-box .btn-wrap[data-v-11d4767d] {
      width: 47%;
      height: 39px;
      border-radius: 20px;
}
.popup-wrap .btn-box .btn-wrap button[data-v-11d4767d] {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: none;
        font-size: 15px;
        font-weight: 400;
}
.popup-wrap .btn-box .btn-wrap .btn-l[data-v-11d4767d] {
        background: #d9e4f2;
        color: #4378be;
}
.popup-wrap .btn-box .btn-wrap .btn-r[data-v-11d4767d] {
        background: #4378be;
        color: #ffffff;
}
.popup-wrap .activeContent[data-v-11d4767d] {
    background: #ebf1f9 !important;
    border: 1px solid #3975c6 !important;
    border-radius: 18px;
    color: #3975c6 !important;
}

.add-dialog .van-form[data-v-7e3f24aa] {
  padding: 0.6933rem 0;
}
.add-dialog .cell-title-required[data-v-7e3f24aa] {
  position: relative;
}
.add-dialog .cell-title-required[data-v-7e3f24aa]::after {
    position: absolute;
    top: 0.0267rem;
    right: -0.2667rem;
    color: #ee0a24;
    font-size: 0.3733rem;
    content: "*";
}
.add-dialog .textarea-field[data-v-7e3f24aa] {
  display: block;
}
.add-dialog .textarea-field[data-v-7e3f24aa] .van-field__label {
    margin-bottom: 5px;
}

.static-ctn[data-v-2d6b6f3f] {
  padding: 0 10px;
  background: #fff;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
.static-ctn .static-header[data-v-2d6b6f3f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    padding: 0 0 12px;
}
.static-ctn .static-header .header-right[data-v-2d6b6f3f] {
      font-weight: 400;
      font-size: 12px;
      color: #999999;
}
.static-ctn .static-header .arrow-down[data-v-2d6b6f3f] {
      margin-left: 4px;
}
.static-ctn .static-main .static-all-ctn[data-v-2d6b6f3f] {
    background: #EEF3FC;
    border-radius: 5px;
    padding: 16px;
}
.static-ctn .static-main .static-all-ctn .title-ctn[data-v-2d6b6f3f] {
      font-weight: 400;
      font-size: 14px;
      color: #333333;
}
.static-ctn .static-main .static-all-ctn .num-ctn[data-v-2d6b6f3f] {
      font-weight: 800;
      font-size: 21px;
      color: #3975C6;
      padding: 10px 0 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
.static-ctn .static-main .static-all-ctn .num-ctn .unit[data-v-2d6b6f3f] {
        font-size: 14px;
}
.static-ctn .static-main .static-all-ctn .num-ctn .num-inner[data-v-2d6b6f3f] {
        font-weight: 400;
        font-size: 14px;
        color: #333333;
        margin-left: 4px;
}
.static-ctn .static-main .static-all-ctn .num-ctn .num-inner span[data-v-2d6b6f3f] {
          color: #da291c;
}
.static-ctn .static-main .static-list-ctn[data-v-2d6b6f3f] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.static-ctn .static-main .static-list-ctn > .list-item[data-v-2d6b6f3f]:nth-of-type(odd) {
      margin-right: 10px;
}
.static-ctn .static-main .static-list-ctn .list-item[data-v-2d6b6f3f] {
      width: calc(50% - 35px);
      margin-top: 10px;
      border-radius: 5px;
      padding: 15px;
      font-weight: 400;
      font-size: 14px;
      color: #333333;
      margin-bottom: 8px;
}
.static-ctn .static-main .static-list-ctn .list-item .item-top-ctn[data-v-2d6b6f3f] {
        border-bottom: 1px solid #D4D4D4;
}
.static-ctn .static-main .static-list-ctn .list-item .item-top-ctn .num-ctn[data-v-2d6b6f3f] {
          font-weight: 800;
          font-size: 14px;
          margin-top: 5px;
          padding-bottom: 6px;
}
.static-ctn .static-main .static-list-ctn .list-item .item-bottom-ctn[data-v-2d6b6f3f] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 8px;
}
.static-ctn .static-main .static-list-ctn .list-item .item-bottom-ctn .bottom-num[data-v-2d6b6f3f] {
          font-weight: 800;
          font-size: 14px;
          color: #333333;
}

.detail-list .list-item[data-v-67e28060] {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 0 16px;
  margin-bottom: 10px;
}
.detail-list .list-item .item-title[data-v-67e28060] {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    padding: 12px 0;
}
.detail-list .list-item .list-rows .row-item[data-v-67e28060] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #eee;
}
.detail-list .list-item .list-rows .row-item .row-left[data-v-67e28060] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.detail-list .list-item .list-rows .row-item .row-left img[data-v-67e28060] {
        width: 35px;
        margin-right: 8px;
}
.detail-list .list-item .list-rows .row-item .row-left .content-ctn[data-v-67e28060] {
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.detail-list .list-item .list-rows .row-item .row-left .content-ctn .content-type[data-v-67e28060] {
          font-size: 12px;
          color: #666666;
          margin-top: 4px;
}
.detail-list .list-item .list-rows .row-item .row-right[data-v-67e28060] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
}
.detail-list .list-item .list-rows .row-item .color-red[data-v-67e28060] {
      color: #DA291C;
}

.app_container[data-v-5d5f4202] {
  height: calc(100vh - env(safe-area-inset-bottom) - 10px);
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.list-ctn[data-v-5d5f4202] {
  position: relative;
  font-size: 13px;
  height: calc(100% - 2.7rem);
  overflow-y: auto;
  margin: 10px;
}
.list-ctn .app_item[data-v-5d5f4202] {
    width: 100%;
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
}
.list-ctn .app_item .item_top[data-v-5d5f4202] {
      padding: 0.32rem 0.29rem 0.1rem 0.4rem;
}
.list-ctn .app_item .item_top .item-top-id[data-v-5d5f4202] {
        font-size: 0.37rem;
        font-weight: 400;
        color: #333333;
        margin-bottom: 0.3rem;
        letter-spacing: 1px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.list-ctn .app_item .item_top .item-top-id .cus-class[data-v-5d5f4202] {
          color: #3975c6;
          padding: 0.05rem 0.1rem;
          font-size: 0.32rem;
          border-radius: 0.08rem;
          border: 1px solid #3975c6;
          margin-right: 4px;
}
.list-ctn .app_item .item_top .item_content[data-v-5d5f4202] {
        margin-bottom: 0.3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.list-ctn .app_item .item_top .item_content .content_title[data-v-5d5f4202] {
          font-size: 0.32rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #666;
}
.list-ctn .app_item .item_top .item_content .content_value[data-v-5d5f4202] {
          font-size: 0.32rem;
          font-family: Source Han Sans CN;
          font-weight: 400;
          color: #333333;
}
.list-ctn .app_item .report_bottom_ctn[data-v-5d5f4202] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 0.29rem 0.25rem;
      font-size: 0.32rem;
      font-family: Source Han Sans CN;
      font-weight: 400;
      color: #999;
}
.list-ctn .app_item .btn-ctn .btn-item[data-v-5d5f4202] {
      border-radius: 5px;
      font-size: 12px;
      font-weight: 500;
      color: #ffffff;
      padding: 3px 7px;
      background: #ffffff;
}
.list-ctn .app_item .btn-ctn .btn0[data-v-5d5f4202] {
      background: #EEEEEE;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
      color: #999999;
}
.list-ctn .app_item .btn-ctn .btn1[data-v-5d5f4202] {
      background: #24B277;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.list-ctn .app_item .btn-ctn .btn2[data-v-5d5f4202] {
      background: #F5AB32;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
}
.list-ctn .app_item .btn-ctn .btn3[data-v-5d5f4202] {
      background: #3975C6;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
      margin-left: 8px;
}
.list-ctn .app_item .btn-ctn .btn4[data-v-5d5f4202] {
      border: 1px solid #f5ab32;
      color: #f5ab32;
      margin-left: 8px;
}
.list-ctn .app_item .bottom-btn[data-v-5d5f4202] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      padding: 0.1rem 0.29rem 0.25rem;
}
.no-record-ctn[data-v-5d5f4202] {
  padding-top: 3.91rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.no-record-ctn img[data-v-5d5f4202] {
    width: 4.03rem;
}
.no-record-ctn .no-record-text[data-v-5d5f4202] {
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.4rem;
}
.no-record-ctn .second-record-text[data-v-5d5f4202] {
    margin-top: 0.2rem;
}
.add_btn_box[data-v-5d5f4202] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 24px 15px;
}
.add_btn_box .submit_btn[data-v-5d5f4202] {
    height: 1.04rem;
    border-radius: 1rem;
    font-size: 0.4rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    background: #3975c6;
    width: calc(100% - 30px);
}
.add_btn_box .submit_btn .van-button__text[data-v-5d5f4202] {
      color: #fff;
}
.tip-ctn[data-v-5d5f4202] {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 30px;
}

.new-order-ctn[data-v-a27268a2] {
  height: calc(100vh - 0.82rem);
  padding: 0.41rem 0.27rem;
  background: #ebebeb;
  background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc));
  background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc);
  position: relative;
}
.new-order-ctn .van-cell-group[data-v-a27268a2] {
    border-radius: 0.19rem;
}
.new-order-ctn .van-cell-group--inset[data-v-a27268a2] {
    margin: 0 !important;
}
.main-ctn[data-v-a27268a2] {
  height: calc(100% - 68px);
  overflow: auto;
  margin-bottom: 80px;
}
.form-ctn[data-v-a27268a2] .cell-title-required {
  position: relative;
}
.form-ctn[data-v-a27268a2] .cell-title-required::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}
.form-ctn[data-v-a27268a2] .input-align-bottom .van-field__label {
  width: 100%;
}
.form-ctn .title-ctn[data-v-a27268a2] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.form-ctn .title-ctn .btn-ctn[data-v-a27268a2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.form-ctn .title-ctn .btn-ctn img[data-v-a27268a2] {
      width: 15px;
}
.form-ctn .list-ctn[data-v-a27268a2] {
  width: 100%;
}
.form-ctn .list-ctn .list-item[data-v-a27268a2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #F7F8FC;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 4px 10px;
}
.form-ctn .list-ctn .list-item .left-ctn[data-v-a27268a2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 500;
      font-size: 12px;
      color: #333333;
}
.form-ctn .list-ctn .list-item .left-ctn img[data-v-a27268a2] {
        width: 17px;
        height: 17px;
        margin-right: 6px;
}
.form-ctn .list-ctn .list-item .right-ctn img[data-v-a27268a2] {
      width: 12px;
      height: 12px;
}
.business-info .bussiness-info-title[data-v-a27268a2] {
  margin: 0.4rem 0.15rem;
  color: #333;
  font-size: 0.43rem;
  font-weight: bold;
}
.business-info .cell-group .bussiness-info-title[data-v-a27268a2] {
  padding: 0.4rem 0.4267rem 0.1333rem;
  font-size: 0.3733rem;
  font-family: PingFang SC;
  font-weight: bold;
  color: #333333;
}
.btn-container[data-v-a27268a2] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  background-color: #fff;
}
.btn-container .btn-item[data-v-a27268a2] {
    width: 100%;
    padding: 10px 0;
    background: #4575C7;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
}

.cus-mul-ctn[data-v-e3856502] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cus-mul-ctn .cus-item[data-v-e3856502] {
    margin-right: 7px;
    padding: 3px 8px;
    background: #EEEEEE;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
}
.cus-mul-ctn .selected-item[data-v-e3856502] {
    background: rgba(67, 120, 190, 0.2);
    color: #4378BE;
}

.order-detail-ctn[data-v-32aac658] {
  background-color: #f7f8fc;
  position: relative;
  height: 100vh;
}
.full-height[data-v-32aac658] {
  height: calc(100vh - 110px) !important;
}
.header-ctn[data-v-32aac658] {
  background: #3975c6;
  height: 90px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 15px;
}
.header-ctn .header-left[data-v-32aac658] {
    padding-top: 24px;
}
.header-ctn .btn-ctn[data-v-32aac658] {
    margin-top: 24px;
}
.header-ctn .btn-ctn .btn-item[data-v-32aac658] {
      border-radius: 5px;
      font-size: 12px;
      font-weight: 500;
      color: #3975C6;
      padding: 3px 7px;
      background: #ffffff;
}
.main-ctn[data-v-32aac658] {
  position: relative;
  top: -20px;
  border-radius: 10px 10px 0 0;
  padding: 19px 10px 0;
  background: #f7f8fc;
  height: calc(100vh - 180px);
  overflow: auto;
}
.main-ctn .items-ctn[data-v-32aac658] {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 0 15px;
}
.main-ctn .item-ctn[data-v-32aac658] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    padding: 15px 0;
    border: 1px solid #f7f8fc;
}
.main-ctn .item-row-ctn[data-v-32aac658] {
    display: block;
}
.main-ctn .item-row-ctn .item-list .list-item-ctn[data-v-32aac658] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      font-weight: 500;
      font-size: 12px;
      color: #333333;
      background: #F7F8FC;
      border-radius: 5px;
      padding: 10px;
      margin-top: 10px;
}
.main-ctn .item-row-ctn .item-list .list-item-ctn img[data-v-32aac658] {
        width: 17px;
        height: 17px;
        margin-right: 6px;
}
.main-ctn .item-row-ctn .item-row[data-v-32aac658] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.main-ctn .item-row-ctn .item-row img[data-v-32aac658] {
        width: 44px;
        height: 44px;
        margin-right: 10px;
        margin-top: 10px;
}
.main-ctn .item-row-ctn .item-other[data-v-32aac658] {
      margin-top: 10px;
}
.bottom-ctn[data-v-32aac658] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bottom-ctn .btn-item[data-v-32aac658] {
    padding: 10px 0;
    background: #4575C7;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.bottom-ctn .btn1[data-v-32aac658] {
    margin-right: 10px;
}
.popup-ctn[data-v-32aac658] {
  padding: 18px;
}
.popup-ctn .title-ctn[data-v-32aac658] {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 30px;
}
.popup-ctn .popup-main .main-item-ctn .text-ctn[data-v-32aac658] {
    font-weight: 800;
    font-size: 15px;
    color: #333333;
}
.popup-ctn .popup-main .main-item-ctn .require-class[data-v-32aac658] {
    position: relative;
    display: inline-block;
}
.popup-ctn .popup-main .main-item-ctn .require-class[data-v-32aac658]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.popup-ctn .popup-main .main-item-ctn .num-ctn[data-v-32aac658] {
    background-color: #f7f7f7;
    padding: 9px 16px;
    border-radius: 16px;
    margin: 12px 0 24px;
    font-weight: 400 !important;
    color: #323233;
    font-size: 14px;
}
.popup-ctn .popup-main .main-item-ctn .place-class[data-v-32aac658] {
    color: #cdcbcb;
}
.popup-ctn .btn-ctn[data-v-32aac658] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
}
.popup-ctn .btn-ctn .btn-item[data-v-32aac658] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      border-radius: 20px;
      font-size: 15px;
      font-weight: 400;
      background: #d9e4f2;
      color: #4378be;
      text-align: center;
      padding: 10px 0;
}
.popup-ctn .btn-ctn .btn-sure[data-v-32aac658] {
      background: #4378be;
      color: #ffffff;
      margin-left: 12px;
}
.van-cell[data-v-32aac658] {
  background-color: #f7f7f7;
  padding: 6px 16px;
  border-radius: 16px;
  margin: 12px 0 24px;
  font-weight: 400 !important;
}

@charset "UTF-8";
.to-do-list[data-v-6498e7c2] {
  height: 100vh;
  background: #3975c6;
  position: relative;
  overflow: hidden;
}
.to-do-list[data-v-6498e7c2] .van-popup--bottom.van-popup--round {
    border-radius: 16px 16px 0 0;
}
.main-ctn[data-v-6498e7c2] {
  width: 100%;
  height: calc(100vh - 1.63rem);
  background: #f7f8fc;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.main-ctn .tabs-wrap[data-v-6498e7c2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 19px 15px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    line-height: 13px;
    background-color: #fff;
    border-bottom: 1px solid #f7f8fc;
}
.main-ctn .tabs-wrap .tab-item[data-v-6498e7c2] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: center;
      position: relative;
}
.main-ctn .tabs-wrap .tab-active[data-v-6498e7c2] {
      color: #3975c6;
}
.main-ctn .tabs-wrap .tab-active[data-v-6498e7c2]::after {
        content: "";
        position: absolute;
        bottom: -12px;
        width: 16px;
        height: 2px;
        background: #3975c6;
        border-radius: 1px;
        left: calc(50% - 8px);
}
.main-ctn .list-ctn[data-v-6498e7c2] {
    height: calc(100vh - 170px);
    padding: 10px;
    overflow-y: auto;
}
.main-ctn .list-ctn .total-ctn[data-v-6498e7c2] {
      margin-bottom: 10px;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.main-ctn .list-ctn .item-list .item-ctn[data-v-6498e7c2] {
      background: #FFFFFF;
      border-radius: 5px;
      padding: 12px 18px;
      margin-bottom: 10px;
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn[data-v-6498e7c2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-weight: bold;
        font-size: 14px;
        color: #333333;
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn-item[data-v-6498e7c2] {
          border-radius: 5px;
          font-size: 12px;
          font-weight: 500;
          color: #ffffff;
          padding: 3px 7px;
          background: #ffffff;
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn0[data-v-6498e7c2] {
          background: #EEEEEE;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(238, 238, 238, 0.31);
          color: #999999;
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn1[data-v-6498e7c2] {
          background: #24B277;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn2[data-v-6498e7c2] {
          background: #F5AB32;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn3[data-v-6498e7c2] {
          background: #3975C6;
          -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                  box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
          margin-left: 8px;
}
.main-ctn .list-ctn .item-list .item-ctn .title-ctn .right-ctn .btn4[data-v-6498e7c2] {
          border: 1px solid #f5ab32;
          color: #f5ab32;
          margin-left: 8px;
}
.main-ctn .list-ctn .item-list .item-ctn .main-item-ctn .row-ctn[data-v-6498e7c2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 10px;
}
/* 搜索框 */
.van-search[data-v-6498e7c2] {
  height: 1.63rem;
  width: 100%;
}
.van-search .van-search__action[data-v-6498e7c2] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-6498e7c2] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-6498e7c2] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-6498e7c2] .van-field__value {
      font-weight: 400;
}
.van-search .van-search__content .van-cell[data-v-6498e7c2] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-6498e7c2] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-6498e7c2] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-6498e7c2]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-6498e7c2]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-6498e7c2]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-6498e7c2]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}

.select-ctn[data-v-6eb7c7c7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  padding: 10px 18px;
}
.select-ctn .select-item[data-v-6eb7c7c7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.select-ctn .select-item .cus-name[data-v-6eb7c7c7] {
      max-width: 100px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
}
.select-ctn .select-item div[data-v-6eb7c7c7] {
      margin-right: 0.1rem;
}
.select-ctn .select-item img[data-v-6eb7c7c7] {
      width: 0.29rem;
      height: 0.29rem;
}
.cus-popup[data-v-6eb7c7c7] {
  padding: 18px;
}
.cus-popup .title-ctn[data-v-6eb7c7c7] {
    font-size: 16px;
    font-weight: 800;
    color: #333333;
    line-height: 13px;
    text-align: center;
    margin-bottom: 30px;
}
.cus-popup .cus-mul-ctn[data-v-6eb7c7c7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.cus-popup .cus-mul-ctn .cus-item[data-v-6eb7c7c7] {
      background: #fff;
      border-radius: 4px;
      font-weight: 500;
      font-size: 14px;
      color: #333;
      padding: 0 18px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      margin-bottom: 12px;
      margin-right: 10px;
      border: 1px solid #e5e5e5;
}
.cus-popup .cus-mul-ctn .selected-item[data-v-6eb7c7c7] {
      background: rgba(25, 103, 232, 0.1);
      color: #1967e8;
      border: 1px solid #4378BE;
}
.cus-popup .date-mul-ctn[data-v-6eb7c7c7] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cus-popup .bottom-ctn[data-v-6eb7c7c7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
}
.cus-popup .bottom-ctn .btn-item[data-v-6eb7c7c7] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      border-radius: 20px;
      font-size: 15px;
      font-weight: 400;
      background: #d9e4f2;
      color: #4378be;
      text-align: center;
      padding: 10px 0;
}
.cus-popup .bottom-ctn .btn-sure[data-v-6eb7c7c7] {
      background: #4378be;
      color: #ffffff;
      margin-left: 12px;
}
.cus-popup .time-ctn[data-v-6eb7c7c7] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0.4rem;
    border-top: 1px solid #f7f8fc;
}
.cus-popup .time-ctn .time-item[data-v-6eb7c7c7] {
      width: 4.24rem;
      background: #fff;
      border: 1px solid #e5e5e5;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px;
      font-weight: 400;
      color: #999999;
      padding: 8px 0;
      border-radius: 4px;
      margin-bottom: 10px;
}

@charset "UTF-8";
.account-list-ctn[data-v-2bf0a5b0] {
  background: #f7f8fc;
}
.filter-ctn[data-v-2bf0a5b0] {
  background-color: #fff;
  border-radius: 10px 10px 0px 0px;
  margin-top: -10px;
  border: 1px solid #fff;
}
.main-ctn[data-v-2bf0a5b0] {
  height: calc(100vh - 120px);
  overflow: auto;
  padding: 14px 10px 0;
}
/* 搜索框 */
.van-search[data-v-2bf0a5b0] {
  height: 70px;
  width: 100%;
  padding: 10px 12px 20px;
}
.van-search .van-search__action[data-v-2bf0a5b0] {
    color: #ffffff;
}
.van-search .van-search__content[data-v-2bf0a5b0] {
    height: 0.93rem;
}
.van-search .van-search__content .van-cell[data-v-2bf0a5b0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.van-search .van-search__content .van-cell[data-v-2bf0a5b0] .van-field__value {
      font-weight: 400;
}
.van-search .van-search__content .van-cell[data-v-2bf0a5b0] .van-field__left-icon {
      width: 0.4rem;
      height: 0.4rem;
      margin: 0.08rem 0.25rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.van-search .van-search__content .van-cell > .van-field__left-icon img[data-v-2bf0a5b0] {
      width: 100%;
      height: 100%;
}
.van-search .van-search__content .van-cell > .van-cell__value[data-v-2bf0a5b0] {
      margin-left: 0.4rem;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2bf0a5b0]::-webkit-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2bf0a5b0]::-moz-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2bf0a5b0]::-ms-input-placeholder {
        color: #4378be !important;
        opacity: 0.3;
}
.van-search .van-search__content .van-cell > .van-cell__value .van-field__body input[data-v-2bf0a5b0]::placeholder {
        color: #4378be !important;
        opacity: 0.3;
}

.account-detail[data-v-436399b0] {
  padding: 20px 10px;
  background: #f7f8fc;
  height: 100vh;
  overflow: hidden;
}
.header-ctn[data-v-436399b0] {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  background: #fff;
  padding: 25px 16px;
  border-radius: 5px 5px 0 0;
  border-bottom: 2px dotted #f7f8fc;
}
.header-ctn img[data-v-436399b0] {
    width: 40px;
    margin-bottom: 10px;
}
.header-ctn .header-num[data-v-436399b0] {
    font-weight: bold;
    font-size: 36px;
    color: #DA291C;
    margin-top: 12px;
}
.header-ctn .green-color[data-v-436399b0] {
    color: #60B28E;
}
.main-ctn[data-v-436399b0] {
  padding: 16px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.main-ctn .list-ctn .item-ctn[data-v-436399b0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 12px;
}
.main-ctn .list-ctn .item-ctn .item-left[data-v-436399b0] {
      width: 100px;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.main-ctn .list-ctn .item-ctn .item-right[data-v-436399b0] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      text-align: right;
      font-weight: 500;
      font-size: 12px;
      color: #333333;
}
.main-ctn .list-ctn .item-ctn .item-right .copy-btn[data-v-436399b0] {
        background: #FFFFFF;
        border-radius: 4px;
        border: 1px solid #333333;
        font-weight: 500;
        font-size: 10px;
        color: #333333;
        padding: 2px;
}
.main-ctn .btn-ctn[data-v-436399b0] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.main-ctn .btn-ctn .btn-item[data-v-436399b0] {
      font-weight: 500;
      font-size: 14px;
      color: #3975C6;
      padding: 4px 12px;
      background: #FFFFFF;
      border-radius: 5px;
      border: 1px solid #3975C6;
      margin-left: 12px;
}

.app_container[data-v-1a7197d9] {
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.top-ctn[data-v-1a7197d9] {
  padding: 10px 20px;
  background: #DA291C;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
}
.total-ctn[data-v-1a7197d9] {
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  padding: 10px;
}
.list-ctn[data-v-1a7197d9] {
  height: calc(100vh - 170px);
  overflow-y: auto;
  padding: 0 10px;
}
.full-container[data-v-1a7197d9] {
  height: calc(100vh - 80px);
}
.no-record-ctn[data-v-1a7197d9] {
  padding-top: 3.91rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.no-record-ctn img[data-v-1a7197d9] {
    width: 4.03rem;
}
.no-record-ctn .no-record-text[data-v-1a7197d9] {
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.4rem;
}
.add_btn_box[data-v-1a7197d9] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 24px 15px;
}
.add_btn_box .submit_btn[data-v-1a7197d9] {
    height: 1.04rem;
    border-radius: 1rem;
    font-size: 0.4rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    background: #3975c6;
    width: calc(100% - 30px);
}
.add_btn_box .submit_btn .van-button__text[data-v-1a7197d9] {
      color: #fff;
}

.app_item[data-v-78aaf048] {
  background: #ffffff;
  margin-bottom: 0.27rem;
  border-radius: 5px;
  padding: 15px 10px;
  margin-bottom: 7px;
}
.app_item .item-top[data-v-78aaf048] {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.app_item .item-top span[data-v-78aaf048] {
      font-weight: 600;
      font-size: 16px;
      color: #333333;
}
.app_item .item-top .right-item[data-v-78aaf048] {
      background: #24B277;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
      border-radius: 5px;
      padding: 5px 7px;
      font-weight: 500;
      font-size: 12px;
      color: #FFFFFF;
}
.app_item .item-top .right-item1[data-v-78aaf048] {
      background: #4575C7;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.app_item .item-top .region-ctn[data-v-78aaf048] {
      font-weight: 500;
      font-size: 12px;
      color: #3975C6;
      border-radius: 3px;
      border: 1px solid #3975C6;
      padding: 2px 5px;
      margin-right: 4px;
}
.app_item .item-ctns .row-item[data-v-78aaf048] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    margin: 8px 0 8px;
}
.app_item .item-ctns .row-item .item-right[data-v-78aaf048] {
      color: #333333;
}
.app_item .item-ctns .row-item .item-right .edit-btn[data-v-78aaf048] {
        color: #3975c6;
        margin-right: 10px;
}
.app_item .item-bottom[data-v-78aaf048] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0 15px;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
}
.app_item .item-btn-ctn[data-v-78aaf048] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.app_item .item-btn-ctn .btn-item[data-v-78aaf048] {
      background: #FFFFFF;
      border-radius: 5px;
      border: 1px solid #3975C6;
      padding: 5px 10px;
      font-weight: 500;
      font-size: 12px;
      color: #3975C6;
}
.app_item .item-btn-ctn .btn-last[data-v-78aaf048] {
      margin-left: 8px;
      background: #3975C6;
      border: 1px solid #3975C6;
      color: #FFFFFF;
}
.app_item .item-btn-ctn .btn-red[data-v-78aaf048] {
      background: #DA291C;
      color: #fff;
      border: none;
}
.app_item .item-btn-ctn .btn-green[data-v-78aaf048] {
      background: #60B28E;
      color: #fff;
      border: none;
}
.app_item .item-btn-ctn .mr-item[data-v-78aaf048] {
      margin-right: 8px;
}
.app_item .item-btn-ctn .btn-orange[data-v-78aaf048] {
      background: #F5AB32;
      color: #fff;
      border: none;
      margin-right: 8px;
}
.dialog-ctn .items-ctn[data-v-78aaf048] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
.dialog-ctn .items-ctn .item-ctn[data-v-78aaf048] {
    background: #EEEEEE;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    padding: 6px 30px;
    margin-right: 12px;
}
.dialog-ctn .items-ctn > .item-ctn[data-v-78aaf048]:last-of-type {
    margin-right: 0;
}
.dialog-ctn .items-ctn .selected-item[data-v-78aaf048] {
    background: rgba(67, 120, 190, 0.2);
    color: #4378BE;
}

.text-ctn[data-v-43b09fbd] {
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-align: center;
  padding: 10px 0;
}
.pay-page[data-v-43b09fbd] {
  background: #4575C7;
  height: calc(100vh);
  position: relative;
}
.pay-ctn[data-v-43b09fbd] {
  position: relative;
  height: calc(100vh - 50px);
  min-height: 680px;
  overflow: auto;
  background: #4575C7;
}
.pay-ctn .header-ctn img[data-v-43b09fbd] {
    width: 100%;
}
.pay-ctn .main-ctn[data-v-43b09fbd] {
    margin: 15px;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 30px;
    color: #000000;
}
.pay-ctn .main-ctn .logo-img[data-v-43b09fbd] {
      width: 135px;
}
.pay-ctn .main-ctn .code-img[data-v-43b09fbd] {
      width: 213px;
      height: 213px;
      margin: 10px 0;
}
.pay-ctn .main-ctn .num-ctn[data-v-43b09fbd] {
      margin-top: -12px;
      font-size: 37px;
}
.pay-ctn .main-ctn .bottom-text[data-v-43b09fbd] {
      font-weight: 800;
      font-size: 15px;
      color: #333333;
}
.pay-ctn .sub-text-ctn[data-v-43b09fbd] {
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}
.pay-ctn .logo-ctn[data-v-43b09fbd] {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}
.pay-ctn .logo-ctn img[data-v-43b09fbd] {
      margin-right: 4px;
      width: 18px;
}
.code-pay-img[data-v-43b09fbd] {
  width: 100%;
}
.bottom-ctn[data-v-43b09fbd] {
  padding: 12px 15px 24px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-ctn .btn-item[data-v-43b09fbd] {
    background: rgba(67, 120, 190, 0.2);
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #4378BE;
    padding: 12px 0;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.bottom-ctn .btn-last[data-v-43b09fbd] {
    background: #4378BE;
    color: #FFFFFF;
    margin-left: 15px;
}

.collection-container[data-v-24164516] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-24164516] {
    position: relative;
}
.collection-container .cell-title-required[data-v-24164516]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .cus-ctn .total-ctn[data-v-24164516] {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    margin: 14px 16px;
    text-align: right;
}
.collection-container .cus-ctn .total-ctn span[data-v-24164516] {
      font-size: 14px;
}
.collection-container .sub-btn-box[data-v-24164516] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .type-ctn[data-v-24164516] {
    padding: 10px 16px;
}
.collection-container .type-ctn .title-ctn[data-v-24164516] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      margin-bottom: 16px;
}
.collection-container .type-ctn .items-ctn[data-v-24164516] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collection-container .type-ctn .items-ctn .item-ctn[data-v-24164516] {
        background: #EEEEEE;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        padding: 6px 16px;
        margin-right: 8px;
}
.collection-container .type-ctn .items-ctn .selected-item[data-v-24164516] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.cus-dialog-ctn[data-v-24164516] {
  padding: 18px;
}
.cus-dialog-ctn .title-ctn[data-v-24164516] {
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.cus-dialog-ctn .cus-title[data-v-24164516] {
    text-align: left;
}
.cus-dialog-ctn .main-ctn[data-v-24164516] {
    max-height: 500px;
    overflow: auto;
}
.cus-dialog-ctn .main-ctn[data-v-24164516]::-webkit-scrollbar {
      width: 0;
      height: 0;
}
.cus-dialog-ctn .main-ctn .item-row .row-title[data-v-24164516] {
      font-weight: 800;
      font-size: 15px;
      color: #333333;
      margin-bottom: 12px;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row[data-v-24164516] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row > .cus-select-ctn[data-v-24164516]:nth-child(3n+3) {
        margin-right: 0 !important;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .cus-select-ctn[data-v-24164516] {
        width: 30%;
        background: #F7F7F7;
        border-radius: 18px;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
        padding: 10px 0;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 4%;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .selected-item[data-v-24164516] {
        background: #D1DEF1;
        color: #4378BE;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .disable-item[data-v-24164516] {
        background: #E9E9E9;
        color: #999999;
}
.cus-dialog-ctn .bottom-ctn[data-v-24164516] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0 8px;
}
.cus-dialog-ctn .bottom-ctn .bottom-btn[data-v-24164516] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: rgba(67, 120, 190, 0.2);
      border-radius: 20px;
      font-weight: 400;
      font-size: 15px;
      color: #4378BE;
      padding: 10px;
      text-align: center;
}
.cus-dialog-ctn .bottom-ctn .last-btn[data-v-24164516] {
      background: #4378BE;
      color: #FFFFFF;
      margin-left: 15px;
}
.cus-title-ctn[data-v-24164516] {
  font-weight: 500;
  font-size: 15px;
  color: #333333;
  margin: 16px;
}
[data-v-24164516] .van-cell,[data-v-24164516] .van-field__body {
  font-weight: 400 !important;
}
[data-v-24164516] .van-cell {
  font-size: 0.38rem;
}
[data-v-24164516] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-24164516] .van-cell__value {
  color: #666;
}
[data-v-24164516] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-24164516] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-24164516] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-24164516] .van-cell--required::before {
  display: none;
}
[data-v-24164516] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-24164516] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-24164516] .van-field__label {
  width: 3rem;
}

.select-ctn[data-v-9afce834] {
  padding: 15px;
}
.select-ctn .select-item[data-v-9afce834] {
    background: #EEEEEE;
    border-radius: 5px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.select-ctn .select-item img[data-v-9afce834] {
      width: 18px;
      height: 18px;
}
.select-ctn .selected-item[data-v-9afce834] {
    color: #3975C6;
    background: #D9E4F2;
    border: 1px solid #4575C7;
}
.opportunity_list_box[data-v-9afce834] {
  width: 8.74rem;
  min-height: 7.2rem;
  background: #F7F8FC;
  border-radius: 0.13rem 0.13rem 0.13rem 0.13rem;
  overflow: hidden;
}
.opportunity_list_box h3[data-v-9afce834] {
    font-size: 0.45rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0.6rem 0 0.42rem 0;
}
.opportunity_list_box .opportunity_search-icon[data-v-9afce834] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding-left: .3rem;
}
.opportunity_list_box .opportunity_search-icon .search-left-icon[data-v-9afce834] {
      width: .38rem;
}
.opportunity_list_box .opportunity_list_box_list[data-v-9afce834] {
    height: 10.05rem;
    overflow-y: auto;
}
.opportunity_list_box .opportunity_list_box_list_none[data-v-9afce834] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 2.92rem;
    text-align: center;
    margin-bottom: 0.38rem;
}
.opportunity_list_box .btn_group[data-v-9afce834] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}
.opportunity_list_box .btn_group > *[data-v-9afce834] {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
}
.opportunity_list_box .btn_group[data-v-9afce834]::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      background: #ebedf0;
      height: 1px;
      -webkit-transform: scaleY(0.5);
              transform: scaleY(0.5);
}
.opportunity_list_box .btn_group .btn_group-divider[data-v-9afce834] {
      width: 1px;
      background: #ebedf0;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-transform: scaleX(0.5);
              transform: scaleX(0.5);
}
.opportunity_list_box .btn_group .btn_group-submit[data-v-9afce834] {
      color: #4378BE;
}
.cell-title-required[data-v-9afce834] {
  position: relative;
}
.cell-title-required[data-v-9afce834]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: '*';
}
[data-v-9afce834] .van-field__error-message {
  text-align: right;
}
[data-v-9afce834] .van-popup {
  background: transparent;
}
[data-v-9afce834] .van-popup--center.van-popup--round {
  border-radius: .18rem;
}
[data-v-9afce834] .van-search {
  background: #F7F8FC;
  padding: 0 .41rem .38rem;
}
[data-v-9afce834] .van-search .van-search__content {
    background: #fff;
}
[data-v-9afce834] .van-search .van-search__content .van-cell {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
[data-v-9afce834] .van-search .van-search__content .van-cell .van-icon-search {
        color: #6691CA;
}
[data-v-9afce834] .van-button--default {
  border-color: transparent;
}

.cell-title-required[data-v-70721126] {
  position: relative;
}
.cell-title-required[data-v-70721126]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: "*";
}

.collection-container[data-v-854bc1fa] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-854bc1fa] {
    position: relative;
}
.collection-container .cell-title-required[data-v-854bc1fa]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .cus-ctn[data-v-854bc1fa] {
    padding: 10px 16px;
}
.collection-container .cus-ctn .title-ctn[data-v-854bc1fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 14px;
      color: #333333;
}
.collection-container .cus-ctn .title-ctn .right-ctn[data-v-854bc1fa] {
        font-weight: 500;
        font-size: 14px;
        color: #4378BE;
}
.collection-container .cus-ctn .title-ctn img[data-v-854bc1fa] {
        width: 11px;
}
.collection-container .cus-ctn .cus-form-list[data-v-854bc1fa] {
      margin-top: 10px;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn[data-v-854bc1fa] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        background: #EEF3FC;
        border-radius: 4px;
        padding: 12px 0;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-item[data-v-854bc1fa] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-last[data-v-854bc1fa] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row[data-v-854bc1fa] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-item[data-v-854bc1fa] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last[data-v-854bc1fa] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding-right: 8px;
          position: relative;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-854bc1fa] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn span[data-v-854bc1fa] {
              margin-right: 5px;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-854bc1fa] .van-cell {
              width: 100px !important;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last img[data-v-854bc1fa] {
            width: 14px;
            height: 14px;
            position: absolute;
            right: 10px;
}
.collection-container .cus-ctn .cus-form-list .van-cell[data-v-854bc1fa] {
        padding: 6px 16px;
        border-radius: 4px;
        border: 1px solid #EEEEEE;
        width: 80px;
}
.collection-container .cus-ctn .cus-form-list[data-v-854bc1fa] .van-field__control {
        text-align: center;
}
.collection-container .sub-btn-box[data-v-854bc1fa] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .type-ctn[data-v-854bc1fa] {
    padding: 10px 16px;
}
.collection-container .type-ctn .title-ctn[data-v-854bc1fa] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      margin-bottom: 16px;
}
.collection-container .type-ctn .items-ctn[data-v-854bc1fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collection-container .type-ctn .items-ctn .item-ctn[data-v-854bc1fa] {
        background: #EEEEEE;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        padding: 6px 16px;
        margin-right: 8px;
}
.collection-container .type-ctn .items-ctn .selected-item[data-v-854bc1fa] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.cus-dialog-ctn[data-v-854bc1fa] {
  padding: 18px;
}
.cus-dialog-ctn .title-ctn[data-v-854bc1fa] {
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.cus-dialog-ctn .cus-title[data-v-854bc1fa] {
    text-align: left;
}
.cus-dialog-ctn .main-ctn[data-v-854bc1fa] {
    max-height: 500px;
    overflow: auto;
}
.cus-dialog-ctn .main-ctn[data-v-854bc1fa]::-webkit-scrollbar {
      width: 0;
      height: 0;
}
.cus-dialog-ctn .main-ctn .item-row .row-title[data-v-854bc1fa] {
      font-weight: 800;
      font-size: 15px;
      color: #333333;
      margin-bottom: 12px;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row[data-v-854bc1fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row > .cus-select-ctn[data-v-854bc1fa]:nth-child(3n+3) {
        margin-right: 0 !important;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .cus-select-ctn[data-v-854bc1fa] {
        width: 30%;
        background: #F7F7F7;
        border-radius: 18px;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
        padding: 10px 0;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 4%;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .selected-item[data-v-854bc1fa] {
        background: #D1DEF1;
        color: #4378BE;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .disable-item[data-v-854bc1fa] {
        background: #E9E9E9;
        color: #999999;
}
.cus-dialog-ctn .bottom-ctn[data-v-854bc1fa] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0 8px;
}
.cus-dialog-ctn .bottom-ctn .bottom-btn[data-v-854bc1fa] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: rgba(67, 120, 190, 0.2);
      border-radius: 20px;
      font-weight: 400;
      font-size: 15px;
      color: #4378BE;
      padding: 10px;
      text-align: center;
}
.cus-dialog-ctn .bottom-ctn .last-btn[data-v-854bc1fa] {
      background: #4378BE;
      color: #FFFFFF;
      margin-left: 15px;
}
[data-v-854bc1fa] .van-cell,[data-v-854bc1fa] .van-field__body {
  font-weight: 400 !important;
}
[data-v-854bc1fa] .van-cell {
  font-size: 0.38rem;
}
[data-v-854bc1fa] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-854bc1fa] .van-cell__value {
  color: #666;
}
[data-v-854bc1fa] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-854bc1fa] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-854bc1fa] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-854bc1fa] .van-cell--required::before {
  display: none;
}
[data-v-854bc1fa] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-854bc1fa] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-854bc1fa] .van-field__label {
  width: 3rem;
}

.select-ctn[data-v-42a0f2ac] {
  padding: 15px;
}
.select-ctn .select-item[data-v-42a0f2ac] {
    background: #eeeeee;
    border-radius: 5px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.select-ctn .select-item img[data-v-42a0f2ac] {
      width: 18px;
      height: 18px;
}
.select-ctn .selected-item[data-v-42a0f2ac] {
    color: #3975c6;
    background: #d9e4f2;
    border: 1px solid #4575c7;
}
.opportunity_list_box[data-v-42a0f2ac] {
  width: 8.74rem;
  min-height: 7.2rem;
  background: #f7f8fc;
  border-radius: 0.13rem 0.13rem 0.13rem 0.13rem;
  overflow: hidden;
}
.opportunity_list_box h3[data-v-42a0f2ac] {
    font-size: 0.45rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0.6rem 0 0.42rem 0;
}
.opportunity_list_box .opportunity_search-icon[data-v-42a0f2ac] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding-left: 0.3rem;
}
.opportunity_list_box .opportunity_search-icon .search-left-icon[data-v-42a0f2ac] {
      width: 0.38rem;
}
.opportunity_list_box .opportunity_list_box_list[data-v-42a0f2ac] {
    height: 10.05rem;
    overflow-y: auto;
}
.opportunity_list_box .opportunity_list_box_list_none[data-v-42a0f2ac] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 2.92rem;
    text-align: center;
    margin-bottom: 0.38rem;
}
.opportunity_list_box .btn_group[data-v-42a0f2ac] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}
.opportunity_list_box .btn_group > *[data-v-42a0f2ac] {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
}
.opportunity_list_box .btn_group[data-v-42a0f2ac]::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      background: #ebedf0;
      height: 1px;
      -webkit-transform: scaleY(0.5);
              transform: scaleY(0.5);
}
.opportunity_list_box .btn_group .btn_group-divider[data-v-42a0f2ac] {
      width: 1px;
      background: #ebedf0;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-transform: scaleX(0.5);
              transform: scaleX(0.5);
}
.opportunity_list_box .btn_group .btn_group-submit[data-v-42a0f2ac] {
      color: #4378be;
}
.cell-title-required[data-v-42a0f2ac] {
  position: relative;
}
.cell-title-required[data-v-42a0f2ac]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: '*';
}
[data-v-42a0f2ac] .van-field__error-message {
  text-align: right;
}
[data-v-42a0f2ac] .van-popup {
  background: transparent;
}
[data-v-42a0f2ac] .van-popup--center.van-popup--round {
  border-radius: 0.18rem;
}
[data-v-42a0f2ac] .van-search {
  background: #f7f8fc;
  padding: 0 0.41rem 0.38rem;
}
[data-v-42a0f2ac] .van-search .van-search__content {
    background: #fff;
}
[data-v-42a0f2ac] .van-search .van-search__content .van-cell {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
}
[data-v-42a0f2ac] .van-search .van-search__content .van-cell .van-icon-search {
        color: #6691ca;
}
[data-v-42a0f2ac] .van-button--default {
  border-color: transparent;
}

.collection-container[data-v-56840eee] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-56840eee] {
    position: relative;
}
.collection-container .cell-title-required[data-v-56840eee]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .sub-btn-box[data-v-56840eee] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .type-ctn[data-v-56840eee] {
    padding: 10px 16px;
}
.collection-container .type-ctn .title-ctn[data-v-56840eee] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      margin-bottom: 16px;
}
.collection-container .type-ctn .items-ctn[data-v-56840eee] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collection-container .type-ctn .items-ctn .item-ctn[data-v-56840eee] {
        background: #EEEEEE;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        padding: 6px 16px;
        margin-right: 8px;
}
.collection-container .type-ctn .items-ctn .selected-item[data-v-56840eee] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.collection-container .number-ctn .number-title[data-v-56840eee] {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
}
[data-v-56840eee] .van-cell,[data-v-56840eee] .van-field__body {
  font-weight: 400 !important;
}
[data-v-56840eee] .van-cell {
  font-size: 0.38rem;
}
[data-v-56840eee] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-56840eee] .van-cell__value {
  color: #666;
}
[data-v-56840eee] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-56840eee] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-56840eee] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-56840eee] .van-cell--required::before {
  display: none;
}
[data-v-56840eee] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-56840eee] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-56840eee] .van-field__label {
  width: 3rem;
}

.collection-container[data-v-c7bf13da] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-c7bf13da] {
    position: relative;
}
.collection-container .cell-title-required[data-v-c7bf13da]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .cus-ctn[data-v-c7bf13da] {
    padding: 10px 16px;
}
.collection-container .cus-ctn .title-ctn[data-v-c7bf13da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 14px;
      color: #333333;
}
.collection-container .cus-ctn .title-ctn .right-ctn[data-v-c7bf13da] {
        font-weight: 500;
        font-size: 14px;
        color: #4378BE;
}
.collection-container .cus-ctn .title-ctn img[data-v-c7bf13da] {
        width: 11px;
}
.collection-container .cus-ctn .cus-form-list[data-v-c7bf13da] {
      margin-top: 10px;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn[data-v-c7bf13da] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        background: #EEF3FC;
        border-radius: 4px;
        padding: 12px 0;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-item[data-v-c7bf13da] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-last[data-v-c7bf13da] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row[data-v-c7bf13da] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-item[data-v-c7bf13da] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last[data-v-c7bf13da] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding-right: 8px;
          position: relative;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-c7bf13da] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn span[data-v-c7bf13da] {
              margin-right: 5px;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-c7bf13da] .van-cell {
              width: 100px !important;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last img[data-v-c7bf13da] {
            width: 14px;
            height: 14px;
            position: absolute;
            right: 10px;
}
.collection-container .cus-ctn .cus-form-list .van-cell[data-v-c7bf13da] {
        padding: 6px 16px;
        border-radius: 4px;
        border: 1px solid #EEEEEE;
        width: 80px;
}
.collection-container .cus-ctn .cus-form-list[data-v-c7bf13da] .van-field__control {
        text-align: center;
}
.collection-container .sub-btn-box[data-v-c7bf13da] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .type-ctn[data-v-c7bf13da] {
    padding: 10px 16px;
}
.collection-container .type-ctn .title-ctn[data-v-c7bf13da] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      margin-bottom: 16px;
}
.collection-container .type-ctn .items-ctn[data-v-c7bf13da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collection-container .type-ctn .items-ctn .item-ctn[data-v-c7bf13da] {
        background: #EEEEEE;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        padding: 6px 16px;
        margin-right: 8px;
}
.collection-container .type-ctn .items-ctn .selected-item[data-v-c7bf13da] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.cus-dialog-ctn[data-v-c7bf13da] {
  padding: 18px;
}
.cus-dialog-ctn .title-ctn[data-v-c7bf13da] {
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.cus-dialog-ctn .cus-title[data-v-c7bf13da] {
    text-align: left;
}
.cus-dialog-ctn .main-ctn[data-v-c7bf13da] {
    max-height: 500px;
    overflow: auto;
}
.cus-dialog-ctn .main-ctn[data-v-c7bf13da]::-webkit-scrollbar {
      width: 0;
      height: 0;
}
.cus-dialog-ctn .main-ctn .item-row .row-title[data-v-c7bf13da] {
      font-weight: 800;
      font-size: 15px;
      color: #333333;
      margin-bottom: 12px;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row[data-v-c7bf13da] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row > .cus-select-ctn[data-v-c7bf13da]:nth-child(3n+3) {
        margin-right: 0 !important;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .cus-select-ctn[data-v-c7bf13da] {
        width: 30%;
        background: #F7F7F7;
        border-radius: 18px;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
        padding: 10px 0;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 4%;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .selected-item[data-v-c7bf13da] {
        background: #D1DEF1;
        color: #4378BE;
}
.cus-dialog-ctn .main-ctn .item-row .cus-row .disable-item[data-v-c7bf13da] {
        background: #E9E9E9;
        color: #999999;
}
.cus-dialog-ctn .bottom-ctn[data-v-c7bf13da] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0 8px;
}
.cus-dialog-ctn .bottom-ctn .bottom-btn[data-v-c7bf13da] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: rgba(67, 120, 190, 0.2);
      border-radius: 20px;
      font-weight: 400;
      font-size: 15px;
      color: #4378BE;
      padding: 10px;
      text-align: center;
}
.cus-dialog-ctn .bottom-ctn .last-btn[data-v-c7bf13da] {
      background: #4378BE;
      color: #FFFFFF;
      margin-left: 15px;
}
[data-v-c7bf13da] .van-cell,[data-v-c7bf13da] .van-field__body {
  font-weight: 400 !important;
}
[data-v-c7bf13da] .van-cell {
  font-size: 0.38rem;
}
[data-v-c7bf13da] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-c7bf13da] .van-cell__value {
  color: #666;
}
[data-v-c7bf13da] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-c7bf13da] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-c7bf13da] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-c7bf13da] .van-cell--required::before {
  display: none;
}
[data-v-c7bf13da] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-c7bf13da] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-c7bf13da] .van-field__label {
  width: 3rem;
}

@charset "UTF-8";
html[data-v-0cf6089c],
body[data-v-0cf6089c] {
  overflow-x: hidden;
}
.app_container[data-v-0cf6089c] {
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.list-container[data-v-0cf6089c] {
  height: calc(100vh - 272px);
  overflow-y: auto;
}
.full-container[data-v-0cf6089c] {
  height: calc(100vh - 188px);
}
.top-ctn[data-v-0cf6089c] {
  padding: 10px 20px;
  background: #DA291C;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
}
.total-ctn[data-v-0cf6089c] {
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  padding: 10px;
}
.list-filter[data-v-0cf6089c] {
  width: 100%;
  height: 1.24rem;
}
.list-filter .filter-item[data-v-0cf6089c] {
    color: #666666;
}
.list-filter .select-item[data-v-0cf6089c] {
    color: #3975C6;
}
.list-ctn[data-v-0cf6089c] {
  padding: 0 10px;
}
.list-ctn .app_item[data-v-0cf6089c] {
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 7px;
}
.list-ctn .app_item .item-top[data-v-0cf6089c] {
      font-weight: 400;
      font-size: 12px;
      color: #666666;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.list-ctn .app_item .item-top span[data-v-0cf6089c] {
        font-weight: 600;
        font-size: 16px;
        color: #333333;
}
.list-ctn .app_item .item-top .right-item[data-v-0cf6089c] {
        background: #24B277;
        -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
                box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
        border-radius: 5px;
        padding: 5px 7px;
        font-weight: 500;
        font-size: 12px;
        color: #FFFFFF;
}
.list-ctn .app_item .item-top .right-item1[data-v-0cf6089c] {
        background: #4575C7;
        -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.list-ctn .app_item .item-top .region-ctn[data-v-0cf6089c] {
        font-weight: 500;
        font-size: 12px;
        color: #3975C6;
        border-radius: 3px;
        border: 1px solid #3975C6;
        padding: 2px 5px;
        margin-right: 4px;
}
.list-ctn .app_item .item-ctns .row-item[data-v-0cf6089c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
      margin: 8px 0 8px;
}
.list-ctn .app_item .item-ctns .row-item .item-right[data-v-0cf6089c] {
        color: #333333;
}
.list-ctn .app_item .item-bottom[data-v-0cf6089c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 10px 0 15px;
      font-weight: 400;
      font-size: 12px;
      color: #999999;
}
.list-ctn .app_item .item-btn-ctn[data-v-0cf6089c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
.list-ctn .app_item .item-btn-ctn .btn-item[data-v-0cf6089c] {
        background: #FFFFFF;
        border-radius: 5px;
        border: 1px solid #3975C6;
        padding: 5px 10px;
        font-weight: 500;
        font-size: 12px;
        color: #3975C6;
}
.list-ctn .app_item .item-btn-ctn .btn-last[data-v-0cf6089c] {
        margin-left: 8px;
        background: #3975C6;
        border: 1px solid #3975C6;
        color: #FFFFFF;
}
.list-ctn .app_item .item-btn-ctn .btn-red[data-v-0cf6089c] {
        background: #DA291C;
        color: #fff;
        border: none;
}
.no-record-ctn[data-v-0cf6089c] {
  padding-top: 3.91rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.no-record-ctn img[data-v-0cf6089c] {
    width: 4.03rem;
}
.no-record-ctn .no-record-text[data-v-0cf6089c] {
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.4rem;
}
.add_btn_box[data-v-0cf6089c] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 20px 15px;
}
.add_btn_box .submit_btn[data-v-0cf6089c] {
    height: 1.04rem;
    border-radius: 1rem;
    font-size: 0.4rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    background: #3975c6;
    width: calc(100% - 30px);
}
.add_btn_box .submit_btn .van-button__text[data-v-0cf6089c] {
      color: #fff;
}
.header-ctn[data-v-0cf6089c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #3975c6;
}
.header-ctn .header-right-ctn[data-v-0cf6089c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-ctn .header-right-ctn .right-item[data-v-0cf6089c] {
      font-weight: 500;
      font-size: 12px;
      color: #FFFFFF;
      text-align: center;
      margin-right: 8px;
}
.header-ctn .header-right-ctn .right-item img[data-v-0cf6089c] {
        width: 18px;
        height: 16px;
        margin-right: 4px;
}
/* 搜索框 */
.search-box[data-v-0cf6089c] {
  background: #ffffff;
  z-index: 10;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.van-search[data-v-0cf6089c] {
  height: 1.63rem;
}
.van-search[data-v-0cf6089c] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-0cf6089c] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-0cf6089c] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-0cf6089c] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
[data-v-0cf6089c] .van-field__control {
  font-weight: 500;
}

@charset "UTF-8";
html[data-v-f660cb78],
body[data-v-f660cb78] {
  overflow-x: hidden;
}
.app_container[data-v-f660cb78] {
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  background: #f7f8fc;
}
.list-container[data-v-f660cb78] {
  height: calc(100vh - 180px);
  overflow-y: auto;
}
.full-container[data-v-f660cb78] {
  height: calc(100vh - 120px);
}
.top-ctn[data-v-f660cb78] {
  padding: 10px 20px;
  background: #DA291C;
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
}
.total-ctn[data-v-f660cb78] {
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  padding: 10px;
}
.list-ctn[data-v-f660cb78] {
  padding: 0 10px;
}
.list-ctn .app_item[data-v-f660cb78] {
    background: #ffffff;
    margin-bottom: 0.27rem;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 7px;
}
.list-ctn .app_item .item-top[data-v-f660cb78] {
      font-weight: 400;
      font-size: 12px;
      color: #666666;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.list-ctn .app_item .item-top span[data-v-f660cb78] {
        font-weight: 600;
        font-size: 16px;
        color: #333333;
}
.list-ctn .app_item .item-top .right-item[data-v-f660cb78] {
        background: #24B277;
        -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
                box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
        border-radius: 5px;
        padding: 5px 7px;
        font-weight: 500;
        font-size: 12px;
        color: #FFFFFF;
}
.list-ctn .app_item .item-top .right-item1[data-v-f660cb78] {
        background: #4575C7;
        -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
                box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.list-ctn .app_item .item-ctns .row-item[data-v-f660cb78] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
      margin: 8px 0 8px;
}
.list-ctn .app_item .item-ctns .row-item .item-right[data-v-f660cb78] {
        color: #333333;
}
.list-ctn .app_item .item-bottom[data-v-f660cb78] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 10px 0 15px;
      font-weight: 400;
      font-size: 12px;
      color: #999999;
}
.list-ctn .app_item .item-btn-ctn[data-v-f660cb78] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
.list-ctn .app_item .item-btn-ctn .btn-item[data-v-f660cb78] {
        background: #FFFFFF;
        border-radius: 5px;
        border: 1px solid #3975C6;
        padding: 5px 10px;
        font-weight: 500;
        font-size: 12px;
        color: #3975C6;
}
.list-ctn .app_item .item-btn-ctn .btn-last[data-v-f660cb78] {
        margin-left: 8px;
        background: #3975C6;
        border: 1px solid #3975C6;
        color: #FFFFFF;
}
.list-ctn .app_item .item-btn-ctn .btn-red[data-v-f660cb78] {
        background: #DA291C;
        color: #fff;
        border: none;
}
.no-record-ctn[data-v-f660cb78] {
  padding-top: 3.91rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.no-record-ctn img[data-v-f660cb78] {
    width: 4.03rem;
}
.no-record-ctn .no-record-text[data-v-f660cb78] {
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.4rem;
}
.add_btn_box[data-v-f660cb78] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
          box-shadow: 0px 0px 16px 0px rgba(217, 217, 217, 0.4);
  text-align: center;
  padding: 20px 15px;
}
.add_btn_box .submit_btn[data-v-f660cb78] {
    height: 1.04rem;
    border-radius: 1rem;
    font-size: 0.4rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    background: #3975c6;
    width: calc(100% - 30px);
}
.add_btn_box .submit_btn .van-button__text[data-v-f660cb78] {
      color: #fff;
}
.header-ctn[data-v-f660cb78] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #3975c6;
}
.header-ctn .header-right-ctn[data-v-f660cb78] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-ctn .header-right-ctn .right-item[data-v-f660cb78] {
      font-weight: 500;
      font-size: 12px;
      color: #FFFFFF;
      text-align: center;
      margin-right: 8px;
}
.header-ctn .header-right-ctn .right-item img[data-v-f660cb78] {
        width: 18px;
        height: 16px;
        margin-right: 4px;
}
/* 搜索框 */
.search-box[data-v-f660cb78] {
  background: #ffffff;
  z-index: 10;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.van-search[data-v-f660cb78] {
  height: 1.63rem;
}
.van-search[data-v-f660cb78] .van-search__content {
  height: 0.93rem;
}
.van-search[data-v-f660cb78] .van-search__content .van-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.van-search[data-v-f660cb78] .van-search__content .van-cell .van-field__left-icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0.08rem 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.van-search[data-v-f660cb78] .van-search__content .van-cell .van-field__left-icon img {
  width: 100%;
  height: 100%;
}
[data-v-f660cb78] .van-field__control {
  font-weight: 500;
}

.app_item[data-v-1c99dba3] {
  background: #ffffff;
  margin-bottom: 0.27rem;
  border-radius: 5px;
  padding: 15px 10px;
  margin-bottom: 7px;
}
.app_item .item-top[data-v-1c99dba3] {
    font-weight: 400;
    font-size: 12px;
    color: #666666;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.app_item .item-top span[data-v-1c99dba3] {
      font-weight: 600;
      font-size: 16px;
      color: #333333;
}
.app_item .item-top .right-item[data-v-1c99dba3] {
      background: #24B277;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(36, 178, 119, 0.31);
      border-radius: 5px;
      padding: 5px 7px;
      font-weight: 500;
      font-size: 12px;
      color: #FFFFFF;
}
.app_item .item-top .right-item1[data-v-1c99dba3] {
      background: #4575C7;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(57, 117, 198, 0.31);
}
.app_item .item-top .right-item2[data-v-1c99dba3] {
      background: #F5AB32;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
}
.app_item .item-top .right-item3[data-v-1c99dba3] {
      background: #F25A73;
      -webkit-box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
              box-shadow: 0px 2px 5px 0px rgba(245, 171, 50, 0.31);
}
.app_item .item-top .region-ctn[data-v-1c99dba3] {
      font-weight: 500;
      font-size: 12px;
      color: #3975C6;
      border-radius: 3px;
      border: 1px solid #3975C6;
      padding: 2px 5px;
      margin-right: 4px;
}
.app_item .item-ctns .row-item[data-v-1c99dba3] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    margin: 8px 0 8px;
}
.app_item .item-ctns .row-item .item-right[data-v-1c99dba3] {
      color: #333333;
}
.app_item .item-ctns .row-item .item-right .edit-btn[data-v-1c99dba3] {
        color: #3975c6;
        margin-right: 10px;
}
.app_item .item-bottom[data-v-1c99dba3] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0 15px;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
}
.app_item .item-btn-ctn[data-v-1c99dba3] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.app_item .item-btn-ctn .btn-item[data-v-1c99dba3] {
      background: #FFFFFF;
      border-radius: 5px;
      border: 1px solid #3975C6;
      padding: 5px 10px;
      font-weight: 500;
      font-size: 12px;
      color: #3975C6;
}
.app_item .item-btn-ctn .btn-last[data-v-1c99dba3] {
      margin-left: 8px;
      background: #3975C6;
      border: 1px solid #3975C6;
      color: #FFFFFF;
}
.app_item .item-btn-ctn .btn-red[data-v-1c99dba3] {
      background: #f25a73;
      color: #fff;
      border: none;
}
.app_item .item-btn-ctn .btn-green[data-v-1c99dba3] {
      background: #60B28E;
      color: #fff;
      border: none;
}
.app_item .item-btn-ctn .btn-orange[data-v-1c99dba3] {
      background: #F5AB32;
      color: #fff;
      border: none;
      margin-right: 8px;
}
.dialog-ctn .items-ctn[data-v-1c99dba3] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
.dialog-ctn .items-ctn .item-ctn[data-v-1c99dba3] {
    background: #EEEEEE;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    color: #666666;
    padding: 6px 30px;
    margin-right: 12px;
}
.dialog-ctn .items-ctn > .item-ctn[data-v-1c99dba3]:last-of-type {
    margin-right: 0;
}
.dialog-ctn .items-ctn .selected-item[data-v-1c99dba3] {
    background: rgba(67, 120, 190, 0.2);
    color: #4378BE;
}
.refund-dialog-ctn[data-v-1c99dba3] {
  padding: 0 13px 1px;
  background: #F7F8FC;
}
.refund-dialog-ctn .dialog-title-ctn[data-v-1c99dba3] {
    font-weight: bold;
    font-size: 17px;
    color: #333333;
    padding: 16px 0;
    text-align: center;
}
.refund-dialog-ctn .sub-title-ctn[data-v-1c99dba3] {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}
.refund-dialog-ctn .info-ctn[data-v-1c99dba3] {
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #3975C6;
    padding: 12px 11px 7px;
    margin-bottom: 10px;
}
.refund-dialog-ctn .info-ctn .info-title[data-v-1c99dba3] {
      font-weight: bold;
      font-size: 14px;
      color: #333333;
      margin-bottom: 10px;
}
.refund-dialog-ctn .info-ctn .info-row[data-v-1c99dba3] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 12px;
      margin-bottom: 8px;
}
.refund-dialog-ctn .info-ctn .info-row .row-key[data-v-1c99dba3] {
        color: #666666;
}
.refund-dialog-ctn .info-ctn .info-row .row-value[data-v-1c99dba3] {
        color: #333333;
}
.refund-dialog-ctn .text-ctn[data-v-1c99dba3] {
    padding: 10px;
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 10px;
}
.refund-dialog-ctn .text-ctn .title-ctn[data-v-1c99dba3] {
      font-weight: bold;
      font-size: 14px;
      color: #333333;
      margin-bottom: 8px;
}
.refund-dialog-ctn .text-ctn .title-ctn img[data-v-1c99dba3] {
        width: 16px;
        height: 10px;
        margin-right: 6px;
}
.refund-dialog-ctn .text-ctn .describe-row[data-v-1c99dba3] {
      font-weight: 400;
      font-size: 12px;
      color: #333333;
      line-height: 1.5;
}
.refund-dialog-ctn .text-ctn .describe-row span[data-v-1c99dba3] {
        color: #f5ab32;
}
.bottom-btn[data-v-1c99dba3] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #DEDFE2;
}
.bottom-btn .bottom-item[data-v-1c99dba3] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    padding: 12px 0;
}
.bottom-btn .right-btn[data-v-1c99dba3] {
    font-weight: 500;
    font-size: 15px;
    color: #4378BE;
    border-left: 1px solid #DEDFE2;
}
.fail-ctn[data-v-1c99dba3] {
  text-align: center;
  padding: 25px;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}
.fail-ctn img[data-v-1c99dba3] {
    width: 47px;
    height: 47px;
}
.fail-ctn .fail-text[data-v-1c99dba3] {
    font-weight: bold;
    font-size: 17px;
    color: #DA291C;
    margin: 20px 0;
}
.fail-ctn .btn-item[data-v-1c99dba3] {
    width: 100%;
    padding: 10px 0;
    background: #DA291C;
    border-radius: 8px;
    font-weight: 500;
    font-size: 17px;
    color: #FFFFFF;
    margin-top: 25px;
}

.pay-page[data-v-062aaa8f] {
  background: -webkit-gradient(linear, left bottom, left top, from(#41A6E6), to(#4575C7));
  background: linear-gradient(0deg, #41A6E6 0%, #4575C7 100%);
  height: 100vh;
  position: relative;
}
.pay-ctn[data-v-062aaa8f] {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: auto;
  background: -webkit-gradient(linear, left bottom, left top, from(#41A6E6), to(#4575C7));
  background: linear-gradient(0deg, #41A6E6 0%, #4575C7 100%);
}
.pay-ctn .header-ctn[data-v-062aaa8f] {
    padding-top: 23px;
}
.pay-ctn .header-ctn img[data-v-062aaa8f] {
      width: calc(100% - 30px);
      margin: 0 15px;
}
.pay-ctn .main-ctn[data-v-062aaa8f] {
    margin: 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#E0F7FF), to(#FFFFFF));
    background: linear-gradient(180deg, #E0F7FF 0%, #FFFFFF 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    font-weight: 800;
    font-size: 30px;
    color: #000000;
}
.pay-ctn .main-ctn .num-ctn[data-v-062aaa8f] {
      margin-top: -12px;
      font-size: 32px;
}
.pay-ctn .main-ctn .bottom-text[data-v-062aaa8f] {
      font-weight: 800;
      font-size: 15px;
      color: #333333;
}
.pay-ctn .main-ctn .items-row[data-v-062aaa8f] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 800;
      font-size: 12px;
      color: #FFFFFF;
      margin-top: 33px;
}
.pay-ctn .main-ctn .items-row .item-ctn[data-v-062aaa8f] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        background: #5BA4FF;
        border-radius: 7px;
        padding: 22px 0 15px;
        position: relative;
}
.pay-ctn .main-ctn .items-row .item-ctn img[data-v-062aaa8f] {
          width: 128px;
          height: 128px;
}
.pay-ctn .main-ctn .items-row .item-ctn .item-title[data-v-062aaa8f] {
          font-weight: 800;
          font-size: 15px;
          color: #FFFFFF;
          margin-bottom: 12px;
}
.pay-ctn .main-ctn .items-row .item-ctn .sub-title[data-v-062aaa8f] {
          margin-top: 10px;
}
.pay-ctn .main-ctn .items-row .item-ctn .tips-ctn[data-v-062aaa8f] {
          position: absolute;
          top: -10px;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          padding: 1px;
          background: #fff;
          border-radius: 9px;
}
.pay-ctn .main-ctn .items-row .item-ctn .tips-ctn .tip-inner[data-v-062aaa8f] {
            font-weight: 800;
            font-size: 10px;
            color: #FFFFFF;
            background: #DF2020;
            border-radius: 9px;
            width: 103px;
            text-align: center;
            padding: 3px 0;
}
.pay-ctn .main-ctn .items-row .item1[data-v-062aaa8f] {
        margin-right: 22px;
}
.pay-ctn .sub-text-ctn[data-v-062aaa8f] {
    margin-top: 16px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
}
.code-pay-img[data-v-062aaa8f] {
  width: 100%;
}
.bottom-ctn[data-v-062aaa8f] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 38px;
}

.collection-container[data-v-23f5b1c1] {
  padding: 0.4rem 0 2.5rem 0;
  width: 100%;
  background: url(https://oss.guango.com.cn/common/qw/images/common/paybg.png) #f7f8fc no-repeat;
}
.collection-container .cell-title-required[data-v-23f5b1c1] {
    position: relative;
}
.collection-container .cell-title-required[data-v-23f5b1c1]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: "*";
}
.collection-container .cus-ctn[data-v-23f5b1c1] {
    padding: 10px 16px;
}
.collection-container .cus-ctn .title-ctn[data-v-23f5b1c1] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: 500;
      font-size: 14px;
      color: #333333;
}
.collection-container .cus-ctn .title-ctn .right-ctn[data-v-23f5b1c1] {
        font-weight: 500;
        font-size: 14px;
        color: #4378BE;
}
.collection-container .cus-ctn .title-ctn img[data-v-23f5b1c1] {
        width: 11px;
}
.collection-container .cus-ctn .cus-form-list[data-v-23f5b1c1] {
      margin-top: 10px;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn[data-v-23f5b1c1] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        background: #EEF3FC;
        border-radius: 4px;
        padding: 12px 0;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-item[data-v-23f5b1c1] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-title-ctn .title-last[data-v-23f5b1c1] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row[data-v-23f5b1c1] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-item[data-v-23f5b1c1] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last[data-v-23f5b1c1] {
          -webkit-box-flex: 2;
              -ms-flex: 2;
                  flex: 2;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding-right: 8px;
          position: relative;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-23f5b1c1] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn span[data-v-23f5b1c1] {
              margin-right: 5px;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last .money-ctn[data-v-23f5b1c1] .van-cell {
              width: 100px !important;
}
.collection-container .cus-ctn .cus-form-list .list-num-ctn .num-row .num-last img[data-v-23f5b1c1] {
            width: 14px;
            height: 14px;
            position: absolute;
            right: 10px;
}
.collection-container .cus-ctn .cus-form-list .van-cell[data-v-23f5b1c1] {
        padding: 6px 16px;
        border-radius: 4px;
        border: 1px solid #EEEEEE;
        width: 80px;
}
.collection-container .cus-ctn .cus-form-list[data-v-23f5b1c1] .van-field__control {
        text-align: center;
}
.collection-container .sub-btn-box[data-v-23f5b1c1] {
    position: fixed;
    bottom: 0;
    height: 2.21rem;
    background: #fff;
    width: calc(100% - 0.8rem);
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0.4rem;
    -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
            box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
}
.collection-container .type-ctn[data-v-23f5b1c1] {
    padding: 10px 16px;
}
.collection-container .type-ctn .title-ctn[data-v-23f5b1c1] {
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      margin-bottom: 16px;
}
.collection-container .type-ctn .items-ctn[data-v-23f5b1c1] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.collection-container .type-ctn .items-ctn .item-ctn[data-v-23f5b1c1] {
        background: #EEEEEE;
        border-radius: 4px;
        font-weight: 500;
        font-size: 12px;
        color: #666666;
        padding: 6px 16px;
        margin-right: 8px;
}
.collection-container .type-ctn .items-ctn .selected-item[data-v-23f5b1c1] {
        background: rgba(67, 120, 190, 0.2);
        color: #4378BE;
}
.cus-dialog-ctn[data-v-23f5b1c1] {
  padding: 18px;
}
.cus-dialog-ctn .title-ctn[data-v-23f5b1c1] {
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.cus-dialog-ctn .cus-title[data-v-23f5b1c1] {
    text-align: left;
}
.cus-dialog-ctn .main-ctn[data-v-23f5b1c1] {
    max-height: 500px;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.cus-dialog-ctn .main-ctn[data-v-23f5b1c1]::-webkit-scrollbar {
      width: 0;
      height: 0;
}
.cus-dialog-ctn .main-ctn > .cus-select-ctn[data-v-23f5b1c1]:nth-child(3n+3) {
      margin-right: 0 !important;
}
.cus-dialog-ctn .main-ctn .cus-select-ctn[data-v-23f5b1c1] {
      width: 30%;
      background: #F7F7F7;
      border-radius: 18px;
      font-weight: 500;
      font-size: 14px;
      color: #333333;
      padding: 10px 0;
      text-align: center;
      margin-bottom: 10px;
      margin-right: 4%;
}
.cus-dialog-ctn .main-ctn .selected-item[data-v-23f5b1c1] {
      background: #D1DEF1;
      color: #4378BE;
}
.cus-dialog-ctn .main-ctn .disable-item[data-v-23f5b1c1] {
      background: #E9E9E9;
      color: #999999;
}
.cus-dialog-ctn .bottom-ctn[data-v-23f5b1c1] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0 8px;
}
.cus-dialog-ctn .bottom-ctn .bottom-btn[data-v-23f5b1c1] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      background: rgba(67, 120, 190, 0.2);
      border-radius: 20px;
      font-weight: 400;
      font-size: 15px;
      color: #4378BE;
      padding: 10px;
      text-align: center;
}
.cus-dialog-ctn .bottom-ctn .last-btn[data-v-23f5b1c1] {
      background: #4378BE;
      color: #FFFFFF;
      margin-left: 15px;
}
[data-v-23f5b1c1] .van-cell,[data-v-23f5b1c1] .van-field__body {
  font-weight: 400 !important;
}
[data-v-23f5b1c1] .van-cell {
  font-size: 0.38rem;
}
[data-v-23f5b1c1] .van-cell__label {
  font-size: 0.38rem;
  color: #999;
}
[data-v-23f5b1c1] .van-cell__value {
  color: #666;
}
[data-v-23f5b1c1] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-23f5b1c1] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-23f5b1c1] .van-cell-group__title {
  color: #333333;
  font-size: 0.43rem;
  font-weight: bold;
}
[data-v-23f5b1c1] .van-cell--required::before {
  display: none;
}
[data-v-23f5b1c1] .van-cell-group--inset {
  margin-left: 0.27rem;
  margin-right: 0.27rem;
  border-radius: 0.18rem;
}
[data-v-23f5b1c1] .van-cell-group__title--inset {
  padding: 0.53rem 0.34rem 0.41rem;
}
[data-v-23f5b1c1] .van-field__label {
  width: 3rem;
}

.detail-ctn[data-v-4f611fcd] {
  min-height: 100vh;
  background: #f7f8fc;
  position: relative;
}
.detail-ctn .first-title[data-v-4f611fcd] {
    background: #3975c6;
    height: 90px;
}
.detail-ctn .first-title .first-title-wrap[data-v-4f611fcd] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l[data-v-4f611fcd] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.detail-ctn .first-title .first-title-wrap .title-l .title-avatar[data-v-4f611fcd] {
          width: 40px;
          height: 40px;
          border-radius: 20px;
          margin-right: 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l .title[data-v-4f611fcd] {
          font-size: 16px;
          font-weight: bold;
          color: #ffffff;
          line-height: 13px;
}
.detail-ctn .first-title .first-title-wrap .title-r[data-v-4f611fcd] {
        font-size: 12px;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.detail-ctn .first-title .first-title-wrap .green-color[data-v-4f611fcd] {
        color: #60B28E;
}
.detail-ctn .first-title .first-title-wrap .orange-color[data-v-4f611fcd] {
        color: #F5AB32;
}
.detail-ctn .first-title .first-title-wrap .red-color[data-v-4f611fcd] {
        color: #F25A73;
}
.detail-ctn .first-title .border-radius[data-v-4f611fcd] {
      width: 100%;
      height: 21px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.detail-ctn .main-items[data-v-4f611fcd] {
    margin: 0 10px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}
.detail-ctn .main-items .item-ctn[data-v-4f611fcd] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 5px;
      padding: 10px 0;
      margin: 0 16px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 400;
      color: #333333;
      border-bottom: 1px solid #f7f8fc;
}
.detail-ctn .main-items .item-ctn .item-key[data-v-4f611fcd] {
        color: #666;
}
.detail-ctn .main-items .item-ctn .red-color[data-v-4f611fcd] {
        color: #DA291C;
}
.detail-ctn .main-items .item-title[data-v-4f611fcd] {
      font-weight: bold;
      font-size: 16px;
      color: #333333;
      padding: 16px 16px 6px;
}
.detail-ctn .main-items .list-title-ctn[data-v-4f611fcd] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background: #EEF3FC;
      border-radius: 4px;
      padding: 12px 0;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.detail-ctn .main-items .list-title-ctn .title-item[data-v-4f611fcd] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
}
.detail-ctn .main-items .list-num-ctn[data-v-4f611fcd] {
      margin: 0 16px;
}
.detail-ctn .main-items .list-num-ctn .num-row[data-v-4f611fcd] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.detail-ctn .main-items .list-num-ctn .num-row .num-item[data-v-4f611fcd] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.detail-ctn .order-detail-ctn > .title-ctn[data-v-4f611fcd] {
    margin: 10px 0 14px 18px;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}
.detail-ctn .order-detail-ctn .order-main-item[data-v-4f611fcd] {
    padding: 15px 15px 5px;
}
.detail-container[data-v-4f611fcd] {
  height: calc(100vh - 80px);
  overflow: auto;
}
.full-height[data-v-4f611fcd] {
  height: calc(100vh);
}
.bottom-ctn[data-v-4f611fcd] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 12px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-ctn .btn-item[data-v-4f611fcd] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: rgba(67, 120, 190, 0.2);
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #4378BE;
    padding: 10px 0;
    text-align: center;
}
.bottom-ctn .last-item[data-v-4f611fcd] {
    background: #4378BE;
    color: #fff;
    margin-left: 15px;
}

.rules-ctn img[data-v-47fbe0ac] {
  width: 100%;
}

.detail-ctn[data-v-2b1bb554] {
  min-height: 100vh;
  background: #f7f8fc;
  position: relative;
}
.detail-ctn .first-title[data-v-2b1bb554] {
    background: #3975c6;
    height: 90px;
}
.detail-ctn .first-title .first-title-wrap[data-v-2b1bb554] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 15px 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l[data-v-2b1bb554] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.detail-ctn .first-title .first-title-wrap .title-l .title-avatar[data-v-2b1bb554] {
          width: 40px;
          height: 40px;
          border-radius: 20px;
          margin-right: 10px;
}
.detail-ctn .first-title .first-title-wrap .title-l .title[data-v-2b1bb554] {
          font-size: 16px;
          font-family: PingFang SC;
          font-weight: bold;
          color: #ffffff;
          line-height: 13px;
}
.detail-ctn .first-title .first-title-wrap .title-r[data-v-2b1bb554] {
        font-size: 12px;
        font-family: PingFang SC;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.detail-ctn .first-title .first-title-wrap .green-color[data-v-2b1bb554] {
        color: #60B28E;
}
.detail-ctn .first-title .border-radius[data-v-2b1bb554] {
      width: 100%;
      height: 21px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.detail-ctn .main-items[data-v-2b1bb554] {
    margin: 0 10px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}
.detail-ctn .main-items .item-ctn[data-v-2b1bb554] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 5px;
      padding: 10px 0;
      margin: 0 16px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 400;
      color: #333333;
      border-bottom: 1px solid #f7f8fc;
}
.detail-ctn .main-items .item-ctn .item-key[data-v-2b1bb554] {
        color: #666;
}
.detail-ctn .main-items .item-title[data-v-2b1bb554] {
      font-weight: bold;
      font-size: 16px;
      color: #333333;
      padding: 16px 16px 6px;
}
.detail-ctn .main-items .list-title-ctn[data-v-2b1bb554] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      background: #EEF3FC;
      border-radius: 4px;
      padding: 12px 0;
      font-weight: 500;
      font-size: 12px;
      color: #666666;
}
.detail-ctn .main-items .list-title-ctn .title-item[data-v-2b1bb554] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
}
.detail-ctn .main-items .list-num-ctn[data-v-2b1bb554] {
      margin: 0 16px;
}
.detail-ctn .main-items .list-num-ctn .num-row[data-v-2b1bb554] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 10px 0;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.detail-ctn .main-items .list-num-ctn .num-row .num-item[data-v-2b1bb554] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
}
.detail-ctn .order-detail-ctn > .title-ctn[data-v-2b1bb554] {
    margin: 10px 0 14px 18px;
    font-weight: bold;
    font-size: 16px;
    color: #333333;
}
.detail-ctn .order-detail-ctn .order-main-item[data-v-2b1bb554] {
    padding: 15px 15px 5px;
}
.detail-container[data-v-2b1bb554] {
  height: calc(100vh - 80px);
  overflow: auto;
}
.full-height[data-v-2b1bb554] {
  height: calc(100vh);
}
.bottom-ctn[data-v-2b1bb554] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 12px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-ctn .btn-item[data-v-2b1bb554] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: rgba(67, 120, 190, 0.2);
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #4378BE;
    padding: 10px 0;
    text-align: center;
}
.bottom-ctn .last-item[data-v-2b1bb554] {
    background: #4378BE;
    color: #fff;
    margin-left: 15px;
}

.radius[data-v-a68d46e4], .cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-a68d46e4], .cotract-index .contract-wrap .contract-content .content-content .cell-group .van-cell[data-v-a68d46e4] {
  border-radius: 10px;
}
.cotract-index[data-v-a68d46e4] {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cotract-index[data-v-a68d46e4]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.cotract-index .cell-title-required[data-v-a68d46e4] {
    position: relative;
}
.cotract-index .cell-title-required[data-v-a68d46e4]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.cotract-index .contract-wrap[data-v-a68d46e4] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.cotract-index .contract-wrap .contract-content[data-v-a68d46e4] {
      margin: 0 0.27rem;
      padding-bottom: 2.21rem;
}
.cotract-index .contract-wrap .contract-content .content-top[data-v-a68d46e4] {
        margin: 10px 0;
        padding: 12px 15px;
        background-color: #ffffff;
        border-radius: 10px;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-title[data-v-a68d46e4] {
          font-size: 0.38rem;
          font-weight: 400;
          color: #333333;
          display: inline-block;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner[data-v-a68d46e4] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: .65rem;
          color: #1f1f1f;
          margin-bottom: 15px;
          font-weight: 500;
          position: relative;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner .inner-input[data-v-a68d46e4] {
            display: inline-block;
            font-size: 45px;
            margin-top: 7px;
            padding-left: 5px;
            border: none;
            outline: none;
            padding: 0;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner .rmb-text[data-v-a68d46e4] {
            font-size: .38rem;
            padding: .8rem 5px 0;
}
.cotract-index .contract-wrap .contract-content .content-top .total-num[data-v-a68d46e4] {
          color: #666666;
          font-size: .38rem;
          font-weight: 400;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-a68d46e4] {
        background: #ffffff;
        margin-bottom: 15px;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group-file[data-v-a68d46e4] .van-uploader__input-wrapper {
        width: 100%;
}
.cotract-index .contract-wrap .contract-content .contract_footer[data-v-a68d46e4] {
        width: 100%;
        height: 2.21rem;
        position: fixed;
        left: 0;
        bottom: 0;
        background: #ffffff;
        -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
                box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 99;
}
.cotract-index .contract-wrap .contract-content .contract_footer .contract_footer-btn[data-v-a68d46e4] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          margin: 0 0.4rem;
}
.border-bottom-1px[data-v-a68d46e4]::after {
  position: absolute;
}
.border-top-1px[data-v-a68d46e4]::before {
  position: relative;
  top: -10px;
  border-bottom: 1px solid #3c3c43;
}
.cotract-index > .van-uploader[data-v-a68d46e4] {
  width: 100% !important;
}
.cotract-index > .van-uploader__input-wrapper[data-v-a68d46e4] {
  width: 100% !important;
}
.upload-img > .van-uploader__preview-image[data-v-a68d46e4] {
  width: 45px;
  height: 45px;
}
.upload-img > .van-uploader__upload[data-v-a68d46e4] {
  width: 45px;
  height: 45px;
}
.cotract-index > .van-uploader[data-v-a68d46e4] {
  z-index: 500;
}
[data-v-a68d46e4] .van-cell,[data-v-a68d46e4] .van-field__body {
  font-weight: 400 !important;
}
[data-v-a68d46e4] .van-cell {
  font-size: .38rem;
}
[data-v-a68d46e4] .van-cell__title {
  color: #333;
}
[data-v-a68d46e4] .van-cell__value {
  color: #666;
}
[data-v-a68d46e4] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-a68d46e4] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-a68d46e4] .van-cell__label {
  font-size: .38rem;
}
[data-v-a68d46e4] .van-cell__label .van-uploader__input {
    z-index: 98;
}
[data-v-a68d46e4] .van-cell-group__title {
  margin: 0;
  padding: .23rem .47rem .41rem 0.04rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-a68d46e4] .van-cell--required::before {
  display: none;
}
[data-v-a68d46e4] .van-field__control--right {
  color: #666;
}
[data-v-a68d46e4] .van-cell-group {
  border-radius: 10px;
}
.no-is-link[data-v-a68d46e4] .van-field__error-message {
  text-align: right !important;
  margin-right: .53rem;
}

.cell-title-required[data-v-a290c914] {
  position: relative;
}
.cell-title-required[data-v-a290c914]::after {
    position: absolute;
    right: -7px;
    color: #ee0a24;
    font-size: 14px;
    content: '*';
}

.detail-ctn[data-v-3b4e6a25] {
  min-height: 100vh;
  background: #f7f8fc;
  position: relative;
}
.detail-ctn .first-title[data-v-3b4e6a25] {
    background: #3975c6;
    height: 93px;
}
.detail-ctn .first-title .first-title-wrap[data-v-3b4e6a25] {
      padding: 30px 10px;
      font-size: 16px;
      font-weight: bold;
      color: #ffffff;
      line-height: 13px;
}
.detail-ctn .first-title .first-title-wrap .title-r[data-v-3b4e6a25] {
        font-size: 12px;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.detail-ctn .first-title .first-title-wrap .green-color[data-v-3b4e6a25] {
        color: #60B28E;
}
.detail-ctn .first-title .border-radius[data-v-3b4e6a25] {
      width: 100%;
      height: 21px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.detail-ctn .main-items[data-v-3b4e6a25] {
    margin: 0 10px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}
.detail-ctn .main-items .item-ctn[data-v-3b4e6a25] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 5px;
      padding: 10px 0;
      margin: 0 16px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 400;
      color: #333333;
      border-bottom: 1px solid #f7f8fc;
}
.detail-ctn .main-items .item-ctn .item-key[data-v-3b4e6a25] {
        color: #666;
}
.detail-ctn .main-items .item-ctn .file-key[data-v-3b4e6a25] {
        margin-bottom: 10px;
}
.detail-ctn .main-items .img-ctn[data-v-3b4e6a25] {
      display: block;
}
.detail-ctn .main-items .img-ctn .img-items[data-v-3b4e6a25] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 14px;
}
.detail-ctn .main-items .img-ctn .img-items img[data-v-3b4e6a25] {
          width: 44px;
          height: 44px;
          border-radius: 5px;
          margin-right: 12px;
          margin-bottom: 12px;
}
.detail-ctn .main-items .img-ctn .file-items[data-v-3b4e6a25] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 10px;
        background: #F7F8FC;
        border-radius: 5px;
        margin-bottom: 10px;
}
.detail-ctn .main-items .img-ctn .file-items img[data-v-3b4e6a25] {
          width: 14px;
          height: 17px;
          margin-right: 8px;
}
.detail-container[data-v-3b4e6a25] {
  height: calc(100vh - 80px);
  overflow: auto;
}
.bottom-ctn[data-v-3b4e6a25] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 12px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-ctn .btn-item[data-v-3b4e6a25] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #4575C7;
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.radius[data-v-c71993ba], .cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-c71993ba], .cotract-index .contract-wrap .contract-content .content-content .cell-group .van-cell[data-v-c71993ba] {
  border-radius: 10px;
}
.cotract-index[data-v-c71993ba] {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cotract-index[data-v-c71993ba]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.cotract-index .cell-title-required[data-v-c71993ba] {
    position: relative;
}
.cotract-index .cell-title-required[data-v-c71993ba]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.cotract-index .contract-wrap[data-v-c71993ba] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.cotract-index .contract-wrap .contract-content[data-v-c71993ba] {
      margin: 0 0.27rem;
      padding-bottom: 2.21rem;
}
.cotract-index .contract-wrap .contract-content .content-top[data-v-c71993ba] {
        margin: 10px 0;
        padding: 12px 15px;
        background-color: #ffffff;
        border-radius: 10px;
        font-weight: 500;
        font-size: 14px;
        color: #333333;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-title[data-v-c71993ba] {
          font-size: 0.38rem;
          font-weight: 400;
          color: #333333;
          display: inline-block;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner[data-v-c71993ba] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: .65rem;
          color: #1f1f1f;
          margin-bottom: 15px;
          font-weight: 500;
          position: relative;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner .inner-input[data-v-c71993ba] {
            display: inline-block;
            font-size: 45px;
            margin-top: 7px;
            padding-left: 5px;
            border: none;
            outline: none;
            padding: 0;
}
.cotract-index .contract-wrap .contract-content .content-top .top-inner-inner .rmb-text[data-v-c71993ba] {
            font-size: .38rem;
            padding: .8rem 5px 0;
}
.cotract-index .contract-wrap .contract-content .content-top .total-num[data-v-c71993ba] {
          color: #666666;
          font-size: .38rem;
          font-weight: 400;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group[data-v-c71993ba] {
        background: #ffffff;
        margin-bottom: 15px;
}
.cotract-index .contract-wrap .contract-content .content-content .cell-group-file[data-v-c71993ba] .van-uploader__input-wrapper {
        width: 100%;
}
.cotract-index .contract-wrap .contract-content .contract_footer[data-v-c71993ba] {
        width: 100%;
        height: 2.21rem;
        position: fixed;
        left: 0;
        bottom: 0;
        background: #ffffff;
        -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
                box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 99;
}
.cotract-index .contract-wrap .contract-content .contract_footer .contract_footer-btn[data-v-c71993ba] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          margin: 0 0.4rem;
}
.border-bottom-1px[data-v-c71993ba]::after {
  position: absolute;
}
.border-top-1px[data-v-c71993ba]::before {
  position: relative;
  top: -10px;
  border-bottom: 1px solid #3c3c43;
}
.cotract-index > .van-uploader[data-v-c71993ba] {
  width: 100% !important;
}
.cotract-index > .van-uploader__input-wrapper[data-v-c71993ba] {
  width: 100% !important;
}
.upload-img > .van-uploader__preview-image[data-v-c71993ba] {
  width: 45px;
  height: 45px;
}
.upload-img > .van-uploader__upload[data-v-c71993ba] {
  width: 45px;
  height: 45px;
}
.cotract-index > .van-uploader[data-v-c71993ba] {
  z-index: 500;
}
[data-v-c71993ba] .van-cell,[data-v-c71993ba] .van-field__body {
  font-weight: 400 !important;
}
[data-v-c71993ba] .van-cell {
  font-size: .38rem;
}
[data-v-c71993ba] .van-cell__title {
  color: #333;
}
[data-v-c71993ba] .van-cell__value {
  color: #666;
}
[data-v-c71993ba] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-c71993ba] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-c71993ba] .van-cell__label {
  font-size: .38rem;
}
[data-v-c71993ba] .van-cell__label .van-uploader__input {
    z-index: 98;
}
[data-v-c71993ba] .van-cell-group__title {
  margin: 0;
  padding: .23rem .47rem .41rem 0.04rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-c71993ba] .van-cell--required::before {
  display: none;
}
[data-v-c71993ba] .van-field__control--right {
  color: #666;
}
[data-v-c71993ba] .van-cell-group {
  border-radius: 10px;
}
.no-is-link[data-v-c71993ba] .van-field__error-message {
  text-align: right !important;
  margin-right: .53rem;
}

.detail-ctn[data-v-b9123d14] {
  min-height: 100vh;
  background: #f7f8fc;
  position: relative;
}
.detail-ctn .first-title[data-v-b9123d14] {
    background: #3975c6;
    height: 93px;
}
.detail-ctn .first-title .first-title-wrap[data-v-b9123d14] {
      padding: 30px 10px;
      font-size: 16px;
      font-weight: bold;
      color: #ffffff;
      line-height: 13px;
}
.detail-ctn .first-title .first-title-wrap .title-r[data-v-b9123d14] {
        font-size: 12px;
        font-weight: 500;
        color: #3975c6;
        line-height: 13px;
        padding: 5px 6px;
        background: #ffffff;
        border-radius: 5px;
}
.detail-ctn .first-title .first-title-wrap .green-color[data-v-b9123d14] {
        color: #60B28E;
}
.detail-ctn .first-title .border-radius[data-v-b9123d14] {
      width: 100%;
      height: 21px;
      background: #f7f8fc;
      border-radius: 10px 10px 0 0;
}
.detail-ctn .main-items[data-v-b9123d14] {
    margin: 0 10px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 10px;
}
.detail-ctn .main-items .item-ctn[data-v-b9123d14] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border-radius: 5px;
      padding: 10px 0;
      margin: 0 16px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 400;
      color: #333333;
      border-bottom: 1px solid #f7f8fc;
}
.detail-ctn .main-items .item-ctn .item-key[data-v-b9123d14] {
        color: #666;
}
.detail-ctn .main-items .item-ctn .file-key[data-v-b9123d14] {
        margin-bottom: 10px;
}
.detail-ctn .main-items .img-ctn[data-v-b9123d14] {
      display: block;
}
.detail-ctn .main-items .img-ctn .img-items[data-v-b9123d14] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 14px;
}
.detail-ctn .main-items .img-ctn .img-items img[data-v-b9123d14] {
          width: 44px;
          height: 44px;
          border-radius: 5px;
          margin-right: 12px;
          margin-bottom: 12px;
}
.detail-ctn .main-items .img-ctn .file-items[data-v-b9123d14] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 10px;
        background: #F7F8FC;
        border-radius: 5px;
        margin-bottom: 10px;
}
.detail-ctn .main-items .img-ctn .file-items img[data-v-b9123d14] {
          width: 14px;
          height: 17px;
          margin-right: 8px;
}
.detail-container[data-v-b9123d14] {
  height: calc(100vh - 80px);
  overflow: auto;
}
.bottom-ctn[data-v-b9123d14] {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 12px 15px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bottom-ctn .btn-item[data-v-b9123d14] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: #4575C7;
    border-radius: 20px;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.radius[data-v-81eaaaba], .cotract-index .contract-wrap .content-content .cell-group[data-v-81eaaaba], .cotract-index .contract-wrap .content-content .cell-group .van-cell[data-v-81eaaaba] {
  border-radius: 10px;
}
.cotract-index[data-v-81eaaaba] {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cotract-index[data-v-81eaaaba]::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#3975c6), color-stop(#f7f8fc), to(#f7f8fc)) no-repeat;
    background: linear-gradient(#3975c6, #f7f8fc, #f7f8fc) no-repeat;
    background-size: cover;
    z-index: -1;
}
.cotract-index .cell-title-required[data-v-81eaaaba] {
    position: relative;
}
.cotract-index .cell-title-required[data-v-81eaaaba]::after {
      position: absolute;
      right: -7px;
      color: #ee0a24;
      font-size: 14px;
      content: '*';
}
.cotract-index .contract-wrap[data-v-81eaaaba] {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.cotract-index .contract-wrap .content-content[data-v-81eaaaba] {
      margin: 15px 10px;
}
.cotract-index .contract-wrap .content-content .cell-group[data-v-81eaaaba] {
        background: #ffffff;
        margin-bottom: 15px;
}
.cotract-index .contract-wrap .content-content .cell-group-file[data-v-81eaaaba] .van-uploader__input-wrapper {
        width: 100%;
}
.cotract-index .contract-wrap .contract_footer[data-v-81eaaaba] {
      width: 100%;
      height: 2.21rem;
      position: fixed;
      left: 0;
      bottom: 0;
      background: #ffffff;
      -webkit-box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
              box-shadow: 0px 0px 0.43rem 0px rgba(217, 217, 217, 0.4);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      z-index: 99;
}
.cotract-index .contract-wrap .contract_footer .contract_footer-btn[data-v-81eaaaba] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        margin: 0 0.4rem;
}
.border-bottom-1px[data-v-81eaaaba]::after {
  position: absolute;
}
.border-top-1px[data-v-81eaaaba]::before {
  position: relative;
  top: -10px;
  border-bottom: 1px solid #3c3c43;
}
.cotract-index > .van-uploader[data-v-81eaaaba] {
  width: 100% !important;
}
.cotract-index > .van-uploader__input-wrapper[data-v-81eaaaba] {
  width: 100% !important;
}
.upload-img > .van-uploader__preview-image[data-v-81eaaaba] {
  width: 45px;
  height: 45px;
}
.upload-img > .van-uploader__upload[data-v-81eaaaba] {
  width: 45px;
  height: 45px;
}
.cotract-index > .van-uploader[data-v-81eaaaba] {
  z-index: 500;
}
[data-v-81eaaaba] .van-cell,[data-v-81eaaaba] .van-field__body {
  font-weight: 400 !important;
}
[data-v-81eaaaba] .van-cell {
  font-size: .38rem;
}
[data-v-81eaaaba] .van-cell__title {
  color: #333;
}
[data-v-81eaaaba] .van-cell__value {
  color: #666;
}
[data-v-81eaaaba] .van-cell__value input::-webkit-input-placeholder {
    color: #999 !important;
}
[data-v-81eaaaba] .van-field__control::-webkit-input-placeholder {
  color: #999 !important;
}
[data-v-81eaaaba] .van-cell__label {
  font-size: .38rem;
}
[data-v-81eaaaba] .van-cell__label .van-uploader__input {
    z-index: 98;
}
[data-v-81eaaaba] .van-cell-group__title {
  margin: 0;
  padding: .23rem .47rem .41rem 0.04rem;
  font-size: 0.43rem;
  font-weight: 600;
  color: black;
}
[data-v-81eaaaba] .van-cell--required::before {
  display: none;
}
[data-v-81eaaaba] .van-field__control--right {
  color: #666;
}
[data-v-81eaaaba] .van-cell-group {
  border-radius: 10px;
}
.no-is-link[data-v-81eaaaba] .van-field__error-message {
  text-align: right !important;
  margin-right: .53rem;
}
