html,
body {
    width: 100%;
    height: 100%;
}

.home-page {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*overflow: hidden;*/
}

.page-box {
    width: 100%;
    /*height: 100%;*/
    /*background: url(../images/bg.png) no-repeat top center;*/
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.page-box .bg-video {
    position: absolute;
    width: 100%;
    height: 550px;
    top: 0;
    left: 0;
    /*background: radial-gradient(at 50%  0%,  rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.5) 72%,  rgba(255, 255, 255, 1) 86%);*/
}

.page-box .bg-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 95, 174, 0.6) 1%, rgba(0, 140, 255, 0) 12%);
    z-index: 1;
}

.page-box .bg-video::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 1) 98%);
    z-index: 1;
}

.page-box .bg-video video {
    position: absolute;
    /*top: -50px;*/
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;

}

.page-box .carousel-inner {
    height: 710px;
    /* padding-bottom: 60px; */
    padding: 200px 0 70px;
    /*margin-top: 260px;*/
    margin-top: 320px;
    position: relative;
    z-index: 2;
}

.page-box .carousel-inner .carousel-item {
    height: 100%;
}

.page-box .carousel-inner .carousel-item > div {
    width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 280px;
    padding: 20px;
    z-index: 5;
    margin-top: 280px;
}

.carousel-control-prev {
    left: -180px;
    justify-content: flex-end;
}

.carousel-control-next {
    right: -180px;
    justify-content: flex-start;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background: radial-gradient(
            50% 50% at 50% 50%,
            rgba(32, 102, 255, 0.2) 0%,
            rgba(32, 102, 255, 0) 100%
    );
}

.carousel-control-next:hover svg g,
.carousel-control-prev:hover svg g {
    opacity: 1;
}

.carousel-control-next:hover svg path,
.carousel-control-prev:hover svg path {
    fill: rgba(0, 80, 255, 1);
}

.left-card {
    width: 300px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.left-card .bg {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    opacity: 0.5;
    background: linear-gradient(180deg, #3ddbff 0%, rgba(61, 219, 255, 0) 100%);
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 0;
    display: none;
}

.left-card .content {
    /*background: #4392ff url(../images/left-bg.png) no-repeat bottom right;*/
    background: #1e77f1 url(../images/left-bg.png) no-repeat bottom right;
    /*border-radius: 15px;*/
    padding: 30px;
    width: 100%;
    /*height: calc(100% - 10px);*/
    height: 100%;
    /*top: 10px;*/
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 1;
    /*box-shadow: 0 5px 30px 0 rgba(67, 146, 255, 0.8);*/
    /*border: 1px solid #51cfff;*/

    border-radius: 26px;
    box-shadow: 0px 10px 30px 0px rgba(0, 107, 255, 0.30), 0px 0px 10px 0px #0041904d inset;
    border: 8px solid #94C1FF;
}

.left-card .content .title {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 5px 10px;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.left-card .content .title::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #3da8ff;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.left-card .content .btns {
    position: relative;
    z-index: 5;
    /*padding-top: 10px;*/
    display: flex;
    padding-top: 18px;
    gap: 15px;
    flex-direction: column;
}

.left-card .content .btns li {
    height: 42px;
}

.left-card .content .btns a {
    color: #fff;
/ / border: 1 px solid #fff;
    display: block;
    padding: 7px 15px;
    border-radius: 100px;
    font-size: 17px;
    /*margin-top: 20px;*/;
    width: 120px;
    height: 40px;
    background: #f39800;
    box-shadow: 0px 4px 10px 0px rgba(243, 152, 0, 0.60);
    position: relative;
    text-align: center;
}

.left-card .content .btns a span {
    position: relative;
    z-index: 5;
    font-weight: 700;
    top: -2px;
}

.left-card .content .btns a::before {
    content: "";
    display: block;
    width: 120px;
    height: 40px;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: linear-gradient(180deg, rgba(243, 152, 0, 0.50) 0%, rgba(255, 255, 255, 0.50) 100%);
}

.left-card .content .btns a::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    opacity: 0.8;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
}

.left-card .content .btns a:hover {
    /*background-color: #fff;*/
    /*color: #2066ff;*/
    margin-top: 1px;
    box-shadow: 0px 2px 6px 0px rgba(243, 152, 0, 0.60);
}
.left-card .content .btns a:hover::before{
    top: -1px;
}
.left-card .content .btns a:hover span{
    top: 0;
}

.left-card .img {
    position: absolute;
    width: 306px;
    height: 306px;
    top: 40%;
    left: -34%;
    z-index: 2;
}

/*  */
.right-card {
    width: 1060px;
    height: 100%;
    /*border-radius: 15px;*/
    /*border: 1px solid #e1eeff;*/
    /*border: 1px solid #d3e1f3;*/
    /*background: linear-gradient(0deg, #fff 0%, #fff 100%),*/
    linear-gradient(0deg, #e1eeff 0%, #e1eeff 100%), #2066ff;
    /*box-shadow: 0px 5px 30px 0px rgba(132, 144, 174, 0.2);*/
    /*box-shadow: 0px 5px 30px 0px rgb(198 207 229 / 60%);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 25px;
    border: 8px solid #EBF0F6;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(0deg, #E1EEFF 0%, #E1EEFF 100%), #2066FF;
    box-shadow: 0px 0px 50px 0px rgba(132, 144, 174, 0.42);
}

.tabs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.tabs .tab-item .tab-btn {
    color: #75849a;
    font-size: 20px;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px 0 0;
}

.tabs .tab-item .tab-btn span.icon {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 22px;
}

.tabs .tab-item .tab-btn span.icon::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: linear-gradient(
            180deg,
            rgba(32, 102, 255, 0.8) 0%,
            rgba(32, 102, 255, 0.2) 100%
    );
}

.tabs .tab-item .tab-btn span.icon::after {
    content: "";
    display: block;
    width: 7px;
    height: 100%;
    border-bottom-right-radius: 7px;
    background: linear-gradient(
            180deg,
            rgba(32, 102, 255, 0.2) 0%,
            rgba(32, 102, 255, 0.8) 100%
    );
}

.tabs .tab-item .tab-btn.active {
    color: #020202;
    font-weight: 700;
    padding-left: 0;
}

.tabs .tab-item .tab-btn.active span.icon {
    display: inline-flex;
}

.tabs .tab-item .tab-btn.active:focus {
    outline: none;
}

.tab-content {
    width: 100%;
    height: 100%;
    /*background: url("../images/empty.png") no-repeat center center;*/
}

.tab-content .tab-pane.active {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background: #fff;*/
}

.sub-tabs {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.sub-tabs .tab-content {
    height: 100%;
    overflow: hidden;
}

.sub-tabs .nav-link {
    border: 1px solid transparent;
    color: rgba(81, 85, 92, 1);
}

.sub-tabs .nav-link.active {
    border: 1px solid rgba(110, 173, 255, 1);
    background: #fff;
    color: #2066ff;
}

/* table */
.right-card .table {
    margin: 0;
}

.right-card .table th {
    color: rgba(0, 0, 0);
    font-size: 18px;
    font-weight: 600;
}

.right-card .table td {
    font-size: 18px;
    /*font-weight: 500;*/
}


.right-card .table > :not(caption) > * > * {
    padding: 0.6rem 0.2rem;
    border-bottom: 1px dashed #ccd6eb;
}

.right-card .table th {
    border-bottom: 1px solid #ccd6eb;
}

.right-card .table tbody tr:last-child td {
    border-bottom: none;
}

/* table end */

/* news-list */
.news-list {
    width: 100%;
}

.news-list li {
    border-bottom: 1px dashed #ccd6eb;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 111px;
    gap: 30px;
    padding: 15px 5px;
    overflow:hidden;
}
.news-list-2{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-list-2 li {
    height: 50%;
}
.news-list li {
    cursor:pointer;
}
.news-list li:last-child {
    border-bottom: none;
}

.news-list:not(.message-list) li:last-child {
    border-bottom: none;
}

.news-list li .text{
    width: 100%;
    overflow:hidden;
}
.news-list li .text h3 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.news-list:not(.message-list) li .text h3 {
    margin-bottom: 6px;
    margin-top: 5px;
}

.news-list li .text h3 .news-icon {
    margin-right: 8px;
}
.news-list li .text h3 .item-status {
    background: #1d78f1;
    margin-right: 5px;
    color: #fff;
    font-size: 16px;
    padding: 2px 6px;
    border-radius: 4px;
}
.news-list li .text h3 .item-status.over{
    background:#bcc3ce;
}
.news-list li a,
.news-list li .text h3 a {
    color: #000;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    flex:1;
}
.news-list li .text h3 a span{
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-list li a:hover,
.news-list li .text h3 a:hover {
    color: #006bff;
}

.news-list li .text p {
    color: #51555c;
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 20px;
}

.news-list li .img {
    width: 160px;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #ebf0f6;
}
.news-list li .img a{
    width: 100%;
    height: 100%;
}

.news-list li .img img {
    width: 100%;
}

.news-list li .date {
    font-size: 16px;
    color: #7a8ca4;
    flex-shrink: 0;
}

.message-list {
    /*margin-top: 10px;*/
}
.message-list li{
    height: auto;
}

.page-news-list li{
    height: 135px;
}

/* news-list end */

/* download-list */
.download-list {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*padding-top: 15px;*/
}

.download-list li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    background: #f5faff;
    padding: 10px;
    cursor: pointer;
    border: 1px solid transparent;
}

.download-list li > * {
    display: flex;
    align-items: center;
    gap: 5px;
}
.download-list li .date{
    flex-shrink: 0;
}

.download-list li p {
    font-size: 18px;
    width: calc(100% - 180px);
}

.download-list li p span {
    color: #869cb9;
}

.download-list li p a {
    color: #020202;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 50px);
    display: inline-block;
}

.download-list li p a:hover {
    color: #2066ff;
}

.download-list li .btns{
    font-size: 16px;
    display: none;
    gap: 15px;
}
.download-list li .btns .line{
    width: 1px;
    height: 16px;
    background: #d2d9e4;
}
.download-list li:hover{
    border: 1px solid #80c6ff;
}
.download-list li:hover .btns{
    display: flex;
}
.download-list li:hover p span {
    color: #2066ff;
}

/* download-list end */

/* map */
.map-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.map-container {
    width: calc(100% - 240px);
    height: 100%;
}

.map-canvas {
    width: 100%;
    height: 100%;
}

.count {
    width: 240px;
}

.area-sta {
    background: #f5faff;
    padding: 10px 15px;
    border-radius: 10px;
}

.area-sta + .area-sta {
    margin-top: 10px;
}

.area-title {
    color: #758098;
    font-size: 14px;
}

.area-data {
    display: flex;
    align-items: baseline;
    padding-top: 3px;
}

.area-num {
    color: #000;
    font-weight: 700;
    font-size: 25px;
}

.area-rate {
    font-size: 14px;
    color: #16be75;
    padding-left: 10px;
}

.area-rate svg {
    margin-bottom: 5px;
}

/* map end */


.minMenu.menu {
    height: 160px;
    background: linear-gradient(180deg, #0049A9 0%, rgba(0, 0, 0, 0.00) 100%);
    /*margin-bottom: -160px;*/
    position: absolute;
    top: 160px;
    width: 100%;
    z-index: 55;
    border-top: 1px solid #008cff;
}

.minMenu.menu .center {
    align-items: flex-start;
}

.minMenu.menu .center li {
    width: 160px;
    height: 80px;
    border-top: 1px solid transparent;
}

.minMenu.menu .center li.active,
.minMenu.menu .center li:hover {
    background: linear-gradient(180deg, rgba(119, 210, 255, 0.70) 0%, rgba(65, 180, 255, 0.35) 50%, rgba(0, 140, 255, 0.00) 100%);
    color: #fff;
    border-top: 1px solid #9DDEFF;
    position: relative;
}

.minMenu.menu .center li.active::before,
.minMenu.menu .center li:hover::before {
    content: "";
    display: block;
    width: 2px;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(119, 210, 255, 0.70) 0%, rgba(65, 180, 255, 0.35) 50%, rgba(0, 140, 255, 0.00) 100%);
}

.minMenu.menu .center li.active::after,
.minMenu.menu .center li:hover::after {
    content: "";
    display: block;
    width: 2px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(119, 210, 255, 0.70) 0%, rgba(65, 180, 255, 0.35) 50%, rgba(0, 140, 255, 0.00) 100%);
}

.minMenu.menu .center li.active a,
.minMenu.menu .center li:hover a {
    color: #fff;
}


/*分辨率适配*/
/* 1920*1080*125% 分辨率适配*/
@media screen and (max-width: 1600px) {
    .minMenu.menu {
        height: 130px;
        top: 150px;
    }
    .minMenu.menu .center li {
        height: 60px;
    }
    .minMenu.menu .center li.active::before,
    .minMenu.menu .center li.active::after{
        height: 60px;
    }
    .news-list li .text{
        width: calc(100% - 150px);
    }
    .page-box .bg-video{
        /*height: 500px;*/
    }
    .page-box .bg-video::after{
        top: 2px;
    }
    .page-box .bg-video video{
        /*top: -50px;*/
    }
    .page-box .carousel-inner{
        /*margin-top: 380px;*/
        margin-top: 320px;
        padding: 200px 0 70px;
    }
    .page-box .carousel-inner .carousel-item > div{
        width: 1200px;
    }
    .right-card{
        width:860px;
    }
    .container-box {
        width: 1200px;
    }
}
/* 1920*1080*150% 分辨率适配*/
@media screen and (max-width: 1350px) {
    .center{
        /*width: 1000px;*/
    }
    .minMenu.menu{
        top: 120px;
    }
    .news-list li .text p {
        font-size: 14px;
        margin-left: 18px;
    }


    .page-box .carousel-inner .carousel-item > div{
        width: 1000px;
        gap: 30px;
    }

    .page-box .carousel-inner{
        height: 650px;
    }

    .left-card{
        width: 250px;
    }
    .left-card .content{
        padding: 20px;
    }
    .left-card .content .title{
        font-size: 26px;
    }
    .left-card .content .btns a{
        font-size: 14px;
        width: 110px;
        height: 36px;
    }
    .left-card .content .btns a::before{
        width: 110px;
        height: 36px;
    }

    .left-card .img{
        width: 276px;
        height: 276px;
        top: 40%;
    }

    .left-card .img img{
        width: 110%;
    }
    .right-card{
        width:750px;
    }
    .right-card .table > :not(caption) > * > *{
        padding: 6px;
    }


    .tabs .tab-item .tab-btn{
        font-size: 18px;
    }
    .right-card .table th{
        font-size: 16px;
    }
    .right-card .table td{
        font-size: 16px;
    }

    .news-list li .text{
        width: 80%;
    }

    .news-list li .text h3{
        font-size: 16px;
    }
    .news-list li a, .news-list li .text h3 a{
        width: calc(100% - 80px);
    }

    .news-list li{
        height: 88px;
        padding: 10px 5px;
    }
    .message-list li{
        height: auto;
    }

    .download-list li{
        padding: 5px;
    }
    .download-list li p{
        font-size: 16px;
        /*margin-left: 18px;*/
        overflow: hidden;
    }

    .download-list li p a{
        width: calc(100% - 100px);
    }

    .carousel-control-next, .carousel-control-prev{
        width: 260px;
        padding: 10px;
    }

}