html {
    width:100%;
    height: 100%;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}

body {
    width: 100%;
    height: 100%;
    font-size: 14px;
    position: relative;
    background: #fff;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #000;
    margin: 0px;
    padding: 0px;
}

:focus {
    outline: 0
}

a {
    text-decoration: none;
    color: #333;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 5px
}

::-webkit-scrollbar-thumb {
    background: #dcac7e;
    border-radius: 5px
}


.banner {
    width: 100%;
    height: 100%;
    z-index:0;
}

    .banner .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .banner .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0px 12px 12px 12px;
        border: 2px solid #ffffff;
        --bs-border-opacity: .75;
        opacity: 1;
        background: rgba(0, 0, 0, 0);
    }

    .banner .swiper-pagination-bullet-active {
        background: #007aff;
    }

    .banner .swiper-slide a{
        -webkit-transition: 3s 1s linear;
        -webkit-transform: scale(1);
    }

    .banner .swiper-slide-active a {
        -webkit-transform: scale(1.2);
    }


.header {
    width: 100%;
    z-index: 999;
    background-image: url(/_home/hx/imgs/headerBg.png);
    background-repeat:repeat-x;
    background-position:left top;
    background-size:auto 100%;
}

    .header .topbar {
        width: 48px;
        height: 48px;
        background: rgb(220 172 126);
        transition: .3s;
        position: fixed;
        padding: 0px;
        top: 16px;
        right: 0px;
        z-index: 9999;
        color: #fff;
        text-align: center;
        border-radius: 26px 0 0 26px;
        cursor:pointer;
    }

        .header .topbar button {
            overflow: hidden;
            width: 26px;
            height: 26px;
            background: 0 0;
            opacity: 1;
            position: absolute;
            z-index: 999;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            padding: 0;
            cursor: pointer;
        }

        .header .topbar .line-1, .header .topbar .line-2, .header .topbar .line-3 {
            position: absolute;
            top: 50%;
            right: 0;
            display: block;
            width: 20px;
            height: 2px;
            background: #fff;
            transition: all .4s cubic-bezier(.165,.84,.44,1) 0s;
            transition-property: transform,width,margin,background-color;
            margin-top: -1px
        }

        .header .topbar .line-1 {
            margin-top: -11px;
        }

        .header .topbar .line-3 {
            margin-top: 9px;
        }

.navShow .header .topbar .line-1 {
    visibility: hidden
}

.navShow .header .topbar .line-2 {
    margin-top: -1px !important;
    width: 90%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.navShow .header .topbar .line-3 {
    margin-top: -1px !important;
    width: 90%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header .logo {
    width: 25%;
    height:auto;
}

.header .topnav {
    position: absolute;
    width: 75%;
    right: 0px;
    height: 100%;
}

.bigmenu {
    position: fixed;
    z-index: 49;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat:no-repeat;
    background-position:right center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    backdrop-filter: blur(5px)
}

    .bigmenu .bigmenu-scroll {
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        top: 175px;
        bottom: 0;
        overflow-y: auto;
        padding-bottom: 48px;
    }

    .bigmenu .bigmenu-content {
        margin-left: 48px;
        margin-right: 48px;
        width: auto;
        max-width: inherit;
    }

    .bigmenu .sub {
        width: auto;
        margin-bottom: 16px;
        transform: translateY(112px);
        opacity: 0;
        margin: 0 16px;
        text-align: center;
    }

    .bigmenu .sub-title {
        position: relative;
        font-size: 20px;
        font-weight: bold;
        padding-bottom: 16px;
        margin-bottom: 16px;
        color: #fff;
        white-space: nowrap;
        cursor: pointer;
    }

        .bigmenu .sub-title:after {
            content: '';
            height: 2px;
            width: 0;
            position: absolute;
            left: 50%;
            bottom: 0;
            background: #0093be;
            transform: translateX(-50%);
        }
        

    .bigmenu .sub-body {
        width: 100%;
        height: auto;
    }

    .bigmenu .sub-links {
        width: 100%;
        height: auto;
    }

        .bigmenu .sub-links a {
            display: block;
            width: 100%;
            font-size: 16px;
            padding: 8px 0px;
            line-height: 100%;
            color: rgba(255,255,255,.6);
            transition: .3s;
            white-space: nowrap;
        }

            .bigmenu .sub-links a:hover {
                color: rgba(255,255,255,1);
            }


.navShow .bigmenu {
    opacity: 1;
    visibility: visible;
}

    .navShow .bigmenu .sub {
        transform: translateY(0);
        opacity: 1;
    }

    .navShow .bigmenu .sub-title:after {
        width: 50%;
        transition: width .6s 1.3s linear
    }

    .navShow .bigmenu .sub:nth-child(1) {
        transition: .8s .2s
    }

    .navShow .bigmenu .sub:nth-child(2) {
        transition: .8s .3s
    }

    .navShow .bigmenu .sub:nth-child(3) {
        transition: .8s .4s
    }

    .navShow .bigmenu .sub:nth-child(4) {
        transition: .8s .5s
    }

    .navShow .bigmenu .sub:nth-child(5) {
        transition: .8s .6s
    }

    .navShow .bigmenu .sub:nth-child(6) {
        transition: .8s .7s
    }

    .navShow .bigmenu .sub:nth-child(7) {
        transition: .8s .8s
    }

    .navShow .bigmenu .sub:nth-child(8) {
        transition: .8s .9s
    }

    .navShow .bigmenu .sub:nth-child(9) {
        transition: .8s 1s
    }



.header .tools {
    transition: .3s;
    text-align: right;
    margin-top: 16px;
    padding-right: 58px;
}

    
    .header .popmenu {
        transition: .3s;
        display: block;
        position: relative;
        padding-top: 20px;
        padding-right:0px;
        width: 100%;
    }

        .header .popmenu .sub {
            transition: .3s;
            position: relative;
            margin-right: 24px;
            list-style: none;
        }

        .header .popmenu .sub-title {
            color: #fff;
            font-size: 16px;
            line-height: 100%;
            cursor: pointer;
            white-space: break-spaces;
        }
        .header .popmenu .sub-title:hover {
            color: #fff;
        }

        .header .popmenu .sub-body {
            position: absolute;
            top: 100%;
            left: 50%;
            z-index: 99;
            padding-top: 16px;
            min-width: 100px;
            transform: translateX(-50%) scaleY(0);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
            transform-origin: top center;
        }

        .header .popmenu .sub-links {
            position: relative;
            background-color: #fff;
            padding: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,.3);
            border-radius: 0 0 5px 5px
        }

            

            .header .popmenu .sub-links a {
                display: block;
                font-size: 13px;
                color:#333;
                padding: 8px 16px;
                line-height: 100%;
                text-align: center;
                white-space: nowrap;
            }

                .header .popmenu .sub-links a:hover {
                    color: #dcac7e
                }

        .header .popmenu .sub:hover .sub-body {
            opacity: 1;
            visibility: inherit;
            transform: translateX(-50%) scaleY(1)
        }

    .header .accmenu {
        display: none !important;
    }

    .navShow .header .tools {
        transform: translateY(25px);
    }

        .navShow .header .tools .wxficon-link {
            font-size: 14px;
        }
            

    .navShow .header .popmenu {
        opacity: 0;
        visibility: hidden;
    }

@media (max-width: 991px) {

    .banner {
        height: 50vw;
    }

        .banner .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            margin: 0px 6px 6px 6px;
        }

    .header {
        width: 100%;
    }

        .header .topnav {
            position: absolute;
            z-index: 10;
            width: 100vw;
            height: 100vh;
            left:100vw;
            display: block;
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 90px 0px;
        }

        .header .tools {
            width: 100%;
            text-align: left;
            padding-right: 0px;
        }

            .header .tools .wxficon-link {
                font-size: 16px;
            }

            

        .header .popmenu {
            display: none !important;
        }

        .header .accmenu {
            display: block !important;
            margin-top: 40px;
            --bs-accordion-bg: rgba(100,100,100,.1); /*整体背景*/
            --bs-primary-bg-subtle: rgba(100,100,100,.5); /*选中按钮背景*/
            --bs-border-color: rgba(200,200,200,.2); /*边框色*/
        }


            .header .accmenu .sub-title {
                color: #ffffcc;
                font-size: 20px;
                font-weight: bold;
                cursor: pointer;
            }

            .header .accmenu .sub-links a {
                color: #ffffff;
                font-size: 16px;
            }


    .bigmenu {
        display: none !important;
    }


    .navShow .header {
        height: 100vh;
        background: rgba(0, 0, 0, .8);
        bottom: 0;
    }

        .navShow .header .topnav {
            width:100vw;
            height:100vh;
            left: 0;
            transition: .5s;
        }
}