* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

dl,
ol,
ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.icon-right {
    width: 16px;
    height: 16px;
    background: url(../images/more_01.png) 0% 0% / contain no-repeat;
    transition: .3s all ease-in-out;
}




header {
    background-color: #fff;
    display: flex;
    width: 1400px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

header>h1 {
    font-size: 0;
    margin-right: 100px;
}

header>h1 img {
    width: 300px;
}

header>nav {
    margin: 0 60px;
    flex: 1;
}

header>nav>ul {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

header>nav>ul>li {
    color: #585757;
    position: relative;
    cursor: pointer;
    padding: 20px 0;
    font-weight: 700;
}

header>nav>ul>li>a {
    font-size: 18px;
}

header>nav>ul>li:hover {
    color: #003F88;
}

header>nav>ul>li:hover>a {
    color: #003F88;
    border-bottom: 2px solid #003F88;
}

header>nav>ul>li:hover .nav-children {
    display: block;
}

header>nav>ul>li:hover::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/nav_icon.png) no-repeat center / cover;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%)
}

.nav-children {
    display: none;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    white-space: nowrap;
}

.nav-children>li a {
    display: block;
    padding: 10px 30px;
}

.nav-children>li a:hover {
    color: #003F88;
    font-weight: 700;
}



.header-search {
    display: flex;
    align-items: center;
}

.header-search input {
    width: 140px;
    height: 24px;
    border-radius: 90px;
    background-color: #E5E5E5;
    border: none;
    padding-left: 14px;
}

.header-search button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    font-size: 0;
}

.header-search img {
    width: 20px;

}


.hamburger {
    display: none;
}




/* banner */
.banner {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.banner-container {
    height: 420px;
    display: flex;
    transition: transform 0.6s ease-in-out;
    -ms-transition: -ms-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
}

.banner-item {
    flex: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    filter: blur(2px);
}

.banner-item.active {
    opacity: 1;
    filter: none;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 74px;
    height: 74px;
    background-color: rgba(31, 45, 61, .11);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(31, 45, 61, .23)
}

.prev-btn i {
    left: 16px;
    transform: rotate(180deg);
}

.next-btn {
    right: 16px;
}


.banner .indicator-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.banner .indicator {
    width: 10px;
    height: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    border: 1px solid #fff;
}

.banner .indicator.active {
    background: #fff;
}





main {
    margin-bottom: 20px;
}

.content {
    width: 1200px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.tableList {
    border-radius: 6px;
    width: 250px;
}

.tab_ul {
    max-height: 632px;
    overflow: auto;
}

.tab_ul>li>a {
    display: block;
    padding: 20px;
    text-align: center;
    border-top: 1px #fff dashed;
    background-color: #F2F2F2;
    color: #154E9D;
    font-size: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}


.tab_ul>li.selected>a,
.tab_ul>li.parent>a {
    background: linear-gradient(270deg, #0A58BC 0%, rgba(144, 180, 221, 0.5) 100%);
    color: #fff;
    font-weight: 700;
}

.tab_ul>li.selected>a::after,
.tab_ul>li.selected>a::before,
.tab_ul>li.parent>a::after,
.tab_ul>li.parent>a::before {
    display: block;
    content: "";
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 3px;
}

.sub_menu {
    display: none;
}

.selected .sub_menu,
.parent .sub_menu {
    display: block;
}

.sub_menu>li {
    margin: 10px 0;
    background-color: #F0F5FB;
    color: #585757;
    text-align: center;
}

.sub_menu>li.selected {
    color: #154E9D;
    font-weight: 700;
}

.sub_menu>li>a {
    display: block;
    padding: 10px;
}






.linkList {
    margin-top: 40px;
    background-color: #eee;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.linkList h4 {
    color: #154E9D;
    font-size: 20px;
}

.linkList li {
    padding: 8px;
    margin-top: 14px;
    background-color: #fff;
    color: #666;
}

.linkList li select {
    border: none !important;
}

.content .right {
    flex: 1;
}







footer {
    background: url(../images/footer_bg.png) no-repeat center / cover;
}

.footer-top {
    width: 1200px;
    padding: 40px 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer-address {
    color: #B1B1B1;
    font-size: 15px;
}

.footer-address>p {
    display: flex;
    margin-bottom: 5px;
}

.footer-address>p>span {
    margin-right: 30px;
}

.footer-code {
    display: flex;
    gap: 20px;
}

.footer-code>img {
    cursor: pointer;
}


.footer-code .footer-code-ma {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 12px;
}

.footer-code .footer-code-ma>img {
    width: 90px;
    height: 90px;
    margin-bottom: 5px;
}

.footer-bottom {
    background-color: #CACACA;
    color: #fff;
    padding: 6px 0;
    text-align: center;
    font-size: 13px;
}

.qr-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.qr-popup img {
    width: 300px;
    height: 300px;
    max-width: 80%;
    max-height: 80%;
    border: 3px solid #fff;
    border-radius: 8px;
    transition: transform 0.3s;
}



@media (max-width: 992px) {
    body.nav-scroll-lock {
        overflow: hidden;
        height: 100%;
        width: 100%;
    }

    header {
        padding: 15px 20px 15px 20px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    header>h1 {
        margin-right: 0;
    }

    header>h1 img {
        width: 200px;
    }

    header>nav {
        position: fixed;
        top: 60px;
        left: -100vw;
        width: 100vw;
        height: calc(100vh - 60px);
        background: #154E9D;
        transition: 0.3s;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        overflow: auto;
        z-index: 9;
        margin: 0;
    }

    header>nav.active {
        left: 0;
        align-items: normal;
        overflow: auto;

    }

    header>nav>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    header>nav>ul>li {
        display: flex;
        justify-content: space-between;
        color: #fff;
        padding: 20px;
        flex-wrap: wrap;
    }

    header>nav>ul>li:hover {
        color: #fff;
        background-color: transparent;
    }

    header>nav>ul>li:hover>a {
        color: #fff;
        background-color: transparent;
        border: none;

    }

    header>nav>ul>li:hover .nav-children {
        display: none;
    }

    header>nav>ul>li.nav-li-active {
        background-color: #003F88;
    }

    .nav-li-active .nav-children {
        display: block !important;
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        text-align: left;
        color: rgb(204, 204, 204);
        font-size: 14px;
        font-weight: 400;
        margin-top: 10px;
    }

    .nav-li-active i {
        transform: rotate(90deg);
    }

    .nav-children>li a:hover {
        color: rgb(204, 204, 204);
        font-weight: 400;
    }




    .header-search {
        display: none;
    }


    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 100;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #154E9D;
        transition: 0.3s;
    }

    /* 激活状态 */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    .banner {
        height: 155px;
    }

    .banner-container {
        height: 155px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }

    .footer-top {
        width: 90%;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .footer-address>p {
        flex-direction: column;
    }

    .footer-address>p>span {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .footer-address>p>span:last-child {
        margin-bottom: 0;
    }

    .linkList{
        margin-top: 25px;
    }

    .linkList li select {
        width: 100% !important;
    }

    .footer-code {
        justify-content: space-between;
    }

    .content {
        width: 90%;
        flex-direction: column;
        gap: 30px;
    }

    .tableList {
        width: 100%;
    }

    .tab_ul {
        height: 70px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    .tab_ul>li {
        order: 1;
    }

    .tab_ul>.selected {
        order: 0;
    }

    .tab_ul>i {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 27px;
        font-size: 20px;
        line-height: 1;
        color: #000;
    }

    .tab_ul.active {
        height: auto;
    }

    .tab_ul.active>i {
        transform: rotate(90deg);
    }
}

@media (max-width: 479px) {}