

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    user-select: none;pointer-events: none;
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* max-width: 1920px; */
    min-width: 1200px;
    margin: 0 auto;
}
.top-bar-box{
    display: block;
    width: 100%;
    background-color: #f9f9f9;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}
.box-container {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1185px;
    position:relative;
}

.box-container::before,.box-container::after {
    content: " ";
    display: table;
    clear: both;
}
.header{
    border-bottom: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-left-box {
    float: left;
    width: 50%;
}
.header-right-box {
    float: left;
    width: 50%;
}
.search-box{
    display: block;
    width: 100% ;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-left: 10px;
    overflow: hidden;
}
.search-box input{
    border: none;
    outline: none;
    width: 90%;
    height: 100%;
}
.search-button{
    float: right;
    width: 10%;
    height: 100%;
    border: none;
    outline: none;
    color: black;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 35px;
}
.search-button:active{
    background-color: #eee!important;
    
}

.navgation-box{
    display: block;
    width: 100%;
    text-align: center;
}
.main-navgation{
    display:inline-block;

}
.main-navgation li{
    display: inline-block;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    list-style:none;
    position: relative;
}

.main-navgation li a{
    display: block;
    height: 55px;
    line-height: 55px;
    padding: 0px 20px;
    text-decoration: none;
    color: #7d7b7b;
    transition: all 0.3s ease-in-out;
    
}
.main-navgation li::after{
    content: " ";
    display: block;
    width: 100%;
    transform: scaleX(0);
    position: absolute;
    z-index: 10;
    height: 3px;
    background-color: #22a170;
    transition: all 0.3s ease-in-out;
    z-index: 100 !important;
    bottom: 3px;
}
.main-navgation li:hover::after{
    transform: scaleX(1);
}
.main-navgation li.active::after{
    transform: scaleX(1);
}
.main-navgation li:hover a{
    color: #22a170;
}
.swiper-box{
    display: block;
    max-width: 1920px;
    width: 100% ;
    height: 550px;
    margin: auto;
}

.swiper-button-prev{
    display: block;
    width: 40px ; 
    height: 40px ;
    background-color: rgba(0,0,0,0.2);
    line-height: 50px;
    cursor: pointer;
    margin-left: 50px;
    --swiper-navigation-size: 22px;
    --swiper-theme-color: #FFF;
    text-align: center;
    padding: 10px;
    transition: all 0.3s  ease-in-out;
}
.swiper-button-next{
    display: block;
    width: 40px ; 
    height: 40px ;
    background-color: rgba(0,0,0,0.2);
    line-height: 50px;
    cursor: pointer;
    margin-left: 50px;
    margin-right: 50px;
    --swiper-navigation-size: 22px;
    --swiper-theme-color: #FFF;
    text-align: center;
    padding: 10px;
    transition: all 0.3s  ease-in-out;
}
.swiper-button-prev:hover{
    background-color: rgba(0,0,0,0.4);
    border-radius: 15px;
}
.swiper-button-next:hover{
    background-color: rgba(0,0,0,0.4);
    border-radius: 15px;
}
.swiper-pagination-bullet-active{
    background-color: #fff;
}
.swiper-pagination{
    margin-bottom: 20px;
}
.swiper-pagination-bullet{
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}


.footer-box{
    display: block;
    width: 100%;
    background-color: #f9f9f9;
    padding-top: 50px;
    padding-bottom: 10px;
    border-top: 1px solid #EEEEEE;
 
}
.firend-box{
    display: block;
}
.firend-box ul{
    list-style: none;
    display: block;
    width: 100%;
}
.firend-box ul li{
    display: inline-block;
    font-size: 14px;
    margin: 0 8px;
}
.firend-box ul li a{
    display: block;
    color: #7d7b7b;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.firend-box ul li:hover a{

    color: #666666!important;
}

 .footer-bottom{
    background-color: #353535;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 35px;
 }
.footer-content{
    display: block;
    width: 100%;
}
.footer-content-left{
    display: block;
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding:0  40px;
    margin: 0px 0 15px 0;
}
.footer-content-left+.footer-content-left{
    border-left: 1px solid #ccc;

}
.footer-content-left-ul ul{
    list-style: none;
    display: block;
    width: 20%;
    float: left;
}
.footer-content ul li{
    display: block;
    font-size: 14px;
    line-height: 30px;
}
.footer-content ul li a{
    display: block;
    color: #7d7b7b;
    text-decoration: none;
}
.footer-content-right-ul ul{
    list-style: none;
    display: block;
    width: 40%;
    float: left;
}
.footer-content-right-ul li{
    display: block;
    color: #7d7b7b;
    text-decoration: none;
}
.footer-item-title{
    font-size: 16px!important;
    color: #000!important;
    margin-bottom: 5px;
}
.footer-erweima{
    display: block;
    float: left;
    width: 150px;
    height: 150px;
}
.footer-dianhua{
    display: block;
    float: left;
    width: 150px;
    height: 150px;
}
.footer-dianhua-number{
    display: block;
    font-size: 20px;
    color: #22a170;
    margin-bottom: 5px;
    margin-top: 5px;
    
}
.footer-dizhi{
    display: block;
    font-size: 14px;
    color: #7d7b7b;
    margin-top: 5px;
}

.dialog-bg{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;

}
.dialog-box{
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -250px;
    width: 500px;
    height: 385px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    background-color: #fff;
    background-image: url(/statics/images/yuyue-bottom-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
}
.dialog-bg.active{
    display: block;
}
.dialog-box-title{
    display: block;
    float: left;
    width: 100%;
    height: 170px;
    background-color: #fff;
    background-image: url(/statics/images/yuyue-top-bg.jpg);
    background-repeat: no-repeat;
    background-position: top;
}
.dialog-box-content{
    display: block;
    float: left;
    width: 100%;
    margin-top: -20px;
}
.dialog-box-form-item{
    display: block;
    margin: 0 auto;
    width: 70%;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px ;
    margin-bottom: 15px;
}
.dialog-box-form-item-label{
    display: block;
    float: left;
    width: 25%;
    text-align: justify;
    font-size: 14px;
    vertical-align: middle;
}
.dialog-box-form-item-label-text{
    display: flex;
    justify-content: space-between;
}
.dialog-box-form-item-label-shu{
    display: block;
    float: left;
    width: 1px;
    height: 20px;
    margin-top: 10px;
    background-color: #eee;
}
.dialog-box-form-item-body{
    display: block;
    float: left;
    width: 70%;
    box-sizing: border-box;
    padding-left: 10px;
}
.dialog-box-form-item-input{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;

}
.dialog-box-form-button-box{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    float: left;
}
.dialog-box-form-button{
    display: block;
    width: 180px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    background-color: #22a170;
    color: #fff;
    text-decoration: none;
    margin: auto;
}
.dialog-box-title-text{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}
.dialog-box-title-text h3{
    font-size: 30px;
    margin-top: 50px;
}
.dialog-box-title-text p{
    font-size: 14px;
    margin-top: 5px;
}
.dialog-box-clos-btn{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}