@charset "utf-8";



.inner_search{
    margin-bottom: 20px;
    position: relative;
    width: 500px;
}
.inner_search .key{
    border:none;
    height: 42px;
    outline: none;
    background: #eee;
    width: 100%;
    padding:0 20px;
    font-size:14px;
}
.inner_search button{
    border:none;
    outline: none;
    background: transparent;
    position: absolute;
    right: 10px;
    top: 3px;
}
.inner_search button i{
    font-size:20px;
}

.jy_tab_list ul{
    display: flex;
    height: 60px;
    background: #666;
    margin:20px 0;
}
.jy_tab_list ul li{
    flex:1;
    cursor: pointer;
    font-size:16px;
    color:#fff;
    padding:0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jy_tab_list ul li.on{
    background: #222;
}

.bannerList{
  margin-top: 70px;
}
.bannerList .swiper-button-disabled{
  opacity: .35!important;
}
.bannerList:hover .swiper-button-prev{
  opacity: 1;
}
.bannerList:hover .swiper-button-next{
  opacity: 1;
}
.bannerList .swiper-button-prev{
  opacity: 0;
  font-weight: bold;
  left: 30px;
  color: #e7c921;
  top: 50%;
  height: 55px;
  width: 55px;
  transform:translate(0,-50%);
  transition: all 0.5s ease;
}
.bannerList .swiper-button-next{
  opacity: 0;
  font-weight: bold;
  right: 30px;
  color: #e7c921;
  top: 50%;
  height: 55px;
  width: 55px;
  transform:translate(0,-50%);
  transition: all 0.5s ease;
}
.bannerList .swiper-button-prev:hover{
  background: rgba(255,255,255,.2);
}
.bannerList .swiper-button-next:hover{
  background: rgba(255,255,255,.2);
}
.bannerPC li{
  width: 25%;
  box-shadow: 0 0 10px rgba(0,0,0,.35);
  overflow: hidden;
  transition: all 0.5s ease;
}
.bannerPC li:first-child{
  width: 100%;
}
.bannerPC:hover li:first-child{
  width: 25%;
}
.bannerPC li .img{
  position: relative;
}
.bannerPC li:hover .img:after{
  background: rgba(0,0,0,.2);
}
.bannerPC li img{
  max-width: initial;
}
.bannerPC li .img:after{
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  transition: all 0.5s ease;
}
.bannerPC li .caseCon{
  padding-right: 15px;
  z-index: 2;
  position: absolute;
  bottom: 30px;
  left: 15px;
  transition: all 0.5s ease;
}
.bannerPC li:hover .caseCon{
  padding-right: 30px;
  left: 30px;
}
.bannerPC li .caseCon h4{
  font-weight: bold;
  color: #fff;
}
.bannerPC li .caseCon p{
  overflow: hidden;
  color: #fff;
  margin-top: 0px;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.5s ease;
  opacity: 0;
  font-size: 16px;
}
.bannerPC li:hover .caseCon p{
  opacity: 1;
  margin-top: 15px;
}

body{
    overflow-x: hidden;
}
#header{
	width: 100%;
	z-index: 99999;
	position: fixed;
	left: 0;
	top: 0;
	/*border-bottom: 1px solid rgba(255,255,255,.4);*/
}
.header_wrap {
	transition:all .3s;
}
.header_flex{
    height:80px;
    align-items: center;
    transition:all .3s;
    justify-content: space-between;
}
.logo a{
	position: relative;
	display: flex;
	align-items: center;
}
.logo img {
	height:27px;
	transition:all .3s;
}
.nav_pc{
    transition:all .9s;
}
.nav_pc ul{
    
}
.nav_pc li {
	position: relative;
	flex:1;
}

.nav_pc li>a h4{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	position: relative;
	line-height:50px;
	color: #fff;
	text-align: center;
	margin: 0 18px;
	z-index: 5;
	transition:all .3s;
	font-weight: normal;
	white-space: nowrap;
}
.nav_pc li>a h4 i{
    font-size:18px;
    position: absolute;
    right: 12px;
    top: 0;
    display: none;
}
.nav_pc li.on>a h4 i{
    display: block;
}

.nav_pc li>a h4:after{
    content:'';
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
    background: #fff;
}
.nav_pc li.cur>a h4:after,.nav_pc li>a:hover h4:after{
    width: 100%;
}
.nav_pc li.on>a:hover h4 i{
    transform: rotate(180deg);
    transition:all .3s;
}
.nav_pc li .sub_nav{
	position: absolute;
	left: 0;
	width: 100%;
	background:var(--theme-color);
	transition: all 300ms;
	top:30px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
}
.nav_pc li:hover .sub_nav{
	top:50px;
	opacity: 1;
	visibility: visible;
}

.nav_pc li .sub_nav a {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav_pc li .sub_nav a:hover {
	background: rgba(0,0,0,.1);
}
.nav_pc{
    align-items: center;
}
.header_search{
    margin-left: 30px;
}
.header_search form{
    width: 260px;
    height: 40px;
    border-radius: 5px;
    border:1px solid rgba(255,255,255,.4);
}
.header_search .key{
    line-height: 38px;
    background: transparent;
    outline: none;
    border:none;
    width: 220px;
    padding:0 15px;
    color:#fff;
    font-size:14px;
}
.header_search .key::placeholder{
    color:rgba(255,255,255,.5);
}
.header_search button{
    border:none;
    outline: none;
    background: transparent;
    color:#fff;
    font-size:20px;
}


.header_flex .tel{
    font-size:16px;
    color:#fff;
    height:41px;
    line-height: 41px;
    background: var(--theme-color);
    padding: 0 25px;
}
.header_flex .tel p{
    justify-content: center;
}
.header_flex .tel p span{
    vertical-align: middle;
}
.header_flex .tel p i{
    margin-right: 10px;
    font-size:20px;
}
.header_flex .tel p em{
    font-size:16px;
    font-style: normal;
}
#header.header_on{
    display: block;
    background:rgba(0,0,0,.6);
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    border: none;
}

.header_on .header_flex{
    height: 60px;
}
.header_on .header_flex .logo a{
    height: 60px;
}
.header_on .header_flex .logo img{
    height: 20px;
}
.header_on .header_flex .nav_pc li>a h4{
    font-size:16px;
    line-height: 60px;
}
.header_on .header_flex .nav_pc li.cur>a h4,.header_on .header_flex .nav_pc li a:hover h4{
    color:#fff;
}
.header_on .header_flex .nav_pc li:hover .sub_nav{
    top: 60px;
}
.header_on .header_flex .tel{
    height: 40px;
    border-width: 1px;
    line-height: 38px;
}
.header_on .header_flex .tel p i{
    font-size:20px;
}
.header_on .header_flex .tel p em{
    font-size:14px;
}
.header_on .nav_pc li.on>a:hover h4 i{
    color:#fff;
}
.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: 20px;
	color: #333;
}
.phone_menu_btn {
	font-size: 16px;
	color: #000;
	padding-top: 18px;
	display: none;
}

.phone_menu_btn .line {
	position: relative;
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px 0;
	background: #fff;
	-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: 60px 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);
}


/* 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;
}

/* banner */

.mb_banner{
    display: none!important;
}
#banner{
     position: relative;   
}
#banner .parallax>a{
    height: 100%;
    display: block;
}
#banner .parallax:after{
	/*background: url(../images/pat1.png) repeat;*/
	/*content:'';*/
	/*width: 100%;*/
	/*height: 100%;*/
	/*top:0;*/
	/*left:0;*/
	/*position: absolute;*/
	/*opacity: 0.5;*/
}
#banner .caption h4{
    font-size:48px;
    color:#fff;
    font-weight: bold;
    margin-bottom: 15px;
}
#banner .caption p{
    font-size:20px;
    font-weight: 300;
    color:#fff;
    line-height: 30px;
    text-transform: uppercase;
}
#banner .caption p:after{
    content:'';
    display: block;
    width: 68px;
    height: 8px;
    background: #fff;
    margin:30px auto 0;
}
#banner .caption a i{
    font-size:22px;
    color:#3f95ea;
    line-height: 1;
}

#banner .caption a:hover i{
    color:#fff;
}

#slides {
    position: relative;
}

#slides .slides-container .container{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
#slides .slides-navigation .next, #slides .slides-navigation .prev {
    position: absolute;
    top: 50%;
    z-index: 100;
}
#slides .slides-navigation .next {
	right: 10px;
}
#slides .slides-navigation .prev {
	left: 10px;
}
#slides .slides-navigation i {
    color: #fff; 
    font-size: 40px;
    line-height: 40px;
    margin-top: -30px; 
    opacity: 0.5; 
}
#slides .slides-navigation i:hover {
	opacity: 1;
}
.slides-pagination {
    position: absolute;
    z-index: 3;
    bottom: 12px;
    text-align: center;
    width: 100%;
}
.slides-pagination a{
    border: 2px solid #fff;
    border-radius: 15px;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 3px;
    overflow: hidden;
    color: transparent !important;
}
.slides-pagination a.current {
    background: #fff;
}

#slides .caption {
    position: absolute; 
    z-index: 1000;
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    align-content: center;
    width: 100%;
    left: 0;
    text-align: center;
}


.parallax {
    position: absolute;
    background-attachment: fixed;
    background-position: top center;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}



.mb_banner {
	display: none!important;
}

/*首页css__start*/

/* tit_box1 */

.tit_box1{
    padding:100px 0 60px;
    text-align: center;
}
.tit_box1 .tit{
    color:#333;
}

.tit_box1 .tit h4{
    font-size:36px;
    color:#000;
    font-weight: bold;
}
.tit_box1 .desc{
    font-size:14px;
    padding-top:20px;
}



.tit_box1 .menu{
    margin-top: 20px;
}
.tit_box1 .menu a{
    display: inline-block;
    font-size:18px;
    color:#666;
    margin-right: 40px;
}
.tit_box1 .menu a:hover{
    color:var(--theme-color);
    font-weight: bold;
}

.tit_box2 .tit h4{
    color:#333;
}
.tit_box2 .tit p{
    color:#333;
}
.tit_box2 .tit span{
    color:#999;
    font-size:14px;
}


/* bg */

.bg1{
    background:url(../images/bg1.jpg) no-repeat center;
}
.bg2{
    background:#f6f6f6;
}
.bg3{
    background:url(../images/bg3.jpg) no-repeat center;
}


/* main */

.main{
    background: #333;
}

/* about */

.jy_about_con{
    
}
.jy_about_con ul{
    justify-content: center;
}
.jy_about_con li{
    width: 188px;
    height: 188px;
    background: #4f4f4f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#fff;
    font-size:16px;
    margin:0 78px;
}
.jy_about_con li h4{
    font-size:44px;
    margin-bottom: 5px;
}


/* business_con */

.business{
    position: relative;
}
.business_tit{
    position: absolute;
    top: 0;
    z-index: 5;
}
.business_tit .tit_box1{
    display: none;
}
.business_tit .container .tit_box1:first-child{
    display: block;
}
.business_con .hd ul{
    position: relative;
}
.business_con .hd ul:before{
    position: absolute;
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    left: 0;
    top: 0;
}
.business_con .hd ul li{
    display: none;
    position: relative;
}
.business_con .hd ul li video{
    width: 100%;
    display: block;
}
.business_con .hd ul li .imgs{
    position: absolute;
    right: 10%;
    bottom: 100px;
    z-index: 99;
    display: flex;
    width: 50%;
}
.business_con .hd ul li .imgs a{
    width: 25%;
    padding-right: 30px;
}
.business_con .hd ul li .imgs .tit{
    font-size:14px;
    color:#fff;
    text-align: center;
    padding-top: 10px;
}
.business_con .bd{
    position: absolute;
    bottom:20%;
}
.business_con .bd li{
    text-align: center;
    margin-right:60px;
    cursor: pointer;
}
.business_con .bd li .icon img{
    margin:auto;
}
.business_con .bd li h4{
    font-size:16px;
    color:#a9a9a9;
    font-weight: 300;
    margin-top: 30px;
}
.business_con .bd li.on h4{
    color:#fff;
}

/* tit_box2 */

.page_about_panel1{
    padding:85px 0;
    width: 1200px;
    margin:auto;
}
.page_about_panel1 .item_video{
    width: 500px;
    height: 340px;
    float: left;
    shape-outside: border-box;
    padding-right: 30px;
}
.page_about_panel1 .item_con{
    flex:1;
}
.page_about_panel1 .item_con p{
    margin-bottom: 15px;
}
.page_about_panel1 .item_con .tit h5{
    font-size:18px;
    color:#333;
    padding-bottom: 20px;
    font-weight: bold;
}
.page_about_panel1 .item_con .tit h5 span{
    color:#999;
    font-weight: normal;
    margin-left: 10px;
}


.tit_box2{
    flex:1;
}
.tit_box2 .tit{
    
}
.tit_box2 .tit h4{
    font-size:18px;
    color:#333;
    font-weight: bold;
    text-transform: uppercase;
}
.tit_box2 .tit h5{
    font-size:24px;
    font-weight: bold;
    color:#333;
    margin-top: 10px;
}
.tit_box2 .tit h5:after{
    content:'';
    width: 40px;
    height: 5px;
    background: #202646;
    display: block;
    margin:20px 0;
}
.tit_box2 .desc{
    font-size:18px;
    margin-top: 30px;
}


.tit_box3 .tit h4{
    color:#fff;
}
.tit_box3 .tit p{
    color:#fff;
}

.jy_inner_product_flex .inner_menu{
    width: 300px;
}
.jy_inner_product_flex .page_picList,.jy_inner_product_flex .page_picshow{
    width: calc(100% - 300px);
    margin-left: 30px;
}


/* jy_solution_slide */

.jy_solution_slide .item{
    position: relative;
}
.jy_solution_slide .item .item_con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding:0 40px 30px;
    display: flex;
    align-items: center;
}
.jy_solution_slide .item .item_con .con{
    flex:1;
    padding-right: 80px;
}
.jy_solution_slide .item .item_con .more_style1{
    margin-top: 0;
}
.jy_solution_slide .item .item_con .con h4{
    font-size:30px;
    font-weight: bold;
    color:#fff;
}
.jy_solution_slide .item .item_con .con p{
    font-size:14px;
    color:#fff;
    line-height: 1.6;
    margin-top: 10px;
}
.jy_solution_slide .owl-controls{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 20px;
}
.jy_solution_slide .owl-controls .owl-pagination{
    display: flex;
    justify-content: center;
    width: 100%;
}
.jy_solution_slide .owl-controls .owl-pagination .owl-page{
    width: 10px;
    height: 10px;
    border-radius:50%;
    background: #fff;
    text-indent: -9999px;
    margin:0 5px;
    opacity: .7;
}
.jy_solution_slide .owl-controls .owl-pagination .owl-page.active{
    opacity: 1;
}


.page_about_panel1 .r_con{
    font-size:16px;
    width: 70%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.page_about_panel1 ul{
    margin-top: 50px;
}
.page_about_panel1 ul li{
    display: flex;
    align-items: center;
    flex:1;
}
.page_about_panel1 ul li .icon i{
     font-size:40px;
     color:#666;
}
.page_about_panel1 ul li .con{
    margin-left: 10px;
}
.page_about_panel1 ul li .con h4{
    color:#202646;
    font-size:46px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
}
.page_about_panel1 ul li .con h4 span{
    font-size:16px;
    font-weight: normal;
    margin-left: 5px;
}

.page_about_panel2{
    background: url("../images/bg2.jpg") no-repeat center;
    padding:80px 0;
}
.jy_tit2{
    text-align: center;
    color:#fff;
    
}
.jy_tit2 h5{
    font-size:30px;
}
.jy_tit2 p{
    font-size:14px;
    color:rgba(255,255,255,.5);
    padding:15px 0 0;
}
.jy_tit2 p:after{
    content:'';
    width: 40px;
    height: 2px;
    background: #fff;
    margin:20px auto 0;
    display: block;
}
.page_about_panel2 .list{
    display: flex;
    width: 1300px;
    margin:auto;
    padding-top: 60px;
}
.page_about_panel2 .list .item{
    flex:1;
    padding:0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page_about_panel2 .list .item .ico{
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff;
    border-radius: 50%;
    transition:all .3s;
}
.page_about_panel2 .list .item h4{
    font-size:18px;
    color:#fff;
    padding:15px 0;
}
.page_about_panel2 .list .item p{
    font-size:14px;
    color:rgba(255,255,255,.5);
    text-align: center;
}
.page_about_panel2 .list .item p:after{
    content:'';
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin:20px auto 0;
}
.page_about_panel2 .list .item:hover .ico{
    background:var(--theme-color);
    border-color: var(--theme-color);
}



.page_about_panel3{
    padding:100px 0;
}

.jy_tit3{
    margin-bottom: 60px;
}
.jy_tit3 h4{
    text-align: center;
    font-size:30px;
    font-weight: normal;
    color:#000;
}
.jy_tit3 p{
    font-size:14px;
    color:rgba(0,0,0,.5);
    text-align: center;
    margin-top: 10px;
}
.jy_tit3:after{
    content:'';
    display: block;
    width: 40px;
    height: 2px;
    background: #000;
    margin:20px auto 0;
}

.page_about_panel3 .container{
    
}
.page_about_panel3 .tab_list{
    position: relative;
    padding-top: 40px;
}
.page_about_panel3 .tab_list .hd{
    position: absolute;
    right: 0;
    top: -95px;
    
}
.page_about_panel3 .tab_list .hd li{
    font-size:16px;
    color:#666;
    margin-left: 30px;
    cursor: pointer;
}
.page_about_panel3 .tab_list .hd li.cur{
    color:var(--theme-color);
}
.page_about_panel3 .tab_list .hd li.cur:after{
    width: 100%;
    height: 2px;
    background: var(--theme-color);
    content:'';
    display: block;
}

.page_about_panel3 .tab_list .bd .item{
    display: none;
}
.page_about_panel3 .tab_list .bd .item:first-child{
    display: block;
}
.page_about_panel3 .tab_list .bd .item>img{
    width: 100%;
}
.page_about_panel3 .tab_list .bd .item ul{
    display: flex;
    margin:0 -20px;
}
.page_about_panel3 .tab_list .bd .item ul li{
    padding:0 20px;
    flex:1;
}

.page_about_panel4{
    background: url("../images/bg3.jpg") no-repeat center;
    padding:100px 0 140px;
}




.page_about_panel4_scroll{
    overflow: hidden;
    padding-top: 40px;
    position: relative;
    width: 1150px;
    margin:auto;
}
.page_about_panel4_scroll .item{
    display: flex;
    justify-content: center;
}
.page_about_panel4_scroll .item img{
    width: 875px;
    height: 575px;
    object-fit: cover;
}

.page_about_panel4_scroll .swiper-button-next,.page_about_panel4_scroll .swiper-button-prev{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.page_about_panel4_scroll .swiper-button-next i,.page_about_panel4_scroll .swiper-button-prev i{
    font-size:30px;
    color:#063e8a;
}
.page_about_panel4_scroll .swiper-button-prev{
    transform: rotate(180deg);
}
.page_about_panel4_scroll .swiper-button-next.swiper-button-disabled,.page_about_panel4_scroll .swiper-button-prev.swiper-button-disabled{
    opacity: .8;
}
.page_about_panel4_scroll .swiper-button-next.swiper-button-disabled i,.page_about_panel4_scroll .swiper-button-prev.swiper-button-disabled i{
    color:#ddd;
}
.page_about_panel4_scroll .swiper-button-next:after,.page_about_panel4_scroll .swiper-container-rtl .swiper-button-prev:after{
    content:'';
}
.page_about_panel4_scroll .swiper-button-prev:after,.page_about_panel4_scroll .swiper-container-rtl .swiper-button-next:after{
    content:'';
}


.page_about_panel5_tit{
    padding:100px 0 0;
}

.page_about_panel5_scroll_wrap{
    background: url("../images/bg4.jpg") no-repeat center;
    padding:80px 0;
}

.page_about_panel5_scroll {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.page_about_panel5_scroll .swiper-container {
	padding-bottom: 120px;
}

.page_about_panel5_scroll .swiper-slide {
	width: 450px;
	height: 600px;
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
}
.page_about_panel5_scroll .swiper-slide img{
	display:block;
}


.page_about_panel5_scroll .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

.page_about_panel5_scroll .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

.page_about_panel5_scroll .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}



.page_about_panel5_scroll .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}


.page_about_panel5_scroll .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}
.page_about_panel5_scroll .item h5{
    font-size:18px;
    text-align: center;
    color:#fff;
    padding-top: 20px;
}
.page_about_panel5_scroll .swiper-button-next, .page_about_panel5_scroll .swiper-button-prev{
    width: 30px;
    height: 30px;
    border:2px solid rgba(255,255,255,.5);
    border-radius: 50%;
    top: auto;
    bottom: 0;
}

.page_about_panel5_scroll .swiper-button-next:after, .page_about_panel5_scroll .swiper-button-prev:after{
    font-size:16px;
    color:rgba(255,255,255,.5);
}
.page_about_panel5_scroll .swiper-button-next{
    right: 46%;
}
.page_about_panel5_scroll .swiper-button-prev{
    left: 46%;
}
.page_about_panel5_scroll .swiper-button-prev:hover,.page_about_panel5_scroll .swiper-button-next:hover{
    border-color: #063e8a;
    color:#fff;
    background: #063e8a;
}

.page_about_panel6{
    padding:100px 0;
}
.page_about_panel6 .img {
    text-align: center;
}
.page_about_panel6 .img img{
    margin:0 auto;
}


.page_contactindex {
    padding: 20px;
}
.page_contactindex .left_con{
    flex:1;
}
.page_contactindex .left_con .desc h4{
    font-size:24px;
    font-weight: bold;
    color:#333;
    padding-top: 40px;
}
.page_contactindex .left_con ul li{
    padding:40px 0 0;
}
.page_contactindex .left_con ul li h4{
    font-size:18px;
    font-weight: bold;
    color:#19245e;
}
.page_contactindex .left_con ul li p{
    font-size:18px;
    color:#666;
    margin-top: 10px;
}



/* about */

.about_con li{
    flex:1;
    position: relative;
}
.about_con li .img{
    position: relative;
}
.about_con li .con{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    right: 10%;
    bottom: 10%;
    background: rgba(0,0,0,.0);
    transition:all .3s;
    color:#fff;
}
.about_con li:hover .con{
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
}
.about_con li .con h4{
    font-size:24px;
    font-weight: bold;
}
.about_con li .con p{
    font-weight: 300;
    margin:10px 0 0;
    font-size:14px;
}
.about_con li .con a{
    font-size:14px;
    color:#fff;
    display: block;
    position: relative;
    text-transform: uppercase;
    margin-top: 30px;
    font-family: Arial;
}
.about_con li .con a:after{
    content:'';
    display: block;
    position: absolute;
    width: 0;
    transition:all .3s;
    height: 1px;
    background: rgba(255,255,255,.8);
    transition:all .3s;
}
.about_con li .con a:hover:after{
    width: 100%;
}


/* product_con */

.product_con{
    /*padding: 0 30px;*/
    margin:0 -20px;
}
.product_con .item{
    padding: 0 20px;
}
.product_con .item a{
    display: block;
    position: relative;
}
.product_con .item .img{
    
}
.product_con .item .con{
    background: rgba(0,0,0,.5);
    padding: 22px;
    transition:all .3s;
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    text-align: center;
}
.product_con .item .con h4{
    font-size:18px;
    color:#fff;
}
.product_con .item .con p{
    font-size:14px;
    text-transform: uppercase;
    color:#ccc;
    margin-top: 10px;
}
.product_con .item .con span{
    font-size:14px;
    margin-top: 20px;
    color:#fff;
}
.product_con .item:hover .con{
    opacity: 1;
}
.product_con .owl-buttons>div{
    width: 47px;
    height: 47px;
    background: #787878;
    color:#fff;
    text-align: center;
    line-height: 47px;
    font-size:16px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition:all .3s;
}
.product_con .owl-buttons>div:hover{
    background: #333;
}
.product_con .owl-buttons .owl-prev{
    left: -30px;
}
.product_con .owl-buttons .owl-next{
    right:-30px;
}
.btn_style .owl-pagination{
    text-align: center;
    margin-top: 40px;
}
.btn_style .owl-pagination>div{
    width: 8px;
    height: 8px;
    background: #e7e7e7;
    display: inline-block;
    margin:0 6px;
    text-indent: -9999px;
}
.btn_style .owl-pagination>div.active{
    background: var(--theme-color);
}


/* jy_solution_icons */

.jy_solution_icons{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.jy_solution_icons{
    border-right: 2px solid #e3e3e3;
}
.jy_solution_icons .item{
    padding:0 10px;
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 2px solid #e3e3e3;
}
.jy_solution_icons .item .tit{
    font-size:14px;
    color:#333;
}
.jy_solution_icons .item .ico{
    width: 60px;
}

/* jy_case_con */

.jy_case_con{
    margin:0 -15px;
}
.jy_case_con .item_wrap{
    width:25%;
    padding:0 15px;
}
.jy_case_con .item{
    border:1px solid #eee;
}
.jy_case_con .item .item_img img{
    height: 260px;
    width: 100%;
}
.jy_case_con .item .item_con{
    padding:20px;
}
.jy_case_con .item .item_con h4{
    font-size:14px;
    font-weight: bold;
    color:#000;
}
.jy_case_con .item .item_con p{
    font-size:14px;
    margin:10px 0 20px;
}
.jy_case_con .item .item_con .more_time{
    align-items: center;
}
.jy_case_con .item .item_con .time{
    flex:1;
    display: flex;
    justify-content: flex-end;
    font-size:14px;
}



/* news_con */

.news_con li a{
    display: block;
    position: relative;
}
.news_con li .img img{
    width: 100%;
}
.news_con li .con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color:#fff;
    z-index: 99;
    padding:30px 30px;
    flex-direction: column;
    justify-content: space-between;
    transition:all .3s;
}
.news_con li .con h5{
    font-size:16px;
    font-weight: normal;
    display: flex;
    align-items: center;
}
.news_con li .con h5 i{
    font-size:22px;
    margin-right: 10px;
}
.news_con li .con span{
    height: 40px;
    align-items: center;
    border-top: 1px solid #dbdbdb;
    font-size:14px;
}
.news_con li .con span em{
    font-style: normal;
    flex:1;
}
.news_con li .con span i{
    margin-right: 7px;
}
.news_con li .con h4{
    font-size:18px;
    font-weight: normal;
}
.news_con li .con p{
    font-size:14px;
    margin:20px 0 20px;
    transition:all .3s;
    
}
.news_con li a:hover .con{
    background: #f1f1f1;
    color:#666;
}
.news_con li a:hover .con p{
    margin-bottom: 100px;
    color:#666;
}

.honor_con{
    margin:40px 0;
}

/* fixed_rightbtn */

.fixed_rightbtn{
    position: fixed;
    z-index: 999;
    right:0;
    bottom:20%;
}
.fixed_rightbtn>ul>li{
    width:40px;
    height:40px;
    color:var(--color-fixedright);
    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(--color-fixedright);
    border:1px solid var(--color-fixedright);
}
.fixed_rightbtn>ul>li>a:hover{
    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(--color-fixedright);
    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(--color-fixedright);
}
#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;
}

.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(--color-fixedright);
    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(--color-fixedright);
}
#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(--color-fixedright);
    border-radius: 3px 0 0 3px;
    outline: none;
    font-size:14px;
    color:#164e99;
}
.layer_search .button{
    height: 40px;
    line-height: 40px;
    background: var(--color-fixedright);
    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;
}




#layer_message{
    padding:20px 25px;
}
#code_img{
    height:34px;
}
#layer_message p{
    margin-top: 20px;
    font-size:14px;
}



.footer{
    background: #2a2a2a;
    padding:50px 0 30px;
}
.footer_nav li{
    flex:1;
}
.footer_nav li:first-child,.footer_nav li:nth-child(3){
    display: none;
}
.footer_nav li a{
    display: block;
}
.footer_nav li a.a1{
    font-size:14px;
    color:#fff;
    margin-bottom: 6px;
    font-weight: bold;
}
.footer_nav li a.a2{
    font-size:14px;
    color:rgba(255,255,255,.5);
}

.footer_logo{
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 15px 0;
    margin-bottom: 30px;
}
.footer_logo .img{
    flex:1;
}
.footer_logo .img img{
    max-height: 30px;
}
.footer_logo .img span{
    font-size:16px;
    color:#dcdcdc;
    margin-left: 20px;
}
.footer_logo .icon a{
    display: inline-block;
    margin-left: 10px;
}
.footer_logo .icon a i{
    font-size:24px;
    color:#777;
}

.footer_con{
    color:#fff;
}
.footer_con h4{
    font-size:14px;
    font-weight: bold;
    margin-bottom: 6px;
    line-height: 27px;
}
.footer_con p{
    font-size:14px;
    color:rgba(255,255,255,.5);
    line-height: 24px;
}


.footer_code{
    padding-top: 10px;
}
.footer_code .item{
    margin-right: 15px;
}
.footer_code .item img{
    width:55px;
}

.footer_code p{
    font-size:14px;
    color:#fff;
    text-align: center;
    margin-top: 10px;
}
.footer_ft{
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 30px;
    font-size:14px;
    padding-top: 20px;
    color:#898989;
}


/* 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;
}


.index-bxsf li{width: 32%;float: left;margin-right: 2%;}
.index-bxsf li:nth-child(2),.index-bxsf li:nth-child(5){margin-right: 0;}
.index-bxsf li.imgg{max-height: 320px;}
.index-bxsf li:nth-child(1) .imgg,.index-bxsf li:nth-child(2) .imgg{max-height: 450px;}
.index-bxsf li:nth-child(1) .imgg {
    height: 450px;
}
.index-bxsf li:nth-child(2){width: 66%;}
.index-bxsf li .iconfont{color: #c7000b;font-family: 宋体;}
.index-bxsf li{overflow: hidden; position: relative; margin-bottom: 15px;}
.index-bxsf li a{color: #fff; text-decoration: none; display: block; overflow: hidden; position: relative; height: 100%; cursor:pointer;}
.index-bxsf li .mask{position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 2; background-image: url(' {{ params.imagePath }}mask_grad.png'); background-repeat: repeat-x; background-position: left bottom; background-size: auto 100%; visibility: visible; opacity: 0;}
.index-bxsf li img{float: left; -webkit-transition: all 0.5s; transition: all 0.5s; width: 100%; position: relative;object-fit: cover;}
.index-bxsf li .text-box{width: 100%; height: auto; position: absolute; left: 0; color: #fff; text-align: left; -webkit-transition: all 0.5s; transition: all 0.5s; z-index: 4; bottom: 0; padding: 15px; font-size: 14px;}
.index-bxsf li .text-box{font-size:20px;}
.index-bxsf li .text-box .category{font-size: 0.875em; line-height: 1.8em; color: #fff;}
.index-bxsf li .text-box .name{line-height: 1.4em; font-weight: bold; margin: 0; font-size: 1.2em;}
.index-bxsf li .text-box .text{font-size: 0.75em; line-height: 1.8em; opacity: 0.7; display: none;}
.index-bxsf li .text-box .read-more{opacity: 1; margin-top: 15px;}
@media (min-width: 992px) {
	.content-box h1{font-size:2.5em;}
	.content-box .subtitle{margin-top: 22px;max-width: 75%;}
	.content-box .subtitle.pull-left{max-width: 100%;}
	.content-box .panel-img-list{font-size: 0;-webkit-text-size-adjust: none;}
	.index-bxsf li img{width: 100%;height: 100%;}
	.index-bxsf li.mr{margin-right: 30px;}
	.index-bxsf li .mask{visibility: visible;opacity: 1;height: 50%;width: 100%;content: "";background: linear-gradient(rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 70%);display: block;top: auto;bottom: 0;}
	.index-bxsf li .text-box{padding: 25px 30px;bottom: -50px;}
	.index-bxsf li .btn-play .text-box{bottom: -20px;}
	.index-bxsf li .text-box .name{margin-bottom: 12px;font-size: 1.2em;line-height: 1.4em;}
	.index-bxsf li .text-box.text-box-1 .name{margin-bottom: 0;}
	.index-bxsf li .text-box.text-box-1 .text{margin-bottom: 12px;}
	.index-bxsf li .text-box .text{font-size: 0.875em;display: block;}
	.index-bxsf li .text-box .category{font-size: 0.91em;}
	.index-bxsf li .text-box .read-more{opacity: 0;-webkit-transition: all 0.5s;transition: all 0.5s;font-size: 0.875em;}
	.index-bxsf li:hover .text-box{bottom: 0;}
	.index-bxsf li:hover .text-box .read-more{visibility: visible;opacity: 1;}
	.index-bxsf li:hover img{-webkit-transform: scale(1.05);-ms-transform: scale(1.05);transform: scale(1.05);}
	.index-bxsf li:hover .mask{opacity: 1;visibility: visible;position: absolute;width: 100%;height: 100%;left: 0;top: 0;z-index: 2;background-image: url({{ params.imagePath }}mask_grad.png);background-repeat: repeat-x;background-position: left bottom;background-size: auto 100%;}
	.index-bxsf li:hover .read-more{opacity: 1;}
	.content-box .bottom-c{padding-bottom: 40px;padding-left: 40px;padding-right: 40px;}
}
@media (max-width: 1200px){
	.index-bxsf li,.index-bxsf li:nth-child(2),.index-bxsf li:nth-child(5){width: 48%;margin-right: 4%;}
	.index-bxsf li .text-box .name{font-size: 20px;}
	.index-bxsf li .text-box .text{font-size: 17px;}
	.index-bxsf li .text-box .read-more{font-size: 15px;}
	.index-bxsf li:nth-child(2n){margin-right: 0;}
	.index-bxsf li .imgg,.index-bxsf li:nth-child(1) .imgg,.index-bxsf li:nth-child(2) .imgg{max-height: 330px;}
}
@media (max-width: 768px){
    .index-bxsf li,.index-bxsf li:nth-child(2n),.index-bxsf li:nth-child(5){width: 100%;}
	.index-bxsf li .imgg,.index-bxsf li:nth-child(1) .imgg,.index-bxsf li:nth-child(2) .imgg{max-height: 200px;}
	.index-bxsf li .text-box .name{font-size: 18px;}
	.index-bxsf li .text-box .text{font-size: 16px;}
}

.bannerList{
    margin-top: 70px;
}
.bannerList .swiper-button-disabled{
     opacity: .35!important;
 }
.bannerList:hover .swiper-button-prev{
    opacity: 1;
}
.bannerList:hover .swiper-button-next{
    opacity: 1;
}
.bannerList .swiper-button-prev{
    opacity: 0;
    font-weight: bold;
    left: 30px;
    color: #e7c921;
    top: 50%;
    height: 55px;
    width: 55px;
    transform:translate(0,-50%);
    transition: all 0.5s ease;
}
.bannerList .swiper-button-next{
    opacity: 0;
    font-weight: bold;
    right: 30px;
    color: #e7c921;
    top: 50%;
    height: 55px;
    width: 55px;
    transform:translate(0,-50%);
    transition: all 0.5s ease;
}
.bannerList .swiper-button-prev:hover{
    background: rgba(255,255,255,.2);
}
.bannerList .swiper-button-next:hover{
    background: rgba(255,255,255,.2);
}

.qutlet_inquiry{
    padding:50px 0;
}
.qutlet_inquiry_tit{
    font-size:30px;
    color:#333;
    font-weight: bold;
}
.qutlet_inquiry_flex{
    display: flex;
}
.qutlet_inquiry_flex .con{
    flex:1;
}
.qutlet_inquiry_flex .con ul{
    display: flex;
    flex-wrap: wrap;
}
.qutlet_inquiry_flex .con li{
    width: 50%;
    padding:40px 40px 0 0;
}
.qutlet_inquiry_flex .con li h4{
    font-size:16px;
    color:#333;
    font-weight: bold;
}
.qutlet_inquiry_flex .con li p{
    font-size:14px;
    margin-top: 10px;
}


.menu_content .bannerPC{
    display: none;
}
.menu_content .bannerPC:first-child{
    display: block;
}
.menu_content .cxjz_list_content{
    display: none;
}
.menu_content .cxjz_list_content:first-child{
    display: block;
}
.menu_content .cxjz_list_content .tit{
    font-size:30px;
    color:#333;
    font-weight: bold;
    margin-bottom: 30px;
}
.menu_content .cxjz_list_content .video video{
    width: 100%;
}

.bannerPC li{
    flex:1;
    box-shadow: 0 0 10px rgba(0,0,0,.35);
    overflow: hidden;
    transition: all 0.5s ease;
}

.bannerPC li:hover{
    flex:5;
}
.bannerPC li .img{
    position: relative;
}
.bannerPC li:hover .img:after{
    background: rgba(0,0,0,.2);
}
.bannerPC li img{
    max-width: initial;
}
.bannerPC li .img:after{
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    transition: all 0.5s ease;
}
.bannerPC li .caseCon{
    padding-right: 15px;
    z-index: 2;
    position: absolute;
    bottom: 30px;
    left: 15px;
    transition: all 0.5s ease;
}
.bannerPC li:hover .caseCon{
    padding-right: 30px;
    left: 30px;
}
.bannerPC li .caseCon h4{
    font-weight: bold;
    color: #fff;
}
.bannerPC li .caseCon p{
    overflow: hidden;
    color: #fff;
    margin-top: 0px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.5s ease;
    opacity: 0;
    font-size: 16px;
}
.bannerPC li:hover .caseCon p{
    opacity: 1;
    margin-top: 15px;
}


/*首页css__end*/


/*内页*/

.page_tit{
    padding-bottom: 40px;
    text-align: center;
}
.page_tit h4{
    line-height: 40px;
    font-size:34px;
    font-weight: bold;
    color:#222931;
}
.page_tit p{
    font-size:14px;
    color:#999;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

/* jy_top_menu */

.jy_top_menu{
    position: relative;
    background: #f8f8f8;
}
.jy_top_menu ul{
    display: flex;
    padding:20px 0;
    justify-content: center;
}
.jy_top_menu ul li{
    margin:0 15px;
}
.jy_top_menu ul li>a{
    font-size:18px;
    color:#000;
    display: block;
    position:relative;
    padding-bottom: 5px;
}
.jy_top_menu ul li>a:after{
    content:'';
    width:0;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #333;
    transition:all .3s;
}

.jy_top_menu ul li.cur>a:after,.jy_top_menu ul li:hover>a:after{
    width: 100%;
}


.ibanner {
	position: relative;
}
.ibanner .img img{
    display: block;
}

.inner_tit{
    position: absolute;
    bottom: 50px;
    display: flex;
    align-items: flex-end;
    height: 100%;
    right: 5%;
}
.inner_tit .wrap{
    color:#fff;
}
.inner_tit .wrap h4{
    font-size:36px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: right;
}
.inner_tit .wrap p{
    font-size:14px;
    text-align: right;
}
.inner_tit .wrap p a{
    color:#fff;
}


/* 内页分类 */

.inner_menu{
    background:var(--theme-color);
    padding:14px;
    margin-left: 20px;
}
.inner_menu .tit{
    height:50px;
    font-size:18px;
    background:#fff;
    font-weight: bold;
    line-height:50px;
    padding: 0 20px;
    color:var(--theme-color);
}
.inner_menu>ul{
    padding: 20px 0;
}
.inner_menu>ul>li>a{
    display: block;
    height:46px;
    line-height:46px;
    padding:0 20px 0 32px;
    color:#fff;
    font-size:16px;
    position: relative;
}
.inner_menu>ul>li>a:before{
    display: block;
    width: 5px;
    height: 5px;
    content:'';
    background: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 15px;
    top: 22px;
}
.inner_menu>ul>li>a:hover,.inner_menu>ul>li.cur>a{
    background: rgba(0,0,0,.2);
}


/* 内页二级分类显示 */

.inner_sublist {
	transition: all .3s;
	background: rgba(255,255,255,.4);
	position: absolute;
	left: 0;
	top:80px;
	display: none;
	flex-wrap: wrap;
}
.jy_top_menu>ul>li.cur .inner_sublist {
    display: flex;
}
.inner_sublist a{
    height: 32px;
    background: #545454;
    border-radius: 5px;
    display: block;
    line-height: 32px;
    color:#fff;
    padding:0 20px;
    font-size:14px;
    margin-right: 30px;
}
.inner_sublist a:hover{
    background: var(--theme-color);
}


/* jy_page_contact_index */

.jy_page_contact_index .container{
    width: 1200px;
    padding:0;
}

.jy_page_contact_index{
    background: #f8f8f8;
}
.jy_page_contact_index .panel1{
    padding:50px 0;
}
.jy_page_contact_index .panel1_con{
    background: #fff;
    width: 40%;
    padding:20px 50px 50px 60px;
}
.jy_page_contact_index .panel1_con li{
    display: flex;
    border-bottom: 1px solid #ccc;
    padding:12px 0;
    align-items: center;
}
.jy_page_contact_index .panel1_con li .ico i{
    font-size:30px;
    color:#c5c5c5;
}
.jy_page_contact_index .panel1_con li .con{
    padding-left: 10px;
}
.jy_page_contact_index .panel1_con li .con h4{
    font-size:14px;
    color:#333;
    font-weight: bold;
}
.jy_page_contact_index .panel1_con li .con p{
    font-size:14px;
    color:#333;
    margin-top: 3px;
}
.jy_page_contact_index .panel1_map{
    padding-left: 30px;
}

.jy_page_contact_index .panel2{
    background: #fff;
    text-align: center;
    padding:60px 0;
}
.jy_page_contact_index .panel2 img{
    margin:auto;
}

.jy_page_contact_index .panel3{
    padding:100px 0;
}
.jy_page_contact_index .panel3_tit{
    font-size:30px;
    color:#333;
    text-align: center;
}
.jy_page_contact_index .panel3_code{
    justify-content: space-around;
    padding:0 100px;
}
.jy_page_contact_index .panel3_code .item{
    width: 140px;
}
.jy_page_contact_index .panel3_code .item img{
    border:2px solid var(--theme-color);
}
.jy_page_contact_index .panel3_code .item p{
    font-size:14px;
    text-align: center;
    margin-top: 5px;
}

/* jy_page_join */

.jy_page_join_wrap .container{
    width: 1200px;
    padding:0;
}
.jy_page_join.jy_page_question  li{
    border-bottom: 2px solid #eee;
    padding:20px 0;
}
.jy_page_join.jy_page_question li{
    margin-bottom: 0;
}
.jy_page_join.jy_page_question  li .tit h4{
    flex: inherit;
    width: 30%;
    padding:0;
}
.jy_page_join.jy_page_question  li .tit h5{
    flex:1;
}
.jy_page_join.jy_page_question li{
    background: transparent;
}
.jy_page_join.jy_page_question li .tit.tit_cur {
    background: transparent;
    color:var(--theme-color);
}
.jy_page_join.jy_page_question li .con{
    padding:0 0 20px;
}
.jy_page_join li .con .deliver{
    padding-top: 50px;
}
.jy_page_join li .con .deliver a{
    color:var(--theme-color);
}
.jy_page_join li .con .deliver a:hover{
    text-decoration: underline;
}


/* jy_page_question */


.jy_page_question{
    padding:30px 0 50px;
}
.jy_page_question li{
    background:#eee;
    margin-bottom: 20px;
}
.jy_page_question li .tit{
    display: flex;
    align-items: center;
    height: 60px;
    color: #333;
    cursor: pointer;
    transition:all .3s;
}
.jy_page_question li .tit h4{
    font-size: 14px;
    font-weight: bold;
    flex:1;
    padding:0 20px;
}
.jy_page_question li .tit .jy_btn{
    display: flex;
    justify-content: center;
    width: 4%;
}
.jy_page_question li .tit .jy_btn:after{
    content: '+';
    font-size: 30px;
    font-weight: normal;
    transition:all .3s;
}
.jy_page_question li .tit.tit_cur{
    background: var(--theme-color);
    color:#fff;
}
.jy_page_question li .tit.tit_cur .jy_btn:after {
    content: '×';
}
.jy_page_question li .con{
    padding:20px 20px 30px;
    font-size:14px;
}


/* jy_page_solution */

.jy_page_solution{
    
}
.jy_page_solution .panel1{
    padding:80px 0;
    text-align: center;
}
.jy_page_solution .panel1 .con p{
    font-size:14px;
    color:#666;
    line-height: 2;
}
.jy_page_solution .panel1 .con .p1{
    padding-top: 30px;
}



.jy_page_solution_panel2 .hd {
    display: flex;
}
.jy_page_solution_panel2 .hd .item{
    flex:1;
    position: relative;
    cursor: pointer;
    transition:all .3s;
}
.jy_page_solution_panel2 .hd .item.cur .item_con .ico{
    border-color:var(--theme-color);
    background: var(--theme-color);
}
.jy_page_solution_panel2 .hd .item .item_img img{
    width: 100%;
}
.jy_page_solution_panel2 .hd .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    flex-direction: column;
}
.jy_page_solution_panel2 .hd .item .item_con .ico{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border:1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jy_page_solution_panel2 .hd .item .item_con .ico img{
    width: 50px;
    height: 50px;
}
.jy_page_solution_panel2 .hd .item .item_con .tit{
    font-size:20px;
    color:#fff;
    margin-top: 20px;
}
.jy_page_solution_panel2 .hd .item:hover .item_con{
    transform: translateY(-100px);
}

.jy_page_solution_panel2 .panel2_tit{
    font-size:30px;
    color:#333;
    text-align: center;
    padding-top: 100px;
}
.jy_page_solution_panel2 .panel2_tit:after{
    content:'';
    display: block;
    width: 40px;
    height: 1px;
    background: #333;
    margin:20px auto 60px;
}

.jy_page_solution_panel2_layer .item{
    padding:80px 100px;
}
.jy_page_solution_panel2_layer .item .tit{
    font-size:30px;
    color:#333;
}
.jy_page_solution_panel2_layer .item .desc{
    font-size:16px;
    color:#333;
}
.jy_page_solution_panel2_layer .item .desc:after{
    content:'';
    width: 40px;
    height: 1px;
    background: #333;
    display: block;
    margin:20px 0 30px;
}
.jy_page_solution_panel2_layer .item .content{
    font-size:14px;
    max-height: 42vh;
    min-height: 10vh;
    overflow-y: auto;
    padding-right: 15px;
}
.jy_page_solution_panel2_layer .item .content p{
    margin-bottom: 15px;
    line-height: 2;
}
.jy_page_solution_panel2_layer .item .jy_btn{
    font-size:16px;
    border:1px solid var(--theme-color);
    color:var(--theme-color);
    margin-top: 30px;
    border-radius: 100px;
    height: 40px;
    line-height: 38px;
    padding:0 20px;
    display: inline-block;
    transition:all .3s;
}
.jy_page_solution_panel2_layer .item .jy_btn:hover{
    background-color: var(--theme-color);
    color:#fff;
}
.jy_page_solution_panel2_case_con_wrap{
}
.jy_page_solution_panel2 .jy_page_solution_panel2_case_con_wrap:first-child{
    display: block;
}
.jy_page_solution_panel2_case_con{
    overflow: hidden;
}
.jy_page_solution_panel2_case_con .item_wrap{
    width: 33.333%;
    float: left;
    padding: 15px;
}
.jy_page_solution_panel2_case_more{
    text-align: center;
    margin:20px 0 60px;
}
.jy_page_solution_panel2_case_more a{
    font-size: 16px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    margin-top: 30px;
    border-radius: 100px;
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    display: inline-block;
    transition: all .3s;
}
.jy_page_solution_panel2_case_more a:hover{
    background-color: var(--theme-color);
    color:#fff;
}

/* page_downList */

.page_downList{
    padding-top: 30px;
}
.page_downList li{
    margin-bottom: 20px;
}
.page_downList li a{
    background: #f9f9f9;
    height: 60px;
    font-size:14px;
    align-items: center;
    padding:0 20px;
    transition:all .3s;
}
.page_downList li a:hover{
    box-shadow: 0 0 10px rgba(0,0,0,.15);
}
.page_downList li a h4{
    font-size:14px;
    color:#333;
    flex:1;
    display: flex;
    align-items: center;
}
.page_downList li a h4 i{
    margin-right: 10px;
    color:#999;
    font-size:20px;
}
.page_downList li a .info{
    align-items: center;
}
.page_downList li a .info span{
    color:#888;
}
.page_downList li a .info h5{
    color:#063e8a;
    font-size:16px;
    margin-left: 50px;
}
.page_downList li a .info h5 i{
    margin-right: 10px;
}


.publeftcon{
    background: #fff;
    padding: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,.12);
    margin-left: 20px;
}
.publeftcon .tit{
    font-size:18px;
    height:44px;
    line-height: 44px;
    padding:0 14px;
    color:#333;
    font-weight: bold;
    position: relative;
}
.publeftcon .tit:before{
    width:4px;
    height:16px;
    background:var(--theme-color);
    content:'';
    display: block;
    position: absolute;
    left:0;
    top: 14px;
}
.publeftcon ul{
    
}
.publeftcon ul li{
    border-bottom: 1px solid #eee;
    padding:15px 0;
}
.publeftcon ul li .img{
    max-width: 30%;
    border:3px solid #fff;
}
.publeftcon ul li .img img{
    height: 80px;
    object-fit: cover;
    width: 100%;
}
.publeftcon ul li .con{
    flex-direction: column;
    justify-content: space-between;
    flex:1;
    padding-left: 20px;
}
.publeftcon ul li .con h4{
    font-size:16px;
    font-weight: normal;
    color:#333;
}
.publeftcon ul li span{
    font-size:12px;
    color:#999;
}


.publeftcon .tags a{
    display: inline-block;
    background: #eaebed;
    padding: 3px 10px;
    font-size:12px;
    color:#001e57;
}
.publeftcon .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}



.inner {
	padding: 50px 0 80px;
}

.page_index {
	min-height: 300px;
	background: #fff;
	font-size:16px;
}
.page_index>p{
    margin-bottom: 10px;
}
.page_index .tit p{
    text-align: center;
    margin: 15px 0;
    background: #f7f7f7;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
}
.page_index .tit p span{
    margin:0 6px;
    font-size:14px;
}
.page_index .tit p span i{
    margin-right: 5px;
}
.page_index .desc{
    font-size:14px;
    color:#999;
}
.page_index .con p {
	/*text-indent: 2em;*/
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 15px;
}
.page_index .con img {
	margin:0 auto 15px!important;
}

.page_index .tit h1 {
	color: #333;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
}


.page_index .con {
	padding: 20px 0;
}


/* 公司介绍 */

.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;
    padding: 0 0 20px;
}
.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:var(--theme-color);
    border-radius: 50%;
    font-size:36px;
    color:#fff;
    text-align: center;
    line-height: 100px;
}
.page_about_index ul li h4{
    color:#212f38;
    font-size:22px;
    font-weight: bold;
}

.page_service_index .con{
    max-width: 900px;
    margin:0 auto;
    font-size:16px;
    text-align: center;
    color:#fff;
}
.page_honor_index li .img_scale{
    display: block;
    padding: 20px;
    border:1px solid #eee;
}

.page_honor_index li .con h4{
    text-align: center;
    line-height:60px;
    height: 60px;
    overflow: hidden;
    font-size:20px;
    color:#333;
    font-weight: bold;
}


/* 单页内容 */


.xg_news {
	margin: 40px 0 0;
}

.xg_news h3 {
	font-size: 18px;
	border-bottom: 1px solid #eee;
	line-height: 2;
	color: #2f2f2f;
	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;
}

.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;
}

.xg_news dl {
	margin: 15px 0 0;
}

.xg_news dl dd{
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	color: #151515;
	line-height: 2;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
}



/* 产品列表 */



.page_picList{
    
}

.product_list .title {
    font-size: 18px;
    color:#000;
    font-weight: bold;
    background: url("../images/j_ico1.png") no-repeat left center;
    background-size: 50px;
    border-bottom: 2px solid #eee;
    padding: 10px 0 10px 60px;
    position: relative;
    color:#063e8a;
}
.product_list .title:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #063e8a;
    height: 3px;
    width: 160px;
}

.page_picList li {
	margin-bottom:30px;
}
.page_picList li a {
	display: block;
	background: #fff;
	position: relative;
}

.page_picList li .con{
    position: absolute;
    left: 0;
    bottom: 0;
    width:100%;
}
.page_picList li .con h4{
	transition: color .4s;
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	text-align: center;
	background:rgba(0,0,0,.6);
	padding:10px;
	
}

.page_picList li .con p{
	margin: 15px 0 0;
	font-size: 14px;
	color:#999;
	display: none;
}

.page_picList li .img {
	overflow: hidden;
	height: 290px;
}

.page_picList li img {
	transition: all 0.6s;
	margin: 0;
	width: 100%;
}

.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{
    
}
.page_picList li:hover .con h4 {
	
}

/* page_serviceList */

.page_serviceList_tit{
    padding: 80px 0 55px;
    text-align: center;
}
.page_serviceList_tit h4{
    color:#b81c25;
    font-size:48px;
    letter-spacing: 2px;
}
.page_serviceList_tit h4 i{
    font-size:80px;
    font-style: inherit;
}
.page_serviceList_tit h4 span{
    font-size:66px;
}
.page_serviceList_tit p{
    font-size:24px;
    color:#333;
    margin:10px 0 0;
}
.page_serviceList li{
    transition:all .3s;
    cursor: help;
}
.page_serviceList li:nth-child(3) .col-md-6:first-child,.page_serviceList li:nth-child(4) .col-md-6:first-child,.page_serviceList li:nth-child(7) .col-md-6:first-child,.page_serviceList li:nth-child(8) .col-md-6:first-child{
    float: right;
}
.page_serviceList .col-md-6{
    padding:0;
}
.page_serviceList .con{
    padding: 40px 40px 0;
}
.page_serviceList .con h4{
    font-size:16px;
    color:#333;
    font-weight: bold;
}
.page_serviceList .con h4:after{
    display: block;
    content:'';
    width: 22px;
    height: 1px;
    background: #000;
    margin:10px 0 15px;
}
.page_serviceList .con p{
    font-size:14px;
    color:#666;
    line-height: 1.9;
    max-height: 78px;
    overflow: hidden;
}
.page_serviceList li:hover{
    background: var(--theme-color);
}
.page_serviceList li:hover h4{
    color:#fff;
}
.page_serviceList li:hover h4:after{
    background: #fff;
}
.page_serviceList li:hover p{
    color:#fff;
}


/* 单页联系我们 */


.page_contactindex{
    padding-top: 20px;
}
.page_contactindex h5{
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0;
    color: #50525f;
}
.page_contactindex p{
    margin-bottom: 10px;
    font-size:14px;
    color:#777;
    
}
.page_contactindex p i{
    font-size: 16px;
    margin-right: 6px;
}
.page_contactindex .code{
    max-width: 170px;
}
.page_contactindex .img{
    margin-right: 20px;
}
.page_contactindex .img img{
    border-radius: 5px;
}


/*新闻列表*/



.page_newsList {
}

.page_newsList li{
	border-bottom: 1px solid rgba(227,227,227,.61);
	transition: all .3s ease-out 0s;
	background: #fff;
	padding: 20px 0;
}

.page_newsList li .img img {
	width:300px;
	margin-bottom: 0;
	height:160px;
	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-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;
	padding: 10px 0 0 20px;
    flex-direction: column;
    justify-content: space-between;
}

.page_newsList li .con h4 {
	height: 20px;
	line-height: 20px;
	margin-bottom: 10px;
	color: #333;
	transition: all .3s ease-out 0s;
	font-size: 18px;
	font-weight: normal;
	overflow: hidden;
}

.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: inline-block;
    color: #333;
    margin-top: 8px;
}

.page_newsList li:hover .con h4{
    color:var(--theme-color);
}



/* page_newsList_1 */

.page_newsList_1{
    max-width:70%;
    margin:auto;
}
.page_newsList_1 .item{
    padding:30px 0;
}
.page_newsList_1 .item .item_con{
    flex:1;
    padding-right: 50px;
    border-bottom: 1px solid #eee;
}
.page_newsList_1 .item .item_con .tit_time{
    height: 40px;
    align-items: center;
}
.page_newsList_1 .item .item_con .tit_time h4{
    font-size:14px;
    color:#333;
    font-weight: bold;
    flex:1;
    line-height: 40px;
    position: relative;
}
.page_newsList_1 .item .item_con .tit_time h4:after{
    content:'';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.page_newsList_1 .item .item_con .tit_time span{
    font-size:14px;
    color:#999;
}

.page_newsList_1 .item .item_con p{
    font-size:14px;
    color:#666;
    margin-top: 10px;
}

.page_newsList_1 .item .item_img img{
    width: 300px;
    height:160px;
    object-fit: cover;
}
.page_newsList_1 .item:hover{
    background:#eee;
    padding:30px;
}
.page_newsList_1 .item:hover .item_con .tit_time h4{
    color:var(--theme-color);
}





/* 新闻详情 */


/* 产品详情页 */



.page_picshow {
	margin-bottom: 50px;
	background: #fff;
}

.page_picdetails {
}

.page_picdetails .img {
	max-height: 350px;
	overflow: hidden;
}

.page_picdetails .img img {
	width: 100%;
}

.page_picdetails .info {
    padding-left: 30px;
}

.page_picdetails .info h1 {
	font-size: 24px;
	margin: 10px 0 15px;
	color: #000;
	line-height: 1.3;
	border-bottom: 1px solid #eee;
	padding: 0 0 14px;
	font-weight: bold;
}

.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;
}

.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;
	font-size:16px;
	line-height: 1.8;
	color:#112038;
}
.page_picdetails .con p{
    margin-top: 10px;
}
.page_picdetails .con .tags {
	font-size: 14px;
	margin-bottom: 15px;
}
.page_picdetails .con img{
    display: inline-block;
}

.page_picdetails .con .tags a {
	color: #eee;
	background: #001e57;
	display: inline-block;
	padding: 2px 10px;
	margin-right: 3px;
	font-size:12px;
}
.page_picdetails .con .tags a:hover{
    background: var(--theme-color);
    color:#fff;
}

.page_picdetails .con .ptit {
	font-size: 16px;
	background: #f9f6f6;
	padding: 6px 13px;
	position: relative;
	margin-bottom: 30px;
	font-weight: bold;
}

.page_picdetails .con .ptit::before {
	content: '';
	display: block;
	width: 3px;
	height: 18px;
	background: #d7a365;
	position: absolute;
	left: 0;
	top: 10px;
}



/* 案例列表 */

.page_caseList li{
    margin-bottom:20px;
}
.page_caseList li a{
    display: block;
    background: #fff;
    overflow: hidden;
    position: relative;
}
.page_caseList li a:hover{
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.page_caseList .img{
    position: relative;
    height: 260px;
    overflow: hidden;
}
.page_caseList .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_caseList .img i{
    display: block;
    width: 100%;
    height:100%;
    left: 0;
    position: absolute;
    top:-100%;
    background:rgba(0, 0, 0,.3);
    font-size: 36px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .3s;
}
.page_caseList li:hover .img i{
    top: 0;
}
.page_caseList li .con{
    padding:20px;
    background: #f6f6f6;
}
.text-overflow-line1 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.text-overflow-line2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.text-overflow-line3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.text-overflow-line1,.text-overflow-line2, .text-overflow-line3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.page_caseList li .con h4{
    font-size:14px;
    font-weight: bold;
    color:#333;
    overflow: hidden;
}
.page_caseList li .con p{
    font-size:14px;
    color:#777;
    max-height: 73px;
    overflow: hidden;
    margin-top: 10px;
}
.page_caseList li .con span{
    display: block;
    color:#333;
    display: inline-block;
    font-size:14px;
    transition:all .3s;
    border-bottom: 1px solid #999;
    margin-top: 15px;
}

.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 .img {
	max-height: 200px;
	overflow: hidden;
}

.page_hotpic li h4 {
	font-weight: normal;
	text-align: center;
	font-size: 14px;
	padding: 10px 0 5px;
}



/*翻页*/

.return_page {
    border: 2px solid var(--theme-color);
	padding: 15px 20px;
	line-height: 30px;
	color: var(--theme-color);
	position: relative;
}

.return_page p {
	margin-bottom: 0;
	text-indent: 0;
	line-height: 2;
}
.return_page p a {
	color: var(--theme-color);
	font-weight: bold;
}

.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%);
	font-size:13px;
}



/* 页码 */



.pagination {
	text-align: center;
	display: block;
}

.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:#333;
}

.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;
}

.jjfa_panel_tit .tit{
    font-size:30px;
    text-align: center;
    color:#333;
}
.jjfa_panel_tit .tit:after{
    content:'';
    width: 40px;
    height: 1px;
    background: #333;
    display: block;
    margin:10px auto 0;
}
.page_jjfa_panel1 .list{
    display: flex;
    flex-wrap: wrap;
    margin:50px -1px 80px;
}
.page_jjfa_panel1 .list .item{
    width: 25%;
    padding:1px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.page_jjfa_panel1 .list .item .item_tit{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size:18px;
    background: rgba(0,0,0,.4);
}
.page_jjfa_panel1 .list .item .item_img img{
    transition:all .5s;
}
.page_jjfa_panel1 .list .item:hover .item_img img{
    transform: scale(1.05);
}

.page_jjfa_panel2 .tab{
    display: flex;
    margin:50px 0 0;
}
.page_jjfa_panel2 .tab .item{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.page_jjfa_panel2 .tab .item .ico{
    position: relative;
    width: 80px;
    height: 80px;
}
.page_jjfa_panel2 .tab .item .ico img{
    position: absolute;
    left: 0;
    top: 0;
}
.page_jjfa_panel2 .tab .item .ico .ico2{
    display: none;
}
.page_jjfa_panel2 .tab .item.cur .ico .ico1{
    display: none;
}
.page_jjfa_panel2 .tab .item.cur .ico .ico2{
    display: block;
}
.page_jjfa_panel2 .tab .item .tit{
    font-size:14px;
}
.page_jjfa_panel2 .tab .item.cur .tit{
    color:#063e8a;
}



.page_jjfa_panel2 .list {
    margin:30px 0 80px;
}

.page_jjfa_panel2 .list .item{
    display: none;
}
.page_jjfa_panel2 .list .item:first-child{
    display: block;
}
.page_jjfa_panel2 .list .item{
    position: relative;
}
.page_jjfa_panel2 .list .item .item_con{
    position: absolute;
    left: 0;
    bottom:5px;
    background: rgba(0,0,0,.5);
    width: 100%;
    padding:20px 40px;
    align-items: center;
}
.page_jjfa_panel2 .list .item .item_con .con1{
    flex:1;
}
.page_jjfa_panel2 .list .item .item_con .more .more_style1{
    margin-top:0;
}
.page_jjfa_panel2 .list .item .item_con .tit{
    font-size:18px;
    color:#fff;
}
.page_jjfa_panel2 .list .item .item_con .desc{
    font-size:14px;
    color:#ccc;
}

.page_jjfa_panel3 .list{
    display: flex;
    margin:50px -0.5px 0;
}
.page_jjfa_panel3 .list .item{
    padding:0 0.5px;
    position: relative;
    cursor: pointer;
}
.page_jjfa_panel3 .list .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page_jjfa_panel3 .list .item .item_con .tit{
    font-size:18px;
    color:#fff;
}
.page_jjfa_panel3 .list .item .item_con .more{
    color:#fff;
    font-size:14px;
    width: 100px;
    border:1px solid #fff;
    border-left: 0;
    border-right: 0;
    text-align: center;
    height: 30px;
    line-height: 28px;
    transition:all .3s;
    opacity: 0;
    
}
.page_jjfa_panel3 .list .item:hover .item_con .more{
    margin-top: 100px;
    opacity: 1;
}



















