@font-face {
    font-family: 'MyDigitalFont';
    src: url('../font/DS-DIGI.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YouSheBiaoTiHei';
    src: url('../font/优设标题黑.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-1 {
    flex: 1;
    flex-shrink: 0;
}

.flex-none {
    flex: none;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-20 {
    margin-top: 20px;
}



html,
body {
    padding: 0;
    margin: 0;
    background-color: #000;
}

#app {

    width: 1920px;
    height: 1080px;
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    /* min-height: 100vh; */
    background-image: url("../iamges/map_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.main {
    flex: 1;
    display: flex;
    padding: 0 26px;
    position: relative;
    height: 0;
}

.main .left {
    width: 436px;
}

.main .right {
    width: 436px;
}

.header {
    position: relative;
}

.header-content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    left: 26px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.header-content .clock {
    font-family: "MyDigitalFont";
    font-size: 24px;
}

#map {
    width: 980px;
    height: 784px;
    margin-top: 10px;
    margin-left: -74px;
}

.pan-box {
    border: 2px solid #0BA1C0;
    background: linear-gradient(180deg, rgba(11, 162, 193, 0) 1%, rgba(11, 162, 193, 0.3) 100%), linear-gradient(270deg, rgba(11, 162, 193, 0) 0%, rgba(11, 162, 193, 0) 100%);
    width: 100%;
    color: #fff;
}

.pan-header {
    height: 32px;
    background: rgba(11, 162, 193, 0.4);
    padding: 0 20px;
    display: flex;
    align-items: center;
    line-height: 1;
    color: #fff;
    font-size: 20px;
    font-family: YouSheBiaoTiHei;
}

.custom-tooltip {
    width: 306px;
    height: 123px;
    background-image: url("../iamges/tooltip-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}

.tooltip-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    height: 44px;
    padding-left: 24px;
}

.tooltip-content {
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;

    position: absolute;
    bottom: 0;
    height: 86px;
    line-height: 1.5;
}

.mer-stat {
    height: 194px;
    padding-left: 22px;
}

.mer-stat .mer-num-box {
    width: 124px;
    height: 124px;
    position: relative;
}

.mer-stat .mer-num-box2 {
    width: 100%;
    height: 100%;
    line-height: 1.7;
}

@keyframes spin-anticlockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.mer-stat .mer-num-box img {
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: spin-anticlockwise 5s linear infinite;
}

.mer-list-head {
    height: 28px;
    font-size: 14px;
    background-color: #1C6679;
    line-height: 1;
    position: relative;
}

.mer-list-head::after {
    content: " ";
    display: block;
    position: absolute;
    width: 4px;
    height: 2px;
    background: #49F7FD;
    left: 4px;
    top: 4px;
}

.mer-list {
    padding-top: 8px;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.mer-list::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}




.animated-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fade-slide-enter-active {
    transition: all 0.6s cubic-bezier(0.55, 0.03, 0.15, 1.2);
}

.fade-slide-enter {
    opacity: 0;
    transform: translateX(100px);
}

/* 禁用离场动画 */
.fade-slide-leave-active {
    transition: none !important;
}

.fade-slide-leave-to {
    opacity: 1;
    transform: translateX(0);
}


.mer-list-item {
    height: 28px;
    font-size: 14px;
    line-height: 1;
    position: relative;

    border-radius: 1px;
    background: rgba(28, 102, 121, 0.6);
    box-sizing: border-box;
    border: 1px solid rgba(11, 162, 193, 0.8);
    transition: all 0.5s ease;
}

.mer-list-item::after {
    content: " ";
    display: block;
    position: absolute;
    width: 4px;
    height: 2px;
    background: #49F7FD;
    left: 4px;
    top: 4px;
}

.mer-list-item+.mer-list-item {
    margin-top: 8px;
}



.text {
    width: 100px;
}

.text2 {
    font-family: YouSheBiaoTiHei;
    font-size: 18px;
}

.text2-1 {
    background: linear-gradient(180deg, #FFFFFF 32%, #004080 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text2-2 {
    background: linear-gradient(180deg, #FFFFFF 32%, #4CA69F 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text2-3 {
    background: linear-gradient(180deg, #FFFFFF 32%, #EFAC00 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text2-4 {
    background: linear-gradient(180deg, #FFFFFF 32%, #4CA69F 99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.all-mer-num {
    width: 354px;
    height: 83px;
    background-image: url("../iamges/全国商户数量.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.all-mer-liushui {
    width: 354px;
    height: 83px;
    background-image: url("../iamges/商户总流水.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-left: 30px;
}

.pickProvince-list {
    flex-wrap: wrap;
    align-content: space-between;
    height: 124px;
    padding: 0 24px;
}

.province-item {
    width: 108px;
    height: 12px;
    box-sizing: border-box;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-right: none;
    position: relative;
}

.province-item .content {
    position: absolute;
    bottom: 2px;
    left: 10px;
    font-size: 15px;
}

.province-item::after {
    position: absolute;
    content: " ";
    width: 7px;
    height: 7px;
    bottom: 10px;
    left: -4px;
    background: var(--color);
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
}