@font-face {
    font-family: 'biaoti';
    src: url('../webfonts/btzt.ttf') format('truetype');
}

:root {
    --dark-color: #450606;
    --primary-color: darkred;
    --second-color: #CC1414;
    --hover-color: #bf4747;
    --mid-back-color: rgba(220,50,50,.5);
    --hover-text-color: #f68080;
    --boder-color: rgba(90,0,0,.1);
    --gray-color: #f1c7c7;
}

::selection {
    background-color: var(--second-color);
    color: #fff;
}

::-moz-selection {
    background-color: var(--second-color);
    color: #fff;
}

::-webkit-selection {
    background-color: var(--second-color);
    color: #fff;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

html {
    overflow-x: hidden;
}

body, html {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'sans-serif';
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
}

ol, ul {
    list-style: none;
}

header,
main,
footer,
nav,
div[class*="_box"] {
    position: relative;
}

.font_light {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'sans-serif';
}

.vam {
    margin-top: -3px;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width: 1400px;
}

.fixed-style {
    top: 0;
    width: 100%;
    position: fixed !important;
    box-shadow: 5px 0 3px #00000060;
    z-index: 1000;
}

.ani_hide {
    opacity: 0;
}

@media (max-width: 1400px) {
    .inner {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .col-md-l {
        width: 100% !important;
    }

    .col-md-m {
        width: 100% !important;
        margin-top: 30px;
    }

    .col-md-r {
        width: 100% !important;
        margin-top: 30px;
    }
}

#fullPage {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: .8;
    z-index: 100;
    transition: all .5s;
    background-color: white;
    border-bottom: 1px solid #FEE;
}

    .header:hover {
        opacity: 1;
    }

    .header .inner {
        display: flex;
        align-items: center;
    }

    .header .logo {
        margin: 10px 0;
        flex: 1 1 300px;
    }

        .header .logo a {
            display: block;
            width: 100%;
            height: 54px;
            background: url(../images/logo.png) no-repeat center left;
            background-size: contain;
        }

    .header .middle {
        flex: 1 1 800px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .nav {
        flex: 1 1 576px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

        .header .nav > li {
            position: relative;
            height: 100%;
            padding: 10px 0;
        }

            .header .nav > li > a {
                position: relative;
                height: 80%;
                color: var(--primary-color);
                font-size: 20px;
                font-weight: bold;
                transition: all 0.3s;
            }

                .header .nav > li > a::after {
                    content: '';
                    opacity: 0;
                    position: absolute;
                    left: 50%;
                    -webkit-transform: translateX(-50%);
                    -ms-transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -o-transform: translateX(-50%);
                    transform: translateX(-50%);
                    bottom: -5px;
                    width: 0;
                    height: 4px;
                    border-radius: 2px;
                    background-color: var(--hover-text-color);
                    transition: all 0.3s;
                }

        .header .nav .nav_sec {
            display: none;
            z-index: 10;
            position: absolute;
            padding: 10px 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            top: calc(100% - 2px);
            background: var(--primary-color);
            width: 144px;
            flex-direction: column;
            transition: all 0.5s;
            border-radius: 5px;
            box-shadow: 0 0 11px #00000090;
        }

            .header .nav .nav_sec:hover {
                background: var(--second-color);
            }

            .header .nav .nav_sec li {
                width: 100%;
            }

                .header .nav .nav_sec li a {
                    display: block;
                    width: 100%;
                    height: 40px;
                    line-height: 40px;
                    text-align: center;
                    font-size: 16px;
                    font-weight: normal;
                    color: #fff;
                    padding: 0 10px;
                }

                /*                    .header .nav .nav_sec li a:hover {
                        font-weight: bold;
                    }*/

                .header .nav .nav_sec li + li {
                    background: url(../images/icon_sep.png) no-repeat top center;
                }

        .header .nav .rmhd_sec {
            display: none;
            z-index: 10;
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            transform: translateX(-50%);
            top: 100%;
            flex-direction: column;
            align-items: center;
            width: 130px;
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.2);
        }

            .header .nav .rmhd_sec img {
                width: 100%;
            }

            .header .nav .rmhd_sec p {
                margin-top: 10px;
                font-size: 16px;
                font-weight: normal;
                color: #fff;
                line-height: 22px;
            }

        .header .nav > li.cur > a,
        .header .nav > li:hover > a {
            color: var(--second-color);
            font-weight: bold;
        }

            .header .nav > li.cur > a::after,
            .header .nav > li:hover > a::after {
                opacity: 1;
                width: 75px;
            }

            .header .nav > li:hover > a + .nav_sec {
                display: flex;
            }

            .header .nav > li:hover > a + .rmhd_sec {
                display: flex;
            }

    .header .search_box {
        margin-left: 80px;
        margin-right: 40px;
        position: relative;
        display: flex;
        border-radius: 16.5px;
        height: fit-content;
    }

        .header .search_box .input {
            display: block;
            box-sizing: border-box;
            padding-left: 15px;
            padding-right: 30px;
            width: 180px;
            height: 33px;
            background: rgba(200, 0, 0, 0.08);
            border-radius: 16.5px;
            font-size: 14px;
            font-weight: normal;
            font-stretch: normal;
            letter-spacing: 1px;
            color: var(--primary-color);
            border: 1px solid rgba(200, 55, 55, 0.2);
            transition: width 0.4s;
            font-family: inherit;
        }

            .header .search_box .input:focus {
                width: 250px;
                outline: none;
            }

            .header .search_box .input::placeholder {
                color: var(--hover-text-color);
            }

        .header .search_box .btn {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 2px;
            width: 29px;
            height: 29px;
            background-color: var(--primary-color);
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            -webkit-transition: opacity 0.3s;
            -o-transition: opacity 0.3s;
            -moz-transition: opacity 0.3s;
            transition: opacity 0.3s;
        }

            .header .search_box .btn:hover {
                opacity: 0.8;
            }

    .header .tools {
        flex: 0 0 214px;
        display: flex;
        justify-content: space-between;
        padding-top: 4px;
    }

        .header .tools a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            -webkit-transition: opacity 0.3s;
            -o-transition: opacity 0.3s;
            -moz-transition: opacity 0.3s;
            transition: opacity 0.3s;
        }

            .header .tools a:hover {
                opacity: 0.7;
            }

        .header .tools span {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.2);
        }

.mobile_nav {
    display: none;
    right: 10px;
    top: -80px;
    z-index: 200;
}

    .mobile_nav .tc {
        text-align: center;
    }

    .mobile_nav .search_box {
        position: relative;
        display: flex;
        border-radius: 16.5px;
        height: fit-content;
    }

        .mobile_nav .search_box .input {
            display: block;
            box-sizing: border-box;
            padding-left: 35px;
            padding-right: 30px;
            width: 100%;
            height: 50px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 30px;
            font-weight: normal;
            font-stretch: normal;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: white;
            font-size: 1.3rem;
            outline: none;
        }

            .mobile_nav .search_box .input:focus {
                border: solid 1px #b9b9b9;
            }

            .mobile_nav .search_box .input::placeholder {
                color: #fff;
            }

        .mobile_nav .search_box .btn {
            position: absolute;
            top: 0;
            bottom: 2px;
            margin: auto;
            right: 1px;
            width: 46px;
            height: 46px;
            background-color: var(--primary-color);
            border-radius: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            -webkit-transition: opacity 0.3s;
            -o-transition: opacity 0.3s;
            -moz-transition: opacity 0.3s;
            transition: opacity 0.3s;
        }

            .mobile_nav .search_box .btn:hover {
                background-color: var(--second-color);
            }

    .mobile_nav .menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 598;
        width: 100%;
        background: linear-gradient(135deg, var(--second-color), var(--dark-color));
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -webkit-transition: transform 0.3s;
        transition: transform 0.3s;
        font-size: 1.5rem;
    }

        .mobile_nav .menu li {
            text-align: center;
        }

        .mobile_nav .menu .login_list {
            display: flex;
            color: #fff;
            margin: 0 15px;
            padding: 0 15px;
            min-width: 270px;
            justify-content: space-evenly;
            margin-bottom: 30px;
        }

        .mobile_nav .menu .search_box {
            width: calc(100% - 60px);
            margin-bottom: 30px;
            margin: 0 30px;
            box-sizing: border-box;
        }

        .mobile_nav .menu .img_logo {
            display: block;
            max-width: 70%;
            margin: 30px 20px 120px;
            height: 54px;
        }

        .mobile_nav .menu li + li a {
            box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
        }

        .mobile_nav .menu > ul {
            margin-top: 40px;
            gap: 20px;
        }

            .mobile_nav .menu > ul > li a {
                position: relative;
                display: block;
                margin: 0 25px;
                padding: 5px 15px;
                line-height: 50px;
                color: #ffebeb;
            }

            .mobile_nav .menu > ul > li > a {
                font-weight: bold;
                font-size: 1.8rem;
            }

            .mobile_nav .menu > ul > li > ul > li > a {
                color: #CCC;
            }

            .mobile_nav .menu > ul > li:nth-child(1) {
                animation-delay: 0.1s;
            }

            .mobile_nav .menu > ul > li:nth-child(2) {
                animation-delay: 0.2s;
            }

            .mobile_nav .menu > ul > li:nth-child(3) {
                animation-delay: 0.3s;
            }

            .mobile_nav .menu > ul > li:nth-child(4) {
                animation-delay: 0.4s;
            }

            .mobile_nav .menu > ul > li:nth-child(5) {
                animation-delay: 0.5s;
            }

            .mobile_nav .menu > ul > li:nth-child(6) {
                animation-delay: 0.6s;
            }

            .mobile_nav .menu > ul > li:nth-child(7) {
                animation-delay: 0.7s;
            }

            .mobile_nav .menu > ul > li:nth-child(8) {
                animation-delay: 0.8s;
            }

        .mobile_nav .menu .menu_list_more ul {
            margin: 20px;
            display: none;
        }

        .mobile_nav .menu.on {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

    .mobile_nav .mask {
        display: none;
        position: fixed;
        z-index: 597;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.75);
        opacity: 0;
        transition: opacity 0.2s;
    }

        .mobile_nav .mask.on {
            display: block;
            opacity: 1;
        }

    .mobile_nav .menu-btn {
        display: block;
        position: absolute;
        right: 10px;
        z-index: 599;
        width: 50px;
        height: 50px;
        box-sizing: border-box;
        text-align: center;
        cursor: pointer;
        background: transparent;
    }

        .mobile_nav .menu-btn > span {
            position: absolute;
            left: 0;
            right: 0;
            width: 22px;
            height: 2px;
            margin: 0 auto;
            background: var(--second-color);
            border-radius: 2px;
            transition: 0.25s;
        }

            .mobile_nav .menu-btn > span:nth-child(1) {
                top: 14px;
            }

            .mobile_nav .menu-btn > span:nth-child(2) {
                top: 23px;
            }

            .mobile_nav .menu-btn > span:nth-child(3) {
                top: 32px;
            }

        .mobile_nav .menu-btn.on span,
        .mobile_nav .hd + .menu-btn > span {
            background: #fff;
        }

            .mobile_nav .menu-btn.on span:nth-child(1) {
                top: 21px;
                transform: rotate(45deg);
            }

            .mobile_nav .menu-btn.on span:nth-child(2) {
                opacity: 0;
                transform: rotate(90deg);
            }

            .mobile_nav .menu-btn.on span:nth-child(3) {
                top: 21px;
                transform: rotate(135deg);
            }

    .mobile_nav .menu ul {
        flex-direction: column;
    }

body.modal-open {
    overflow: hidden;
}

.scrollWrap .header {
    opacity: 1;
    background-color: rgba(250,250,250,.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


#fp-nav ul li a.active span {
    background-color: var(--second-color) !important;
}

    #fp-nav ul li a.active span:after {
        border-color: var(--second-color) !important;
    }

#fp-nav ul li .fp-tooltip {
    color: var(--second-color) !important;
}
/* section backimg */
#group {
    background: url(/images/back_group.jpg) no-repeat center;
}

#news {
    background: url(/images/back_news.jpg) no-repeat center;
}

#footer {
    background: url(/images/back_party.jpg) no-repeat center;
}

/* Container */
.container,
.container-fluid {
    width: 100%;
    height: 100vh;
    padding-top: 150px;
    margin-right: auto;
    margin-left: auto;
}

/* topBanner */
.slide a {
    display: block;
}

.banner_box {
    height: 100vh;
}

    .banner_box .banner_img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 2s ease .8s;
    }

.slide.active .banner_img {
    transform: scale(1.05);
}

.banner_box .inner {
    position: relative;
    height: 100%;
}

    .banner_box .inner .banner_text {
        color: white;
        font-size: 3rem;
        font-weight: bold;
    }

.banner_box .banner_text_box {
    position: absolute;
    top: 30%;
    left: 0;
    animation-duration: 1s;
    animation-delay: .5s;
}

    .banner_box .banner_text_box img {
        max-width: 100%;
    }

@keyframes TopBots {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.TopBots {
    animation: TopBots 1.2s ease-in-out infinite both;
}

.fade-up-animate {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

.fade-up-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.owl-dots {
    text-align: center;
}
/* 集团信息 */
#group .title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    padding-bottom: 40px;
}
div.info {
    display: flex;
    text-align: justify;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.info .left {
    flex: 2;
    min-width: 560px;
}

.info .right {
    flex: 1;
    min-width: 460px;
}

.infoImg {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 2px 2px 4px #0000009e;
}

#group img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 7;
    overflow: hidden;
}

/* 新闻*/
#news .row {
    display: flex;
    flex-wrap: wrap;
}

.row .left, .row .right {
    width: 50%;
    padding: 10px;
}

.news_subject:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    left: 0;
    background-color: var(--primary-color);
}

.news_subject {
    font: 28px biaoti;
    color: var(--primary-color);
    position: relative;
    padding: 0 16px;
}

.newsImg, .topicBanner {
    max-height: 330px;
    overflow: hidden;
    margin-top: 1em;    
}

    .newsImg img {
        height: auto;
        width: 100%;
        object-fit: cover;
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }

    .newsImg .newsTitle {
        position: absolute;
        top: 300px;
        background-color: #00000090;
        color: white;
        width: 100%;
        padding: 5px 15px;
        overflow: hidden;
        font-size: 14px;
    }

#news .owl-nav {
    position: absolute;
    top: calc(50% - 60px);
    font-size: 80px;
    width: 100%;
    padding: 0 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
    transition: all .5s;
    pointer-events: none;
}

    #news .owl-nav:hover {
        opacity: 1;
    }

    #news .owl-nav button {
        pointer-events: all;
        text-shadow: 2px 2px 5px #000000;
    }

.newsList {
    font-size: 17px;
    padding-left: 16px;
    margin: 1em;
    min-height: 140px;
}

    .newsList li:hover {
        color: var(--second-color);
    }

    .newsList li + li {
        padding-top: 5px;
    }

.newsURL {
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 100px);
}

.newsDate {
    float: right;
}

#sBanner {
    padding-bottom: 20px;
    display: flex;
}

.topicBanner {
    height: 230px;
}

.topicImg {
    height: 230px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 11 / 2;
    overflow: hidden;
}

#footer .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

    #footer .owl-dots .owl-dot {
        height: 10px;
        width: 10px;
        transition: 0.5s;
        margin: 0 5px 5px;
        border-radius: 4px;
        background-color: #FFFFFF90 !important;
        box-shadow: 2px 2px 4px #0000009e;
    }

        #footer .owl-dots .owl-dot:hover, #footer .owl-dots .owl-dot.active:hover {
            background-color: white !important;
        }

        #footer .owl-dots .owl-dot.active {
            background-color: var(--primary-color) !important;
        }

/* 侧边栏 */
#backTop {
    padding: 8px 10px;
    background-color: var(--mid-back-color);
    border-radius: 50%;
    z-index: 100;
    box-shadow: rgb(0 0 0 / 50%) 0px 0px 4px;
}

    #backTop:hover {
        background-color: var(--second-color);
    }

/* 页脚 */
.footer {
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    color: rgba(255, 255, 255, 0.8);
    padding: 0 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

    .footer .inner {
        display: flex;
        justify-content: space-evenly;
    }

    .footer a:hover {
        color: var(--gold);
    }

    .footer a:hover {
        color: var(--hover-text-color);
    }

.footer_top {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 200px;
    padding: 10px 100px;
}

    .footer_top .left {
        padding-right: 100px;
        display: flex;
        flex: 0 1 860px;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }

        .footer_top .left::after {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 0;
            content: '';
            width: 1px;
            background-color: #CCC;
            opacity: 0.2;
        }

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #CCC;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(200,200,200,.2);
    padding-top: 10px;
}

    .footer .copyright .m {
        margin: 0 10px;
    }

.footer_top .contact {
    padding-left: 20px;
    flex: 1 1 570px;
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: center;
    height: fit-content;
    flex-wrap: nowrap;
}

    .footer_top .contact a {
        text-align: center;
        margin-right: 32px;
    }

    .footer_top .contact .qrcode {
        width: 120px;
    }

.footer .footer_top .contact .contact_p {
    line-height: 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 18px 0;
}

.contact p {
    margin: 0;
    padding: 0px;
}

.left .menus {
    align-items: stretch;
    display: flex;
    justify-content: space-between;
    margin: 35px;
    width: 100%;
}

menu h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding: 10px 0;
}

    menu h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--hover-text-color);
    }

menu p {
    margin-bottom: 15px;
}

.nav_sec {
    list-style: none;
}

    .nav_sec li {
        margin-bottom: 5px;
    }

    .nav_sec a {
        display: block;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

        .nav_sec a:hover {
            transform: translateX(10px);
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s;
    }

        .social-links a:hover {
            background-color: var(--gold);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.where {
    position: absolute;
    width: 100%;
    bottom: 42px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    z-index: 1;
}

    .where .list {
        display: flex;
    }

    .where li + li:before {
        display: inline-block;
        padding: 0 8px;
        color: #fff;
        content: '/';
    }

    .where .list {
        color: #fff;
    }

@media (max-width: 600px) {
    .where {
        position: static;
        padding: 20px 0;
    }

        .where li + li:before,
        .where .list {
            color: #333;
        }
}

.banner {
    position: relative;
}
/* 组织架构 */
.orgtree {
    margin: 0 auto;
    height: 600px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .orgtree ul {
        text-align: center;
        padding-top: 60px;
        position: relative;
        webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all .3s;
        display: flex;
        justify-content: center;
    }

    .orgtree li {
        margin: auto;
        float: left;
        list-style: none;
        text-align: center;
        position: relative;
        webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all .3s;
        margin: 0;
        padding: 40px 3px 0 0px;
    }

        /*利用::before,::after作分支线*/
        .orgtree li::before, .orgtree li::after {
            content: "";
            position: absolute;
            top: 0;
            right: 50%;
            width: 80%;
            height: 50px;
            border-top: 1px solid #c30d23;
        }

        .orgtree li:after {
            right: auto;
            left: 50%;
            border-left: 1px solid #c30d23;
        }

        .orgtree li:first-child::before, .orgtree li:last-child::after {
            border: 0 none;
        }

        .orgtree li:last-child::before {
            border-right: 1px solid #c30d23;
            -webkit-border-radius: 0 15px 0 0;
            -moz-border-radius: 0 15px 0 0;
            border-radius: 0 15px 0 0;
        }

        .orgtree li:first-child::after {
            -webkit-border-radius: 15px 0 0 0;
            -moz-border-radius: 15px 0 0 0;
            border-radius: 15px 0 0 0;
        }


        /*删除仅只有一个分支的分支线*/
        .orgtree li:only-child::before, .orgtree li:only-child::after {
            border: none;
        }

        .orgtree li:only-child {
            padding-top: 0;
        }


    /*添加仅只有一个分支的下分支线*/
    .orgtree ul ul::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        border-left: 1px solid #c30d23;
        width: 0;
        height: 60px;
    }

    .orgtree a {
        background-color: #c30d23;
        display: inline-block;
        border: 1px solid #c30d23;
        padding: 10px 6px;
        color: #fff;
        text-decoration: none;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all .3s;
        width: 200px;
    }

    .orgtree .longc {
        display: table;
        width: 15px;
        height: 260px;
    }

        .orgtree .longc p {
            display: table-cell;
            vertical-align: middle;
            text-align: center;
            text-indent: unset;
            font-size: 16px;
            font-family: unset;
           /* writing-mode: vertical-rl;
            -webkit-writing-mode: vertical-rl;
            text-orientation: upright;
            -webkit-text-orientation: upright;*/
        }

/* 其他Info样式 */
body.infoBody {
    background: #F3F3F3 url(/images/footer_bottom.png) no-repeat center bottom;
}

.infoBody .header {
    position: relative;
}

section.banner {
    height: 280px;
}

    section.banner .titleBG {
        position: relative;
        top: 70px;
        margin: 0 auto;
        height: 140px;
        width: 540px;
        background-color: #FFFFFF60;
        border-radius: 15px;
        box-shadow: 0 0 20px #00000020;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        section.banner .titleBG p {
            margin: 0;
        }

.titleBG .title {
    font-size: 40px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

.titleBG .subTitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--mid-back-color);
}

section.type {
    position: static;
    background-color: white;
}

    section.type .inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
    }

.bread {
    color: gray;
    font-size: 18px;
}

    .bread a:hover, .bread it {
        color: var(--second-color);
    }

section.type .nav {
    display: flex;
}

    section.type .nav li {
        margin: 0 6px;
        padding: 5px 10px;
        background-color: var(--gray-color);
        border-radius: 15px;
        color: var(--primary-color);
        transition: all .5s;
    }

        section.type .nav li:hover, section.type .nav li.active {
            background-color: var(--hover-color);
            color: white;
        }

section.info .container, section.leader .container {
    height: auto;
    padding-top: 50px;
    padding-bottom: 220px;
}

    section.info .container hr {
        margin: 20px 0;
    }

section.info p {
    text-align: justify;
    text-indent: 2em;
    line-height: 1.5;
    font-size: 20px;
    font-family: "仿宋";
    padding: 5px 0;
}

    section.info p.no-indent {
        text-indent: 0;
    }

section.info .company-intro p {
    font-size: 1em;
    font-family: unset;
    line-clamp: 3;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 1.7;
    overflow: hidden;
}

section.info .company-intro.expanded p {
    display: block;
}

section.info h1, section.info h2, section.info h3, section.info h4 {
    padding: 5px 0;
}

section.article img {
    background-color: black;
    width: 80%;
    height: auto;
    margin: 15px 0;
}

section.article video {
    background-color: black;
    width: 80%;
    min-height: 520px;
    margin: 15px 0;
}

.infoFooter {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    font-size: 14px;
    color: white;
    bottom: 50px;
}

    .infoFooter p {
        margin: 0;
        text-align: center;
    }

        .infoFooter p .m {
            margin: 0 10px;
        }
/* Leader*/
.leader .title {
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 20px;
}

.leaderCard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.leaderCard li {
    display: flex;
    margin: 30px 0;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all .3s;
}

    .leaderCard li:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px #00000090;
    }

        .leaderCard li:hover img {
            transform: scale(1.1);
        }

.leaderCard .img {
    width: 200px;
    height: 280px;
    overflow: hidden;
}

.leaderCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.leaderCard .text {
    margin-left: 40px;
    overflow: hidden;
    flex: 1;
}
    .leaderCard .text .info {
        line-height: 25px;
        text-align: justify;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }

    .leaderCard .text div {
        padding: 5px 0;
    }

.leaderCard .name {
    color: var(--dark-color);
    font-size: 2.2em;
    font-weight: 800;
}

.leaderCard .title {
    color: var(--primary-color);
    text-align: justify;
    font-size: 28px;
    font-weight: 400;
}

.leaderCard .info {
    font-size: 18px;
}
/* 新闻类*/
.newsCards, .search-list {
    margin-bottom: 80px;
}

    .newsCards li.card {
        position: relative;
        display: flex;
        height: 240px;
        overflow: hidden;
        border-radius: 15px;
        background-color: white;
        margin: 30px 0;
        transition: all .3s;
    }

        .newsCards li.card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--second-color);
            transition: all 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            transform: translateX(-100%);
        }

        .newsCards li.card h2 {
            line-height: 36px;
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            transition: all .5s;
        }

        .newsCards li.card:hover {
            box-shadow: 0 0 15px #00000060;
            transform: translateY(-5px);
        }

            .newsCards li.card:hover::before {
                bottom: 0;
                width: 100%;
                transform: translateX(0);
            }

            .newsCards li.card:hover h2 {
                color: var(--primary-color);
            }

            .newsCards li.card:hover img {
                transform: scale(1.05);
            }

    .newsCards .card img {
        width: 320px;
        height: auto;
        object-fit: cover;
        transition: all .5s;
    }

    .newsCards .card-item {
        position: relative;
        padding: 20px 40px;
    }

.card-item .card-date {
    color: var(--primary-color);
    font-weight: 600;
}

.newsCards .card-item p {
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 26px;
    font-family: revert;
}

.card-item a.read-more {
    color: var(--second-color);
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.newsCards .card .hot {
    position: absolute;
    width: 50px;
    right: 0;
    top: 0;
}

.empty {
    text-align: center;
}

    .empty img {
        width: 80%;
    }

/* 正文 */
section.article .container {
    padding-top: 50px;
    margin-bottom: 220px;
    background-color: #FFFFFF9F;
    height: auto;
    text-align: justify;
}

.article em {
    padding: 0 5px;
    color: white;
    background-color: var(--second-color);
    font-style: normal;
    border-radius: 7px;
}

.article .article-top > div {
    border-bottom: 1px solid var(--boder-color);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    text-align: center;
}

    .article .article-top > div h2 {
        color: var(--dark-color);
        font-family: Medium;
        font-size: 28px;
        font-weight: 600;
        line-height: 40px;
        margin: 0 auto;
        width: 80%
    }

    .article .article-top > div h3 {
        color: var(--dark-blue);
        font-family: Medium;
        font-size: 24px;
        font-weight: 500;
        line-height: 40px;
        margin: 0 auto;
        padding-top: 10px;
        width: 70%
    }

    .article .article-top > div .link {
        display: flex;
        justify-content: space-between;
        margin: 35px auto 0;
        width: 500px;
        font-size: 14px;
    }

        .article .article-top > div .link span {
            font-weight: bold;
        }

        .article .article-top > div .link > div {
            align-items: center;
            display: flex
        }

            .article .article-top > div .link > div > i {
                margin-right: 10px
            }

        .article .article-top > div .link .icon {
            font-size: 22px
        }

    .article .article-top > div .share {
        background: #fff;
        bottom: -22px;
        cursor: pointer;
        left: calc(50% - 45px);
        position: absolute;
        width: 90px;
        color: var(--gray-color);
        transition: all .5s;
    }

        .article .article-top > div .share:hover {
            color: var(--hover-color);
        }

    .article .article-top > div .qrcode {
        background: #fff;
        bottom: 30px;
        left: calc(50% - 90px);
        position: absolute;
        transition: all .4s ease;
        opacity: 0;
        display: block;
        box-shadow: rgba(0,0,0,.4) 0 0 15px;
        height: 180px;
        padding: 10px;
        border-radius: 5px;
        z-index: -100;
    }

        .article .article-top > div .qrcode img {
            width: 160px;
        }

.article .article-content {
    padding: 50px 5%;
    margin: 0 auto;
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
}

.article .article-bottom {
    border-top: 1px solid var(--boder-color);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 5%;
    text-align: center;
}

    .article .article-bottom button {
        padding: 8px 10px;
        transition: all .3s;
        -webkit-transition: all .3s;
        border-radius: 5px;
        border: #d4d6d7 solid 1px;
        cursor: pointer;
        margin-right: 15px;
        font-size: 14px;
    }

        .article .article-bottom button:hover {
            background-color: white;
        }

    .article .article-bottom img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .article .article-bottom .back {
        align-items: center;
        border: 2px solid #b7b7b7;
        cursor: pointer;
        display: flex;
        height: 68px;
        justify-content: center;
        margin: 42px auto;
        width: 188px
    }

.article .linkfor {
    text-align: left;
    line-height: 30px;
    padding-bottom: 50px;
    font-weight: bold;
}

    .article .linkfor span {
        font-weight: normal;
        transition: all .5s;
    }

    .article .linkfor a {
        display: block;
    }

        .article .linkfor a:hover span {
            color: var(--primary-color);
        }

button.info {
    background-color: var(--gray-color);
    border-color: var(--mid-back-color) !important;
    color: var(--primary-color);
}

    button.info:hover {
        color: white;
        background-color: var(--hover-color) !important;
        border-color: var(--second-color) !important;
    }

/* 文章默认样式 */
.article .article-content, .article .article-content * {
    font-family: '仿宋';
    font-size: 20px;
    line-height: 150%;
    text-align: justify;
}

    .article .article-content li {
        list-style: unset;
    }

.article-content div:has(> img) {
    padding: 20px 0;
}

.article .article-content ul[data-type=taskList] li {
    display: flex;
    align-items: baseline;
}

.article .article-content div.container-wrapper {
    margin: 1rem 0;
    padding: 0 1rem;
    border: 1px solid var(--aie-border-color);
    border-radius: 3px;
}

.article .article-content p {
    min-height: 1rem
}

.article .article-content div.info {
    background: #eff1f3
}

.article .article-content div.warning {
    background: #fcf5e4
}

.article .article-content div.danger {
    background: #ffe7ea
}
.article .article-content a {
	color: var(--primary-color)
}

/* 成员公司 */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.company-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all .4s ease;
    opacity: 0;
}

    .company-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

    .company-card.visible {
        opacity: 1;
    }

.company-image {
    height: 320px;
    width: 100% !important;
    object-fit: cover;
    transition: all .3s;
}
/*.company-card:hover .company-image {
    transform: scale(1.05);
}*/

.company-content {
    padding: 25px;
}

.company-name {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--second-color);
    padding-bottom: 10px !important;
}

.company-intro {
    margin-bottom: 20px;
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

    .company-intro.expanded {
        max-height: none;
    }

.read-more {
    background: none;
    border: none;
    color: var(--second-color);
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
    font-size: 1em;
}

.company-details {
    background-color: #ffeded;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

    .contact-info i {
        width: 20px;
        margin-right: 10px;
        color: var(--second-color);
    }

    .contact-info a:hover {
        color: var(--second-color);
    }

@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
}
/* 搜索查询 */
.search-list {
    text-align: center;
}

.search-list li.search-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 50px;
    overflow: hidden;
    border-radius: 15px;
    background-color: white;
    margin: 20px 0;
    transition: all .3s;
}

    .search-list li.search-item::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--second-color);
        transition: all 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        transform: translateX(-100%);
    }

    .search-list li.search-item:hover {
        box-shadow: 0 0 15px #00000060;
        transform: translateY(-5px);
    }

        .search-list li.search-item:hover::before {
            bottom: 0;
            width: 100%;
            transform: translateX(0);
        }

        .search-list li.search-item:hover .search-title {
            color: var(--primary-color);
        }

.search-list .search-type {
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 5px;
}

.search-list .search-title {
    padding-left: 40px;
    text-align: left;
    flex: 1;
    text-overflow: ellipsis;
    font-size: 1.4em;
    white-space: nowrap;
    overflow: hidden;
}

.search-list .search-date {
    font-size: 18px;
    color: var(--primary-color);
    width: 90px;
}
/* 错误页 */
.error-content {
    padding: 100px 50px;
}

    .error-content p {
        font-size: 1.2em;
        line-height: 150%;
    }

/* 分页器 */
.pagedList {
    margin: 20px 0;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
}

.pagination {
    display: flex;
    list-style: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: white;
}

    .pagination li {
        border-right: 1px solid #eee;
    }

        .pagination li:last-child {
            border-right: none;
        }

    .pagination a {
        display: block;
        background: white;
        color: #555;
        transition: all 0.3s;
    }

    .pagination li {
        padding: 10px 16px;
        transition: all 0.3s;
    }

        .pagination li:hover, .pagination li:hover a,
        .pagination li.active {
            background: var(--primary-color);
            color: white;
        }

    .pagination a i {
        font-size: 0.9rem;
    }

/* 关于卡片 */
.contact {
    /* display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 80px 0;*/
}

.contact-card, .working-hours {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .contact-card h2, .working-hours h2, .map-container h2 {
        margin-bottom: 20px;
        font-size: 1.4em;
        font-weight: bold;
        color: var(--second-color);
    }

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item strong {
        color: var(--primary-color);
        margin-right: 25px;
        min-width: 70px;
        font-size: 1em;
        text-align: right;
    }

    .contact-item span {
        color: #333;
        transition: all .4s ease;
    }

    .contact-item:hover span {
        color: var(--second-color);
        transform: translateX(5px);
    }

.map-container {
    grid-column: 1 / -1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.map-placeholder {
    width: 100%;
    height: 600px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1em;
    text-align: center;
    border: 1px solid #e9ecef;
}

/* iconfont */
@font-face {
    font-family: iconfont;
    src: url(../webfonts/iconfont.woff2) format("woff2"), url(../webfonts/iconfont.woff) format("woff"), url(../webfonts/iconfont.ttf) format("truetype")
}

.iconfont {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: iconfont !important;
    font-size: 24px;
    font-style: normal;
}
/* 响应式设计 */
@media (max-width: 1200px) {
    .footer_top .left {
        display: none;
    }

    .header .inner {
        padding: 0 20px;
    }

    .header .middle {
        flex: 1 1 480px;
    }

    .header .search_box {
        display: none;
    }
}

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

    .mobile_nav {
        display: block;
    }

    #news .left, #news .right {
        width: 100%;
    }

    #footer .left, #footer .right {
        width: 100%;
    }
    
/*    .topicBanner {
        display: none !important;
    }*/
    
    section.info .container {
        padding-top: 40px;
        padding-bottom: 120px;
    }

    section.info video {
        background-color: black;
        width: 90%;
        height: auto;
        padding: 30px 0;
        min-height: auto;
    }

    section.info img {
        width: 90%;
    }

    .newsCards .card img {
        width: 200px;
    }

    .newsCards .card-item p {
        -webkit-line-clamp: 4;
        line-height: 25px;
    }

    .footer {
        padding: 0;
    }

    .inner {
        width: 100%;
        padding: 20px !important;
        box-sizing: border-box;
    }

    .footer .footer_top {
        flex-wrap: wrap;
        padding: 0;
        min-height: auto;
    }

        .footer .footer_top .left {
            display: none;
        }

        .footer .footer_top .contact {
            padding-left: 0;
            margin-top: 30px;
            flex: 0 1 100vw;
            margin-left: 30px;
            flex-wrap: wrap;
        }

    .footer .copyright > .left {
        flex-wrap: wrap;
        flex: 0 1 100vw;
        justify-content: center;
        text-align: center;
    }

    .footer .copyright {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .intro-content {
        flex-direction: column;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

        .timeline-item:nth-child(even) {
            left: 0;
        }

        .timeline-item::after {
            left: 32px;
        }

    section.type .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 140px 20px;
    }

    .orgtree a {
        padding: 5px;
        margin: 0 2px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        color: white;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.5s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

    .section-title {
        font-size: 2rem;
    }

    .side-nav {
        display: none;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    section.type .container {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }

        .hero h1 {
            font-size: 1.9rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .orgtree li {
        margin: 0 5px;
        padding: 40px 5px 0 0;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 920px;
    }

    .orgtree li {
        margin: 0 10px;
        padding: 50px 5px 0 5px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media (min-width: 1900px) {
    body.infoBody {
        background-size: contain;
    }
}

@media print {
    .noPrint {
        display: none !important;
    }
}
