﻿body, ul, li, a, div, p, h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
a {
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素的颜色，避免默认的链接颜色 */
}

    a:hover,
    a:active,
    a:visited {
        color: inherit; /* 鼠标经过、点击、访问后的颜色都继承父元素 */
        text-decoration: none; /* 去掉鼠标经过、点击、访问后的下划线 */
    }

li {
    list-style-type: none;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
    width: 60px; /* 加宽垂直滚动条的宽度 */
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: black;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #090907;
    border-radius: 10px;
}
    /* 滚动条滑块悬停状态 */
    ::-webkit-scrollbar-thumb:hover {
        background: #f1b91c;
    }
/* 示例容器样式 */
.scrollable-container {
    height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.welcome {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: black;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
}
    .welcome video{
        width:200px;
    }
    .welcome img {
        height: 76px; /* 可根据需求设置最大高度 */
        width: auto;
    }
     .welcome p{
         position:absolute;
         bottom:20px;
         color:white;
         font-size:16px;
     }
    .welcome span {
        width: 1px;
        height: 1px;
        border-radius: 50%;
    }


.welcome_img_box,
.welcome_p_box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0; /* 初始设置为透明 */
}

.welcome_img_box {
    /* 先执行 0.8 秒的入场淡入动画，动画结束后等待 0.2 秒，再执行 0.8 秒的淡出动画 */
    animation: imgFadeIn 1.2s;
}

.welcome_p_box {
    color: #f1b729;
    background-color: black;
    /* 0.7 秒后开始执行 2 秒的淡入显示动画 */
    animation: pFadeIn 2s;
    animation-delay: 0.9s;
}

/* 欢迎图片盒子的淡入动画，将元素从透明变为不透明 */
@keyframes imgFadeIn {
    0% {
        opacity: 0;
        background-color: #f1b91c;
    }
    20% {
        opacity: 1;
        background-color: #f1b91c;
    }
    70% {
        opacity: 1;
        background-color: #f1b91c;
    }
    100% {
        opacity: 0;
        background-color: black;
    }
}

@keyframes pFadeIn {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



.fullscreen-circle {
    animation: circleExpand 3s forwards;
    pointer-events: none; /* 添加穿透效果 */
}



.edge {
    opacity: 1;
    transition: opacity 1s ease-out;
    animation: fadeOut 1s ease-out forwards;
    animation-delay: 1.3s;
}
.fade-out {
    opacity: 0;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        pointer-events: none;
    }
}

.qita {
    opacity: 1;
    transition: opacity 1s ease-out;
    animation: fadeOut 1s ease-out forwards;
    animation-delay: 1.5s;
}

.fade-out {
    opacity: 0;
}

@keyframes fadeOut {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}



.SuperMaxBox {
    width: 94%;
    height: 94%;
    position: absolute;
    left: 3%;
    top: 3%;
    /*background-color: #454545;*/
}

.navbox {
    height: 10%;
    display: flex;
    justify-content: space-between;
}

    .navbox .logo {
        width: 144px;
        object-fit: scale-down;
    }

    .navbox .nav {
        display: flex;
        align-items: center;
    }

    .navbox ul {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

        .navbox ul li {
            margin: 0px 8px;
            color: white;
        }

            .navbox ul li:hover {
                color: #f1b91c;
            }

            .navbox ul li:nth-child(5) {
                margin-right: 20px;
            }

            .navbox ul li .nav_active {
                color: #f1b91c;
            }

.menubox {
    height: 90%;
    background-color: #45F5C5;
}


/*中英文切换*/
.dropdown {
    position: relative;
    display: inline-block;
    width: 100px;
    position: relative;
    z-index: 999;
}

.dropdown-btn {
    background-color: rgba(0, 0, 0, 0); /* 全透明背景 */
    color: white; /* 白色文字 */
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6); /* 半透明白色背景 */
    min-width: 100px;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black; 
        transition: transform 0.3s ease; /* 为箭头添加过渡效果 */
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.arrow-down {
    transform: scale(0.7);
    margin-left: 5px;
    color: white; /* 白色箭头 */
    transition: transform 0.3s ease; /* 为箭头添加过渡效果 */
    display: inline-block; /* 确保可以应用变换效果 */
}

.show {
    display: block;
}

.arrow-up {
    transform: scale(0.7);
    transform: rotate(180deg); /* 箭头向上旋转 180 度 */
}

/*banner*/
.banner_menubox {
    width: 100%;
    height: 85%;
    position: relative;
    left: 0px;
    top: 0px;
    overflow: hidden;
}

.jq22-container {
    height: 90%;
}

.flexslider {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: url(/image/loading.gif) 50% no-repeat;
}

.slides {
    position: relative;
    z-index: 1;
    left: 0px;
    top: 0px;
}

    .slides li {
        height: 100%;
    }

    .slides img {
        width: 100%;
        height: 100%;
    }

.flex-control-nav {
    position: absolute;
    bottom: 70px;
    z-index: 2;
    width: 100%;
    text-align: center;
}

    .flex-control-nav li {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin: 0 5px;
        *display: inline;
        zoom: 1;
    }

    .flex-control-nav a {
        display: inline-block;
        width: 14px;
        height: 14px;
        line-height: 40px;
        overflow: hidden;
        background: url(/image/dot.png) right 0 no-repeat;
        cursor: pointer;
    }

    .flex-control-nav .flex-active {
        background-position: 0 0;
    }

.flex-direction-nav {
    position: absolute;
    z-index: 3;
    width: 100%;
    top: 45%;
}

    .flex-direction-nav li a {
        display: block;
        width: 50px;
        height: 50px;
        overflow: hidden;
        cursor: pointer;
        position: absolute;
    }

/*        .flex-direction-nav li a.flex-prev {
            left: 40px;
            background: url(/image/prev.png) center center no-repeat;
        }

        .flex-direction-nav li a.flex-next {
            right: 40px;
            background: url(/image/next.png) center center no-repeat;
        }
*/
.bannerbox {
    height: 100%;
}

.menubox {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom:0px;
    /*top: 0;*/
    height: 126px;
    z-index: 99;
    display: flex;
}

    .menubox .menu {
        width: 25%;
        height: 0px;
        position: relative;
        top:0;

    }
.menuimg{
    width:100%;
    height:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menubox .menu:nth-child(even) .titlebox {
    position: relative;
    background-color: black;
}

            .menubox .menu:nth-child(even) .titlebox span {
                width: 98%;
                height: 2px;
                position: absolute;
                bottom: 0px;
                margin: 0px;
                left: 1%;
                background-color: #f1b91c;
            }

        .menubox .menu .titlebox {
            height: 126px;
            width: 100%;
            background-color: #f1b91c;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center
        }

            .menubox .menu .titlebox h2 {
                margin-bottom: 10px;
                font-size: 28px;
            }
            .menubox .menu .titlebox h5 {
                font-size: 16px;
            }

            .menubox .menu .titlebox h2, h5 {
                width: 70%;
                font-weight: initial;
            }

        .menubox .menu:nth-child(even) .titlebox h2 {
            color: #f1b91c;
        }

        .menubox .menu:nth-child(even) .titlebox h5 {
            color: #f1b91c;
        }

        .menubox .menu img {
            width: 100%;
            height: auto;
        }

.MenuListBox {
    width: 100%;
    height: 100%;
    background-color: #f1b91c;
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}

.titlebox2 {
    position:absolute;
    box-shadow: -2px 0 0 0 rgba(0, 0, 0, 1), 2px 0 0 0 rgba(0, 0, 0, 1);
    z-index:10;
}
.titlebox2 h2 {
    color: black;
}
    .titlebox2 h5 {
        font-family: Arial, Regular;
    }
.MenuListBox ul{
    width:70%;
    margin-left:15%;
    margin-top:88%;
}
    .MenuListBox ul li {
        margin-bottom: 20px;
        height: 40px;
    }
    .MenuListBox ul a {
        width:auto;
        position: relative;
        overflow: hidden;
        font-size: 18px;
        padding: 30px 0px 6px 0px;
    }
        .MenuListBox ul a:hover{
            color:white;
        }

        .MenuListBox ul a::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: -100%;
            width: 100%;
            height: 1px;
            background-color: white;
            transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
            opacity: 0;
        }

        .MenuListBox ul a:hover::before {
            right: 0;
            opacity: 1;
        }
.MenuListBox .morebox {
    width: 70%;
    margin-left: 15%;
    position:absolute;
    bottom:5%;
}
.MenuListBox .morebox a {
    font-size: 14px;
    color: black;
    border: 1px solid white;
    padding: 6px 20px;
}
    .MenuListBox .morebox a:hover {
        background-color:rgba(255,255,255,0.7)
    }

.titlebox2_min {
    height: 126px;
    width: 100%;
    background-color: #f1b91c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position:relative;
}


.SuperMaxBox2 {
    width: 94%;
    margin-left: 3%;
    margin-top: 3%;
}

/*业务方向*/
.Main_max_Box{
    width:94%;
    margin-left:3%;
    padding-top:70px;
    display:flex;
    justify-content:center;
}
.main_min_box {
    width: 100%;
    display: block;
    /*background-color: #b5b5b5;*/
    display: flex;
}
    .main_min_box .leftbox {
        width: 460px;
        margin-right: 8%;
    }
    .main_min_box .rightbox {
        width: 65%;
    }


.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.accordion-item {
    border-top: 1px solid #959494;
}

.accordion-header {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

    .accordion-header:hover {
        background-color: #333;
        color: white;
    }


.accordion-arrow {
    position:relative;
    transition: transform 0.3s ease !important;
    -webkit-transition: -webkit-transform 0.3s ease !important;
    -moz-transition: -moz-transform 0.3s ease !important;
    -ms-transition: -ms-transform 0.3s ease !important;
    -o-transition: -o-transform 0.3s ease !important;
    color: #666666;
    zoom: 0.8;
    transform: rotate(0deg) !important;
}

.accordion-checkbox:checked + .accordion-header.accordion-arrow {
    transform: rotate(90deg) !important;
    -webkit-transform: rotate(90deg) !important;
    -moz-transform: rotate(90deg) !important;
    -ms-transform: rotate(90deg) !important;
    -o-transform: rotate(90deg) !important;
}



.accordion-checkbox {
    display: none;
}

    .accordion-checkbox:checked + .accordion-header {
        background-color: #444;
        color: white;
    }


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease,max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.accordion-checkbox:checked + .accordion-header + .accordion-content {
    max-height: 300px;
    opacity: 1;
}

.sub-menu {
    display: flex;
    flex-direction: column;
}

.sub-menu-item {
    padding: 10px 0;
    text-decoration: none;
    color: white;
}

    .sub-menu-item:hover {
        color: #f1b91c;
        cursor:pointer;
    }

    .sub-menu-item.active {
        color: #f1b91c;
    }

.sub-menu a {
    color: white;
}
.rotated {
    transform: rotate(90deg); /* 旋转 90 度 */
    transition: transform 0.3s ease; /* 为旋转添加过渡效果，使其平滑旋转 */
}
.righttbox{
    width:100%;
    /*background-color:aliceblue;*/
    display:flex;
}
    .righttbox .rightt_min_box {
        width: 80%;
        /*background-color: #f7acac*/
    }
        .righttbox .rightt_min_box .bannerbox {
            width: 100%;
            height: 330px;
            position: relative;
            margin-bottom:26px;
        }
            .righttbox .rightt_min_box .bannerbox img {
                width: 100%;
                height: 330px;
                
            }
            .righttbox .rightt_min_box .bannerbox .titlebox{
                width:100%;
                height:100%;
                position:absolute;
                top:0px;
                left:0px;
                background-color:rgba(0,0,0,0.3);
                display:flex;
                flex-direction:column;
                align-items:center;
                justify-content:center;
                
            }
                .righttbox .rightt_min_box .bannerbox .titlebox h1, h4 {
                    color: white;
                    font-weight: initial;
                    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
                }
                .righttbox .rightt_min_box .bannerbox .titlebox h1 {
                    font-size: 36px;
                }
                .righttbox .rightt_min_box .bannerbox .titlebox h4{
                    font-size: 24px;
                }
                .righttbox .rightt_min_box .p1 {
                    color:white;
                    font-size: 16px;
                    line-height:32px;
                    text-indent:2em
                }
        .righttbox .rightt_min_box .title{
            display:flex;
            align-items:flex-end;
        }
        .righttbox .rightt_min_box .title h2 {
            color: white;
            font-weight: initial;
            font-size: 30px;
            margin: 30px 0px;
            margin-right:16px;
        }
        .righttbox .rightt_min_box .title h5 {
            color: white;
            font-weight: initial;
            font-size: 22px;
            margin: 30px 0px;
        }
    .righttbox .cpmaxbox {
        width:100%;
        display:flex;
        flex-wrap:wrap;
    }
        .righttbox .cpmaxbox .cpminbox {
            width: 32.5%;
            overflow: hidden;
            text-align: center;
            margin-bottom:8px;
            margin-right:0.8%;
            position:relative;
        }
            .righttbox .cpmaxbox .cpminbox .title_p {
                color: black;
                height: 40px;
                line-height: 40px;
                text-align: right;
                padding-right: 20px;
                font-size: 16px;
                background-color: white;
            }
            .righttbox .cpmaxbox .cpminbox .imgbox {
                display: flex;
                justify-content: center;
                align-items: center;
                background-color: #e2e2e2;
                height: 200px;
            }

                .righttbox .cpmaxbox .cpminbox .imgbox img {
                    width: 100%;
                    height: 196px;
                    margin-top:2px;
                }
                .righttbox .cpmaxbox .cpminbox .cp_hover_box {
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    z-index: 10;
                    background-color: rgba(241,185,21,0.85);
                    display: none;
                    cursor:pointer;
                }
            .righttbox .cpmaxbox .cpminbox .cp_hover_box ul{
                text-align:left;
                margin-top:10%;
                margin-left:5%;
            }
                .righttbox .cpmaxbox .cpminbox .cp_hover_box ul li{
                    display:flex;
                    margin:0;
                }
                    .righttbox .cpmaxbox .cpminbox .cp_hover_box ul li:nth-child(1){
                        margin-bottom:8px;
                    }
                .righttbox .cpmaxbox .cpminbox .cp_hover_box ul p {
                    background-color: transparent;
                    color: white;
                    font-size: 20px;
                    line-height: 30px;
                    font-weight: inherit;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
                }
            .righttbox .cpmaxbox .cpminbox .cp_hover_box a{
                position:absolute;
                bottom:20%;
                left:5%;
                border:1px solid white;
                padding:2px 6px;
                text-align:center;
                font-size:14px;
            }
                .righttbox .cpmaxbox .cpminbox .cp_hover_box a:hover{
                    background-color:white;
                }
/*翻页*/
.pagination {
    padding-top:30px;
    width:100%;
    display: flex;
    justify-content:flex-end;
    align-items: center;
    margin-bottom:50px;
}

    .pagination span {
        margin-right: 20px;
        color: white;
    }

    .pagination button,
    .pagination input[type="text"],
    .pagination input[type="button"] {
        border: 1px solid white;
        background-color: transparent;
        color: white;
        padding: 5px 10px;
        margin: 0 5px;
        cursor: pointer;
    }

        .pagination input[type="button"].jump-button {
            background-color: yellow;
            color: black;
        }

        .pagination button:hover,
        .pagination input[type="button"]:hover,
        .pagination input[type="text"]:focus {
            border-color: yellow; /* 点击或聚焦时边框颜色变化 */
        }

        .pagination button:disabled,
        .pagination input[type="button"]:disabled {
            background-color: grey; /* 禁用按钮的样式 */
            cursor: not-allowed;
        }
        /* 左右翻页按钮使用<>代替文字 */
        .pagination button.prev-page::after,
        .pagination button.next-page::before {
            content: "";
        }

        .pagination button.prev-page::after {
            content: "<";
        }

        .pagination button.next-page::before {
            content: ">";
        }
.foot_box {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

    .foot_box img {
        width: 120px;
        margin-bottom: 10px;
    }

    .foot_box p {
        text-align: center;
        line-height: 100%;
        color: #bfbfbf;
        font-size:14px;
        margin:0;
        padding:0;
    }
    .foot_box a:nth-child(3){
        color:#f1b91c;
        margin-right:40px;
    }



.foot_box2 {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background-color: #353535;
    margin-top:50px;
}
    .foot_box2 img{
        width:120px;
        margin-bottom:10px;
    }
    .foot_box2 p {
        text-align: center;
        line-height: 100%;
        color: #bfbfbf;
    }

.anli_max_Box {
    width: 100%;
    display: flex;
    padding-top: 70px;
    justify-content: center;
}
    .anli_max_Box .anli_box {
        width: 1200px;
        background-color: white;
        min-height: 800px;
        display: flex;
        flex-direction:column;
        align-items:center;
        padding: 70px 0px;
    }
        .anli_max_Box .anli_box .myvideo{
            width: 80%;
        }
        .anli_max_Box .anli_box .titlebox {
            width: 80%;
            padding-top: 40px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 10px;
        }
        .anli_max_Box .anli_box .titlebox img{
            width:0px;
            height:0px;
            margin-right:0px;
        }
            .anli_max_Box .anli_box .titlebox h2 {
                font-size: 30px;
                color: black;
                font-weight:initial;
                /*margin-top:-40px;*/
            }
        .anli_max_Box .anli_box .new-titlebox {
            width: 80%;
            padding-top: 40px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            margin-bottom: 40px;
        }
            .anli_max_Box .anli_box .new-titlebox h2 {
                font-size: 38px;
                color: black;
                font-weight: initial;
                margin-top: -40px;
                margin-bottom:20px;
            }
         .anli_max_Box .anli_box .new-titlebox .lybox{
             display:flex;
             justify-content:space-between;
             width:100%;
         }
            .anli_max_Box .anli_box .new-titlebox .lybox p{
                font-size:24px;
                font-weight:initial;
                color:#2e2e2e
            }
            .anli_max_Box .anli_box .new-titlebox .lybox div {
                display: flex;
            }
        .anli_max_Box .anli_box .conter_box {
            width:80%;
        }
        .anli_max_Box .anli_box .conter_box  img{
            width:100%;
            margin:16px 0px;
        }
            .anli_max_Box .anli_box .conter_box p {
                font-size: 24px;
                line-height:36px;
                width: 100%;
                margin: 10px 0px;
            }
.content_box{
    width:60%;
    min-height:500px;
    margin-left:15%;
    padding:20px 5%;
    background-color:white;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
    .content_box li {
        display: flex;
        padding: 20px 0px;
        border-bottom: 1px solid #a3a3a3;
    }
    .content_box li .titlebox{
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }
    .content_box li img {
        width: 300px;
        margin-right: 30px;
    }
    .content_box li h3{
        font-size:28px;
        font-weight: initial;
    }
        .content_box li .timebox {
            display: flex;
            justify-content:space-between;
        }
            .content_box li .timebox p {
                font-size: 22px;
                color: #595757;
            }
            .content_box li .ly {
                display: flex;
            }
.fanyebox {
    width: 60%;
    margin-left: 15%;
    padding: 20px 5%;
    display: flex;
    justify-content:flex-end;
}
.about_max_Box {
    width: 94%;
    margin-left: 3%;
    display: flex;
    flex-direction:column;
    padding-top: 70px;
    justify-content: center;
}

    .about_max_Box .banner_box {
        width: 100%;
        background-color: #f1b91c;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 70px 0px;
        background-image: url(/image/aboutbannerba.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
        .about_max_Box .banner_box h1 {
            color: white;
            font-size: 40px;
            margin-bottom: 20px;
        }
        .about_max_Box .banner_box h2 {
            color: white;
            font-size: 30px;
            font-weight: initial;
        }

.about_text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 0px;
}
.about_text_box h2, .about_text_box p {
    color: white;
}


.about_text_box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight:initial;
}

.about_text_box .p3 {
    width:800px;
    font-size: 16px;
    line-height: 36px;
    text-indent: 2em;
}
@keyframes flexible-light-move {
    0% {
        background-position: -20% 20%;
    }

    20% {
        background-position: 40% 10%;
    }

    40% {
        background-position: 80% 70%;
    }

    60% {
        background-position: 10% 90%;
    }

    80% {
        background-position: 60% 30%;
    }

    100% {
        background-position: -20% 20%;
    }
}
.qlt_box{
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #ffd96f 0%, rgba(241, 185, 28, 0) 70%), #f1b91c;
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation: flexible-light-move 5s linear infinite;
}    
 
    .qlt_box img {
        width: 50%;
    }
.phnoe_box {
    width: 1010px;
    display: flex;
    overflow:hidden;
    justify-content:center;
}
    .phnoe_box .phnoe {
        width: 185px;
        margin-right:20px;
        display: flex;
        align-items: center;
        justify-content:center;
        flex-direction: column;
    }
    .phnoe_box .phnoe img{
        width:185px;
        height:250px;
        overflow:hidden;
        margin-bottom:12px;
    }


#div1 {
    position: relative;
}

    #div1 ul {
        display: flex;
        position: relative;
    }

        #div1 ul li {
            width: 185px;
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        #div1 ul li a {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        #div1 ul li img {
            width: 185px;
            height: 250px;
            overflow: hidden;
            margin-bottom: 10px;
            display: inline-block;
        }

            #div1 ul li p:nth-child(2) {
                font-size: 24px;
                margin-bottom: 6px;
            }
            #div1 ul li p:nth-child(3) {
                font-size: 18px;
                opacity: 0.7;
            }
.add_box {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;

    background-color: white;
    min-height: 200px;
    padding: 50px 0px;
    align-items: center;
}
    .add_box .addmaximg {
        width: 50%;
        height: 350px;
        margin-right: 7%;
        position:relative;
    }
.add_box .addimg{
    width:100%;
    height:100%;
}
.addmaximg a {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 999;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    cursor:pointer;
}
    .addmaximg a:hover {
        background-color: #f6edd3;
    }
    .addmaximg a:active {
        transform: scale(0.95);
    }
    .addmaximg a img {
        width: 60%;
        height: 60%;
    }

.add_box ul {
    width: 30%;
}
.add_box  ul li{
    display:flex;
    align-items:center;
}
    .add_box ul li p {
        font-size: 20px;
        color: #595757;
    }

.float_box {
    width: 60px;
    height: 180px;
    position: fixed;
    top: 20%;
    right: 5%;
    background-color: #f1b91c;
    z-index: 999;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
}
    .float_box .ico {
        margin: 10px 0px;
        cursor: pointer;
        width: 54px;
    }
    .topbtn{
        position:relative;
    }
    .float_box p {
        width: auto;
        font-size: 18px;
        color: black;
        position: absolute;
        left: -135px;
        top:18px;
        white-space: nowrap;
        background-color: white;
        padding: 6px 14px;
        border-radius: 20px;
        box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
        display:none;
    }
    .float_box .ewm {
        width: 100px;
        position: absolute;
        left: -107px;
        top: 18px;
        display: none;
    }
.back_btn {
    width: 80px;
    height: 80px;
    position: fixed;
    right: 10%;
    bottom: 5%;
    border-radius:100%;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
    cursor:pointer;
}
    .back_btn:active {
        transform: scale(0.9);
    }
    .back_btn img {
        width: 100%;
        height: 100%;
    }
.menu_top_amin_btn {
    display: block;
    width: 500px;
    height: 100%;
    cursor:pointer;
    flex-grow: 1;
}
.backtime{
    position:fixed;
    z-index:999;
    left:30px;
    bottom:30px;
    color:white;
    opacity:0.4;
    font-size:14px;
}































.banner {
    width: 100%;
    height: 100%;
    font-size: 0;
    overflow: hidden;
    position: relative;
}

.banner_img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

    .banner_img li {
        width: 100%;
        height: 100%;
        display: inline-block;
        background-position: center;
        background-repeat: no-repeat;
        float: left;
        list-style: none;
    }

        .banner_img li img,
        .banner_img li video {
            width: 100%;
        }

.banner_list {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    bottom: 16%;
    position: absolute;
    margin: 0 auto;
    z-index: 1;
}

    .banner_list span {
        display: block;
        cursor: pointer;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid #555;
        float: left;
        margin: 0 5px;
    }

    .banner_list .spcss {
        background-color: #f1b91c;
        border: 2px solid #f1b91c;
    }

.banner_left {
    position: absolute;
    height: 90px;
    width: 60px;
    top: 50%;
    left: 30px;
    margin-top: -45px;
    text-align: center;
    transition: all .5s;
    z-index: 2;
    opacity: 0.4;
}



.banner_right {
    position: absolute;
    height: 90px;
    width: 60px;
    top: 50%;
    right: 30px;
    margin-top: -45px;
    text-align: center;
    transition: all .5s;
    z-index: 2;
    opacity: 0.4;
}


.banner_left img {
    margin-top: 22px;
}

.banner_right img {
    margin-top: 22px;
}






.foot_min_box {
    display: flex;
    align-items: center;
    opacity:0.7;
}
.foot_min_box .gabox{
    display:flex;
    align-items:center;
    margin-right:20px;
}
    .foot_min_box .gabox img {
        width: 14px;
        margin: 0 6px 0 0;
        padding: 0;
    }
    .foot_min_box .gabox a{
        font-size:14px;
        color:white;
        opacity:0.7;
        margin:0;
        padding:0;
    }

.PersonDetails_max_Box{
    width:100%;
    height:100%;
    position:fixed;
    left:0;
    top:0;
    background-color:rgba(0,0,0,0.9);
    z-index:9999;
    display:none;
}
.PersonDetails_min_Box {
    width: 70%;
    height: 70%;
    margin-left: 15%;
    margin-top: 5%;
    position: relative;
    overflow: auto;
    border: 2px solid white;
    background-color:white;
}
    .PersonDetails_min_Box .pimg{
        width:100%;
        height:auto;
    }
.PersonDetails_max_Box .clasebtn{
    width:100px;
    height:100px;
    position:absolute;
    bottom:5%;
    left:48%;
    cursor:pointer;
}
.PersonDetails_max_Box .clasebtn:active{
    transform:scale(0.95);
}
/* 滚动条整体样式 */
.PersonDetails_max_Box ::-webkit-scrollbar {
    width: 40px; /* 加宽垂直滚动条的宽度 */
}
/* 滚动条轨道 */
.PersonDetails_max_Box ::-webkit-scrollbar-track {
    background: #b3b3b3;
}
/* 滚动条滑块 */
.PersonDetails_max_Box ::-webkit-scrollbar-thumb {
    background: #3f3f3f;
    border-radius: 100px;
}
    /* 滚动条滑块悬停状态 */
    .PersonDetails_max_Box ::-webkit-scrollbar-thumb:hover {
        background: #f1b91c;
    }
