@charset "utf-8";



body{
    overflow-x: hidden;
}
#header{
    transition:all .3s;
}
.header_wrap{
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9998;
    transition:all .6s;
    background:#fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.08);
}

.header_flex{
    height:108px;
    align-items: center;
    justify-content: space-between;
}
.logo{
    height:44px;
    transition:all .3s;
    margin-right: 60px;
}
.logo img{
    height: 100%;
    width: auto;
    transition:all .3s;
}
.weixin_code{
    line-height: 80px;
    font-size: 14px;
}

.nav_pc .top{
    text-align: right;
    font-size:14px;
    margin-bottom: 17px;
}
.nav_pc .top span{
    margin-left: 20px;
}
.nav_pc ul{
    
}
.nav_pc li{
    display: inline-block;
    margin:0 0 0 30px;
}
.nav_pc li>a{
    display: block;
    font-size: 18px;
    text-transform: capitalize;
    position: relative;
    transition:all .3s;
    z-index: 2;
    line-height:60px;
    color:#666;
}
.nav_pc li>a:after{
    height: 4px;
    background: var(--theme-color);
    content:'';
    display: block;
    width: 0;
}
.nav_pc li.cur a:after{
    width: 100%;
}
.nav_pc li.cur>a,.nav_pc li a:hover{
   color:var(--theme-color);
}
.nav_pc li .sub_nav{
    position: absolute;
    left: 0;
    width: 100%;
    background:rgba(13,85,159,.7);
    transition: all .3s;
    top: 120px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    justify-content: center;
    height: 50px;
}
.nav_pc li:hover .sub_nav{
    top:108px;
    opacity: 1;
    visibility: visible;
}
.nav_pc li .sub_nav a{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 50px;
    padding:0 25px;
    margin:0 10px;
    border-bottom:1px solid rgba(255,255,255,.1);
}
.nav_pc li .sub_nav a:last-child{
    border-bottom: none;
}
.nav_pc li .sub_nav a:hover{
    font-weight: bold;
    background:var(--theme-color);
    color:#fff;
}
.navbar_on{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.header_flex .tel{
    color:#333;
    font-size:16px;
    font-family: Impact;
    align-items: center;
}
.header_flex .tel i{
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: var(--theme-color);
    text-align: center;
    line-height: 30px;
    color:#fff;
    margin-right: 10px;
}
.header_flex .tel span{
    font-size:24px;
    color:#000;
}
.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;
    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{
    position: fixed;
}
.header_on.header_wrap .header_flex{
    height: 60px;
}
.header_on.header_wrap .logo{
    height: 30px;
}
.header_on.header_wrap .nav_pc .top{
    display: none;
}

.header_on.header_wrap .nav_pc li>a{
    font-size:16px;
}
.header_on.header_wrap .nav_pc li .sub_nav{
    top: 80px;
}
.header_on.header_wrap .nav_pc li:hover .sub_nav{
    top: 60px;
}

/* 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;
    color:#fff;
}
.banner .item .con h4:after{
    content:'';
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    margin-top: 20px;
}
.banner .item .con span{
    font-size:22px;
    color:#fff;
}
.banner .item .con p{
    font-size:20px;
    font-weight:normal;
}

.banner .item .con a{
    width: 180px;
    height: 48px;
    line-height: 44px;
    margin-top: 70px;
    background: none;
    border:2px solid #fff;
}
.banner .item .con a:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.banner .item .img img{
    width:100%;
    object-fit: cover;
}
.banner .item img {
    width: 100%;
    
}

.banner .slick-dots{
    position: absolute;
    bottom: 40px;
    width:100%;
    text-align: center;
    left:0;
}
.banner .slick-dots li{
    margin:0 12px;
    width: 16px;
    height: 16px;
}
.banner .slick-dots li button{
    width: 16px;
    height:16px;
    border-radius: 50%;
    background: #fff;
    opacity: .5;
}
.banner .slick-dots li button:before{
    display: none;
}
.banner .slick-dots li.slick-active button{
    opacity: 1;
}
.banner .slick-dots li{
    
}

.banner_menu{
    position: absolute;
    right:15%;
    top: 50%;
    transform:translateY(-50%);
    background:rgba(13,85,159,.7);
}

.banner_menu .tit{
    padding:0 20px;
    color:#fff;
    font-size:18px;
    height: 60px;
    line-height: 60px;
}
.banner_menu .tit i{
    margin-right: 10px;
}
.banner_menu .menu h4{
    line-height: 60px;
    border-top: 1px solid rgba(0,0,0,.2);
}
.banner_menu .menu h4 a{
    color:#fff;
    display: block;
    padding:0 20px;
    font-size:16px;
    transition:all .3s;
}
.banner_menu .menu h4 a i{
    display: none;
    margin-right: 10px;
    transition: all .3s;
    font-size:16px;
}
.banner_menu .menu h4 a:hover{
    background:rgba(255,255,255,.2);
}
.banner_menu .menu h4 a:hover i{
    display: inline-block;
}
.banner_menu .menu .item{
    position: relative;
}
.banner_menu .menu .item ul{
    position: absolute;
    left: -350px;
    top: 0;
    width: 300px;
    background:rgba(13,85,159,.7);
    display: flex;
    flex-wrap: wrap;
    display: flex;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
}
.banner_menu .menu .item:hover ul{
    left: -300px;
    visibility: visible;
    opacity: 1;
}

.banner_menu .menu .item ul li{
    width: 50%;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,.2);
}
.banner_menu .menu .item ul li p{
    height: 30px;
    text-align: center;
    color:#fff;
    margin-top: 10px;
    font-size:14px;
}
.banner_menu .menu .item ul li:nth-child(2n){
    border-right: none;
}
.banner_menu .menu .item ul li:hover{
    background: var(--theme-color);
}



/* 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:50px 0 20px;
   border-bottom: 4px solid var(--theme-color);
   margin-bottom: 55px;
}
.tit_box1 .tit{
    position: relative;
}
.tit_box1 .tit h4{
    font-size:36px;
    color:#333;
    position: relative;
    z-index: 3;
}
.tit_box1 .tit p{
    font-size:72px;
    font-weight: bold;
    color:#fff;
    font-style: italic;
    text-transform: capitalize;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom:-15px;
    z-index: 2;
}


.tit_box2{
    
}
.tit_box2 .tit{
    position: relative;
    border-bottom:4px solid var(--theme-color);
    display: inline-block;
    padding-bottom:10px;
}
.tit_box2 .tit h4{
    font-size:36px;
    color:#333;
    position: absolute;
    left: 0;
    top:10px;
}
.tit_box2 .tit span{
    font-size:60px;
    color:rgba(0,0,0,.06);
    font-weight: bold;
    line-height: 1;
    height: 84px;
}
.tit_box3 .tit h4{
    color:#fff;
}
.tit_box3 .tit span{
    color:rgba(255,255,255,.16);
}

.tit_box4 .tit{
    display: block;
}


/* bg */

.bg1{
   background:url(../images/bg1.jpg) no-repeat bottom;
}
.bg2{
    background:#f2f2f2;
}
.bg3{
    background:#efefef;
    padding-bottom: 40px;
}
.bg4{
    background:#fff;
    padding:25px;
}
.bg5{
    background: url(../images/bg5.jpg) no-repeat center center fixed;
    background-size: cover;
}
.bg9{
    background: url(../images/bg9.png) no-repeat center!important;
    background-size: cover!important;
}


/* panel1 */

.panel1 li{
    flex:1;
    border-left:1px solid #fff;
    border-top: 1px solid #fff;
}
.panel1 li:first-child{
    border-left: none;
}
.panel1 li a{
    display: block;
    position: relative;
}
.panel1 li p{
    font-size:36px;
    color:#fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* about */

.about{
    padding-top: 100px;
}
.about_img{
    flex:1;
}
.about_img img{
    width: 100%;
}
.about_con{
    width: 60%;
    background: #efefef;
    padding:45px 80px;
}
.about_con h4{
    font-size:24px;
    color:#333;
}
.about_con p{
    font-size:16px;
    margin-top: 15px;
}
.about_slogan{
    font-size:36px;
    color:#fff;
    padding:60px 0;
    text-align: center;
}

/* news_con */

.news_con{
    padding:75px 0;
    margin:0 -10px;
}
.news_con .item{
    width: 33.333%;
    margin:0 10px;
    background: #fff;
}
.news_con .item .tit{
    height: 50px;
    background: var(--theme-color);
    padding:0 60px;
    color:#fff;
    line-height: 50px;
    font-size:20px;
}
.news_con .item .con{
    padding:20px 60px;
}
.news_con .item .con h4{
    font-size:18px;
    color:#333;
}
.news_con .item .con p{
    font-size:14px;
    color:#999;
    margin:5px 0 10px 0;
}

.news_con .item .con a{
    color:#666;
    font-size:16px;
    display: block;
}
.news_con .item .con a:hover{
    color:var(--theme-color);
}

.page_index_height{
    padding:30px 0;
}

#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}


/*页底css*/

.footer{
    background:#fff;
    padding:35px 0;
    box-shadow: 0 -3px 10px rgba(0,0,0,.05);
}
.footer_con{
    font-size:14px;
    color:#000;
    justify-content: space-between;
}
.footer_con .copyright{
    width:30%;
}
.footer_nav{
    flex:1;
}
.footer_nav ul{
    justify-content: center;
    padding:0 10px;
}
.footer_nav a{
    padding:0 10px;
    color:#000;
}
.footer_nav a:hover{
    color:var(--secondary-color);
}

.footer_con .beian{
    width: 20%;
    text-align: right;
}


/* 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_tit{
    padding: 15px 20px;
    background: #fff;
    margin:20px 0;
}
.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{
    background:#efefef;
}

.inner_menu{
    background: #003f92;
}
.inner_menu .tit{
    height: 50px;
    font-size:18px;
    background:rgba(0,0,0,.2);
    font-weight: bold;
    line-height: 50px;
    padding: 0 20px;
    color:#fff;
}
.inner_menu>ul>li{
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.inner_menu>ul>li>a{
    display: block;
    height:40px;
    line-height:40px;
    padding:0 20px;
    color:#fff;
    font-size:14px;
}
.inner_menu>ul>li>a:hover,.inner_menu>ul>li.cur>a{
    background: #f9c606;
    color:#333;
}

/* 内页二级分类显示 */

.inner_sublist{
    transition: all .3s;
    padding: 0 15px;
    
}
.inner_sublist li{
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.inner_sublist li a{
    color:#151515;
    font-size:14px;
    display: block;
    line-height: 3;
}
.inner_sublist li a:hover{
    color:var(--theme-color);
}

.page_index{
    min-height:300px;
    background: #fff;
    padding: 25px;
}
.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;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.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;
}


/* product_index */

.product_index li a{
    display: block;
    border:1px solid #eee;
    overflow: hidden;
    position: relative;
}
.product_index li .con{
    padding:0 15px;
    height: 60px;
    transition:all .3s;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
}
.product_index li .con h4{
    font-size:16px;
    color:#333;
    line-height: 60px;
}
.product_index li .con p{
    font-size:14px;
}
.product_index li .con span{
    text-align: center;
    display: block;
}
.product_index li:hover .con{
    height: 100%;
    width:100%;
    background: rgba(16,87,167,.8);
    justify-content: center;
    display: flex;
    flex-direction: column;
    color:#fff;
}
.product_index li:hover .con h4{
    color:#fff;
    line-height: 40px;
}
.product_index li:hover .con span{
    margin-top: 10px;
}

/* product-list_hd */

.product-list_hd .tit{
    
}
.product-list_hd{
    position: relative;
}
.product-list_hd .tit h4{
    font-size:24px;
    color:var(--theme-color);
    font-weight: bold;
}
.product-list_hd .tit p{
    font-size:14px;
    color:#333;
    margin-bottom: 10px;
}
.product-list_hd ul li{
    display: flex;
    padding-top:10px;
}
.product-list_hd ul li .num{
    font-size:18px;
    color:var(--theme-color);
    margin-right: 10px;
    padding-top:6px;
}
.product-list_hd ul li .con{
    font-size:16px;
    color:#666;
    background: #f2f2f2;
    line-height: 26px;
    padding:6px 15px;
}
/*.product-list_hd ul li:nth-child(2n) .con{*/
/*    background: #fff;*/
/*}*/
.product-list_hd .go_history{
    position: absolute;
    right: 0;
    top: 0;
    font-size:16px;
}
.product-list_bd{
    display: flex;flex-wrap: wrap;
    padding:30px 0;
}
.product-list_bd .img{
    width: 260px;
    height: 260px;
    border:1px solid #ddd;
}
.product-list_bd .con{
    flex: 1;
    padding-left: 20px;
}
.product-list_bd .con h4{
    font-size:18px;
    color:#333;
    margin:40px 0 0 3%;
}
.product-list_bd .con .list{
    display: flex;
    flex-wrap: wrap;
}
.product-list_bd .con .list a{
    display: block;
    width: 30.3333%;
    font-size:14px;
    margin-left: 3%;
    border:2px solid #eee;
    line-height:30px;
    margin-top: 10px;
    padding:0 10px;
    text-align: center;
}
.product-list_bd .con .list a:hover{
    border-color: var(--theme-color);
}

.turn-pages{
    background:#fff;
}
.turn-pages .flex{
    align-items: center;
    height: 100px;
    justify-content: space-between;
    font-size:18px;
    color:#333;
}
.turn-pages .flex p:first-child{
    flex:1;
}

.product-detail{
    padding:60px 0;
}
.product-detail .tit-menu{
    margin-bottom: 40px;
    justify-content: space-between;
}
.product-detail .tit-menu .tit{
    display: inline-block;
    font-size:36px;
    color:#333;
}
.product-detail .tit-menu .tit:after{
    width: 100%;
    height: 2px;
    background: var(--theme-color);
    display: block;
    content:'';
}
.product-detail .tit-menu .menu-wrap{
    display: flex;
    justify-content: flex-end;
    width: 200px;
    text-align: center;
    background: #fff;
    flex-direction: column;
    position: relative;
    height: 40px;
    margin-top: 10px;
}
.product-detail .tit-menu .menu{
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    border:1px solid #aaa;
}
.product-detail .tit-menu .menu a{
    display:block;
    line-height: 40px;
    font-size:14px;
    border-radius: 3px;
}
.product-detail .tit-menu .menu a i{
    display: none;
    margin-left: 4px;
}
.product-detail .tit-menu .menu a:first-child i{
    display: inline-block;
}
.product-detail .tit-menu .menu:hover{
    height:auto;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.product-detail .tit-menu .menu a:hover{
    border-color: var(--theme-color);
}

.product_index_hd{
    margin-bottom: 30px;
}
.product_index_hd .con{
    font-size:16px;
}
.product_index_hd .con p{
    margin-bottom: 10px;
}

/* page-about */

.page-about .ipanel1{
    padding-top: 100px;
}
.page-about .ipanel1 .item{
    margin-bottom: 80px;
}
.page-about .ipanel1 .item .con{
    width: 50%;
    background: #fff;
    padding:35px 60px;
    position: relative;
}
.page-about .ipanel1 .item .con p{
    font-size:18px;
    color:#666;
    margin-top: 20px;
}
.page-about .ipanel1 .item .img{
    flex:1;
    position: relative;
}
.page-about .ipanel1 .item .img:after{
    content:'';
     width: 0;
    height: 0;
    border-top:15px solid transparent;
    border-right:20px solid #fff;
    border-bottom:15px solid transparent;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.page-about .ipanel1 .item.item1 .img:after{
    border-left:20px solid #fff;
    border-right: none;
    left: 0;
    right: auto;
}

.page-about .ipanel2{
    background:url(../images/ban1.png) no-repeat center;
    padding:50px 0;
}

.page-about .ipanel2{
    
}

.page-about .ipanel2 .con{
    padding-top: 25px;
    color:#fff;
    max-width: 60%;
    font-size:16px;
}
.page-about .ipanel2 .img{
    flex:1;
    padding-left: 40px;
    padding-top: 50px;
}
.page-about .ipanel2 .con p{
    margin-top: 20px;
}
.page-about .ipanel3{
    background: url("../images/ban2.png") no-repeat center;
    padding: 60px 0;
}
.page-about .ipanel3 .ipanel3_flex{
    justify-content: space-between;
}
.page-about .ipanel3 .img{
    width: 80px;
    margin:auto;
}
.page-about .ipanel3 h4{
    color:var(--theme-color);
    font-size:20px;
    margin-top: 10px;
}


/* page-history */


.page-history-wrap{
    padding:80px 0;
}
.page-history {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}
.page-history .slick-list{
    padding-bottom: 50px;
}
.page-history:after{
    content:'';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--theme-color);
    left: 0;
    top:145px;
    z-index: -1;
}
.page-history .item{
    padding:30px;
    position: relative;
    z-index: 50;
}
.page-history .item .tit{
    font-size:30px;
    color:var(--theme-color);
    text-align: center;
    position: relative;
}
.page-history .item .tit:after{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content:'';
    display: block;
    border:1px solid var(--theme-color);
    position: absolute;
    left: 50%;
    bottom: -7px;
    background: #fff;
    transform:translateX(-50%);
}
.page-history .item .con{
    padding-top: 20px;
    font-size:14px;
    -webkit-line-clamp: 5;
    line-clamp: 5;
}
.page-history .slick-current .item{
    background: #fff;
    box-shadow: 0 3px 20px rgba(0,0,0,.2);
}
.page-history .slick-prev,.page-history .slick-next{
    background: #999;
    color:#666;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border:2px solid #eee;
}
.page-history .slick-prev:before,.page-history .slick-next:before{
    font-size:20px;
}
.page-history .slick-prev{
    left: -50px;
}
.page-history .slick-next{
    right: -50px;
}

/* page-culture */

.page-culture{
    
}
.page-culture .ipanel1{
    background:url("../images/bg6.jpg") no-repeat center;
    padding:120px 0;
}
.page-culture .ipanel1 .con{
    margin-left:50%;
    margin-top: 20px;
}
.page-culture .ipanel1 .con p{
    font-size:18px;
    color:#666;
    margin-top: 20px;
}
.page-culture .ipanel2{
    padding:60px 0 120px;
}

.page-culture_ipanel2{
    padding-top: 50px;
}
.page-culture_ipanel2 .item-list{
    padding:0 10px;
}
.page-culture_ipanel2 .item .img{
    
}
.page-culture_ipanel2 .item .con{
    background: #fff;
    padding:16px;
}
.page-culture_ipanel2 .item .con h4{
    font-size:20px;
    color:var(--theme-color);
    font-weight: bold;
}
.page-culture_ipanel2 .item .con p{
    font-size:14px;
    margin-top: 10px;
    min-height: 100px;
}
.page-culture_ipanel2 .item .con span{
    display: block;
    text-align: right;
    font-size:30px;
    opacity: .6;
}
.page-culture_ipanel2 .slick-arrow{
    top: 110%;
    width:50px;
    height: 50px;
    border-radius: 50%;
    border:1px solid var(--theme-color);
}
.page-culture_ipanel2 .slick-arrow:before{
    color:var(--theme-color);
    font-size:24px;
}
.page-culture_ipanel2 .slick-prev{
    left: 45%;
}
.page-culture_ipanel2 .slick-next{
    right: 45%;
}

/* page-responsibility */

.page-responsibility{
    padding:60px 0 0;
}
.page-responsibility .ipanel1 .img{
    margin-top: 50px;
}
.page-responsibility .ipanel1 .con{
    background: #f2f2f2;
    padding: 30px 60px;
    font-size:16px;
    color:#333;
}

.page-responsibility .ipanel2{
    background: #efefef;
    margin-top: 70px;
    padding: 0 0 90px;
}
.page-responsibility .ipanel2 .item{
    position: relative;
    z-index: 1;
    margin-top: 90px;
    display: flex;
}
.page-responsibility .ipanel2 .item:after{
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    content:'';
    display: block;
    left: 0;
    top: 50px;
    z-index: -1;
}
.page-responsibility .ipanel2 .item .img{
    width: 45%;
    padding:0 30px;
}
.page-responsibility .ipanel2 .item .con{
    flex:1;
    padding:150px 40px 0;
}
.page-responsibility .ipanel2 .item .con h4{
    font-size:24px;
    color:#333;
}
.page-responsibility .ipanel2 .item .con p{
    font-size:18px;
    color:#666;
    margin-top: 15px;
    line-height: 1.6;
}

/* page-contact */
.page-contact{
    padding:80px 0;
}
.page-contact .item{
    background: #fff;
    display: flex;
    margin-bottom: 30px;
}
.page-contact .item .con{
    flex:1;
    padding:40px 50px;
}
.page-contact .item .con h4{
    font-size:24px;
    font-weight: bold;
    color:#333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.page-contact .item .con h4 a{
    display: inline-block;
    font-size:14px;
    color:#666;
    background: #f7f7f7;
    padding:5px 10px;
    margin-left: 10px;
}
.page-contact .item .con h4 a:hover{
    background: var(--theme-color);
    color:#fff;
}
.page-contact .item .con p{
    font-size:16px;
    color:#666;
}
.page-contact .item .con p i{
    font-size:20px;
    color:var(--theme-color);
    margin-right: 10px;
}

.page-contact .item .img{
    width: 50%;
    height: 100%;
    
}
.page-contact .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-core_competence .ipanel1{
    padding:80px 0;
}

.page-core_competence__panel1{
    padding:40px 0;
}
.page-core_competence__panel1 .bd .img{
    display: none;
}
.page-core_competence__panel1 .bd .img:first-child{
    display:block;
}
.page-core_competence__panel1 .hd h4{
    flex:1;
    height: 65px;
    line-height: 65px;
    border:1px solid #eee;
    text-align: center;
    cursor: pointer;
}
.page-core_competence__panel1 .hd h4.cur{
    background: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    color:var(--theme-color);
}

.page-core_competence .ipanel2{
    padding:70px 0 120px;
}
.ipanel3_bg{
    padding:80px 0;
    background: url(../images/ban2.png) no-repeat center;
}
.page-core_competence .ipanel4{
    padding:70px 0 80px;
}
.page-core_competence_ipanel4 {
    width: 100%;
    height:600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    padding-bottom: 60px;
  }

.page-core_competence_ipanel4  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /*background: #e3e3e3;*/
    height: calc((100% - 30px) / 2);
    cursor: pointer;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
.page-core_competence_ipanel4  .swiper-slide img{
    max-height: 240px;
    
}

.inner_pos{
    height: 60px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}
.inner_pos .pos{
    line-height: 60px;
    font-size:16px;
}

/* news-menus */

.news-menus{
    padding:40px 0 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.news-menus .item{
    flex:1;
    position: relative;
    padding: 30px 0;
}
.news-menus .item:last-child{
    display: none;
}
.news-menus .item h4{
    display: flex;
    text-align: center;
    justify-content: center;
    position: relative;
}
.news-menus .cur.item h4:before{
    content:'';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: -30px;
}
.news-menus .item h4 i{
    display: none;
    margin: 0 0 0 5px;
}
.news-menus .item:last-child h4 i{
    display: inline-block;
}
.news-menus .item .sublist{
    display: block;
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    padding:0 20px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    z-index: 99;
    transition:all .5s;
    visibility: hidden;
    opacity: 0;
}
.news-menus .item .sublist li a{
    height: 50px;
    line-height: 50px;
    display: block;
    font-size:16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.news-menus .item:hover .sublist{
    opacity: 1;
    top: 80px;
    visibility: visible;
}

.page_news_zl{
    padding:30px 0;
}
.page_news_zl .tit_box2{
    position: relative;
    cursor: pointer;
}
.page_news_zl .tit_box2 .tit i{
    margin-left: 10px;
}
.page_news_zl .tit_box2 ul{
    display: block;
    position: absolute;
    left: 50px;
    top: 100px;
    width: 280px;
    padding:20px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    z-index: 99;
    transition:all .5s;
    visibility: hidden;
    opacity: 0;
}
.page_news_zl .tit_box2 ul li{
    border-bottom: 1px solid #f8f8f8;
}
.page_news_zl .tit_box2 ul li a{
    padding:12px 0;
    display: block;
    font-size:16px;
}
.page_news_zl .tit_box2:hover ul{
    opacity: 1;
    top: 60px;
    visibility: visible;
}


/* page-news */

.page-news{
    margin-bottom: 40px;
}
.page-news .item{
    border-bottom: 1px solid #eee;
}
.page-news .item a{
    align-items: center;
    padding:15px 0;
}
.page-news .item span{
    width: 160px;
    display: block;
    font-size:16px;
    color:var(--theme-color);
}
.page-news .item h4{
    width:300px;
}
.page-news .item p{
    flex:1;
    font-size:14px;
    margin-right: 10px;
}
.page-news .item a:hover{
    background: var(--theme-color);
    color:#fff;
    padding:15px 20px;
}
.page-news .item a:hover span{
    color:#fff;
}


/* 单页内容 */


.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_picList {
    
}

.page_picList li{
    margin-bottom:30px;
}

.page_picList li a{
    display:block;
    background: #fff;
    transition:all .36s;
    padding: 20px;
    border-radius: 5px;
}
.page_picList li .con{
    padding: 14px 26px 0;
}
.page_picList li .con h4{
    transition: color .4s;
    font-size: 16px;
    color:#666;
    font-weight: normal;
    text-align: center;
    line-height: 30px;
    height:30px;
    overflow: hidden;
}
.page_picList li .con p{
    color:#555;
    margin: 10px 0 0;
    font-size:13px;
    max-height: 44px;
    overflow: hidden;
    text-align: center;
}
.page_picList li .img{
    overflow: hidden;
}
.page_picList li img{
    transition: all 0.6s;
    margin:0;
    width:100%;
}
.page_picList li:hover img{
    transform: scale(1.1);
}
.page_picList li span{
    display: inline-block;
    font-size: 14px;
    color:rgba(17,17,17,0.5);
    margin-right: 18px;
    position: relative;
    padding: 6px 0;
}
.page_picList li:hover a{
    box-shadow: 0 3px 20px rgba(0,0,0,.2);
}
.page_picList li:hover .con h4{
    color:var(--theme-color);
}



/* 单页联系我们 */

.page_contactindex {
    padding: 20px;
    background: #fff;
}
.page_contactindex .tit{
    text-align: center;
}
.page_contactindex .tit h4{
    font-size:30px;
    font-weight: bold;
    color:#000;
    margin:0 0 15px;
}
.page_contactindex .tit p{
    font-size:14px;
    color:#999;
}
.page_contactindex .msg{
    padding:0 10px 20px;
}
.page_contactindex ul{
    margin:10px 0 20px;
}
.page_contactindex li{
    display: flex;
    flex:1;
    margin:0 10px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 180px;
    padding: 0 20px;
    background: #f7f7f7;
    border-radius: 5px;
    flex-basis: 45%;
}
.page_contactindex li i{
    color:var(--theme-color);
    font-size:30px;
    display: block;
    line-height: 1;
}
.page_contactindex li h4{
    font-size:16px;
    font-weight: bold;
    color:#333;
    margin:30px 0 5px;
}
.page_contactindex li p{
    font-size:14px;
    color:#333;
    text-align: center;
}

.page_contactindex .map{
    margin:50px 0 0;
    text-align: center;
    overflow: hidden;
}


.innerBgfff{
    background: #fff;
    overflow: hidden;
}

.page_banner{
    overflow: hidden;
    position: relative;
}
.page_banner .img{
    position: relative;
}
.page_banner .img:after{
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
    content:'';
}
.page_banner .con{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.page_banner .con h4{
    font-size:48px;
    font-weight: bold;
    color:#fff;
}

.page_menu{
    background:#fff;
    height: 200px;
}
.page_menu ul{
    height: 100%;
}
.page_menu ul li{
    flex:1;
    transition:all .3s;
}
.page_menu ul li .img.img2{
    display: none;
    transition:all .3s;
}
.page_menu ul li .con{
    font-size:20px;
    color:#333;
    margin-top: 10px;
    transition:all .3s;
}
.page_menu ul li.cur,.page_menu ul li:hover{
    background: var(--theme-color);
}
.page_menu ul li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.page_menu ul li.cur .img.img1,.page_menu ul li:hover .img.img1{
    display: none;
}
.page_menu ul li.cur .img.img2,.page_menu ul li:hover .img.img2{
    display: block;
}
.page_menu ul li.cur .con,.page_menu ul li:hover .con{
    color:#fff;
}

.page_menu ul li.cur:hover .con{
    color:#fff;
}

.product-left-menu{
    background: #fff;
    padding:15px;
}
.product-left-menu li{
}
.product-left-menu li h4{
    border-bottom: 1px solid #f1f1f1;
    height: 60px;
    line-height: 60px;
    padding:0 10px 0 15px;
    color:#333;
    font-size:18px;
    cursor: pointer;
}
.product-left-menu li.cur h4{
    background: #f2f2f2;
}
.product-left-menu li.cur h4 i{
    transform: rotate(90deg);
}
.product-left-menu li h4 a{
    display: flex;
    justify-content: space-between;
}
.product-left-menu li h4 i{
    
}
.product-left-menu li ul{
    display: none;
}
.product-left-menu li.cur ul{
    display: block;
}



/*新闻列表*/

.page_newsList{
}
.page_newsList li{
    padding:20px;
    transition: all .3s ease-out 0s;
    background: #fff;
    margin-bottom: 20px;
}

.page_newsList li .img img{
    width:200px;
    height: 126px;
    margin-bottom: 0;
    object-fit: cover;
}
.page_newsList li .time{
    width: 140px;
    margin-right: 60px;
}
.page_newsList li .time p{
    color: #c5c5c5;
    font-size:30px;
}
.page_newsList li .time span{
    display: block;
    border: 1px solid #e6e6e6;
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    font-family:宋体;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 2px;
    color: #aaa;
    transition: all .3s ease-out 0s;
}
.page_newsList li .con{
    transition: all .3s ease-out 0s;
    padding:0;
    flex:1;
    margin-left:25px;
}
.page_newsList li .con h4{
    color: #333;
    font-weight: bold;
    transition: all .3s ease-out 0s;
    font-size: 16px;
    margin-bottom: 20px;
}
.page_newsList li .con p{
    color: #888;
    font-size: 13px;
    line-height: 24px;
    max-height:75px;
    margin:0;
    text-indent: 0;
    overflow: hidden;
}
.page_newsList li .con span{
    display: block;
    color:#777;
    margin-top:8px;
}
.page_newsList li:hover{
    box-shadow: 0 3px 20px rgba(0,0,0,.15);
    border-color:var(--theme-color);
}
.page_newsList li:hover .con h4{
    color:var(--theme-color);
}


/* 新闻详情 */

.page_news_detail{
    margin: auto;
}
.page_news_detail .tit{
    
}
.page_news_detail .tit h1{
    color: #000;
    font-size:30px;
    font-weight: bold;
}

/* page-join */

.page-join .ipanel1{
    padding:60px 0;
}
.page-join .ipanel1 .con{
    max-width: 80%;
    font-size:16px;
    margin-top: 30px;
}
.page-join .ipanel2{
    background: #efefef;
    padding: 80px 0;
}
.page-join .ipanel2 .ipanel2_flex{
    margin:0 -10px;
}
.page-join .ipanel2 .item{
    flex:1;
    padding:0 10px;
    position: relative;
}
.page-join .ipanel2 .item .con{
    position: absolute;
    width: 50%;
    left: 10px;
    top: 0;
    height: 100%;
    background:rgba(13,85,159,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.page-join .ipanel2 .item .con:after{
    width: 0;
    height: 0;
    border-top: 250px solid rgba(13,85,159,.7);
    border-right:50px solid transparent;
    content:'';
    display: block;
    position: absolute;
    right: -50px;
}
.page-join .ipanel2 .item .con i{
    font-size:48px;
    color:#fff;
    line-height: 1;
}
.page-join .ipanel2 .item .con h4{
    font-size:18px;
    color:#fff;
    margin-top: 15px;
}
.page-join .ipanel2 .item.item2 .con{
    background:rgba(238,96,0,.7);
}
.page-join .ipanel2 .item.item2 .con:after{
    border-top-color: rgba(238,96,0,.7);
}


/* 产品详情页 */

.page_picshow{
    margin-bottom: 50px;
    background: #fff;
    padding: 25px;
}
.page_picdetails{
}
.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_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{
    background: #f3f3f3;
    padding: 15px 20px;
    line-height: 30px;
    color: #333;
    position: relative;
}
.return_page p{
    margin-bottom: 0;
    text-indent: 0;
    line-height:2;
}
.return_page p a{
    color: #333;
}
.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: center;
    display: block;
    margin-top: 30px;
}
.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:var(--theme-color);
}
.pagination li.active a{
    background:var(--theme-color);
    color:#fff;
    border-color:var(--theme-color);
}



/*在线留言*/
#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;
}