:root {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    --theme-color: #2561e9;
    --theme-red-color: #ce2d47;
    --nav-bg-color: rgba(37, 97, 233, 0.85);
}

/* 消息容器样式 */
.message-container {
    position: fixed;
    top: 0.24rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 10rem;
}

/* 消息项样式 */
.message-item {
    display: flex;
    align-items: center;
    padding: 0.1rem 0.16rem;
    margin-bottom: 0.08rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0.06rem 0.16rem 0 rgba(0, 0, 0, 0.08), 0 0.03rem 0.06rem -0.04rem rgba(0, 0, 0, 0.12), 0 0.09rem 0.28rem 0.08rem rgba(0, 0, 0, 0.05);
    font-size: 0.18rem;
    line-height: 1.5em;
    color: rgba(0, 0, 0, 0.88);
    pointer-events: auto;
    transform: translateY(-1rem);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.message-item.show {
    transform: translateY(0);
    opacity: 1;
}

.message-item.hide {
    transform: translateY(-1rem);
    opacity: 0;
}

.message-icon {
    margin-right: 0.08rem;
    font-size: 0.24rem;
    line-height: 1;
    flex-shrink: 0;
}

.message-success .message-icon {
    color: #52c41a;
}

.message-error .message-icon {
    color: #ff4d4f;
}

.message-warning .message-icon {
    color: #faad14;
}

.message-info .message-icon {
    color: #1677ff;
}

.message-loading .message-icon {
    color: #1677ff;
    animation: spin 1s linear infinite;
}

/* 旋转动画 */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 消息内容 */
.message-content {
    flex: 1;
    text-align: left;
}

.common-download-header {
    padding-top: 0.1rem;
}


.arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid var(--theme-color);
    border-radius: 50%;
    background-color: #fff;
    color: var(--theme-color);
    font-size: 0.2rem;
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 4px 15px 0 #c4c4c4a5;
    transform: translateY(-50%) scale(1.2);
    transition: .4s;
}

/* .arrow.swiper-button-disabled {*/
/*    border: 2px solid #c4c4c4;*/
/*    color: #c4c4c4;*/
/*    background-color: #f5f5f5;*/
/*    cursor: not-allowed;*/
/*    box-shadow: none;*/
/*} */

.swiper-button-lock {
    display: none;
}

.main_container {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-left: 2.6rem;
    padding-right: 2.6rem;
}

.text-ellipsis-1 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-ellipsis-2 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-ellipsis-3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text-ellipsis-4 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.04rem;
    padding: 0.04rem 0.1rem;
    border-radius: 5px;
    border: none;
    font-size: 0.18rem;
    overflow: hidden;
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.more-link img {
    width: 0.16rem;
    height: 0.06rem;
}

.more-link .button-text {
    transform: translateX(6px);
    transition-duration: 0.3s;
}

.more-link .iconer {
    transform: translateY(35px);
    transition-duration: 0.3s;
}

.more-link:hover .button-text {
    transform: translateX(0px);
}

.more-link:hover .iconer {
    transform: translateY(0px);
}

.nav-container,
.mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 2.6rem;
    background-color: var(--nav-bg-color);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav {
    height: 1.2rem;
}

.mobile-nav .container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.mobile-nav .nav-left img {
    height: 0.7rem;
}

.nav-container .nav-left {
    width: 2.12rem;
}

.nav-container .nav-right .nav-list {
    display: flex;
    align-items: center;
}

.nav-container .nav-right .nav-item>a {
    display: block;
    line-height: 0.8rem;
    padding: 0 0.16rem;
    color: #fff;
    font-size: 0.22rem;
    position: relative;
    white-space: nowrap;
}

.nav-container .nav-item .nav-sub-list {
    padding: 0 2.6rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}

.nav-container .nav-item:hover .nav-sub-list {
    opacity: 1;
    visibility: visible;
}

.nav-container .nav-item .nav-sub-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-container .nav-item .nav-sub-list a {
    display: block;
    padding: 0.16rem 0.32rem;
    color: #fff;
    font-size: 0.18rem;
}


.nav-container .nav-item .nav-sub-list a:hover {
    color: #3d68c7;
    text-decoration: underline;
}


.nav-container .nav-item.active>a {
    font-weight: bold;
}

.nav-container .nav-item>a::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    content: "";
    height: 3px;
    width: 10px;
    background-color: #fff;
    transition: 0.4s;
    border-radius: 3px;
    z-index: 101;
    opacity: 0;
}

.nav-container .nav-item.active>a::before {
    width: calc(100% - 0.4rem);
    opacity: 1;
}

.nav-container .nav-item:hover>a::before {
    width: calc(100% - 0.4rem);

    opacity: 1;
}

.mobile-nav {
    display: none;
}


/* 移动端菜单样式 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 遮罩层 */
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-box {
    position: absolute;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background-color: var(--nav-bg-color);
    padding: 1rem 0.3rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active .mobile-menu-box {
    left: 0;
}

.mobile-menu .nav-list {
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
}

.mobile-menu .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu .nav-item a {
    display: block;
    padding: 0.2rem 0;
    color: #fff;
    font-size: 0.34rem;
    text-decoration: none;
}

.mobile-menu .nav-item.active a {
    font-weight: bold;
}

.mobile-menu .nav-item .nav-sub-list {
    font-weight: normal;
}

.mobile-menu .nav-item .nav-sub-list a {
    font-size: 0.28rem;
    padding: 0.16rem 0;
    padding-left: 0.5rem;
    color: #f1f1f1;
}

body.menu-open {
    overflow: hidden;
    /* 防止菜单打开时页面滚动 */
}

.burger {
    width: 0.7rem;
    height: 0.7rem;
}

.burger img {
    width: 100%;
    height: 100%;
}

/* 底部模块START */
.footer {
    position: relative;
    z-index: 2;
    background-color: #2561e9;
    color: #ccc;
    padding: 0.26rem 0 1.5rem;
    font-size: 0.14rem;
    overflow: hidden;
}

.footer .main_container {}

.footer .link-background {
    position: absolute;
    height: 100%;
    top: 0;

}

.footer .link-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.3rem;
}

.footer .link-title__left {
    position: relative;
    z-index: 1;
    margin-right: 0.08rem;
    display: flex;
    align-items: center;
    color: #fff;
}

.footer .link-title h2 {
    font-size: 0.24rem;
    font-weight: normal;
}

.footer .link-title img {
    width: 0.21rem;
    height: 0.22rem;
    margin-right: 0.06rem;
}

.footer .link-title__right {
    display: flex;
    align-items: center;
}
.footer .link-title__right .left-img img {
    width: 0.93rem;
    height: 0.8rem;
}

.footer .link-title__right .submission-button {
    background: url("/assets/index/images/button-bg.png") no-repeat center center;
    background-size: 100% 100%;
    width: 1.34rem;
    height: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border: none;
    font-size: 0.2rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    gap: 0.04rem;
}

.footer .link-title__right .submission-button img {
    width: 0.21rem;
    height: 0.17rem;
}

.footer .link-english {
    position: relative;
    z-index: 1;
    margin-bottom: 0.22rem;
    font-weight: bold;
    font-size: 0.23rem;
    color: #fff;
    text-transform: uppercase;
}

.footer .link-list {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.footer .link-item {
    width: 25%;
}

.footer .link-item .link-text {
    color: white;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.2rem;
    padding: 0.08rem;
}

.footer .link-item .link-text img {
    width: 0.22rem;
    height: 0.22rem;
    margin-right: 0.08rem;
}

.footer .link-item .dropdown-menu {
    display: none;
}

.footer .link-item:hover .dropdown-menu {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    display: flex!important;
    align-items: center;
    flex-wrap: wrap;
    background-color: #1f5be6;
    width: 100%;
}

.footer .link-item .dropdown-menu>li {
    opacity: .8;
}

.footer .link-item .dropdown-item {
    display: inline-flex;
    padding: 0.14rem 0.2rem;
    text-align: center;
    color: white;
    font-size: 0.16rem;
}

.footer .link-item .dropdown-item:hover {
    text-decoration: underline;
}

.footer .link-item:hover .link-text {
    background: rgb(31, 91, 230);
} 



.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0.2rem 0;
    border-top: 1px solid #444;
    font-size: 0.16rem;
    color: #fff;
    background-color: #000;
}


.common-banner {
    width: 100%;
    height: 5.8rem;
    overflow: hidden;
    position: relative;
}

.common-banner picture {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.common-banner picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.common-banner .common-banner-tabs {
    position: absolute;
    bottom: 0;
    left: 2.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.5rem;
    z-index: 3;
}

.common-banner .common-banner-tab-item {
    height: 100%;
    transition: all 0.4s ease;
}

.common-banner .common-banner-tab-item:hover {
    background-color: var(--theme-color);
}

.common-banner .common-banner-tab-item.active {
    background-color: var(--theme-color);
}

.common-banner .common-banner-tab-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 0.25rem;
    color: #fff;
    font-size: 0.22rem;
}

.common-banner .common-banner-tabs .common-banner-tab-item.active:first-child a::before {
    content: "";
    display: block;
    width: 2.6rem;
    height: 100%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    right: 100%;
}

@media (max-width: 768px) {
    .common-banner .common-banner-tabs {
        left: 5vw;
        right: 5vw;
        height: 38px;
        bottom: 0;
        flex-wrap: wrap;
    }

    .common-banner .common-banner-tab-item a {
        height: 38px;
        padding: 2px 10px;
        font-size: 0.2rem;
    }
}

.common-detail {
    font-size: 20px!important;
    padding: 0.2rem 0;
}

.common-detail img {
    display: inline-block;
}

.common-detail p,
.common-detail div,
.common-detail span,
.common-detail {
    font-size: 20px!important;
}

.common-detail h1,
.common-detail h2,
.common-detail h3,
.common-detail h4,
.common-detail h5,
.common-detail h6 {
    font-size: 24px!important;
}

.news-header {
    text-align: center;
    padding: 0.6rem 0;
    text-transform: uppercase;
}

.news-header h2 {
    display: inline-flex;
    font-size: 0.34rem;
    color: #000;
    margin-bottom: 0.05rem;
    font-weight: 500;
    line-height: 1.2em;
    position: relative;
}

.news-header h2::before,
.news-header h2::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.22rem;
    height: 0.3rem;
}

.news-header h2::before {
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 0.1rem), -50%);
    background: url("/assets/index//images/icon/left-shape.png") no-repeat center center;
    background-size: 100% 100%;
}

.news-header h2::after {
    top: 50%;
    right: 0;
    transform: translate(calc(100% + 0.1rem), -50%);
    background: url("/assets/index//images/icon/right-shape.png") no-repeat center center;
    background-size: 100% 100%;
}

.news-header p {
    font-size: 0.2rem;
    color: #cbd5fa;
    font-weight: bold;
}

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    --bs-breadcrumb-item-padding-x: 0.08rem;
    margin-bottom: 0;
    padding: 0.16rem 0;
    font-size: 0.18rem;
}

.breadcrumb-item {
    color: #999;
    display: flex;
    align-items: center;
    font-size: 0.18rem;
}

.breadcrumb-item svg {
    font-size: 0.18rem;
    height: 1em;
    width: 1em;
    margin-right: 0.04rem;
}

.breadcrumb-item svg image {
    width: 100%;
    height: 100%;
}

.breadcrumb-item.active {
    color: #333;
}

.breadcrumb-item a {
    color: #999;
    font-size: 0.18rem;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgba(33, 37, 41, 0.75);
    content: var(--bs-breadcrumb-divider, "/");
}

.news-detail-title {
    font-size: 0.34rem;
    margin-bottom: 0.15rem;
    color: #000;
    font-weight: normal;
}

.news-detail-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.15rem;
    color: #666;
    font-size: 0.16rem;
    border-bottom: 1px solid #e5e5e5;
}

.news-detail-info-left {
    display: flex;
    gap: 0.1rem;

}

.news-detail-content {
    font-size: 16px;
    padding: 0.5rem 0;
}

.news-detail-content img {
    display: inline-block;
    margin: 20px 0;
}

.news-detail-content video {
    display: inline-block;
    min-width: 80%;
    
}

.news-detail-content p,
.news-detail-content div,
.news-detail-content span {
    letter-spacing: 1px;
    font-size: 20px!important;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
    font-size: 24px!important;
}

/* From Uiverse.io by satyamchaudharydev */
.download-shape-button {
    --width: 1rem;
    --height: 0.35rem;
    --tooltip-height: 0.35rem;
    --tooltip-width: 0.9rem;
    --gap-between-tooltip-to-button: 0.18rem;
    --button-color: var(--theme-color);
    --tooltip-color: #fff;
    display: block;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    font-family: "Arial";
    transition: background 0.3s;
}

.download-shape-button .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-shape-button .button-wrapper,
.download-shape-button .text,
.download-shape-button .icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
    font-size: 0.14rem;
}

.download-shape-button .text {
    top: 0
}

.download-shape-button .text,
.download-shape-button .icon {
    transition: top 0.5s;
}

.download-shape-button .icon {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-shape-button .icon svg {
    width: 0.24rem;
    height: 0.24rem;
}

.download-shape-button:hover {
    background: #6c18ff;
}

.download-shape-button:hover .text {
    top: -100%;
}

.download-shape-button:hover .icon {
    top: 0;
}

.download-shape-button:hover:before,
.download-shape-button:hover:after {
    opacity: 1;
    visibility: visible;
}

.download-shape-button:hover:after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.download-shape-button:hover:before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0.2rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
    margin: 0.02rem;
    margin-right: 0.05rem;
}

.pagination li:last-child {
    margin-right:0;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 0.08rem 0.12rem;
    text-decoration: none;
    border: 0.01rem solid rgba(37, 97, 233, 0.2);
    border-radius: 0.04rem;
    color: rgba(37, 97, 233, 0.85);
    background-color: #fff;
    font-size: 0.14rem;
    line-height: 1.2;
    min-width: 0.32rem;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.pagination li a:hover {
    background-color: rgba(37, 97, 233, 0.05);
    border-color: rgba(37, 97, 233, 0.4);
    color: rgba(37, 97, 233, 1);
    transform: translateY(-0.01rem);
}

.pagination li.active span {
    background-color: rgba(37, 97, 233, 0.85);
    border-color: rgba(37, 97, 233, 0.85);
    color: #fff;
    font-weight: bold;
}

.pagination li.disabled span {
    background-color: rgba(37, 97, 233, 0.05);
    border-color: rgba(37, 97, 233, 0.1);
    color: rgba(37, 97, 233, 0.3);
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .pagination {
        margin: 0.15rem 0;
        gap: 0.06rem;
    }

    .pagination li {
        margin: 0.01rem;
    }

    .pagination li a,
    .pagination li span {
        padding: 0.1rem 0.15rem;
        font-size: 0.16rem;
        min-width: 0.4rem;
        border-radius: 0.06rem;
    }
}

@media screen and (max-width: 480px) {

    .pagination li a,
    .pagination li span {
        padding: 0.12rem 0.18rem;
        font-size: 0.18rem;
        min-width: 0.45rem;
        border-radius: 0.08rem;
    }

    .pagination li:nth-child(n+6):nth-child(-n+7) {
        display: none;
    }
}

@media screen and (max-width: 320px) {
    html {
        font-size: 40px;
    }

    .pagination {
        margin: 0.25rem 0.15rem;
    }

    .pagination li a,
    .pagination li span {
        padding: 0.15rem 0.2rem;
        font-size: 0.2rem;
        min-width: 0.5rem;
        border-radius: 0.1rem;
    }

    .pagination li:nth-child(n+4):nth-child(-n+8) {
        display: none;
    }
}

@media (hover: none) and (pointer: coarse) {

    .pagination li a,
    .pagination li span {
        padding: 0.12rem 0.18rem;
        min-height: 0.44rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pagination li a:active {
        background-color: rgba(37, 97, 233, 0.1);
        transform: scale(0.95);
    }
}


.float-box {
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    right: 0.18rem;
    z-index: 100;
    opacity: 0;
    transition: .4s;
}

.float-box.active {
    opacity: 1;
    top: 60%;
}

.float-box ul {
    background-color: #fff;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.12rem 0;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
}

.float-box ul>li {
    position: relative;
    padding: 0 0.08rem 0;
}

.float-box .line {
    margin: 0.08rem 0;
    width: 0.2rem;
    height: 2px;
    background-color: #d1d1d1;
}

.float-box .target {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 0.24rem;
    height: 0.24rem;
    box-sizing: content-box;
}

.float-box .target:hover .target-img {
    filter: grayscale(0);
}

.float-box .target:hover .target-img-active {
    opacity: 1;
}

.float-box .target-img,
.float-box .target-img-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.24rem;
    height: 0.24rem;
    transition: .4s;
    z-index: 0;
    filter: grayscale(100%);
}

.float-box .target-img-active {
    opacity: 0;
    z-index: 1;
}

.float-box .popup {
    position: absolute;
    right: calc(100% + 0.14rem);
    top: 0;
    transform: scale(0);
    transform-origin: right center;
    z-index: 1;
    padding: 0.1rem 0.13rem;
    border: 1px solid #d1d1d1;
    background-color: #fff;
    min-width: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.float-box .target-item:hover .popup {
    transform: scale(1);
}

.float-box .popup::before {
    content: '';
    position: absolute;
    left: calc(100% - 0.03rem);
    top: 0.1rem;
    background-color: white;
    width: 0.08rem;
    height: 0.08rem;
    border-right: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    transform: rotate(-45deg);
}

.float-box .popup-img {
    width: 0.8rem;
    height: 0.8rem;
    margin-bottom: 0.06rem;
}

.float-box .popup-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.float-box .popup-content {
    font-size: 0.16rem;
    color: #333;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
}

.float-box-top {
    margin-top: 0.12rem;
    background-color: #fff;
    padding: 0.08rem 0.08rem;
    border-radius: 50%;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
}

.detail-video {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.2rem;
}

.detail-video .plyr {
    max-width: 10rem;
}

.empty-box {
    text-align: center;
    padding: 0.1rem 0;
}

.empty-box img {
    display: inline-block;
    margin-bottom: 0.2rem;
    width: 2rem;
}

.empty-box p {
    font-size: 0.18rem;
    color: #999;
} 

.empty-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-list img {
    width: 2rem;
}

.empty-list p {
    margin-top: 0.12rem;
    font-size: 0.16rem;
    color: rgba(0,0,0,0.45);
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .nav-container {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
    }


    .float-box ul {
        padding: 0.18rem 0;
    }

    .float-box ul>li {
        padding: 0 0.14rem 0;
    }

    .float-box .line {
        margin: 0.1rem 0;
        width: 0.4rem;
        height: 1px;
    }

    .float-box .target {
        width: 0.44rem;
        height: 0.44rem;
    }

    .float-box .target-img,
    .float-box .target-img-active {
        width: 0.44rem;
        height: 0.44rem;
    }

    .float-box-top {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.14rem 0.12rem;
    }

    .float-box .popup {
        padding: 0.2rem 0 0.16rem;
        width: 2rem !important;

    }

    .float-box .popup-img {
        width: 1.6rem;
        height: 1.6rem;
    }

    .float-box .popup-content {
        font-size: 0.24rem;
    }
}


/* 移动端响应式调整 */
@media (max-width: 768px) {
    .breadcrumb-item {
        font-size: 0.2rem !important;
    }

    .breadcrumb-item a {
        font-size: 0.2rem !important;
    }

    .news-header {
        padding: 0.3rem 0 !important;
    }

    .download-shape-button {
        --width: 1.3rem !important;
        --height: 0.46rem !important;
    }

    .download-shape-button .button-wrapper,
    .download-shape-button .text,
    .download-shape-button .icon {
        font-size: 0.2rem !important;
    }

    .download-shape-button .icon .news-header {
        padding-top: 0.3rem !important;
        padding-bottom: 0.3rem !important;
    }

}

@media (max-width: 480px) {
    .qr-item img {
        width: 0.8rem;
        height: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.1rem;
        padding: 0 0.1rem;
    }
}

/* 底部模块END */


@media (max-width: 992px) {
    .more-link {
        padding: 0.06rem 0.14rem;
        font-size: 0.28rem;
        gap: 0.08rem;
    }

    .more-link .button-text {
        transform: translateX(0.14rem);
        transition-duration: 0.3s;
    }

    .more-link img {
        width: 14px;
        height: 5px;
    }

    .main_container {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .mobile-nav {
        padding-left: 5vw !important;
        padding-right: 5vw !important;
    }

    .common-banner .common-banner-tabs .common-banner-tab-item.active:first-child a::before {
        display: none;
    }

    .footer {
        padding: 0.5rem 0 0.5rem;
    }

    .footer .link-background {
        right: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: inherit;
    }

    .footer .link-title img {
        width: 0.3rem;
        height: 0.3rem;
        margin-right: 0.1rem;
    }

    .footer .link-title h2 {
        font-size: 0.3rem;
    }

    .footer .link-english {
        font-size: 0.3rem;
    }

    .footer .link-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .footer .link-item {
        width: 100%;
        height: 100%;
    }

    .footer .link-item .link-text {
        font-size: 0.28rem;
        margin-bottom: 0.1rem;
    }

    .footer .link-item .link-text img {
        width: 0.27rem;
        height: 0.3rem;
        margin-right: 0.14rem;
    }

    .footer .dropdown-toggle::after {
        display: none;
    }

    .footer .link-item .dropdown-menu {
        position: relative;
    }

    .footer .link-item:hover .dropdown-menu {
        display: block;
        position: relative;
        transform: translate(0, 0);
        background-color: transparent;
    }

    .footer .link-item .link-item {
        margin-bottom: 0.14rem;
    }

    .footer .link-item .dropdown-menu>li {
        width: 100%;
    }

    .footer .link-item .dropdown-item {
        font-size: 0.24rem;
        margin-bottom: 0.1rem;
        text-align: left;
        padding: 0.1rem 0;
        width: 100%;
    }

    .footer .link-item .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .footer-bottom p {
        font-size: 0.24rem;
    }
}