.page_theme{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    /* -webkit-justify-content: center;
    -moz-justify-content: center;
   -ms-justify-content: center;
   -o-justify-content: center;
   justify-content: center; */
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;   
   height: 75px;
   padding: 0 25px;
   box-sizing: border-box;
}
.page_theme h2{
    font-size: 18px;
    margin-right: 8px;
}
.page_theme h3{
    font-size: 18px;
    color: #909090;
}

.content_important{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    /* -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between; */
   -webkit-justify-content:  flex-end;
    -moz-justify-content:  flex-end;
   -ms-justify-content:  flex-end;
   -o-justify-content:  flex-end;
   justify-content: flex-end;
   position: relative;
}
.content_nav{
    width: 280px;
    position: absolute;
    left: 0;
    top: 0;
    /* transition: all ease .3s; */
}
.content_nav_active{
    transition: all ease .3s;
}
.content_nav_ul>li{
    border-top: 1px solid #e5e5e5;
}
.content_nav_ul>li>a{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;   
   padding: 0 20px;
   box-sizing: border-box;
   height: 69px;
}
.content_nav_ul>li>a h6{
    font-size: 18px;
    color: #5797f5;
    margin-bottom: 6px;
    transition: all ease .5s;
}
.content_nav_ul>li>a span{
    color: #5a5a5a;
    font-size: 12px;
    transition: all ease .5s;
}
.content_nav_ul>li>a>i{
    font-size: 17px;
    color: #c8c8c8;
    transition: all ease .5s;
}
.content_nav_child>div{
    padding: 25px;
    box-sizing: border-box;
    border-top: 1px solid #e5e5e5;
}
.content_nav_child ul{
    padding-left: 25px;
    box-sizing: border-box;
    border-left: 1px solid #e5e5e5;
}
.content_nav_child ul li{
    margin-bottom: 20px;
}
.content_nav_child ul li:nth-last-of-type(1){
    margin-bottom: 0;
}
.content_nav_child ul li a{
    font-size: 14px;
    color: #5a5a5a;
    transition: all ease .5s;
}
.content_nav_child ul li a:hover{
    color: #5797f5;
}
.content_nav_ul>li>a{
    transition: all ease .5s;
}
.content_nav_ul>li>a:hover{
    background: #5797f5;
}
.content_nav_ul>li>a:hover h6{
    color: #fff;
}
.content_nav_ul>li>a:hover span{
    color: #fff;
}
.content_nav_ul>li>a:hover i{
    color: #fff;
    /* transform:rotate(90deg); */
}

.content_nav_child{
    height: 0;
    overflow: hidden;
    transition: all ease .5s;
    border-top:none; 
}

.content_nav_ul .li_active>a{
    background: #5797f5;
}
.content_nav_ul>.li_active>a h6{
    color: #fff;
}
.content_nav_ul>.li_active>a span{
    color: #fff;
}
.content_nav_ul>.li_active>a i{
    color: #fff;
    transform:rotate(90deg);
}

.page_content{
    padding-bottom: 90px;
    box-sizing: border-box;
}
.content_nav_ul>li:nth-last-of-type(1)>a{
    border-bottom:1px solid #e5e5e5; 
}
.content_nav_ul>li:nth-last-of-type(1) .content_nav_child>div{
    border-top:none; 
}
.content_window{
    padding-top: 75px;
    box-sizing: border-box;
    margin-right: 50px;
    width: 820px;
}

/* 产品列表 */
.product_list{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    /* -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;        */
   flex-wrap: wrap;
   border-bottom: 1px solid #e5e5ee; 
}
.product_list li{
    margin-right: 20px;
    margin-bottom: 36px;
}
.product_list li:nth-child(3n){
    margin-right: 0;
}
.product_img_box{
    width: 260px;
    height: 300px;
    padding: 9px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    display: block;
    margin-bottom: 11px;
}
.product_name{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #676767;
}
.product_img{
    position: relative;
}
.product_text{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(87, 151, 245, .8);
}
.product_text_into{
    width: 100%;
    height: 100%;
    color:  rgba(255, 255, 255, 1);
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: center;
    -moz-justify-content: center;
   -ms-justify-content: center;
   -o-justify-content: center;
   justify-content: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;       
   position: relative;
}
.product_text_into p{
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding: 0 32px;
    box-sizing: border-box;
}
.product_text_into .english{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 13px;
    text-align: center;
    transition: all ease .5s;
    line-height: 40px;
    border-top: 1px solid rgba(255, 255, 255, .7);
    display: block;
    color:  rgba(255, 255, 255, .7);
}
.product_text_into .english:hover{
    color: rgba(255, 255, 255, 1);
}
.product_text{
    display: none;
}
.content_nav_child li .active{
    color: #5797f5;
}
/* 产品列表-end */

/* 分页 */
.page{
    width: 390px;
    margin: 0 auto;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;      
   flex-wrap: wrap;
}
.page ul{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;      
   flex-wrap: wrap;
}
.page ul li{
    margin: 0 7px;
}
.page ul li a{
    display: block;
    text-align: center;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 7px;
    transition: all ease .3s;
}
.page ul li .active{
    color: #fff;
    background: #5797f5;
}
.page ul li a:hover{    
    background: #f5f5f5;
}
.prev{
    margin-right: 7px;
}
.next{
    margin-left: 7px;
}
.prev,.next{
    width: 30px;
    height: 30px;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: center;
    -moz-justify-content: center;
   -ms-justify-content: center;
   -o-justify-content: center;
   justify-content: center;
   -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;      
   border-radius: 7px; 
   transition: all ease .3s;
}
.prev:hover{
    background: #f5f5f5;
}
.next:hover{
    background: #f5f5f5;
}
.page{
    padding: 40px 0 70px 0;
    box-sizing: border-box;
}
/* 分页-end */

.content_box{

}
.content_box_item{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
   /* -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;           */
   padding-bottom: 40px;
   box-sizing: border-box;
   border-bottom: 1px solid #e5e5e5; 
   margin-bottom: 40px;
}
.content_box_left{
    width: 300px;
    height: 180px;
}
.content_box_right{
    width: 490px;
}
.content_box_right h4 a{
    font-size: 18px;
    line-height: 22px;
    transition:  all ease .5s;
}
.content_box_right h4 a:hover{
    color: #5797f5;
}
.content_box_right h4 {
    margin-bottom: 17px;
}
.content_box_right .time{
    color: #a4a4a4;
    font-size: 12px;
    margin-bottom: 15px;
    display: block;
}
.content_box_right p{
    font-size: 14px;
    line-height: 24px;
    color: #5a5a5a;
    margin-bottom: 30px;
}
.todetailpage{
    color: #5797f5!important;
    font-size: 14px;
}
.page {
    padding: 0 0 70px 0;
    box-sizing: border-box;
}


/*联系我们*/
.title{
    text-align: center;
    background: url(../src/images/kuang2_37.png) no-repeat center;
    /* background-size: cover;  */
   	margin-bottom: 50px;
}
.title h2{
    font-size: 32px;
    color:#5797f5; 
    margin-bottom: 11px;
}
.title h5{
    font-size: 16px;
    color: #c0cfe6;
}
.page_content .content{
	padding: 70px 50px;
	box-sizing: border-box;
}

.company_item{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
   /* -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;           */	
   margin-bottom: 50px;
}
.company_item:nth-last-of-type(1){
	margin-bottom: 0;
}
.company_item_left{
	width: 550px;
}
.company_item_right{
	width: 500px;
}
.border_top{
	height: 2px;
	width: 100%;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    margin-bottom: 36px;
}
.border_top1{
	width: 20px;
	background: #5797f5;
}
.border_top2{
	width: 530px;
	background: #d4deee;
}
.company_item_left h5{
	font-size: 18px;
	line-height: 26px;
	color: #333333;
	margin-bottom: 26px;
}
.contact_style1{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    /*-webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;*/
    -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;   
   margin-bottom: 12px;        		
}
.contact_style1 img{
	margin-right: 8px;
}
.contact_style2 img{
	margin-right: 8px;
}
.contact_style1 p{
	font-size: 14px;
	color: #333;
	line-height: 20px;
}
.contact_style2{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   	-ms-justify-content: space-between;
   	-o-justify-content: space-between;
   	justify-content: space-between;	
   	flex-wrap: wrap;
}
.contact_style2 p{
	font-size: 14px;
	color: #333;
	line-height: 20px;
}
.contact_style2_item{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;  
}
/*联系我们-end*/


/* 战略合作 */
.article_other_title{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;    
    font-size: 16px;
    margin-bottom: 20px;
}
.article_other_title .chinese{
    color: #5797f5;
}
.article_other_title_gang{
    color: #c1c1c1;
    margin: 0 10px;
}
.article_other_title .english{
    color: #909090;
}

.cooperation_text{
    padding-bottom: 12px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 50px;
} 
.cooperation_text_banner{
    width: 100%;
    height: 350px;
    margin-bottom: 47px;
}
.cooperation_text_banner_text{
    width: 360px;
    height: 100%;
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: center;
    -moz-justify-content: center;
   -ms-justify-content: center;
   -o-justify-content: center;
   justify-content: center;
    -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;   
   background: rgba(87, 151, 245, .6)
}
.cooperation_text_banner_text p{
    width: 280px;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
}
.cooperation_text_p{
    font-size: 14px;
    color: #333333;
    line-height: 30px;
    margin-bottom: 30px;
}

.ous_advantage{
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5; 
}
.ous_advantage_content{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
    -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;      
}
.ous_advantage_left{
    width: 480px;
}
.ous_advantage_left_item{
    margin-bottom: 32px;
}
.ous_advantage_left_item:nth-last-of-type(1){
    margin-bottom: 0;
}
.ous_advantage_left_item h6{
    font-size: 14px;
    line-height: 32px;
    color: #333333;
}
.ous_advantage_left_item p{
    font-size: 14px;
    line-height: 32px;
    color: #333333;
}

.form_content{
    display: -webkit-box;      
    display: -moz-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;   
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
   -ms-justify-content: space-between;
   -o-justify-content: space-between;
   justify-content: space-between;
    -webkit-align-items: center;
   -moz-align-items: center;
   -ms-align-items: center;
   -o-align-items: center;
   align-items: center;      
   flex-wrap: wrap;    
   padding: 50px 0 40px 0;
   box-sizing: border-box;
}
.form_content input{
    width: 48.4%;
    margin-bottom: 30px;
    outline: none;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    height: 40px;
    font-size: 14px; 
    padding: 0 20px;
    box-sizing: border-box;
    transition: all ease .5s;
}
.form_content input:hover{
    border: 1px solid #5797f5;
}
.form_content .input_active{
    border: 1px solid #5797f5;
}
.form_content textarea{
    width: 100%;
    outline: none;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    height: 140px;
    font-size: 14px; 
    padding:15px 20px;
    box-sizing: border-box;
    transition: all ease .5s;
    line-height: 20px;
    resize: none;  
}
.form_content textarea:hover{
    border: 1px solid #5797f5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}
.form .sumbit{
    font-size: 14px;
    color: #fff;
    padding: 14px 20px;
    box-sizing: border-box;
    background: #5797f5;
    display: inline-block;
}
.sumbit_gang{
    margin: 0 3px;
}
.sumbit_box{
    text-align: center;
}
/* 战略合作-end */