/* langue */
.language_box {
    position: relative;
}
.language_box img {width: 30px; height: 30px; fill: red; stroke: blue;}
.header_language {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding-top: 56px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}

.header_language:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #F0F5F9;
    opacity: 0;
    border-radius: 60px;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    transition: all .6s ease;
    position: relative;
    z-index: 1000000000;
}

.language_current img:nth-child(2) {
    display: none;
}

.language_content {
    position: relative;
    z-index: 2;
    padding: 0 0 10px 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.language_content .language_item_box {
    padding-bottom: 2px;
}

.language_content a {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: Arial;
    text-transform: uppercase;
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.language_content a:hover {
    color: var(--main-color);
}

.language_box:hover .language_current {
    background: var(--main-color);
}

.language_box:hover .header_language {
    pointer-events: auto;
}

.language_box:hover .language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.language_box:hover .header_language:after {
    height: 100%;
    opacity: 1;
}
/* index */
.page_banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    z-index: 1;
	}
	.page_banner .page_ban {
	    position: absolute;
	    left: 0;
	    top: 0;
	    width: 100%;
	    height: 100%;
	    z-index: 1;
	}

	.page_banner .page_ban img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}

	/* Banner轮播图样式 */
	.banner-carousel {
	    width: 100%;
	    height: 100%;
	    position: relative;
	    z-index: 1;
	}

	.banner-carousel .banner-item {
	    width: 100%;
	    height: 100%;
	}

	.banner-carousel .banner-item img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}

	/* 自定义轮播控制按钮样式 */
	.banner-carousel .owl-nav {
	    position: absolute;
	    top: 50%;
	    width: 100%;
	    transform: translateY(-50%);
	    pointer-events: none;
	    z-index: 100;
	}

	.banner-carousel .owl-nav button {
	    position: absolute;
	    width: 50px;
	    height: 50px;
	    background: rgba(0, 0, 0, 0.5) !important;
	    color: #fff !important;
	    border: none !important;
	    outline: none !important;
	    border-radius: 50%;
	    font-size: 28px;
	    line-height: 50px;
	    text-align: center;
	    pointer-events: auto;
	    transition: all 0.3s ease;
	    cursor: pointer;
	    box-shadow: none !important;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}

	.banner-carousel .owl-nav button span {
	    display: inline-block;
	    line-height: 1;
	}

	.banner-carousel .owl-nav button:hover {
	    background: rgba(235, 99, 42, 0.9) !important;
	}

	.banner-carousel .owl-nav button:focus {
	    outline: none !important;
	    border: none !important;
	}

	.banner-carousel .owl-nav .owl-prev {
	    left: 20px;
	}

	.banner-carousel .owl-nav .owl-next {
	    right: 20px;
	}

	/* 自定义轮播指示点样式 */
	.banner-carousel .owl-dots {
	    position: absolute;
	    bottom: 20px;
	    width: 100%;
	    text-align: center;
	    z-index: 100;
	}

	.banner-carousel .owl-dots .owl-dot {
	    display: inline-block;
	    width: 12px;
	    height: 12px;
	    margin: 0 6px;
	    background: rgba(255, 255, 255, 0.5);
	    border-radius: 50%;
	    transition: all 0.3s ease;
	}

	.banner-carousel .owl-dots .owl-dot.active,
	.banner-carousel .owl-dots .owl-dot:hover {
	    background: #eb632a;
	    width: 30px;
	    border-radius: 6px;
	}

	/* Banner文字层 */
	.page_banner > div:not(.page_ban) {
	    position: relative;
	    z-index: 10;
	    pointer-events: none;
	}

	.page_banner .banner-top {
	    pointer-events: none;
	}
	
	.page_mask {
	    width: 100%;
	    height: 100%;
	    background: rgba(0, 0, 0, 0.30);
	}
	
	.page_mask .my-container {
	    height: 100%;
	}
	
	.page_mask .text {
	    position: absolute;
	    left: 50%;
	    top: 50%;
	    transform: translate(-50%, -50%);
	    max-width: 90%;
	    text-align: center;
	    width: max-content;
	}
	
	.page_mask .text .t {
	    color: var(--white-color);
	    /* font-size: 24px; */
	    font-style: normal;
	    font-weight: 400;
	    line-height: 1.5;
	}
	
	.page_mask .text .des {
	    margin-top: 10px;
	    color: var(--white-color);
	    font-weight: 700;
	    line-height: 1.5;
	}
	/* get in touch */
	
	.rd-navbar-modern-contacts li{
		border-bottom: 1px solid #d7d7d7;
		line-height: 38px;
	}
	
	.box-project {
	    display: flex;
	    align-items: center;
	    max-width: 270px;
	    margin-left: auto;
	    margin-right: auto;
	    min-height: 100%;
	    text-align: center;
	    padding: 30px 15px;
	    border: 2px solid #252525;
	}
	.box-project-title > span {
	    color: #0068b7;
	}
	.mg-bottom-38{margin-bottom: 38px;}
	
		/* 首页解决方案样式 */
	.team-nikki {
		max-width: 270px;
		margin-left: auto;
		margin-right: auto;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.17);
		overflow: hidden;
		margin-bottom: 5px;
	}
	
	.team-nikki-figure {
		display: block;
		overflow: hidden;
	}
	
	.team-nikki-figure img {
		width: 100%;
		transition: all .3s ease;
	}
	
	.team-nikki-caption {
		position: relative;
		padding: 18px 10px 18px;
		background: #ffffff;
		z-index: 1;
		transition: all .3s ease-in-out;
		height: 80px;
	}
	
	.team-nikki-name {
		position: relative;
		font-weight: 400;
	}
	
	.team-nikki-status {
		font-size: 16px;
		line-height: 1.2;
		font-weight: 500;
		text-transform: uppercase;
		font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
		color: #0068b7;
		transition: all .3s ease-in-out;
	}
	
	.team-nikki-arrow {
		position: absolute;
		text-align: center;
		top: -10px;
		left: 50%;
		width: 43px;
		height: 43px;
		border-radius: 50%;
		color: #eb632a;
		background: #ffffff;
		transform: translate3d(-50%, 0, 0);
		transition: all .3s ease-in-out;
		z-index: -1;
	}
	
	.team-nikki-arrow::before {
		display: inline-block;
		content: '\f106';
		font-size: 18px;
		line-height: 27px;
		font-family: "FontAwesome";
		transform: none;
		transition: transform .3s ease;
	}
	
	@media (min-width: 992px) {
		.desktop .team-nikki-figure img {
			transform: scale(1.1);
			will-change: transform;
		}
		.desktop .team-nikki:hover .team-nikki-figure img {
			transform: none;
		}
		.desktop .team-nikki:hover .team-nikki-caption {
			background: #0068b7;
		}
		.desktop .team-nikki:hover .team-nikki-name,
		.desktop .team-nikki:hover .team-nikki-status {
			color: #ffffff;
		}
		.desktop .team-nikki:hover .team-nikki-arrow {
			background: #0068b7;
			color: #ffffff;
		}
		.desktop .team-nikki:hover .team-nikki-arrow::before {
			transform: rotate(180deg);
		}
		.desktop .team-nikki:hover .team-nikki-name a:focus, .desktop .team-nikki:hover .team-nikki-name a:hover {
			color: rgba(255, 255, 255, 0.7);
		}
	}
	
	* + .team-nikki-status {
		margin-top: 2px;
	}
	 .owl-team-2 .owl-dots {
	 	position: relative;
	 	bottom: 0;
	 	margin-top: 30px;
	 }
	 .index-height-345{height: 345px;}
	 .footer-link{padding-top:10px ;}
	 .footer-link li{
		 border-bottom: 1px solid rgba(255, 255, 255, 0.3);
		  line-height: 42px;
	 }
	  .footer-link li a{ color: #e7e7e7; margin-left: 10px;}
	  .banner-font{
		font-size: 3.6rem;
		line-height: 3.5rem;
		margin-bottom: 1.3rem;
		text-align: left;
		color: #fff;
	  }
	  .banner-font2{
		font-size: 1.75rem;
		line-height: 3.5rem;
		text-align: left;
		color: #fff;  
	  }
	  .banner-top{padding-top: 150px;}
	  .mo_show {
	      display: none ;
	  }
	  @media (max-width: 767px){
	  .mo_show {
	      display: block !important;
				}
	  .pc_show {
		 display: none ;
			}
		.banner-font{font-size: 2rem; line-height: 2.5rem;}	
		.banner-font2{font-size: 1.2rem; line-height: 1.5rem;}
		.mo-none{display: none;}
	  }
	 /* 产品中心 */
	 .breadcrumbs-custom__title{color: #fff; font-size: 52px;line-height: 1.22917;}
	 @media (max-width: 767.98px) {
	 	.breadcrumbs-custom__title {
	 		font-size: 26px;
			 
	 	}
	 }
	 * + .breadcrumbs-custom__path {
	 	margin-top: 14px;
	 }
	.breadcrumbs-custom a {
		display: inline;
		vertical-align: middle;
	}
	
	.breadcrumbs-custom a, .breadcrumbs-custom a:active, .breadcrumbs-custom a:focus {
		color: #eb632a;
	}
	
	.breadcrumbs-custom li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		padding-right: 5px;
		font-size: 14px;
		line-height: 1.7;
	}
	
	 
	
	.breadcrumbs-custom li:last-child {
		padding-right: 0;
	}
	
	.breadcrumbs-custom li:last-child:after {
		display: none;
	}
	
	.breadcrumbs-custom a:hover,
	.breadcrumbs-custom li.active {
		color: #ffffff;
	}
	
	/* 产品列表 */
 .product-list-botton{
	 display: flex;
	 flex-direction:row;
	 justify-content: space-around ;
	 margin-top: 12px;
	 }
	.product-list-botton p{
		border: 1px solid #d9d9d9;
		padding: 5px 5px;
		width: 111px;
	}
	.product-list-botton p a{color: #252525; padding-left: 3px;}
	/* 产品详情 */
	.product-single{text-align: left; margin-top: 30px; }
	.product-single p{background-color: #eb632a; color:#fff; padding: 8px 1px;  max-width: 200px; text-align: center; margin: 15px 0;}
	 .table table tr td:first-child {
	    width: 220px;
	    text-align: center;
		color: #0068b7;
	}
   .table table tr td {
	    padding: 16px 24px;
	    border-radius: 4px;
	    font-style: normal;
	    font-weight: 400;
	    line-height: 28px;
	}
	/* 解决方案详情 */
	.heading-8 {
	    font-size: 13px;
	    font-weight: 700;
	    letter-spacing: .1em;
	    color: #151515;
	    text-transform: uppercase;
		text-align: left;
	}
	.solution-mgb{margin-bottom: 16px;}
	/* 样本下载 */
	.service-downloads-list{
		border: 1px solid #fafafa;
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
		width: 23%;
		margin : 10px 0;
	}
	.service-downloads{ display: flex; justify-content: space-between; flex-wrap: wrap; }
	.product__price{color: #999;}
	/* 视频播放 */
	.service-downloads-video{
		width: 31%;
		margin : 10px 0;
		
	}
	.single-blog-post {
	    position: relative;
	    z-index: 1;
	}
	.single-blog-post .blog-thumb {
	    position: relative;
	    z-index: 1;
	}
	.video-play-btn.style2 {
	    width: 58px;
	    height: 58px;
	    line-height: 58px;
	    font-size: 18px;
	}
	.video-play-btn {
	    position: absolute;
	    width: 96px;
	    height: 96px;
	    -webkit-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
	    top: 50%;
	    left: 50%;
	    z-index: 100;
	    background-color: rgba(0, 0, 0, 0.7);
	    border-radius: 50%;
	    text-align: center;
	    line-height: 96px;
	    color: #ffffff;
	    font-size: 30px;
	}
	.fa {
	    display: inline-block;
	    font: normal normal normal 14px/1 FontAwesome;
	    font-size: 2.625rem;
	    text-rendering: auto;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	}
	.fa-play:before {
	    content: "\f04b";
	}
	.video-play-btn:hover, .video-play-btn:focus {
	    color: #ffffff;
	    font-size: 30px;
	    background-color: #eb632a;
	    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
	}
	.post-title{position: absolute;  z-index: 100; text-align: center; bottom: 0; left: 0; 
	width: 100%; 
	background-color: rgba(0, 0, 0, 0.6); 
	color: #fff;
	line-height: 30px;
	font-weight: 200;
	 }
	.post-title a:hover{color: #eb632a;}
	/* 新闻中心 */
	.news-list{display: flex;  justify-content:space-between; flex-wrap: wrap; }
	.news-nr{
		width:24%;
		margin : 10px 0;
		
	}
	.post-modern__text{
		color: #999;
		 display: -webkit-box;
		  -webkit-line-clamp: 2; /* 限制在一个块元素显示的文本的行数 */
		  -webkit-box-orient: vertical; /* 子元素垂直排列 */
		  overflow: hidden; /* 隐藏超出的内容 */
		  text-overflow: ellipsis; /* 溢出用省略号显示 */
		  white-space: normal; /* 正常的空白符处理 */
		}
		
/* 人才招聘 */
.talent-list{
	display: flex; 
	justify-content:space-between; 
	width: 100%;
	position: relative;
	}
.talent-list-nr{border: 1px solid #efefef; padding: 5px;}
/* .talent-list-nr::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
} */
 .talent__title {
     position: relative;
     padding-left: 25px;
     min-height: 30px;
     font-size: 18px;
     line-height: 1.44444;
     font-weight: 500;
     color: #151515;
     display: flex;
     align-items: center;
 }
  .talent__title a{color: #151515;}
 .talent__title::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background: #eb632a;
     transition: 0.33s cubic-bezier(0.22, 0.61, 0.36, 1);
     will-change: transform;
 }
 .join_item2_item{color: #666;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    padding: 0 8px;
    position: relative;}
	.join_item2_item::after {
	    content: '';
	    position: absolute;
	    height: 14px;
	    width: 1px;
	    background-color: rgba(0, 0, 0, 0.1);
	    right: 0;
	    top: 50%;
	    transform: translateY(-50%);
	}
	 
	.join_item2 {
		display: flex; justify-content: space-between;  
	    padding-bottom: 12px;
	    flex-flow: row wrap;
	    align-items: stretch;
		margin-top: 12px;
	}
	.talent-mg{margin-top: 0 !important; text-align: left; width: 100%;}
	.talent-mg li{width: 100%;}
	.talent-fla-right{float: right;}
	
	/* 团队 */
	.card-creative__header img {border-radius: 50%;}
	/* 持续发展 */
	 .bg-vide {
	     position: relative;
	     z-index: 0;
	 }
	 .bg-vide::before {
	     z-index: 1;
	 }
	 .bg-vide > div:not(.container) {
	     pointer-events: none;
	 }
	 .bg-vide > * {
	     position: relative;
	     z-index: 2;
	 }
	 /*
	 *
	 * Video
	 */
	 .video-classic {
	 	position: relative;
	 	max-width: 570px;
	 	margin-left: auto;
	 	margin-right: auto;
	 }
	 
	 .video-classic .video-classic-play {
	 	position: absolute;
	 	top: 50%;
	 	left: 50%;
	 	transform: translate3d(-50%, -50%, 0);
	 }
	 
	 .video-classic-play {
	 	position: relative;
	 	display: inline-flex;
	 	align-items: center;
	 	justify-content: center;
	 	width: 60px;
	 	height: 60px;
	 	padding: 0;
	 	border: none;
	 	background: transparent;
	 	border-radius: 50%;
	 	transition: all .3s ease;
	 	cursor: pointer;
	 	z-index: 1;
	 }
	 
	 .video-classic-play > span {
	 	display: inline-block;
	 	width: 0;
	 	height: 0;
	 	margin-left: 2px;
	 	border-style: solid;
	 	border-width: 6.5px 0 6.5px 12px;
	 	border-color: transparent transparent transparent #151515;
	 	transition: all .3s ease;
	 	z-index: 0;
	 }
	 
	 .video-classic-play::before, .video-classic-play::after {
	 	position: absolute;
	 	content: '';
	 	top: 0;
	 	right: 0;
	 	bottom: 0;
	 	left: 0;
	 	border-radius: 50%;
	 	will-change: transform;
	 	transition: inherit;
	 	z-index: -1;
	 }
	 
	 .video-classic-play::before {
	 	background: rgba(255, 255, 255, 0.61);
	 }
	 
	 .video-classic-play::after {
	 	background: #eb632a;
	 	transform: scale(0.7);
	 	opacity: 0;
	 }
	 
	 .video-classic-play:hover > span {
	 	border-left-color: #ffffff;
	 }
	 
	 .video-classic-play:hover::before {
	 	transform: scale(1.2);
	 }
	 
	 .video-classic-play:hover::after {
	 	opacity: 1;
	 	transform: none;
	 }
	 
	 .video-classic-play-2 {
	 	width: 100px;
	 	height: 100px;
	 }
	 
	 .video-classic-play-2::before {
	 	background: rgba(21, 21, 21, 0.61);
	 }
	 
	 .video-classic-play-2 > span {
	 	border-left-color: #ffffff;
	 	border-width: 11.5px 0 11.5px 20px;
	 }
	 
	 .video-modern * + .video-classic-play {
	 	margin-top: 24px;
	 }
	 
	 .video-modern-subtitle {
	 	font-weight: 300;
	 	color: #eb632a;
	 }
	 
	 .video-modern-text {
	 	font-size: 16px;
	 	line-height: 1.5;
	 	letter-spacing: 0;
	 	font-weight: 500;
	 }
	 
	 * + .video-modern-title {
	 	margin-top: 4px;
	 }
	 
	 * + .video-modern-text {
	 	margin-top: 10px;
	 }
	 
	 .modal-video {
	 	align-items: center;
	 }
	 
	 .modal-video.show {
	 	display: flex !important;
	 }
	 
	 .modal-video .modal-dialog {
	 	width: 100%;
	 }
	 
	 .modal-video .modal-content {
	 	display: block;
	 	font-size: 0;
	 	line-height: 0;
	 	border: none;
	 	border-radius: 0;
	 	background: transparent;
	 }
	 
	 .modal-video .modal-header {
	 	display: block;
	 	padding: 0;
	 	border: none;
	 }
	 
	 .modal-video .modal-body {
	 	padding: 0;
	 }
	 
	 .modal-video video {
	 	width: 100%;
	 }
	 
	 .modal-video .close {
	 	position: relative;
	 	color: #ffffff;
	 	font-size: 30px;
	 	font-weight: 400;
	 	text-shadow: none;
	 	cursor: pointer;
	 	z-index: 1;
	 }
	 
	 @media (min-width: 576px) {
	 	.modal-video .modal-dialog {
	 		max-width: 80%;
	 	}
	 }
	 
	 @media (min-width: 1200px) {
	 	.modal-video .modal-dialog {
	 		max-width: 60%;
	 	}
	 }
	 .close {
	     float: right;
	     font-size: 1.5rem;
	     font-weight: 700;
	     line-height: 1;
	     color: #000000;
	     text-shadow: 0 1px 0 #ffffff;
	     opacity: .5;
	 }
	 .modal-header .close {
	     padding: 15px;
	     margin: -15px -15px -15px auto;
	 }
	 button.close {
	     padding: 0;
	     background: transparent;
	     border: 0;
	     -webkit-appearance: none;
	 }
	 /*