@charset "utf-8";



body{
    overflow-x: hidden;
}
#header{
    transition:all .3s;
}
.header_wrap{
    background: rgba(255,255,255,.8);
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9998;
    transition:all .6s;
    position: fixed;
    box-shadow: 0 0 10px rgba(0,0,0,.16);
}

.header_flex{
    height:90px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo{
    height:50px;
    transition:all .3s;
    margin-right: 60px;
}
.logo img{
    height: 100%;
    width: auto;
    transition:all .3s;
}
.weixin_code{
    line-height: 80px;
    font-size: 14px;
}
.nav_tel{
    display: flex;
    align-items: flex-end;
    flex-direction:column;
    justify-content: space-between;
    height: 100%;
}
.nav_tel .t-btns{
    color:#fff;
    display: flex;
    align-items: center;
}
.nav_tel .t-btns span{
    padding:0 20px;
}
.nav_tel .t-btns a{
    color:#333;
    padding:0 8px;
    font-size:18px;
}
.nav_tel .t-btns a i{
    font-size:20px;
    color:#333;
    margin-right: 6px;
}
.nav_pc ul{
    
}    
.nav_pc li{
    display: inline-block;
    padding: 0 10px;
    position:relative;
}
.nav_pc li>a{
    display: block;
    font-size: 16px;
    text-transform: capitalize;
    position: relative;
    font-weight: normal;
    transition:all .3s;
    z-index: 2;
    line-height:86px;
    color:#333;
    border-radius: 3px;
}
.nav_pc li>a:after{
    width: 0;
    height: 4px;
    display: block;
    content:'';
    background: var(--theme-color);
    transition:all .3s;
}
.nav_pc li.cur>a,.nav_pc li a:hover{
    color:var(--theme-color);
}
.nav_pc li.cur>a:after,.nav_pc li>a:hover:after{
    width: 100%;
}
.nav_pc li .sub_nav{
    position: absolute;
    left: -28%;
    width: 200%;
    background: #fff;
    transition: all .2s;
    top: 110px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    padding:10px 10px 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}
.nav_pc li:hover .sub_nav{
    top:90px;
    opacity: 1;
    visibility: visible;
}
.nav_pc li .sub_nav a{
    font-size:12px;
    display: block;
    font-size:14px;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding:6px 0;
}


.nav_pc li.sign_in{
    position: relative;
}
.nav_pc li.sign_in .sub_nav{
    width: 150px;
    padding:6px;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
}
.nav_pc li.sign_in:hover .sub_nav{
    top: 57px;
}



.nav_pc .tel{
    height: 45px;
    background: #014c86;
    color:#fff;
    font-size:20px;
    font-weight: bold;
    padding:0 16px;
    line-height: 45px;
    margin-bottom: 10px;
}


.navbar_on{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header_flex .search .key{
    height: 40px;
    border:1px solid #ddd;
    width: 220px;
    color:#333;
    font-size:14px;
    padding: 0 20px;
    outline: none;
}
.header_flex .search{
    position: relative;
}
.header_flex .search button{
    border:none;
    outline: none;
    background: none;
    position: absolute;
    right: 5px;
    top: 6px;
    color:var(--theme-color);
}

.header_flex .btns{
    margin-left: 45px;
}
.header_flex .btns a{
    width: 110px;
    height: 35px;
    line-height: 35px;
    font-size:14px;
}
.fixed_search{
    background: #ececec;
    left: 0;
    position: fixed;
    right: 0;
    top:-50%;
    z-index: 99999999;
    height: 50%;
    transition:all .3s;
}
.fixed_search_on{
    top: 0;
}
.fixed_search form{
    left: 10%;
    position: absolute;
    right: 10%;
    top: 42%;
    z-index: 99999999;
}
.fixed_search .key{
    width: 100%;
    height: 100px;
    background: transparent;
    padding: 20px;
    font-size: 35px;
    line-height: 60px;
    border-bottom: 2px solid #333;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}
.fixed_search .btn{
    position: absolute;
    right: 0;
    top: 20px;
    border:none;
    background: none;
    outline: none;
}
.fixed_search .btn i{
    font-size:30px;
    
}
.fixed_search .close{
    position: absolute;
    right: 70px;
    top:70px;
    opacity: 1;
    border:2px solid #666;
    padding: 12px;
    border-radius: 50%;
}
.fixed_search .close i{
    font-size:18px;
    color:#666;
}

.phone_top_nav{
    display: none;
}
.phone_top_nav .sub_nav_phone{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav_phone a{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}
.phone_menu_btn{
    font-size: 16px;
    color: #fff;
    display: none;
}
.phone_menu_btn .line{
    position: relative;
    display: block;
    width:19px;
    height: 2px;
    margin: 4px 0;
    background:var(--theme-color);
    -webkit-transition: .3s;
    transition: .3s;
}
.phone_menu_btn span{
    position: absolute;
    left: 32px;
    top: 2px;
}
.phone_top_nav{
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fff;
    height: 100%;
    border-top:1px solid #ccc;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    padding: 70px 30px 30px;
    transition: .5s;
    transform: translateY(-100%);
}
.phone_top_nav li>a{
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #5a5657;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.phone_top_nav .sub_nav{
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.phone_top_nav .sub_nav a{
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}
.header_active .line:nth-of-type(1){
    -webkit-transform: translateY(5.5px) rotate(-45deg);
    -ms-transform: translateY(5.5px) rotate(-45deg);
    transform: translateY(5.5px) rotate(-45deg);
}
.header_active .line:nth-of-type(2){
    opacity:0;
}
.header_active .line:nth-of-type(3){
    -webkit-transform: translateY(-6.5px) rotate(45deg);
    -ms-transform: translateY(-6.5px) rotate(45deg);
    transform: translateY(-6.5px) rotate(45deg);
}
.header_active .phone_top_nav{
    transform: translateY(0);
}
.header_on.header_wrap{
    background: #fff;
}
.header_on.header_wrap .nav_pc li>a{
    color:#333;
}
.header_on.header_wrap .nav_tel .t-btns a{
    color:#333;
}
.header_on.header_wrap .nav_tel .t-btns{
    color:#333;
}
.header_on.header_wrap .nav_tel .t-btns a i{
    color:#333;
}
.header_on.header_wrap .nav_pc li.cur>a,.header_on.header_wrap .nav_pc li a:hover{
    color:var(--theme-color);
}

.panel3_right-mobile{
    display: none;
}


/* banner */
.banner{
    position: relative;
    z-index: 1;
}
.banner .item{
    position: relative;
}
.banner .item a{
    display: block;
}
.banner .item .con{
    position: absolute;
    top: 50%;
    width:32%;
    transform:translateY(-50%);
    color:#fff;
}
.banner .item .con h4{
    font-size:48px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 25px;
}
.banner .item .con span{
    font-size:22px;
}
.banner .item .con p{
    font-size:16px;
    font-weight:normal;
}

.banner .item .con a{
    width: 205px;
    height: 53px;
    line-height: 53px;
    margin-top: 70px;
}
.banner .item .img img{
    width:100%;
}

.banner .slick-dots{
    position: absolute;
    bottom: 20px;
    width:100%;
    text-align: center;
    left:0;
}
.banner .slick-dots li{
    margin:0 6px;
    width: 60px;
    height: 5px;
}
.banner .slick-dots li button{
    width: 60px;
    height: 10px;
    border-radius: 0;
    background: #dae4ed;
    padding:0;
}
.banner .slick-dots li button:before{
    display: none;
}
.banner .slick-dots li.slick-active button{
    background: var(--theme-color);
}
.banner .slick-dots li{
    
}


/* btn */

.btn_style a{
    display: block;
    background: var(--theme-color);
    color:#fff;
    font-size:16px;
    text-align: center;
    border-radius: 3px;
}
.btn_style a:hover{
    background: var(--secondary-color);
}

/*首页css__start*/


/*公用头部*/

.tit_box1{
   padding:70px 0 25px;
}
.tit_box1 .tit{
    
}
.tit_box1 .tit h4{
    color:#333;
    font-size:28px;
    font-weight: bold;
    text-transform: uppercase;
}
.tit_box1 .tit p{
    font-size:16px;
    color:#333;
    text-transform: uppercase;
}

.tit_box2{
    padding:80px 0 40px;
}
.tit_box2 .tit{
    text-align: center;
}
.tit_box2 .tit h4{
    font-size: 30px;
    color:#333;
    font-weight: bold;
}
.tit_box2 .tit p{
    font-size:14px;
    color:#666;
    margin-top: 10px;
    line-height: 1.6;
}

.tit_box3 .tit h4{
    color:#fff;
}
.tit_box3 .tit p{
    color:#ddd;
}


/* bg */

.bg1{
   background:#f2f3f3;
}
.bg2{
    background:var(--theme-color);
}
.bg3{
    background:#eefafd;
}
.bg4{
    background:#f3f6f9;
}
.bg5{
    background: url(../images/bg5.jpg) no-repeat center center fixed;
    background-size: cover;
}

/* panel1_con */

.panel1_con{
    border:1px solid #dae4ed;
    margin-top: 60px;
    padding:45px 25px 30px 25px;
}
.panel1_con li a{
    display: block;
    padding:0 40px;
    position: relative;
}
.panel1_con li a:after{
    content:'';
    width: 1px;
    height:45px;
    background: #f0f0f0;
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
}
.panel1_con li a h4{
    font-size:18px;
    color:#022e55;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}
.panel1_con li a span{
    position: absolute;
    left: -25px;
    top:-45px;
    background: #009fe0;
    height: 24px;
    line-height: 24px;
    padding:0 12px;
    color:#fff;
    font-size:12px;
}
.panel1_con li a h4:after{
    content:'';
    display: block;
    width: 0;
    height: 2px;
    background:var(--theme-color);
    transition:all .3s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.panel1_con li a:hover h4{
    color:var(--theme-color);
}
.panel1_con li a:hover h4:after{
    width: 100%;
}

.panel1_con li a p{
    font-size:14px;
    color:#688195;
    line-height: 1.5;
    margin-top: 10px;
}


/* panel2 */

.panel2{
    margin: 60px 0;
}
.panel2_left{
    border:1px solid #dae4ed;
    flex:1;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
}
.panel2_con .info{
    padding:20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.panel2_con:hover{
    border-color:var(--theme-color);
}
.panel2_con .info .con span{
    font-size:14px;
    color:#4e6d89;
}
.panel2_con .info .con h4{
    font-size:18px;
    font-weight: bold;
    color:#002e52;
    margin-top: 10px;
}
.panel2_con .info .menu{
    color:#4e6d89;
    margin-top: 40px;
    font-size:14px;
}
.panel2_con .info .menu span{
    padding:0 5px;
}
.panel2_con .info .menu a{
    color:#4e6d89;
    display: inline-block;
}
.panel2_con .info .menu a:hover{
    color:var(--theme-color);
}
.panel2_con .info .btna{
    margin-top: 20px;
    position: relative;
    z-index: 999;
}
.panel2_con .info .btna a{
    font-size:14px;
    font-weight: bold;
    color:var(--theme-color);
    display: block;
}
.panel2_con .info .btna a:hover{
    color:#002f53;
}
.panel2_right{
    width: 75%;
    border:1px solid #dae4ed;
}
.panel2_right .item .desc{
    margin-top: 10px;
    font-size:14px;
}

.panel2_right .slick-dots{
    position: absolute;
    bottom: 20px;
    right:30px;
    z-index: 22;
    width: auto;
}
.panel2_right .slick-dots li{
    margin:0 6px;
    width: 40px;
    height: 5px;
}
.panel2_right .slick-dots li button{
    width: 40px;
    height: 5px;
    border-radius: 0;
    background: #dae4ed;
    padding:0;
}
.panel2_right .slick-dots li button:before{
    display: none;
}
.panel2_right .slick-dots li.slick-active button{
    background: var(--theme-color);
}
.panel2_right .slick-dots li{
    
}

.panel3_left{
    border:1px solid #dae4ed;
    padding:25px;
    text-align: center;
    flex:1;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.panel3_left .title{
    font-size:22px;
    color:#012f53;
    font-weight: bold;
}
.panel3_left .con{
    font-size:14px;
    margin:10px 0;
}
.panel3_left .btna a{
    display: block;
    height: 44px;
    background: var(--theme-color);
    color:#fff;
    font-size:14px;
    text-align: center;
    line-height: 44px;
    transition:all .3s;
}
.panel3_left .btna a:hover{
    background: #012f53;
}

.panel3_right{
    width:75%;
}
.panel3_right a{
    border:1px solid #dae4ed;
    display: block;
    padding:15px;
    transition:all .3s;
}
.panel3_right a:hover{
    border-color: var(--theme-color);
}
.panel3_right a h4{
    font-size:16px;
    font-weight: bold;
    color:#004274;
    text-align: center;
    padding-top: 15px;
}



#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}


/*页底css*/

.footer{
    background:#f2f6f9;
    padding:50px 0;
    margin-top:80px;
}
.footer .tit{
    font-size:24px;
    color:#333;
}
.footer_flex{
    
}
.footer_flex .content{
    font-size:16px;
    color:#333;
    margin-top: 30px;
}
.footer_flex .code{
    margin:0 -30px;
}
.footer_flex .code .item{
    padding:0 20px;
}
.footer_flex .code .item p{
    text-align: center;
    font-size:13px;
    color:#333;
    margin-top: 6px;
}

.footer_logo{
    display: flex;
    align-items: center;
}

.footer_ft{
    border-top: 1px solid rgba(0,0,0,.1);
    font-size:16px;
    text-align: center;
    padding-top: 30px;
    color:#333;
    margin-top: 30px;
}


/* fixed_rightbtn */

.fixed_rightbtn{
    position: fixed;
    z-index: 999;
    right:0;
    bottom:20%;
}
.fixed_rightbtn>ul>li{
    width:40px;
    height:40px;
    color:var(--theme-color);
    position: relative;
    transition:all .3s;
}
.fixed_rightbtn>ul>li>a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40px;
    line-height: 1.2;
    position: relative;
    color:#555;
    border:1px solid #ddd;
    border-bottom: none;
    background: #fff;
}
.fixed_rightbtn>ul>li:last-child a{
    border-bottom:1px solid #ddd;
}
.fixed_rightbtn>ul>li i{
    display: inline-block;
    font-size:18px;
    line-height: 1;
}
.fixed_rightbtn>ul>li>a:hover{
    background:var(--theme-color);
    border:1px solid var(--theme-color);
}
.fixed_rightbtn>ul>li:hover>a{
    color:#fff;
}
/*.fixed_rightbtn>ul>li p{*/
/*    position:absolute;*/
/*    height: 45px;*/
/*    right:40px;*/
/*    top: 0;*/
/*    background: #fff;*/
/*    border:1px solid #ddd;*/
/*    color:#333;*/
/*    font-size:18px;*/
/*    width:310px;*/
/*    text-align: center;*/
/*    line-height: 45px;*/
/*    transition:all .3s;*/
/*    box-shadow: 0 0 10px rgba(0,0,0,.1);*/
/*    border-radius: 3px;*/
/*    display: none;*/
/*}*/
/*.fixed_rightbtn>ul>li:hover p{*/
/*    display: block;*/
/*}*/
#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}
.fixed_rightbtn>ul>li#fr_tel:hover,.fixed_rightbtn>ul>li#fr_tel{
    border:none;
}
.fixed_right_contact{
    width: 180px;
    background: #fff;
    position: absolute;
    bottom: -1px;
    left: -140px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.fixed_right_contact .close{
    position: absolute;
    right: 16px;
    top:23px;
    color: #fff;
    transition: all .3s;
    font-size:0;
}
.fixed_right_contact .close:hover{
    transform: rotate(180deg);
}
.fixed_right_contact .close i{
    font-size:14px;
}
.fixed_right_contact .tit{
    height: 57px;
    line-height: 57px;
    background: var(--theme-color);
    color:#fff;
    font-size:16px;
    padding: 0 20px;
}
.fixed_right_contact .tit i{
    font-size:18px;
    margin-right: 6px;
    vertical-align: middle;
}
.fixed_right_contact .con li{
    padding:15px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.fixed_right_contact .con li h4{
    font-size:14px;
    color:#333;
    font-weight: normal;
    cursor: pointer;
}
.fixed_right_contact .con li h4 i{
    font-size:16px;
    color:#666;
    margin-right: 6px;
}
.fixed_right_contact .con li p{
    font-size:18px;
    line-height: 1;
    margin-top: 10px;
    color:var(--theme-color);
}
#fr_tel>a{
    right: -40px;
}
#fr_tel.fr_tel_on .fixed_right_contact{
    transition:all .3s;
    left: 40px;
}
#fr_tel.fr_tel_on>a{
    right: 0;
    transition:all .3s;
    transition-delay: .3s;
}
.layer_search{
    position: absolute;
    right:40px;
    top: 0;
    width: 300px;
    background: #fff;
    border:1px solid #ddd;
    padding: 15px 10px 15px 15px;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
#fr_search:hover .layer_search{
    display: block;
}
.layer_search form{
    display: flex;
}
.layer_search .key{
    height: 40px;
    line-height: 40px;
    width: 100%;
    padding: 0 20px;
    border:1px solid var(--theme-color);
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size:14px;
}
.layer_search .button{
    height: 40px;
    line-height: 40px;
    background: var(--theme-color);
    color:#fff;
    border:none;
    outline: none;
    padding: 0 10px;
    position: relative;
    right: 4px;
    font-size:14px;
    width: 80px;
    text-align: center;
    border-radius:0 3px 3px 0;
}

.layer_weixin{
    position: absolute;
    width: 150px;
    right: 40px;
    top: 0;
    border:1px solid #ddd;
    padding:3px;
    background: #fff;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
#fr_code:hover .layer_weixin{
    display: block;
}
.layer_weixin span{
    text-align: center;
    display: block;
}


/* phone_fixed_menu */

.phone_fixed_menu{
    border-top: 1px solid #E5E9F2;
    width: 100%;
    height: 55px;
    background: #fff;
    position: fixed;
    z-index: 10000;
    bottom: 0;
    left: 0;
    display: none;
}
.phone_fixed_menu ul li{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 55px;
    line-height: 1.2;
}
.phone_fixed_menu ul li a{
    display: block;
}
.phone_fixed_menu ul li i{
    font-size:20px;
    color:#333;
}
.phone_fixed_menu ul li p{
    color:#333;
    font-size:14px;
}



/*首页css__end*/


.page_search_list li{
    border-bottom: 2px solid #f2f3f5;
    padding-top:20px;
    padding-bottom: 20px;
}
.page_search_list li:hover{
    background: #f7f7f7;
}
.page_search_list li .tit{
    width:200px;
    color:#000;
    font-size:14px;
}
.page_search_list li .tit i{
    margin-right: 5px;
    font-size:20px;
}
.page_search_list li .con h4{
    font-size:16px;
    color:#000;
}
.page_search_list li .con p{
    font-size:14px;
    color:#a3b2bc;
    margin-top: 8px;
}
.page_search_list li.item1{
    padding-bottom: 6px;
}
.page_search_list li.item1 .tit i{
    font-size:15px;
}
.page_search_list li.item1 .con{
    font-size:14px;
    color:#000;
}

.page_search_a{
    padding:30px 0;
}
.page_search_a .selectpicker{
    border:1px solid #999;
    margin-right: 10px;
    padding:0 3px;
    border-radius: 4px;
    height: 38px;
}
.page_search_a .form-control{
    height: 38px;
}
.page_search_a .btn{
    border-radius:0 4px 4px 0;
}

/* page_search_list2 */

.page_search_list2 li a{
    border-bottom: 1px solid #b6bfc6;
    padding:30px 0;
}
.page_search_list2 li .img{
    width:320px;
    height: 200px;
}
.page_search_list2 li .img img{
    width: 100%;
    height: 100%;
}
.page_search_list2 li .con{
    flex:1;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page_search_list2 li .con h4{
    font-size:24px;
    font-weight: bold;
    color:#333;
    margin-bottom: 20px;
}
.page_search_list2 li .con p{
    font-size:16px;
    color:#333;
}
.page_search_list2 li .con span{
    color:var(--theme-color);
    font-size:14px;
    margin-top: 30px;
}
.page_search_list2 li:hover .con h4{
    color:var(--theme-color);
}


/*内页*/

.page_tit{
    padding: 15px 20px;
    background: #fff;
    margin:20px 0;
    align-items: center;
}
.page_tit .tit{
    flex:1;
    font-size:18px;
    font-weight: bold;
    color:#282828;
    line-height: 1;
}

.page_tit .pos{
    font-size:14px;
}

.ibanner{
    background: url(../images/ibanner.jpg) no-repeat center;
    position: relative;
}
.ibanner .pos{
    position: absolute;
    bottom:15px;
    color:#ccc;
    font-size:14px;
}
.ibanner .pos a{
    color:#ccc;
}

.inner_contact{
    background: #effafe;
}

/* 内页分类 */

.inner{
    padding:40px 0;
}

.inner_menu{
    border-left:1px solid #dee7f0;
    padding:0 0 16px; 
}
.inner_menu li .menu{
    padding-top: 30px;
}
.inner_menu li .menu a{
    font-size:18px;
    color:#95a2ab;
    font-weight: bold;
    position: relative;
    display: block;
    padding:0 16px;
}
.inner_menu li.cur .menu a{
    color:#01365e;
}
.inner_menu li .menu a:before{
    content:'';
    display: block;
    width: 0;
    height: 20px;
    background: #01365e;
    position: absolute;
    left: 0;
    top: 4px;
}
.inner_menu li.cur .menu a:before{
    width: 3px;
}
.inner_menu li .sub_menu a{
    color:#95a2ab;
    font-size:14px;
    display: block;
    line-height: 1.4;
    padding:5px 16px;
    font-weight: 300;
}
.inner_menu li .sub_menu a:hover{
    background: #f2f6f9;
}




.page_index{
    min-height:300px;
    background: #fff;
    padding: 25px 0;
}
.page_index p{
    text-indent: 2em;
    font-size:16px;
    line-height:1.9;
    margin-bottom: 15px;
}
.page_index img{
    margin:auto;
    margin-bottom: 15px;
}

/* 内页左侧 */

.i_left_con{
    
}
.i_left_con .tit{
    color:var(--secondary-color);
    font-weight: 600;
    letter-spacing:1px;
    line-height: normal;
    text-transform: uppercase;
    font-size:24px;
    text-align: center;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 10px;
}
.i_left_con .tit:after{
    content:'';
    display: block;
    background: var(--secondary-color);
    width:calc(100% - 40px);
    position: absolute;
    bottom: 0;
    left: 20px;
    height: 1px;
    opacity: .5;
}

.left_news{
    background: #fff;
    margin-bottom: 20px;
    padding:30px;
    border-radius: 5px;
    border:1px solid #ebebeb;
}
.left_news li{
    padding: 10px 0;
    border-bottom: 1px solid #E8E9EF;
}
.left_news li.li a{
    font-size:14px;
    color:#333;
    position: relative;
    padding-left: 18px;
}
.left_news li.li a:before{
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    content:'';
    display: block;
    transform: rotate(45deg);
    position: absolute;
    left: 1px;
    top: 10px;
}
.left_news li a:hover{
    color:var(--theme-color);
}
.left_news li a{
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.left_news li h4{
    font-size:14px;
    height:40px;
    line-height:40px;
    background: rgba(0,0,0,.4);
    color:#fff;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 0 10px;
    text-align: center;
}

/* i_left_con */

.i_left_con .i_img{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border:1px solid #ebebeb;
}
.i_left_con .i_img a{
    display: block;
}



/* 单页内容 */


.page_index .tit h1{
    color:#444;
    font-size:30px;
    font-weight: bold;
}
.page_index .tit p{
    font-size:14px;
    border-bottom: 1px solid #f8f8f8;
    padding:6px 0 20px;
    margin:0;
    text-indent: 0;
}
.page_index .tit p span{
    margin-right:20px;
}
.page_index .tit p span i{
    margin-right:5px;
}
.page_index .desc{
    font-size:14px;
    background: #f8f8f8;
    padding:15px 20px;
    color:#888;
}
.page_index .desc span{
    font-weight: bold;
    color:#f04c36;
}
.page_index .con{
    padding:20px 0;
    min-height: 400px;
}

.xg_news h3{
    font-size:16px;
    border-bottom: 1px solid #eee;
    line-height:2;
    color:#3c3b5c;
    font-weight: bold;
}
.xg_news ul{
    margin-bottom: 20px;
}
.xg_news ul li {
    padding:15px 0 0;
}
.xg_news ul li .img{
    width:80px;
}
.xg_news ul li .con{
    flex:1;
    margin-left: 20px;
}
.xg_news ul li .con a{
    font-size:14px;
    display: block;
    line-height: 1.2;
    color:#555;
    margin-bottom: 3px;
    max-height:32px;
    overflow: hidden;
}
.xg_news ul li .con span{
    color:#999;
}
.xg_news .tags{
    padding: 10px 0 20px;
}
.xg_news .tags a{
    display: inline-block;
    padding: 3px 10px;
    background:var(--theme-color);
    margin:0 5px 5px 0;
    color:#fff;
    font-size:14px;
    border-radius:3px;
}

.xg_news dl dt{
    width: 100%;
    background: #fff;
}
.xg_news dl dd{
    font-size:14px;
    text-align: center;
    font-weight: normal;
    color:var(--theme-color);
    line-height: 2;
    margin-bottom: 10px;
    padding: 0 10px;
}

/* 公司介绍 */

.page_about_index .tit{
    color:#222931;
    font-size:34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.page_about_index .con{
    font-size:16px;
    line-height: 1.9;
    text-align: center;
}
.page_about_index .con p{
    margin-bottom: 20px;
}
.page_about_index ul li{
    text-align: center;
}
.page_about_index ul li i{
    width: 100px;
    height: 100px;
    display: block;
    margin:0 auto 20px;
    background: #003f92;
    border-radius: 50%;
    font-size:36px;
    color:#fff;
    text-align: center;
    line-height: 100px;
}
.page_about_index ul li h4{
    color:#003f92;
    font-size:22px;
    font-weight: bold;
}

.page_service_index .con{
    max-width: 900px;
    margin:-30px auto 0;
    font-size:16px;
    text-align: center;
    color:#fff;
}

.page_honor_index li .con h4{
    text-align: center;
    line-height:60px;
    height: 60px;
    overflow: hidden;
    font-size:22px;
    color:#333;
    font-weight: bold;
}

.page_about_panel1 h4{
    font-size:32px;
    color:#333;
    font-weight: bold;
    margin:32px 0 40px;
}
.page_about_panel1 h5{
    font-size:24px;
    color:#333;
    margin-bottom: 30px;
}
.page_about_panel1 h6{
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 32px;
}
.page_about_panel1 p{
    font-size:16px;
    color:#333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.page_about_panel2{
    margin-top: 60px;
}
.page_about_panel2 .title{
    font-size:24px;
    color:#333;
    margin-bottom: 20px;
}
.page_about_panel2 li .con{
    padding:20px 0;
}
.page_about_panel2 li .con h4{
    font-size:18px;
    font-weight: bold;
    color:#333;
}
.page_about_panel2 li .img{
    box-shadow:0 0 15px rgb(0,0,0,.2)
}
.page_about_panel2 li .con p{
    font-size:14px;
    margin-top: 10px;
    line-height: 1.6;
}

.page_news_hot{
    padding-top: 40px;
}
.page_news_hot a{
    padding:20px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.page_news_hot .img{
    flex:1;
}
.page_news_hot .img img{
    width: 100%;
}
.page_news_hot .con{
    display: flex;
    width:70%;
    padding:0 0 0 50px;
    flex-direction: column;
    justify-content: center;
}
.page_news_hot .con h5{
    font-size:48px;
    font-weight: bold;
    color:#333;
    padding:10px 0;
}
.page_news_hot .con h4{
    font-size:24px;
    font-weight: bold;
    color:#333;
    margin-top: 30px;
}
.page_news_hot .con p{
    font-size:16px;
    margin:40px 0 10px;
    color:#666;
}
.page_news_hot .con span{
    color:var(--theme-color);
    font-size:16px;
}
.page_news_hot .con em{
    font-style: normal;
    display: block;
    margin-top: 30px;
    font-size:14px;
    color:var(--theme-color);
}
.page_news_hot .con em i{
    font-size:14px;
    margin-right: 5px;
}

.page_news_hot:hover .con h4{
    color:var(--theme-color);
}


/* 产品列表 */

.page_picList_line{
    border-top: 1px solid #e6ebef;
    padding-top: 50px;
}

.page_picList li{
    
}

.page_picList li .con{
    padding:30px 0;
}
.page_picList li .con h4{
    font-size:18px;
    font-weight: bold;
    color:#05355b;
    padding:0 0 6px;
    position: relative;
    transition:all .36s;
}
.page_picList li .con h4:after{
    content:'';
    height: 1px;
    width: 0;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .36s;
}
.page_picList li:hover .con h4{
    color:var(--theme-color);
}
.page_picList li:hover .con h4:after{
    width: 100%;
}

.page_picList li .con p{
    font-size:14px;
    color:#94a2ad;
    margin-top: 15px;
}

/**/ 

.product_detail_scroll_wrap{
    padding: 70px 0;
    border-bottom: 1px solid #e6ebef;
}
.product_detail_scroll .item img{
    width: 100%;
}
.product_detail_scroll .slick-dots{
    bottom: 15px;
    margin: 0;
    text-align: right;
    right: -130px;
}
.product_detail_scroll .slick-dots li button:before{
    color:#d7dce2;
    opacity: 1;
}
.product_detail_scroll .slick-dots li.slick-active button:before{
    color:var(--theme-color);
}


.product_detail_scroll_con{
    padding:0 0 0 30px;
}
.product_detail_scroll_con h1{
    font-size:24px;
    color:#323232;
    font-weight: bold;
    padding:10px 0 20px;
}
.product_detail_scroll_con p{
    font-size:16px;
   
}


/* 单页联系我们 */

.page_contactindex ul{
    margin:0 -16px;
}
.page_contactindex ul li{
    width: 50%;
    padding:0 16px 32px;
}
.page_contactindex ul li .item{
    background: #fff;
    padding:40px;
    display: flex;
    height: 100%;
}
.page_contactindex ul li .item .icon i{
    font-size:24px;
    color:#fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--theme-color);
    display: block;
    border-radius: 5px;
    margin-right: 28px;
}
.page_contactindex ul li .item .con h4{
    font-size:14px;
    color:#333;
}
.page_contactindex ul li .item .con p{
    font-size:22px;
    color:var(--theme-color);
    margin-bottom: 10px;
}
.page_contactindex ul li .item .con span{
    font-size:14px;
    display: block;
    line-height: 1.5;
}
.page_contactindex ul li .item .icon1{
    display: flex;
    align-items: center;
    height: 30px;
}
.page_contactindex ul li .item .icon1 i{
    font-size:22px;
    color:#e08092;
    margin-right: 6px;
}
.page_contactindex ul li .item .icon1 span{
    font-size:16px;
    color:#333;
}
.page_contactindex ul li .item4{
    flex-direction: column;
}
.page_contactindex ul li .item .icon_box{
    margin-left: 30px;
    margin-top: 20px;
}
.page_contactindex ul li .item .icon_box i{
    font-size:24px;
    margin:0 15px 0 0;
}



.innerBgfff{
    background: #fff;
    overflow: hidden;
}

.page_banner{
    overflow: hidden;
    position: relative;
}
.page_banner:after{
    width: 1600px;
    height: 100%;
    background: #effafe;
    border-radius: 0 0 30px 30px;
    content:'';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.page_banner .con{
    position: absolute;
    bottom: 28%;
    right:100px;
    display: flex;
}
.page_banner .con a{
    font-size:24px;
    border:1px solid #000;
    display: block;
    padding:15px 40px;
    color:#000;
    margin:0 30px;
}
.page_banner .con a:hover{
    background: var(--theme-color);
    border-color:var(--theme-color);
    color:#fff;
}

.page_banner_content{
    position: absolute;
    top: 0;
    z-index: 99;
    height:290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:#012f53;
    padding-bottom: 45px;
}

.page_banner_content h5{
    font-size:14px;
    font-weight: bold;
}
.page_banner_content h3{
    font-weight: bold;
    font-size:28px;
    margin-top: 40px;
}
.page_banner_content p{
    font-size:16px;
    margin-top: 10px;
}

.page_search{
    background: #fff;
    border:1px solid #dbe4ed;
    padding:20px 25px;
    position: relative;
    margin-top: -46px;
    margin-bottom: 30px;
}
.page_search .text{
    flex:1;
    color:#012f53;
    font-size:14px;
}
.page_search form{
    border:1px solid #dbe4ed;
    height: 40px;
    border-radius: 2px;
}
.page_search form .key{
    border:none;
    outline: none;
    padding:0 10px;
    width: 260px;
    font-size:14px;
}
.page_search form button{
    background: #1c7bbf;
    outline: none;
    border:none;
    height: 38px;
    width: 38px;
    color:#fff;
    transition:all .3s;
}
.page_search form button:hover{
    background: #012f53;
}





/*新闻列表*/

.page_newsList{
}
.page_newsList ul{
    margin:0 -3px;
}
.page_newsList li{
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-bottom: 20px;
    padding:6px 3px 0;
}

.page_newsList li .img{
    
}
.page_newsList li .img img{
    margin-bottom: 0;
}
.page_newsList li .con{
    transition: all .3s ease-out 0s;
    padding:30px 20px;
}
.page_newsList li .con h5{
    font-size:14px;
    margin-bottom:5px;
}
.page_newsList li .con h4{
    color: #333;
    font-weight: bold;
    transition: all .3s ease-out 0s;
    font-size: 24px;
    margin-bottom: 20px;
}
.page_newsList li .con p{
    color: #888;
    font-size: 16px;
    line-height: 24px;
    max-height:75px;
    margin:0;
    text-indent: 0;
    overflow: hidden;
}
.page_newsList li .con span{
    display: block;
    color:var(--theme-color);
    margin-top:8px;
    font-size:14px;
}
.page_newsList li:hover{
    box-shadow: 0 3px 20px rgba(0,0,0,.15);
}
.page_newsList li:hover .con h4{
    color:var(--theme-color);
}

.download_list{
    padding:40px 0;
}
.download_list .proTit{
    margin-bottom: 30px;
}
.download_list .proTit h2{
    font-size:24px;
    color:#333;
    text-align: center;
    font-weight: bold;
}
.download_list ul li{
    padding:10px 0;
    border-bottom: 1px solid #eee;
}
.download_list ul li a h4{
    flex:1;
}
.download_list ul li a span{
    font-size:16px;
}
.download_list ul li a i{
    margin-left: 10px;
}

/* page_case_menu */

.page_case_menu{
    padding-top: 30px;
    padding-bottom: 20px;
    display: flex;
}
.page_case_menu a{
    display:inline-block;
    padding:0 20px;
    height: 40px;
    background: var(--theme-color);
    color:#fff;
    margin-right: 10px;
    font-size:14px;
    line-height: 40px;
}
.page_case_menu a:hover,.page_case_menu a.cur{background:#014c86;}

.page_case_list .con_img{
    padding:30px 0;
}
.page_case_list .con_img .con h2{
    font-size:24px;
    font-weight: bold;
}
.page_case_list .con_img .con p{
    font-size:14px;
    margin-top: 20px;
}
.page_case_list ul{
    margin-bottom:50px;
}
.page_case_list ul li .img img{
    width: 100%;
}
.page_case_list h4.title{
    font-size:24px;
    color:#333;
    margin:10px 0 30px;
}
.page_case_list ul li .con{
    padding:15px 0;
}
.page_case_list ul li .con h4{
    font-size:16px;
    font-weight: bold;
    color:#333;
}
.page_case_list ul li .con p{
    font-size:14px;
    margin-top: 10px;
    color:#666;
}


/* 新闻详情 */

.page_news_detail{
    margin: auto;
}
.page_news_detail .tit{
    text-align: center;
}
.page_news_detail .tit h1{
    color: #000;
    font-size:30px;
    font-weight: bold;
}


/* 产品详情页 */

.page_picshow{
    margin-bottom: 50px;
    background: #fff;
    padding: 25px;
}
.page_picdetails{
}
.page_picdetails_con{
    min-height: 400px;
}
.page_picdetails .img img{
    width: 100%;
}
.page_picdetails .info{
}
.page_picdetails .info h1{
    font-size:20px;
    margin: 10px 0 15px;
    color:#3c3b5c;
    font-weight: bold;
    line-height:1.3;
    border-bottom: 1px solid #eee;
    padding:0 0 14px;
}
.page_picdetails .info p{
    font-size:14px;
    margin:0 0 40px;
}
.page_picdetails .info>span{
    background: var(--theme-color);
    padding:3px 15px;
    margin-top:14px;
    display:inline-block;
    color:#fff;
    font-size:16px;
    border-radius: 4px;
}
.page_picdetails .info span i{
    font-size:20px;
    margin-right:6px;
}
.page_picdetails .info span em{
    font-style:normal;
    font-size:22px;
    font-family: Arial, Helvetica, sans-serif;
}

.page_picdetails .con{
    border:none;
    margin:0;
    padding: 20px 0 0;
}
.page_picdetails .con .tags{
    font-size:14px;
    margin-bottom: 15px;
}
.page_picdetails .con .tags a{
    color:#fff;
    background: #f04c36;
    display: inline-block;
    line-height: 1.4;
    padding: 0 3px;
    margin-right:3px;
    font-size:12px;
}
.page_picdetails .con .ptit{
    font-size:16px;
    background: #f7f7f7;
    padding:6px 13px;
    position: relative;
    margin-bottom: 30px;
    font-weight: bold;
    
}
.page_picdetails .con .ptit::before{
    content:'';
    display: block;
    width:3px;
    height:18px;
    background: var(--theme-color);
    position: absolute;
    left:0;
    top:10px;
}


.page_aboutindex .ipanel3_w{
    background: url(../images/about_banner1.jpg) no-repeat center fixed #1b1b21;
    background-size: cover;
    color: #fff;
    text-align: center;
    height:400px;
    opacity: .9;
}
.page_aboutindex .ipanel3_w .tit{
    position: relative;
    height: 350px;
    padding-top: 155px;
}
.page_aboutindex .ipanel3_w .tit:before {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
    bottom: 76px;
    width: 15px;
    height:  15px;
    z-index: 1;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    overflow: hidden;
}
.page_aboutindex .ipanel3_w .tit:after{
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -0.5px;
    bottom: 0px;
    width: 1px;
    height: 76px;
    z-index: 1;
    background: rgb(255, 255, 255);
}
.page_aboutindex .ipanel3_w .tit h4 {
    height: 50px;
    font-size: 30px;
    line-height: 50px;
}
.page_aboutindex .ipanel3_w .tit p {
    height: 36px;
    font-size: 18px;
    line-height: 36px;
}

/* page_history-thumbs */

.page_history-thumbs{
    position: relative;
    padding: 50px 0;
}
.page_history-thumbs:after{
    width: 100%;
    height: 1px;
    background: #dbdbdb;
    display: block;
    content:'';
    position: absolute;
    top:58px;
}
.page_history-thumbs .swiper-button-white{
    width:27px;
    height: 44px;
    background: #ebf2ff;
    outline: none;
    font-family: '宋体';
    font-size:20px;
    text-align: center;
    text-align: center;
    top: 60px;
    line-height: 44px;
}
.page_history-thumbs .swiper-button-prev{
    left: 0;
}
.page_history-thumbs .swiper-button-next{
    right: 0;
}
.page_history-thumbs .swiper-button-white:after{
    color:#4b4e5d;
    font-size:18px;
}
.page_history-thumbs .swiper-slide{
    text-align: center;
    cursor: pointer;
}
.page_history-thumbs .round{
    width: 13px;
    height: 13px;
    background: #adadad;
    border-radius: 50%;
    margin:auto;
    position: relative;
}
.page_history-thumbs .round:before{
    width: 1px;
    height: 40px;
    background: #adadad;
    content:'';
    display: block;
    position: absolute;
    left: 50%;
    top: 13px;
}
.page_history-thumbs p{
    font-size:16px;
    color:#333;
    margin-top: 46px;
    font-weight: normal;
    font-family: Arial;
}
.page_history-thumbs p span{
    font-family: 'PingFang SC';
    margin-left: 6px;
}
.page_history-thumbs h4{
    font-size:14px;
    margin:10px 10px 0;
    background:#f5f7ff;
    color:#666;
    padding:20px;
    font-weight: 400;
    line-height: 1.4;
}
.page_history-thumbs h4 span{
    font-size:18px;
    color:#333;
    display: block;
    margin-bottom: 10px;
}
.page_history-thumbs .swiper-slide-thumb-active .round{
   background: #2f67c7;
}
.page_history-thumbs .swiper-slide-thumb-active .round:before{
    background: #2f67c7;
}
.page_history-thumbs .swiper-slide-thumb-active p{
    color:#2f67c7;
}
.page_history-top{
    padding-top:60px;
}
.page_history-top .top_flex{
    max-width: 70%;
    margin:auto;
}
.page_history-top .img img{
    margin:auto;
}
.page_history-top .con{
    background: #3c71dc;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    color:#fff;
}
.page_history-top .con p{
    font-size:20px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.page_history-top .con h4{
    font-size:16px;
    font-weight: 300;
}

.page_history-thumbs .swiper-slide:hover h4{
    background: #009fe0;
    color:#fff;
}
.page_history-thumbs .swiper-slide:hover h4 span{
    color:#fff;
}


/* 案例列表 */

.page_caseList{
    padding: 20px 0 0;
}
.page_caseList li{
    margin-bottom:20px;
}
.page_caseList li a{
    display: block;
    background: #fff;
    overflow: hidden;
}
.page_caseList .img{
    position: relative;
    max-height: 175px;
    overflow: hidden;
}
.page_caseList .img img{
    width: 100%;
}

.page_caseList li:hover .img i{
    top: 0;
}
.page_caseList li .con{
    padding: 20px 15px 0 0;
}
.page_caseList li .con h4{
    font-size:16px;
    color:#555;
    font-weight: normal;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-align: center;
}
.page_caseList li:hover .con h4{
    color:var(--theme-color);
}
.page_caseList li .con p{
    font-size:14px;
    margin:10px 0 10px;
    color:#777;
    max-height: 75px;
    overflow: hidden;
}
.page_caseList li .con span{
    display: block;
    background: #1a81fd;
    color:#fff;
    display: inline-block;
    padding: 5px 10px;
    font-size:12px;
    transition:all .3s;
}


.page_hotpic .tit{
    font-size:18px;
    text-align: center;
    position: relative;
    margin-bottom: 7px;
}
.page_hotpic .tit::before,.page_hotpic .tit::after{
    width:50px;
    height:1px;
    background: #eee;
    content:'';
    display:block;
    position: absolute;
    top:15px;
    left:0;
}
.page_hotpic .tit::after{
    left:auto;
    right:0;
}
.page_hotpic li{
    margin-bottom: 10px;
}
.page_hotpic li h4{
    font-weight: normal;
    text-align: center;
    font-size:14px;
    margin: 10px 0 5px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
}

/*翻页*/
.return_page{
    padding: 25px 0;
    line-height: 30px;
    color: #333;
    position: relative;
}
.return_page p{
    margin-bottom: 0;
    text-indent: 0;
    line-height:2;
    font-size:16px;
}
.return_page p a{
    color: var(--theme-color);
}
.return_page .go_history a{
    background:var(--theme-color);
    width:70px;
    height:30px;
    line-height:30px;
    text-align: center;
    color:#fff;
    position: absolute;
    right:0;
    top:50%;
    display:block;
    transform: translateY(-50%);
}

/* 页码 */

.pagination{
    text-align: left;
    display: block;
    margin: 30px 0 50px;
    font-size:14px;
}
.pagination li{
    display: inline-block;
    margin:0 1px;
}
.pagination li span,.pagination li a{
    display: block;
    padding:0 10px;
    line-height:28px;
    background: #eee;
    color:#eaad21;
}
.pagination li.active a{
    background:#eaad21;
    color:#fff;
    border-color:#eaad21;
}

/* login */

.login{
    
}
.login-box{
    padding:50px 0 0;
}
.login-title .item{
    font-size:20px;
    font-weight: bold;
    margin-right: 30px;
    color:#333;
    cursor: pointer;
}
.login-title .item.cur{
    position:relative;
    color:var(--theme-color);
}
.login-title .item.cur:after{
    content:'';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--theme-color);
}
.login-con{
    margin-top: 20px;
    background: #f7f7f7;
    padding:20px 30px 30px; 
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.form-title{
    font-size:18px;
    text-align: center;
    color:#444;
    margin-bottom: 20px;
}
.login-con .item .form-horizontal .form-group{
    margin-left:0;
    margin-right: 0;
    position: relative;
}
.login-con .item .form-horizontal .form-group .send{
    font-size:14px;
    height: 32px;
    width: 100px;
    background: #ddd;
    color:#333;
    border-radius: 4px;
    text-align: center;
    line-height: 32px;
    position: absolute;
    right: 1px;
    top: 1px;
    cursor: pointer;
    transition:all .3s;
}
.login-con .item .form-horizontal .form-group .send:hover{
    background: var(--theme-color);
    color:#fff;
}

.login-con .tips{
    font-size:14px;
    color:#666;
    text-align: center;
    margin:10px 0;
}
.login-con .icon-btns{
    display: flex;
    justify-content: center;
}
.login-con .icon-btns .icon-btn{
    width:40px;
    height: 40px;
    border-radius: 50%;
    background: #014c86;
    color:#fff;
    text-align: center;
    line-height: 40px;
    margin:0 20px;
    cursor: pointer;
}
.login-con .icon-btns .icon-btn i{
    font-size:20px;
}
.login-con .icon-btns .weixin-btn{
    background: #28c445;
}
.form-horizontal-weixin .img{
    display: flex;
    justify-content: center;
}
.form-horizontal-weixin .img img{
    width: 132px;
    height: 132px;
}


/*在线留言*/
#my_form{
    padding: 30px 0 0;
}
#my_form table{
    width: 100%;
}
#my_form tr{
    display: inline-flex;
    width: 48%;
    margin-bottom: 15px;
}
#my_form tr:nth-child(2n){
    margin-left:4%;
}
#my_form tr.content{
    width: 100%!important;
    display: flex;
    margin-left:0;
}
#my_form tr td:first-child{
    line-height: 34px;
    color: #333;
}
#my_form tr td:last-child{
    flex: 1;
}
#my_form tr input,#my_form tr textarea{
    height:34px;
    width: 100%!important;
    border: 1px solid #ccc;
    padding: 0 10px;
    color: #333;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: 微软雅黑;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#my_form tr input:focus,#my_form tr textarea:focus{
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
#my_form tr ::placeholder{
    color: #999;
    font-family: 微软雅黑;
    font-size: 14px;
}
#my_form tr textarea{
    height:100px;
    padding-top: 6px;
}
#my_form .btn{
    margin-left:30px;
}
#my_form .btn input{
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
}
#my_form .btn input:first-child{
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}
#my_form .btn input:first-child:focus{
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.bdsharebuttonbox span{
    line-height:30px;
}

/*首页产品*/
.products{
    padding-bottom: 70px;
}
.products li{
    position: relative;
}
.products li a{
    background: #eee;
    display: block;
}
.products li .img{
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px #eee solid ;
}
.products li:hover .img{
    opacity: 1;
}
.products li:hover .proTit{
    top: 10%;
    transform: translate(-50%,0%);
}
.products li .proTit{
    text-align: center;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.products li .proTit .subTit{
    color: #333;
}
.products li .proTit h2{
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.products li .proTit h4{
    margin-bottom: 20px;
}
/*标题*/
.frontTit{
    padding: 100px 0 50px;
    text-align: center;
}
.frontTit h4{
    color: #333;
}
.frontTit h3{
    font-weight: bold;
    color: #333;
    padding-bottom: 30px;
    position: relative;
}
.frontTit h3:after{
    display: block;
    content: "";
    height: 3px;
    width: 30px;
    position: absolute;
    left: 50%;
    margin-top: 10px;
    transform: translateX(-50%);
    background:var(--theme-color);
}
/*解决方案*/
.cases{
    margin-bottom: -30px;
}
.cases li{
    transition: all 0.5s ease;
    margin-bottom: 30px;
}
.cases li a{
    display: block;
    position: relative;
}
.cases li .liBg{
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.8);
}
.cases li .liBg .caseTitle{
    width: 100%;
    height: 100%;
    position: relative;
}
.cases li .img{
    display: block;
    overflow: hidden;
}
.cases li img{
    transition: all 0.5s ease;
}
.cases li:hover img{
    filter: blur(5px);
    -webkit-filter: blur(5px);
}
.cases li .liBg .caseTitle h4{
    transition: all 0.5s ease;
    font-weight: bold;
    color: #333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.cases li:hover .liBg{
    height: 100%;
}
.cases li:hover .liBg .caseTitle h4{
    color: var(--theme-color);
}
/*首页客户案例*/
.customers .swiper-slide-active,.swiper-slide-duplicate-active{
    pointer-events: auto!important;
    z-index: 99;
}
.customers .swiper-slide-active .cusBg,.swiper-slide-duplicate-active .cusBg{
    width: 150%;
    margin-left: -25%;
}
.customers .swiper-slide-active .customersCon{
    opacity: 1;
    visibility: visible;
}
.customers .swiper-slide .cusBg{
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}.customers .swiper-slide{
    pointer-events: none;
}
.customers .swiper-slide a{
    display: block;
    position: relative;
}
.customers .customersCon{
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom:13%;
    left:-17%;
}
.customers .customersCon .img{
    width: 13%;
}
.customers .customersCon h2{
    font-weight: bold;
    color: #333;
    margin-left: 15px;
}
.customers .customersDes{
    margin-top: 15px;
    width: 55%;
}
.cusFlow{
    position: relative;
}
.swiper-button-prev{
    color: var(--theme-color);
    left: 26%;
}
.swiper-button-next{
    color: var(--theme-color);
    right: 26%;
}