/* 初始化 */
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    background-color: #0E173F;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #143988;
}

::-webkit-scrollbar-thumb {
    background-color: #2958B4;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #2958B4;
}


@font-face {
    font-family: 'cnFont';
    src: url('douyuFont-2.woff') format('woff2'),
        url('douyuFont-2.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.link {
    cursor: pointer;
}

.numFont {
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    line-height: 1.1rem;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
}

.cnFont {
    font-family: 'cnFont', sans-serif;
}

:root {
    --color01: #9DBADC;
    --color02: #D6D6D6;
    --color03: #59BBF7;
}

.blue {
    color: var(--color03);
}

#map {
    width: 100%;
    height: 100vh;
}

.dot01::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_1.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}

.dot02::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_2.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}

.dot03::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_3.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}

.dot04::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_4.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}

.dot05::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_5.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}

.main {
    height: 100vh;
    position: relative;
    width: 100%;
}

.main::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100vh;
    background-color: #0D1542;
    top: 0;
    left: 0;
    z-index: 1;
    animation: fadeOut 1s 1s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        z-index: 1;
    }

    100% {
        opacity: 0;
        z-index: 0;
    }
}


.top {
    height: 170px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0D1542 50%, rgba(19, 48, 103, .1) 100%);
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    animation: topIn 1s;
}

@keyframes topIn {
    0% {
        top: -170px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}


header video {
    width: 100%;
}

header #time {
    position: absolute;
    z-index: 99;
    top: 20px;
    left: 10px;
    color: var(--color01);
}

header #weatherContainer {
    position: absolute;
    z-index: 99;
    top: 20px;
    right: 10px;
    color: var(--color01);
    font-family: "Teko", sans-serif;
}

.topBox {
    height: 60px;
    width: 70%;
    position: fixed;
    z-index: 88;
    left: 15%;
    top: 110px;
    right: 15%;
    justify-content: center;
    display: flex;
    text-align: center;
    align-items: start;
    animation: topBoxIn 1s .5s;
    animation-fill-mode: forwards;
    opacity: 0;
    background: url(img_02.png) no-repeat bottom center;
    background-size: 100%;
}

@keyframes topBoxIn {
    0% {
        top: 0;
        opacity: 0;
    }

    100% {
        top: 110px;
        opacity: 1;
    }
}

.topBox div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    align-items: center;
    color: var(--color02);
    background: url(img_03.png) no-repeat center right;
    background-size: 1px 47px;
    transition: all .2s;
}

.topBox div:hover {
    color: #fff;
}

.topBox h1 {
    /* 文字渐变 */
    background: linear-gradient(180deg, #F2CEA3, #BE8138);
    -webkit-background-clip: text;
    font-size: 1.8rem;
    line-height: 1.4rem;
    -webkit-text-fill-color: transparent;
    font-family: "Teko", sans-serif;
}

.amap-logo {
    display: none !important;
}

.left,
.right {
    width: 300px;
    height: calc(100vh - 90px);
    position: fixed;
    left: 0;
    top: 90px;
    z-index: 88;
    transition: all .5s;
    padding: 0 1rem;
    background: linear-gradient(to right, #0D1542 50%, rgba(19, 48, 103, 0));
}

.left {
    animation: leftIn .5s;
}

.right {
    animation: rightIn .5s;
}

div.leftOut {
    transform: perspective(300px) rotateY(10deg);
    box-shadow: -20px 0 20px 0 rgba(0, 0, 0, .1);
    left: -320px;
    /* 模糊 */
    filter: blur(2px) !important;
}

div.rightOut {
    transform: perspective(300px) rotateY(-10deg);
    box-shadow: -20px 0 20px 0 rgba(0, 0, 0, .1);
    filter: blur(2px);
    right: -320px !important;
}

div.right {
    right: 0;
    left: auto;
    background: linear-gradient(to left, #0D1542 50%, rgba(19, 48, 103, 0));
}

.dataBox {
    width: 100%;
}

.boxTitle {
    height: 35px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(img_04.png) no-repeat center left;
    background-size: 100% auto;
    margin-bottom: 1rem;
}

.boxTitle h3 {
    color: #fff;
    font-size: .9rem;
    margin-left: 20px;
    font-weight: 300;
    font-family: 'cnFont', sans-serif;
    /* 文字渐变 */
    background: linear-gradient(180deg, #fff, #7AD7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.boxTitle img {
    height: 14px;
    margin-left: 25px;
}

.box01 .list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.box01 .list div {
    width: calc(50% - .2rem);
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: url(img_05.png) no-repeat bottom right;
    background-size: 100% auto;
    font-size: .8rem;
    position: relative;
    transition: all .2s;
    color: var(--color02);
}

.box01 .list div:hover {
    /* 增加对比度 */
    font-weight: bold;
    filter: brightness(1.2);
}

.box01 .list div img {
    height: 31px;
    margin-left: .5rem;
    margin-right: .8rem;
}

.box01 .list div h4 {
    font-size: 1.4rem;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 5px;
    font-family: "Teko", sans-serif;
}

.box02 {
    margin-top: 15px;
}

.box03 .list div {
    width: 25%;
    float: left;
    height: 90px;
    color: #fff;
    text-align: center;
    background: url(img_06.png) no-repeat center right;
    background-size: 100% 100%;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.box03 .list div::after {
    content: "";
    position: absolute;
    display: block;
    width: 18px;
    transform: translateX(-50%);
    height: 13px;
    bottom: 3px;
    left: 50%;
    z-index: 1;
    background: url(img_07.png) no-repeat center;
    background-size: 100% 100%;
    animation: alpha1 1s infinite;
}

@keyframes alpha1 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.box03 .list div h2 {
    font-family: 'teko', sans-serif;
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-top: .5rem;
}

.box04 .tag {
    display: flex;
    gap: .5rem;
}

.box04 .tag div {
    height: 25px;
    flex: 1;
    background: url(img_08.png) no-repeat center right;
    background-size: 100% auto;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #fff;
}

.box05 .cityBox {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.box05 .cityBox img {
    animation: alpha01 4s infinite;
}

@keyframes alpha01 {
    0% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }
}

.box05 .cityBox .cityAnimate {
    width: 600px;
    height: 77px;
    background: url(img_10.png);
    background-size: 100% 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    animation: move 20s infinite linear;
}

@keyframes move {
    0% {
        left: 0;
    }

    100% {
        left: -300px;
    }
}

.box05 .d01,
.box05 .d02,
.box05 .d03 {
    position: absolute;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: .8rem;
    color: var(--color02);
}

.box05 .d01 h2,
.box05 .d02 h2,
.box05 .d03 h2 {
    font-family: 'teko', sans-serif;
    line-height: 1.4rem;
    color: #fff;
}

.box05 .d01 {
    width: 91px;
    height: 91px;
    top: 0px;
    left: 0;
    background-image: url(img_11.png);
    animation: upOrDown 3s infinite;
}

.box05 .d02 {
    width: 94px;
    height: 94px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(img_12.png);
    animation: upOrDown 3.5s infinite;
}

.box05 .d03 {
    width: 91px;
    height: 91px;
    top: 20px;
    right: 0;
    background-image: url(img_13.png);
    animation: upOrDown 2.5s infinite;
}

@keyframes upOrDown {
    0% {
        top: 0px;
    }

    50% {
        top: 20px;
    }

    100% {
        top: 0px;
    }
}

.newsticker {
    height: 110px;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: 10px;
    background: linear-gradient(to top, rgba(36, 104, 184, .2) 0%, rgba(4, 36, 74, 0) 100%);
}

.newsticker .newsticker-list {
    position: absolute;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    top: 0px;
    left: 0px;
    width: 100%;
}

.newsticker .newsticker-list .newsticker-item {
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsticker .newsticker-list .newsticker-item span label {
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

.newsticker .newsticker-list .newsticker-item span label.percent10 {
    animation-name: percent10;
}

.newsticker .newsticker-list .newsticker-item span label.percent20 {
    animation-name: percent20;
}

.newsticker .newsticker-list .newsticker-item span label.percent30 {
    animation-name: percent30;
}

.newsticker .newsticker-list .newsticker-item span label.percent40 {
    animation-name: percent40;
}

.newsticker .newsticker-list .newsticker-item span label.percent50 {
    animation-name: percent50;
}

.newsticker .newsticker-list .newsticker-item span label.percent60 {
    animation-name: percent60;
}

.newsticker .newsticker-list .newsticker-item span label.percent70 {
    animation-name: percent70;
}

.newsticker .newsticker-list .newsticker-item span label.percent80 {
    animation-name: percent80;
}

.newsticker .newsticker-list .newsticker-item span label.percent90 {
    animation-name: percent90;
}

.newsticker .newsticker-list .newsticker-item span label.percent100 {
    animation-name: percent100;
}

@keyframes percent10 {
    0% {
        width: 0;
    }

    100% {
        width: 10%
    }
}

@keyframes percent20 {
    0% {
        width: 0;
    }

    100% {
        width: 20%
    }
}

@keyframes percent30 {
    0% {
        width: 0;
    }

    100% {
        width: 30%
    }
}

@keyframes percent40 {
    0% {
        width: 0;
    }

    100% {
        width: 40%
    }
}

@keyframes percent50 {
    0% {
        width: 0;
    }

    100% {
        width: 50%
    }
}

@keyframes percent60 {
    0% {
        width: 0;
    }

    100% {
        width: 60%
    }
}

@keyframes percent70 {
    0% {
        width: 0;
    }

    100% {
        width: 70%
    }
}

@keyframes percent80 {
    0% {
        width: 0;
    }

    100% {
        width: 80%
    }
}

@keyframes percent90 {
    0% {
        width: 0;
    }

    100% {
        width: 90%
    }
}

@keyframes percent100 {
    0% {
        width: 0;
    }

    100% {
        width: 100%
    }
}

.tickerTitle {
    height: 33px;
    color: var(--color02);
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(to top, rgba(36, 104, 184, .2) 0%, rgba(4, 36, 74, 0) 100%);
}

.box02 {
    cursor: pointer;
}

.box02 .tickerTitle li:nth-child(1),
.box05 .tickerTitle li:nth-child(1),
.box06 .tickerTitle li:nth-child(1) {
    width: 30%;
    text-indent: 15px;
}

.box02 .tickerTitle li:nth-child(2),
.box05 .tickerTitle li:nth-child(2) {
    width: 40%;
    text-indent: 25px;
}

.box02 .tickerTitle li:nth-child(3),
.box05 .tickerTitle li:nth-child(3) {
    width: 30%;
}

.box02 .newsticker-item span:nth-child(1),
.box05 .newsticker-item span:nth-child(1),
.box06 .newsticker-item span:nth-child(1) {
    text-indent: 15px;
}

.box02 .newsticker-item span:nth-child(2),
.box05 .newsticker-item span:nth-child(2) {
    text-indent: 25px;
}

.box02 .newsticker-item span:nth-child(3),
.box05 .newsticker-item span:nth-child(3) {
    text-indent: 0px;
}

.newsticker-list li {
    display: flex;
    color: var(--color02);
    align-items: center;
}

.newsticker-list li span:nth-child(1) {
    color: #fff;
    width: 30%;
}

.newsticker-list li span:nth-child(2) {
    width: 40%;
    overflow: hidden;
}

.newsticker-list li span:nth-child(3) {
    width: 30%;
}

.box06 .tickerTitle li:nth-child(2) {
    width: 50%;
}

.box06 .tickerTitle li:nth-child(3) {
    width: 20%;
}

.box06 .newsticker-list li span:nth-child(3) {
    width: 20% !important;
}

.box06 .newsticker-list li span:nth-child(2) label {
    height: 6px;
    background: linear-gradient(to right, #59BBF7 0%, #3ADE8C 100%);
    display: inline-block;
    border-radius: 10px;
}

.star {
    content: '';
    width: 48px;
    height: 14px;
    background-size: 48px 14px;
    background-position: left center;
    background-repeat: no-repeat;
    text-align: right;
}

.haianhongjingBox .star {
    padding-left: 50px;
    line-height: 18px;
    font-weight: normal;
    color: #7AD7FF;
}

.haianhongjingBox02 .box01 {
    width: 100%;
    margin: 0px auto;
    text-align: left;

}

.haianhongjingBox02 .box01>div img {
    margin: 0px auto;
    display: block;
    width: 70%;
}

.star0 {
    background-image: url(star0.png);
}

.star1 {
    background-image: url(star1.png);
}

.star2 {
    background-image: url(star2.png);
}

.star3 {
    background-image: url(star3.png);
}

.box04_echarts {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.box04_echarts>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.box04_echarts>div.echartsProp {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.box04_echarts>div.echartsProp div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box04_echarts>div.echartsProp div span {}

.box04_echarts>div.echartsProp div h5 {
    font-size: 1rem;
    line-height: 1rem;
    margin-top: 4px;
    color: var(--color03);
}

.box06 .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box06 .list div {
    width: 30%;
    height: 62px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--color02);
    background: url(img_14.png) no-repeat center bottom;
    background-size: 100% auto;
    padding-bottom: .5rem;
    margin-top: 1rem;
}

.box06 .list div img {
    height: 30px;
    width: auto;
    margin-bottom: .5rem;
}

#foot {
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 1;
    height: 77px;
    background: linear-gradient(to top, #0D1542 50%, rgba(19, 48, 103, 0));
}

.foot {
    height: 77px;
    background: url(img_16.png) no-repeat center;
    background-size: 100% 100%;
    width: 1100px;
    display: flex;
    justify-content: center;
    margin: 0px auto;
}


.foot div {
    height: 44px;
    background: url(img_15.png) no-repeat center;
    background-size: 100% auto;
    font-family: 'cnFont', sans-serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot div:hover {
    /* 滤镜对比度 */
    filter: brightness(1.5);
}

.foot div img {
    height: 15px;
}

.popup {
    position: relative;
    width: 1200px;
    max-height: 73vh;
    min-height: 50vh;
    position: fixed;
    overflow: hidden;
    display: none;
    top: 190px;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
    border: 1px solid #014DAD;
    background: linear-gradient(to bottom, #0A54B7, rgba(0, 42, 72, 0.9) 50px, rgba(0, 62, 106, 1) 70%, rgba(0, 102, 255, .6) 100%);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 1);
}

.popup.red .tabs .tab span {
    color: rgba(255,255,255,.9) !important;
    background: url(img_20_red.png) no-repeat center !important;
    background-size: 100% 100% !important;
}

.popup.red .tabs .tab span.on {
    color: rgba(255,255,255,1) !important;
    background: url(img_21_red.png) no-repeat center !important;
    background-size: 100% 100% !important;
}

.popup.red .popupTitle{
    background: url(img_19_red.png) no-repeat center;
    background-size: 100% 100%;
}

.popup.red .tabs h1{
    font-weight: 300;
    background: linear-gradient(180deg, #fff, #ff7a7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.popup.red .swiper-slide{
    border: 1px solid red;
    background: linear-gradient(to right, rgba(176,0,0,.5) 0%, rgba(19, 48, 103, .1) 100%);
}

.popup.red .swiper-slide>div span{
    color: #d9d9d9
}

.popup.red .dot02::before{
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    background: url(dot_1.png) no-repeat left center;
    background-size: 8px 8px;
    margin-right: 5px;
}


.popup.popShow {
    display: block;
    animation: popShow .3s;
}

@keyframes popShow {
    0% {
        transform: translateY(50px) translateX(-50%) scale(0.9, 0.9);
        opacity: 0;
    }

    100% {
        transform: translateY(0) translateX(-50%) scale(1, 1);
        opacity: 1;
    }
}

.popup .popupTitle {
    width: calc(100% - 2rem);
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 300;
    background: url(img_19.png) no-repeat center;
    background-size: 100% 100%;
    padding-left: 2rem;
    font-size: 1rem;
    color: #fff;
    position: relative;
}

.popup .popupTitle .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 49px;
    height: 25px;
    background: url(close.png) no-repeat center;
}

.popup::after {
    content: '';
    display: block;
    width: 100%;
    height: 50px;
    background: url(img_18.png) repeat-x;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}

.popupBody {
    width: 100%;
    padding-bottom: 50px;
}

.haianhongjingBox {
    width: 90%;
    margin: 0px auto;
}

.haianhongjingBox .tabs {
    text-align: center;
    color: #fff;
    padding: 2rem 0 1.5rem 0;
}

.haianhongjingBox .tabs h1 {
    font-weight: 300;
    background: linear-gradient(180deg, #fff, #7AD7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.haianhongjingBox .tabs .tab {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.haianhongjingBox .tabs .tab span {
    display: block;
    width: 167px;
    cursor: pointer;
    line-height: 42px;
    height: 42px;
    font-weight: bold;
    margin-left: -20px;
    color: #00AAFF;
    background: url(img_20.png) no-repeat center;
    background-size: 100% 100%;
    transition: all .2s;
}

.haianhongjingBox .tabs .tab span:hover {
    color: #fff;
}

.haianhongjingBox .tabs .tab span.on {
    color: #fff;
    background: url(img_21.png) no-repeat center;
}

.haianhongjingBox .intro {
    color: #59BBF7;
    text-align: center;
    font-size: 1rem;
}

.haianhongjingBox .intro .box02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: scroll;
    height: 50vh;
    margin-bottom: 40px;
    gap: 1rem;
}

.haianhongjingBox .intro .box02>div {
    width: calc(25% - 1rem);
    color: #fff;
    text-align: left;
    margin-bottom: 1rem;
    background: linear-gradient(to right, rgba(176,0,0,.5) 0%, rgba(19, 48, 103, .1) 100%);
    padding-bottom: 1rem;
}

.haianhongjingBox .intro .box02>div img {
    width: 100%;
}

.haianhongjingBox .intro .box02>div strong {
    font-weight: bold;
    margin-top: .5rem;
    display: flex;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    justify-content: space-between;
}

.haianhongjingBox .intro .box02>div>span {
    font-size: .8rem;
    color: var(--color02);
    margin: 0 1rem;
}

.haianhongjingBox .intro .box03 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.haianhongjingBox .intro .box03>div {
    width: calc(50% - 7rem);
}

.textBox {
    background: linear-gradient(130deg, rgba(176,0,0,.5) 0%, rgba(19, 48, 103, .1) 100%);
    padding: 3rem 3rem;
    color: #cbcbcb;
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .3);
}

.textBox h5 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.duiwuBox .box01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.duiwuBox .box01 .boxLeft {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.duiwuBox .box01 .boxLeft div.manager {
    display: flex;
    gap: 1rem
}

.duiwuBox .box01 .boxLeft div.manager>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.duiwuBox .box01 .boxLeft div.manager>div img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.duiwuBox .box01 .boxLeft div.manager>div strong {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem;
    font-size: .9rem;
    gap: .5rem;
    background: linear-gradient(to top, rgba(0, 133, 255, 1) 0%, rgba(0, 163, 255, 0) 100%);
}

.duiwuBox .box01 .boxLeft div.manager>div strong label {
    font-size: .8rem;
    font-weight: normal;

    padding: 0rem .5rem;
}

.duiwuBox .box01 .boxLeft div.manager>div span {
    font-size: .8rem;
}

.duiwuBox .box01 .boxRight {
    margin-left: 40px;
    text-align: left;
    margin-right: 40px;
    width: calc(75% - 80px);
}

.miniTitle {
    background: url(img_22.png) no-repeat center right;
    font-family: 'cnFont', sans-serif;
    color: #fff;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: left !important;
}

.miniTitle h3 {
    background: linear-gradient(180deg, #fff, #7AD7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.duiwuBox .box01 .boxRight .duiwuMemo {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.duiwuBox .box01 .boxRight .duiwuMemo strong {
    color: #fff;
    font-size: 1.5rem;
    display: block;
}

.duiwuBox .box01 .teamList {
    width: 100%;
    margin-top: 2rem;
    padding-right: 40px;
}

.duiwuBox .box01 .teamList table {
    width: 100%;
    text-align: left;
}

.duiwuBox .box01 .teamList table thead {
    height: 33px;
    color: var(--color02);
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(to top, rgba(36, 104, 184, .5) 0%, rgba(4, 36, 74, 0) 100%);
}

.duiwuBox .box01 .teamList table thead td {
    text-indent: 20px;
}

.duiwuBox .box01 .teamList table tbody td {
    text-indent: 20px;
    padding: .3rem 0;
}

.duiwuBox .box01 .teamList table tbody tr td:nth-child(1) {}

.duiwuBox .box01 .teamList table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.2);
}

.duiwuBox .box01 {
    overflow-y: scroll;
    height: 50vh;
}

.marker01 {
    color: #fff;
    text-align: center;
    min-width: 30px;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 .5rem;
    position: relative;
    transform: translateX(-50%) translateY(-100%) !important;
    transition: all .2s;
    background: linear-gradient(to top, #AD0003, #E90004 100%);
    box-shadow: 0 10px 5px 0 rgba(109, 0, 2, 0.3);
    border: 1px solid #E90004;
}

.marker01::before {
    content: '';
    width: 70px;
    height: 40px;
    background-image: url(danghui.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    position: absolute;
    left: 50%;
    top: -27px;
    transform: translateX(-50%);
    z-index: 1;
}

.marker01 .marker-title {
    white-space: nowrap;
    background: linear-gradient(to bottom, #F2CEA3, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}


.marker01.mk04 .marker-title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 1000px;
    z-index: -20;
    bottom: 40px;
    left: 50%;
    top: 100%;
    position: absolute;
    animation: fangda 1s infinite ease-in-out 1s;
    transform: translateX(-50%) translateY(-50%) rotateX(65deg);
    border: 1px solid rgba(255, 0, 1);
    background-color: rgba(255, 0, 0, .2);
}


@keyframes fangda {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }

}

.marker01::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #E90004;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.marker01.mk01 {
    font-weight: bold;
    font-size: 1rem;
    /* filter: hue-rotate(190deg) contrast(1.3);
    transform: scale(1.2, 1.2) translateX(-50%) translateY(-100%) !important; */
}


.marker01.mk05::before {
    background-image: url(haishangduiwu.png);
}

.marker01.mk06::before {
    background-image: url(haianhongjing.png);
}

.marker01.mk01::before{
    background-size: auto 100%;
    top: -35px !important;
    background-image: url(baolei.png);
}

.marker01.mk03::before{
    background-image: url(gonganju.png);
}

.marker01.mk07::before {
    background-image: url(liudongdangzhibu.png);
}

.marker01.mk04::before {
    /* background-image: url(jiedaoban.png); */
}

.marker01.mk02::before {
    /* background-image: url(shequ_.png); */
}


.marker01.mk01 .marker-title {
    background: linear-gradient(to bottom, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.haishangdangqi {
    width: 90%;
    margin: 0px auto;
    min-height: 55vh;
}

.haishangdangqi .intro {
    background: linear-gradient(90deg, rgba(255, 0, 0, .8) 0%, rgba(255, 0, 0, .6));
    border: 1px solid red;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4rem;
    padding: 1rem;
    border-radius: 5px;
}

/* .mk01,.mk03{
    filter: hue-rotate(190deg) contrast(1.3);
}

.mk04{
    filter: hue-rotate(50deg) contrast(1.3);
} */

/* 
.marker01::before {
    content: '';
    width: 30px;
    height: 11px;
    background: url(point_01.png) no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: 0px;
    animation: alpha 1s infinite;
} */

/* .marker01::after {
    content: '';
    width: 100px;
    height: 80px;
    left: -60px;
    background-size: 100%;
    position: absolute;
    background-repeat: no-repeat;
    animation: upDown 1s infinite;
} */

@keyframes upDown {
    0% {
        bottom: -10px;
    }

    50% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}

/* 

@keyframes alpha {
    0% {
        opacity: 1;
        transform: scale(1, 1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5,1.5);
    }
} */

.marker02 {
    background: linear-gradient(to top, #AD0003, #E90004 100%);
    box-shadow: 0 10px 5px 0 rgba(109, 0, 2, 0.3);
    border: 1px solid #E90004;
    border-radius: 5px;
    white-space: nowrap;
    color: #fff;
    text-align: center;
    min-width: 60px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    animation: markShow .5s;
    animation-fill-mode: forwards;
    align-items: center;
    display: flex;
}

.marker02::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url(wujiaoxing.png);
}

.dangjianlianmeng{
    position: fixed;
    z-index: 9999;
    bottom: 100px;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translateX(-50%);
}

.dangjianlianmeng img{
    width: 50%;
}

/* .yugang::before {
    background-image: url(yugang.png);
}

.matou::before {
    background-image: url(matou.png);
}

.tingbodian::before {
    background-image: url(tingbodian.png);
}

.yangzhiqu::before {
    background-image: url(yangzhiqu.png);
}

.chuanchang::before {
    background-image: url(chuanchang.png);
}

.haidao::before {
    background-image: url(haidao.png);
}

.jingdian::before {
    background-image: url(jingdian.png);
}

.yuchang::before {
    background-image: url(yuchang.png);
} */

/* .yugang {
    filter: hue-rotate(20deg) contrast(1.3);
}

.matou {
    filter: hue-rotate(120deg) contrast(1.3);
}

.tingbodian {
    filter: hue-rotate(160deg) contrast(1.3);
}

.yangzhiqu {
    filter: hue-rotate(200deg) contrast(1.3);
}

.chuanchang {
    filter: hue-rotate(240deg) contrast(1.3);
}

.haidao {
    filter: hue-rotate(280deg) contrast(1.3);
}

.jingdian {
    filter: hue-rotate(320deg) contrast(1.3);
}

.yuchang {
    filter: hue-rotate(360deg) contrast(1.3);
} */

@keyframes markShow {
    0% {
        transform: scale(0, 0);
    }

    100% {
        transform: scale(1, 1);
    }
}

.marker02::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid red;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.marker02 .marker-title {
    text-wrap: nowrap;
}

.miniPop {
    display: none;
    width: 300px;
    border: 1px solid #3A7FFF;
    box-shadow: -50px 10px 40px 0 rgba(0, 0, 0, .5);
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 53%;
    background: linear-gradient(to bottom, rgba(13, 21, 66, .8) 50%, rgba(19, 48, 103, 1));
    color: var(--color01);
}

.miniPop.miniPopShow {
    display: block;
    animation: show .5s;
}

@keyframes show {
    0% {
        left: 50%;
    }

    100% {
        left: 53%;
    }
}

.miniPop h2 {
    margin: .5rem 0;
    color: #fff;
}

.miniPop .boxTitle h3 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: bold;
    font-size: 18px;
}

.miniPop .miniCont {
    padding: 10px 20px 20px 20px;
}

.miniPop .miniCont img {
    margin-bottom: 10px;
}

.miniPop .miniCont .prop {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.miniPop .close {
    position: absolute;
    right: -9px;
    top: -9px;
    width: 20px;
    height: 19px;
    line-height: 19px;
    cursor: pointer;
    border: 1px solid red;
    background-color: rgba(255, 0, 0, .5);
    color: #fff;
    text-align: center;
    transition: all .2s;
}

.miniPop .close:hover {
    background-color: rgba(255, 0, 0, .7);
}

.shequBody {
    width: 95%;
    margin: 2rem auto;
}

.shequBody .chartList {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    align-items: center;
    margin-bottom: 2rem;
}

.shequBody .chartList .chartsBox {
    border-bottom: 1px solid #00AAFF;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 2rem;
    background: linear-gradient(to top, rgba(0, 113, 255, 0.2), rgba(3, 129, 255, 0));
}

.shequBody .chartList .chartsBox h1 {
    color: #fff;
    /* 文字渐变色 */
    background: linear-gradient(180deg, #fff, #7AD7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shequBody #chart1,
.shequBody #chart2,
.shequBody #chart3 {
    width: 100px;
    height: 100px;
}

.shequBody .charts {
    position: relative;
}

.shequBody .parse {
    position: absolute;
    z-index: 9;
    left: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
}

.shequBody #chart4 {
    width: 1100px !important;
    height: 400px;
}

.marker03 {
    color: #fff;
    text-align: center;
    min-width: 30px;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    animation: markShow .5s;
    animation-fill-mode: forwards;
    transition: all .2s;
    position: relative;
    background: linear-gradient(to top, #FFBD84, rgba(255, 167, 0, .5) 25%, rgba(6, 11, 72, 1) 100%);
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .5);
    border: 1px solid #FFBD84;
}

.marker03::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FFBD84;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.marker03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-size: 60% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .8;
    transition: all .2s;
}

.marker03:hover::before {
    opacity: 1;
    transform: scale(1.1, 1.1);
}

.markStyle1::before {
    background-image: url(markStyle1.png);
}

.markStyle2::before {
    background-image: url(markStyle2.png);
}

.markStyle3::before {
    background-image: url(markStyle3.png);
}

.markStyle4::before {
    background-image: url(markStyle4.png);
}

.markStyle5::before {
    background-image: url(markStyle5.png);
}

.markStyle6::before {
    background-image: url(markStyle6.png);
}

.markStyle7::before {
    background-image: url(markStyle7.png);
}

.markStyle8::before {
    background-image: url(markStyle8.png);
}

.markStyle9::before {
    background-image: url(markStyle9.png);
}

div.markStyle1 {
    filter: hue-rotate(40deg) contrast(1.3);
}

div.markStyle2 {
    filter: hue-rotate(80deg) contrast(1.3);
}

div.markStyle3 {
    filter: hue-rotate(120deg) contrast(1.3);
}

div.markStyle4 {
    filter: hue-rotate(160deg) contrast(1.3);
}

div.markStyle5 {
    filter: hue-rotate(200deg) contrast(1.3);
}

div.markStyle6 {
    filter: hue-rotate(240deg) contrast(1.3);
}

div.markStyle7 {
    filter: hue-rotate(280deg) contrast(1.3);
}

div.markStyle8 {
    filter: hue-rotate(320deg) contrast(1.3);
}


@keyframes markShow {
    0% {
        transform: scale(0, 0);
    }

    100% {
        transform: scale(1, 1);
    }
}



.marker03 .marker-title {
    text-wrap: nowrap;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: -30px;
    left: -80px;
    width: 200px;
    transition: all .2s;
    opacity: 0;
    z-index: 999;
    text-shadow: 0 0 5px #000;
}

.marker03:hover .marker-title {
    opacity: 1;
}

.yanhaifangkongBox {
    display: flex;
    width: 90%;
    margin: 0px auto;
    align-items: center;
}

.yanhaifangkongBox div {
    flex: 1;
    height: 46vh;
    margin: 1rem 0 2rem 0;
    padding: 2rem;
    font-size: 1rem;
    line-height: 170%;
    color: var(--color03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(30deg, rgba(0, 133, 255, .8), rgba(13, 21, 66, 0));
}

.yanhaifangkongBox div img {
    width: 80%;
}

.yanhaifangkongBox div h3 {
    color: #fff;
    font-size: 1.4rem;
    background: linear-gradient(180deg, #fff, #7AD7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .7rem;
}

.yanhaifangkongBox div:nth-child(1) {
    transform: perspective(300px) rotateY(10deg);
    box-shadow: -20px 0 20px 0 rgba(0, 0, 0, .1);
}

.yanhaifangkongBox.show div:nth-child(1) {
    animation: leftIn .5s ease-in-out;
}

.yanhaifangkongBox div:nth-child(2) {
    height: 42vh;
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, .1);
}

.yanhaifangkongBox.show div:nth-child(2) {
    animation: centerIn .5s ease-in-out;
}

.yanhaifangkongBox div:nth-child(3) {
    transform: perspective(300px) rotateY(-10deg);
    box-shadow: 20px 0 20px 0 rgba(0, 0, 0, .1);
}

.yanhaifangkongBox.show div:nth-child(3) {
    animation: rightIn .5s ease-in-out;
}

.yanhaifangkongBox div span label {
    color: #fff;
}

@keyframes leftIn {
    0% {
        transform: perspective(300px) rotateY(10deg) translateX(-200px);
        opacity: 0;
    }

    100% {
        transform: perspective(300px) rotateY(10deg) translateX(0);
        opacity: 1;
    }
}

@keyframes centerIn {
    0% {
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rightIn {
    0% {
        transform: perspective(300px) rotateY(-10deg) translateX(200px);
        opacity: 0;
    }

    100% {
        transform: perspective(300px) rotateY(-10deg) translateX(0);
        opacity: 1;
    }
}

.shequguanli {
    width: 90%;
    margin: 0px auto;
}

.shequguanli .boxList {
    display: flex;
    gap: 1rem;
}

.shequguanli .boxList>div {
    color: #fff;
    flex: 1;
    border-bottom: 1px solid #00AAFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 0rem 0rem 2rem;
    background: linear-gradient(to top, rgba(0, 113, 255, 0.2), rgba(3, 129, 255, 0));
}

.shequguanli .boxList>div h1 {
    font-family: 'enFont', sans-serif;
}

.shequguanli .boxList>div h1 sup {
    font-size: .8rem;
    padding-left: 5px;
}

.boxInfo {
    color: var(--color01);
    padding-top: 3rem;
    min-height: 43vh;
}

.mySwiper {
    width: 100%;
    height: 37vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 5rem;
    padding-top: 3rem;
}

.swiper-slide {
    transition: all .2s;
    opacity: .5;
    border: 1px solid #00AAFF;
    transform: scale(.8, .8);
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(36, 104, 184, .5) 0%, rgba(4, 36, 74, 0) 100%);
}

.swiper-slide-next {
    transform: scale(1.1, 1.1);
    z-index: 99;
    opacity: 1;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .5);
}

.swiper-slide>div {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: left;
    padding: 1rem;
}

.swiper-slide>div img {
    margin-bottom: 1.5rem;
}

.swiper-slide>div span {
    font-size: 14px;
    margin-bottom: .5rem;
    color: #7AD7FF;
    display: flex;
    align-items: center;
}

.swiper-slide>div strong {

    font-size: 1.1rem;
}