﻿@charset "utf-8";

/* CSS Document */

@font-face {
	font-family: 'Lato-Regular'; /*设置的字体名称*/
	src: url('../fonts/Lato-Regular.ttf') format('ttf'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.otf') format('otf'); /*引入的字体路径和格式*/
	font-weight: normal;
	font-style: normal;
}
body {
    font-family:  Arial, Helvetica, sans-serif;
    /*text-transform: capitalize;*/
    background-color: #f3f2f8;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
	margin: 0;
	padding: 0; 
}
a,
a:hover,
a:visited{
	color: inherit;
	text-decoration: none!important;
}
ul li{
	list-style: none;
}

/*****header*******/
.header{
	width: 100%;
	height: 110px;
    background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}
.headerTop{
	height: 40px;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.headerTop::before,
.headerTop::after{
	display: none;
}
.headerCart{
	width: 120px;
	height: 30px;
	padding: 0 15px;
	background-color: #1265a2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.headerCart span{
	font-size: 16px;
	color: #fff;
}
.headerDownload{
	margin-left: 20px;
	width: 140px;
	height: 30px;
	background-color: #1265a2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerDownload span{
	margin-left: 10px;
	font-size: 16px;
	color: #fff;
}
.headerSearch{
	margin: 0 20px;
	width: 240px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.headerSearch input{
	width: 200px;
	height: 30px;
	padding: 0 10px;
	background-color: #c1d6b9;
	font-size: 18px;
	color: #fff;
}
.headerSearch input::placeholder{
	color: #fff;
}
.headerSearch button{
	width: 240px;
	height: 30px;
	border: none;
	outline: none;
	background-color: #1265a2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerLang_box{
	width: 140px;
	height: 30px;
	padding: 0 6px;
	background-color: #2460a6;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}
.headerLang_box::after{
	/*margin-left: 15px;*/
	content: '';
	display: block;
    width: 12px;
	height: 6px;
	background: url(../images/down2.png) center/cover no-repeat;
	position: absolute;
	top: calc(50% - 3px);
	right: 8px;
}
.headerLang_box span{
	margin-left: 10px;
	font-size: 16px;
	color: #fff;
}
.headerLang_list{
	width: 140px;
	padding: 0 6px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: absolute;
	top: 40px;
	right: 0;
	z-index: 2;
	display: none;
}
.headerLang_list li{
	padding: 6px 0;
	cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerLang_list li:hover{
	background-color: #f5f5f5;
}
.headerLang_list li:nth-child(n+2){
	border-top: 1px solid #e6e6e6;
}
.headerLang_list li span{
	margin-left: 5px;
	font-size: 14px;
	color: #000;	
}

.headerCon{
	height: 70px;
	background-color: #fff;
}
.headerBox{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.headerBox::before,
.headerBox::after{
	display: none;
}
.headerLogo{
	display: block;
	-webkit-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	-o-transform: translateY(-30%);
	transform: translateY(-30%);
}
.headerLogo p{
	margin-top: 10px;
	font-size: 14px;
	color: #666;
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.headerNav{
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.headerNav>li{
	padding: 0 25px;
	position: relative;
	/*margin-left: 2vw;*/
}
.headerNav>li:nth-child(n+2){
	border-left: 1px solid #3cbc6a;
}
.headerNav>li>a{
	position: relative;
	font-size: 16px;
	color: #1a1a1a;
	font-weight: bold;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerNav>li>a::after{
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #1265a2;
	position: absolute;
	left: 0;
	bottom: -20px;
	z-index: 2;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerNav>li:last-child{
	padding-right: 0;
}
.headerNav>li.on>a,
.headerNav>li:hover>a{
	color: #1265a2;
}
.headerNav>li.on>a::after,
.headerNav>li:hover>a::after{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.headerNav>li>a.cart{
	width: 120px;
	height: 40px;
	border-radius: 40px;
	background-color: #1265a2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNav>li>a.cart span{
	margin-left: 10px;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
	text-transform: capitalize;
}

.headerDown{
	padding: 60px 40px 40px;
	background-color: #fff;
	/*width: 200px;*/
	position: absolute;
	top: 99%;
	left: 0;
	display: none;
	
}
.headerDown>ul{
	overflow-y: auto;
	max-height: 560px;
}
.headerDown>ul>li{
	font-size: 14px;
	color: #4c4c4c;
	line-height: 40px;
	font-weight: bold;
	padding: 0 20px;
    border-left: 4px solid #1265a2;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerDown>ul>li:hover{
	background-color: #eaeaea;
}
.headerNav>li:hover .headerDown{
	display: block;
}
/*****header*******/

/***footer***/
.footer{
	/*margin-top: -100px;*/
	padding: 40px 0 40px;
	/* background: #1265a2 url(../images/footerBg2.png) right bottom no-repeat; */
	background: #1265a2 url(../images/footerBg2.png);
	/* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding-bottom:20px; 
}
/*.footer::before{
	content: '';
	display: block;
	width: 200vw;
	height: 100vh;
	border-radius: 50%;
    background-color: #f3f2f8;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, calc(-100% + 80px));
	-ms-transform: translate(-50%, calc(-100% + 80px));
	-o-transform: translate(-50%, calc(-100% + 80px));
	w: translate(-50%, calc(-100% + 80px));
}*/
/*.footer::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/footerBg.png) center/cover no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}*/
.footer>.container{
	padding: 0 4%!important;
}
.footerList{
	margin-top: 50px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footerList h6{
	font-size: 16px;
	color: #fff;
	/*font-weight: bold;*/
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footerList p,
.footerList a{
	margin-top: 15px;
	font-size: 14px;
	color: #fff;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.footerList p:hover,
.footerList a:hover{
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
}
.footerLink{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.footerLink a{
	margin-right: 20px;
	border-radius: 50%;
	box-shadow: 0 0 4px 2px rgba(255,255,255,0.4);
}
.footerLink a:last-child{
	margin-right: 0;
}
.footerLink a:hover{
	-webkit-transform: translate(0, -10px);
	-ms-transform: translate(0, -10px);
	-o-transform: translate(0, -10px);
	transform: translate(0, -10px);
}
.footerBtn{
	margin: 10px 0 0 0!important;
	width: 260px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footerCart{
	width: 120px;
	height: 40px;
	border-radius: 40px;
	background-color: #fff;
	overflow: hidden;
	box-shadow: 0 0 4px 2px rgba(255,255,255,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footerCart:hover{
	-webkit-transform: translate(0, -10px)!important;
	-ms-transform: translate(0, -10px)!important;
	-o-transform: translate(0, -10px)!important;
	transform: translate(0, -10px)!important;
}
.footerCart span{
	margin-left: 10px;
	font-size: 16px;
	color: #1265a2;
}
.copy{
	/*margin-top: 30px;*/
	font-size: 14px;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
}
/***footer***/

/***floatForm***/
.floatForm{
	position: fixed;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	/* z-index: 9; */
}
.floatForm li{
	text-align: right;
	margin: 0 0 20px auto;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: relative;
	z-index: 0;
}
.floatForm li img{
	border-radius: 10px;
}
.floatForm li.phone{
	background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.floatForm li.phone span{
	display: block;
	width: 158px;
	padding-left: 15px;
	font-size: 16px;
	color: #333;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
}
.floatForm li.phone:hover{
	width: 210px;
}
.floatForm_con{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
}
.floatForm_bg{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	cursor: pointer;
}
.floatForm_box{
	width: 560px;
	padding: 30px;
	border-top: 6px solid #2460a6;
	background-color: #fff;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
	position: absolute;
	top: 50%;
	right: 130px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	visibility: hidden;
}
.floatForm_box.on{
	visibility: visible;
}
.floatForm_box .wid50{
	width: calc(50% - 10px);
}
.floatForm_box .wid100{
	width: 100%;
}
.floatForm_input{
	margin-bottom: 20px;
}
.floatForm_input p{
	font-size: 14px;
	color: #666;
	text-transform: capitalize;
}
.floatForm_input input{
	margin-top: 10px;
	padding: 0 10px;
	width: 100%;
	height: 40px;
	border-radius: 5px;
	border: 1px solid #acd491;
	font-size: 14px;
	color: #666;
}
.floatForm_input select {
	margin-top: 10px;
	padding: 0 10px;
	width: 100%;
	height: 40px;
	border-radius: 5px;
	border: 1px solid #acd491;
	font-size: 14px;
	color: #000;
	outline: none;
}
.floatForm_input textarea{
	margin-top: 10px;
	padding: 0 10px;
	width: 100%;
	height: 100px;
	border-radius: 5px;
	border: 1px solid #acd491;
	font-size: 14px;
	color: #000;
}
.floatForm_btn{
	text-align: right;
}
.floatForm_btn input{
	width: 120px;
	height: 46px;
	border-radius: 5px;
	background-color: #1265a2;
	font-size: 16px;
	color: #fff;
}
/***floatForm***/

/*****banner*******/
.banner{
	/*margin-top: 110px;*/
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 5;
}
.indBanner_box{
	height: 100vh;
	position: relative;
}
.indBanner_box video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.indBanner_box::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	position: absolute;
	top: 0;
	left: 0;
}
.indBanner_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}
.indBanner_txt h6,
.indBanner_txt p{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
	-webkit-transition: all 1s ease-in-out 0.6s;
	-moz-transition: all 1s ease-in-out 0.6s;
	-ms-transition: all 1s ease-in-out 0.6s;
	-o-transition: all 1s ease-in-out 0.6s;
	transition: all 1s ease-in-out 0.6s;
}
.indBanner_txt h6{
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}
.indBanner_txt p{
	margin-top: 40px;
	font-size: 18px;
	color: #fff;
	line-height: 2;
	letter-spacing: 1px;
	-webkit-transition-delay: 0.9s;
	-moz-transition-delay: 0.9s;
	-ms-transition-delay: 0.9s;
	-o-transition-delay: 0.9s;
	transition-delay: 0.9s;
}
.indBanner .swiper-slide-active .indBanner_txt h6,
.indBanner .swiper-slide-active .indBanner_txt p{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.swiper-pagination{
	bottom: 30px!important;
}

.banner .swiper-pagination{
	bottom: 160px!important;
}

.swiper-pagination .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	border-radius: 14px;
	margin: 0 6px!important;
	background-color: #fff;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet-active{
	width: 24px;
	background-color: #1265a2;
}

.detailBanner{
	margin-top: 110px;
}
/*****banner*******/

.comment_title{
    text-align: center;
    position: relative;
}
.comment_title h6{
    font-size: 36px;
    color: #1265a2;
    /*font-weight: bold;*/
}
.comment_title p{
    margin: 20px auto 0;
	max-width: 90%;
    font-size: 16px;
    color: #666;
    line-height: 2;
}
.comment_title.line{
	position: relative;
	z-index: 0;
}
.comment_title.line::before{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: -webkit-linear-gradient(to right,#eaf4e3 0,#1265a2 20%, #1265a2 80%,#eaf4e3 100%);
    background: -o-linear-gradient(to right,#eaf4e3 0,#1265a2 20%, #1265a2 80%,#eaf4e3 100%);
    background: -moz-linear-gradient(to right,#eaf4e3 0,#1265a2 20%, #1265a2 80%,#eaf4e3 100%);
    background: linear-gradient(to right,#eaf4e3 0,#1265a2 20%, #1265a2 80%,#eaf4e3 100%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
.comment_title.line h6{
	padding: 0 40px;
	display: inline-block;
	background-color: #fff;
	position: relative;
}
.comment_title.line h6::before,
.comment_title.line h6::after{
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #1265a2;
	/*background-color: #ffffff;*/
	position: absolute;
	top: calc(50% - 9px);
	left: 0;
}
.comment_title.line h6::after{
	left: auto;
	right: 0;
}

.publicMore{
	margin-top: 20px;
}
.publicMore a,
.publicMore span{
	display: inline-block;
	font-size: 16px;
	color: #0066b4;
	/*font-weight: bold;*/
	/*letter-spacing: 1px;*/
	position: relative;
}
.publicMore a::after,
.publicMore span::after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #0066b4;
	position: absolute;
	left: 0;
	bottom: -4px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.publicMore a:hover::after,
.publicMore span:hover::after{
	width: 120%;
}

.publicMore.white a,
.publicMore.white span{
	color: #fff;
}
.publicMore.white a::after,
.publicMore.white span::after{
	background-color: #fff;
}

.detailWarpper{
    background-color: #f3f2f8;
    position: relative;
}

/* index.html */
.indSec1{
	width: 100%;
	/*box-shadow: 0 6px 13px rgba(2,104,39,0.35);*/
	overflow: hidden;
	position:absolute;
	bottom: 0px;
	left: 0px;
	cursor: pointer;
	z-index: 1;
}
.indSec1::before{
	content: '';
	display: block;
	background:rgba(113,170,91,0.6) ;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-transform: translateY(101%);
	-ms-transform: translateY(101%);
	-o-transform: translateY(101%);
	transform: translateY(101%);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.indSec1:hover::before{
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.indSec1_list{
	height: 120px;
	padding-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.indSec1_list li{
	cursor: pointer;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec1.on .indSec1_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=1);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.indSec1_icon{
	margin: 0 auto;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 0;
}
.indSec1_icon::before{
	content: '';
	display: block;
	width: 77px;
	height: 77px;
	background: url(../images/indSec1_circle.png) center/77px 77px no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
    transform-origin: center center;
}
@keyframes rotating {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
		-ms-transform: translate(-50%, -50%) rotate(0deg); 	
		-moz-transform: translate(-50%, -50%) rotate(0deg); 	
		-webkit-transform: translate(-50%, -50%) rotate(0deg); 
		-o-transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
		-ms-transform: translate(-50%, -50%) rotate(360deg); 	
		-moz-transform: translate(-50%, -50%) rotate(360deg); 	
		-webkit-transform: translate(-50%, -50%) rotate(360deg); 
		-o-transform: translate(-50%, -50%) rotate(360deg);
	}
}
.indSec1_list li:hover .indSec1_icon::before{
	animation: rotating 1s infinite linear;
}
.indSec1_txt{
	margin-top: 10px;
}
.indSec1_txt p{
	font-size: 16px;
	color: #fff;
	text-align: center;
}

.indSec2{
	margin-top: 60px;
}
.indSec2_con{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
}
.indSec2_con::before,
.indSec2_con::after{
	display: none;
}
.indSec2_txt{
	width: 410px;
	padding: 4%;
	background-color: #1265a2;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}
.indSec2_txt h6{
	font-size: 32px;
	color: #fff;
	line-height: 1.3;
	letter-spacing: 1px;
}
.indSec2_txt p{
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
	line-height: 2;
	/*text-align: justify;*/
}
.indSec2_swiper{
	width: calc(100% - 440px);
	-webkit-transform: translateX(calc(100% + 30px));
	-ms-transform: translateX(calc(100% + 30px));
	-o-transform: translateX(calc(100% + 30px));
	transform: translateX(calc(100% + 30px));
}
.indSec2_box{
	position: relative;
}
.indSec2_box::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
}
.indSec2_title{
	position: absolute;
	left: 5%;
	bottom: 15%;
	z-index: 2;
}
.indSec2_title h6{
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
}
.indSec2.on .indSec2_txt,
.indSec2.on .indSec2_swiper{
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}

.indSec3{
	margin-top: 30px;
}
.indSec3_con{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	overflow: hidden;
}
.indSec3_con::before,
.indSec3_con::after{
	display: none;
}
.indSec3_left{
	width: calc(100% - 440px);
	background-color: #fff;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
}
.indSec3_leftTxt{
	position: absolute;
	left: 5%;
	bottom: 15%;
	z-index: 2;
}
.indSec3_leftTxt h6{
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
}
.indSec3_leftBox{
	position: relative;
}
.indSec3_leftBox::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
}
.indSec3_title{
	width: 100%;
	padding: 30px;
	font-size: 30px;
	color: #1265a2;
	font-weight: bold;
	letter-spacing: 1px;
}
.indSec3_right{
	width: 410px;
	background-color: #fff;
	position: relative;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}
.indSec3_rightTxt{
	padding: 30px;
}
.indSec3_rightTxt h6{
	font-size: 22px;
	color: #1a1a1a;
	font-weight: bold;
	letter-spacing: 1px;
}
.indSec3_rightTxt .line{
	margin: 15px 0 10px;
	width: 60px;
	height: 1px;
	background-color: #1265a2;
}
.indSec3_rightTxt p{
	font-size: 16px;
	color: #808080;
	line-height: 2;
}
.indSec3_btn{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 28px;
	right: 20px;
	z-index: 2;
}
.indSec3_btn>div{
	width: 36px;
	height: 36px;
	background-color: #cccccc;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.indSec3_btn>div.indSec3_prev{
	margin-right: 15px;
	background-color: #1265a2;
}
.indSec3.on .indSec3_left,
.indSec3.on .indSec3_right{
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}

.indSec4{
	margin-top: 30px;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}
.indSec4.on{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.indSec4 .comment_title h6,
.indSec4 .comment_title p{
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
	-webkit-transition: all 1s ease-in-out 0.3s;
	-moz-transition: all 1s ease-in-out 0.3s;
	-ms-transition: all 1s ease-in-out 0.3s;
	-o-transition: all 1s ease-in-out 0.3s;
	transition: all 1s ease-in-out 0.3s;
}
.indSec4.on .comment_title h6,
.indSec4.on .comment_title p{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}
.indSec4_box{
	padding: 50px 10% 40px;
	background-color: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.15);
}
.indSec4_list{
	margin-top: 80px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.indSec4_list li{
	width: 20%;
	position: relative;
	cursor: pointer;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec4.on .indSec4_list li{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.indSec4_icon{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;

    transform: rotate(0deg) translate(0, -70px) rotate(0deg);
    position: absolute;
    top: 30px;
    left: 30%;
    z-index: 2;
    transition: all 750ms cubic-bezier(0.7, 0, 0.3, 1);
}
@keyframes Orbit {
    from {
        transform: rotate(0deg) translate(0, -70px) rotate(0deg)
    }
    to {
        transform: rotate(360deg) translate(0, -70px) rotate(-360deg)
    }
}
.indSec4_icon.animated{
    animation: Orbit 2s cubic-bezier(0.7, 0, 0.3, 1) 1
}
.indSec4_list h6{
	margin: 0 auto;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 2px solid #1265a2;
	font-size: 22px;
	color: #1a1a1a;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}
.indSec4_list h6 span{
	margin-right: 5px;
	font-size: 30px;
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	-o-transform: translateY(5px);
	transform: translateY(5px);
}
.indSec4_list p{
	margin-top: 10px;
	font-size: 16px;
	color: #1a1a1a;
	/*font-weight: bold;*/
	text-align: center;
}

.indSec5{
	margin: 80px 0;
}
.indSec5_list{
	/*padding: 25px 0;*/
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
	/*overflow: hidden;*/
}
.indSec5_list li{
	width: calc(50% - 30px);
	background-color: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.15);
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
}
.indSec5_list li:nth-child(n+3){
	margin-top: 60px;
}
.indSec5_list li:nth-child(odd){
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.indSec5_list li:nth-child(even){
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
}
.indSec5.on .indSec5_list li{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: all 1.5s ease-in-out;
	-moz-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.indSec5_img{
	position: relative;
	/*border-bottom: 1px solid #e6e6e6;*/
}
.indSec5_txt{
	padding: 30px 10%;
}
.indSec5_txt h6{
	font-size: 30px;
	color: #1265a2;
	/*font-weight: bold;*/
	/*letter-spacing: 1px;*/
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 33px;
}
.indSec5_txt p{
	margin-top: 20px;
	font-size: 16px;
	color: #808080;
	line-height: 1.8;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    /*height: 112px;*/
}

.indSec5_round {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #2460a6;
	position: absolute;
}
.indSec5_round::before, 
.indSec5_round::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: center center;
	-ms-transform-origin: center center;
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-o-transform-origin: center center;
}
@keyframes scale {
	0% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	50% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		transform: scale(1.5);
	}
	80% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
		-ms-transform: scale(2);
		-o-transform: scale(2);
		transform: scale(2);
	}
	100% {
		opacity: 0;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		-webkit-opacity: 0;
		filter: alpha(opacity=0);
	}
}
@keyframes scale2 {
	0% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	33% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	66% {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
		transform: scale(3);
	}
	100% {
		opacity: 0;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		-webkit-opacity: 0;
		filter: alpha(opacity=0);
	}
}
.indSec5_round::before {
	background-color: rgba(36,96,166,0.2);
	animation: scale 2s infinite ease-in-out;
}
.indSec5_round::after {
	background-color: rgba(36,96,166,0.4);
	animation: scale2 2s infinite ease-in-out;
}
.indSec5_round:nth-child(3n)::before {
	animation: scale 2.3s infinite ease-in-out;
}
.indSec5_round:nth-child(3n)::after {
	animation: scale2 2.3s infinite ease-in-out;
}
.indSec5_round:nth-child(3n - 1)::before {
	animation: scale 2.6s infinite ease-in-out;
}
.indSec5_round:nth-child(3n - 1)::after {
	animation: scale2 2.6s infinite ease-in-out;
}
.indSec5_round:nth-child(3n - 2)::before {
	animation: scale 2.9s infinite ease-in-out;
}
.indSec5_round:nth-child(3n - 2)::after {
	animation: scale2 2.9s infinite ease-in-out;
}
.indSec5_round:nth-child(1){
	top: 34%;
    right: 38%;
}
.indSec5_round:nth-child(2) {
    right: 50.2%;
    top: 39%;
}
.indSec5_round:nth-child(3) {
    top: 45.5%;
    left: 47.5%;
}
.indSec5_round:nth-child(4) {
    top: 51.2%;
    left: 55.6%;
}
.indSec5_round:nth-child(5) {
    top: 51%;
    right: 24%;
}
.indSec5_round:nth-child(6) {
    top: 69.5%;
    right: 26.5%;
}
.indSec5_round:nth-child(7) {
    top: 80%;
    left: 37%;
}



.indSec5_round:nth-child(8) {
    top: 49%;
    left: 25%;
    
}
.indSec5_round:nth-child(9) {
    top: 47%;
    left: 28%;
   
}

.indSec5_list .indSec5_img .indSec5_round:nth-child(8) {
    top: 49%;
    left: 25%;
    display: none;
    
}
.indSec5_list .indSec5_img .indSec5_round:nth-child(9) {
    top: 47%;
    left: 28%;
    display: none;
   
}


.indSec5_round:nth-child(10) {
	top: 30%;
	right: 30%;
}
.indSec5_round:nth-child(11) {
	top: 40%;
	left: 56%;
}
.indSec5_round:nth-child(12) {
	top: 54%;
	left: 61%;
}
.indSec5_round:nth-child(13) {
	top: 56%;
	right: 33%;
}
.indSec5_round:nth-child(14) {
	display: none;
}
.indSec5_round:nth-child(15) {
	top: 48%;
	right: 22%;
}
.indSec5_round:nth-child(16) {
	top: 47.5%;
	right: 19.5%;
}
.indSec5_round:nth-child(17) {
	top: 59.5%;
	right: 26.5%;
}
.indSec5_round:nth-child(18) {
	display: none;
}
.indSec5_round:nth-child(19) {
	top: 64%;
	right: 27.5%;
}
.indSec5_round:nth-child(20) {
	top: 67%;
	right: 23.5%;
}
.indSec5_round:nth-child(21) {
	top: 59%;
	right: 28%;
}
.indSec5_round:nth-child(22) {
	right: 20%;
	bottom: 21%;
}
.indSec5_round:nth-child(23) {
	top: 42%;
	left: 24%;
}
.indSec5_round:nth-child(24) {
	top: 33%;
	left: 20%;
}
.indSec5_round:nth-child(25) {
	top: 52%;
	left: 25%;
}
.indSec5_round:nth-child(26) {
	bottom: 27%;
	left: 37%;
}
.indSec5_round:nth-child(27) {
	bottom: 15%;
	left: 34%;
}
.indSec5_round:nth-child(28) {
	bottom: 28%;
	left: 31%;
}

.indSec6{
	margin: 80px 0;
}
.indSec6_list{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.indSec6_list li{
	padding: 30px 30px 90px;
	width: calc(33.33% - 30px);
	background-color: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.15);
	position: relative;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec6.on .indSec6_list li{
    opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
}
.indSec6_list h6{
	font-size: 30px;
	color: #FFFFFF;
	line-height: 1.2;
}
.indSec6_box{
	margin-top: 4%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.indSec6_box p{
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
}
.indSec6_list li:nth-child(1) h6,
.indSec6_list li:nth-child(2) h6,
.indSec6_list li:nth-child(1) p,
.indSec6_list li:nth-child(2) p{
	color: #fff;
}
.indSec6_box img{
	width: 32%;
}
.indSec6_txt{
	width: 60%;
}
.indSec6_list .publicMore{
	position: absolute;
	left: 30px;
	bottom: 40px;
}

.indSec7{
	margin: 80px 0;
}
.indSec7_list{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.indSec7_list li{
	width: calc(33.33% - 30px);
	background-color: #fff;
	padding-bottom: 200px;
	box-shadow: 0 0 25px rgba(0,0,0,0.15);
	position: relative;
	z-index: 0;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
    -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
.indSec7.on .indSec7_list li{
    opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
}
.indSec7_list li::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.indSec7_title{
	padding: 10% 6%;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_title .line{
	width: 30px;
	height: 3px;
	background-color: #1265a2;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_title h6{
	margin-top: 6%;
	font-size: 24px;
	color: #0f0f0f;
	line-height: 1.6;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_list p{
	padding: 0 30px;
	font-size: 14px;
	color: #fff;
	line-height: 1.8;
	position: absolute;
	left: 0;
	bottom: 140px;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_img{
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -2;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_list .publicMore{
	position: absolute;
	left: 30px;
	bottom: 30px;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.indSec7_list li:hover .indSec7_title .line{
	background-color: #fff;
}
.indSec7_list li:hover .indSec7_title h6{
	color: #fff;
}
.indSec7_list li:hover .indSec7_img{
	height: 100%;
}
.indSec7_list li:hover::before,
.indSec7_list li:hover p,
.indSec7_list li:hover .publicMore{
	opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
/* index.html */

/* corparation.html */
.corparationWarper{
	padding: 80px 0;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.corparationRight{
	width: 320px;
	padding: 0 40px;
}
.corparationRight>li{
	width: 240px;
	height: 240px;
	background-color: #1265a2;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	margin-bottom: 30px;
}
.corparationRight>li:nth-child(2n){
	background-color: #2460a6;
}
.corparationRight>li a{
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.corparationRight>li p{
	font-size: 18px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: 1px;
}
.corparationRight>li img{
	max-width: 100%;
	margin-top: 20px;
}
.corparationRight>li img:nth-child(3){
	margin: 20px 0 0 auto;
}
.corparationLeft{
	padding: 0 50px;
	width: calc(100% - 320px);
	border-right: 1px solid #e6e6e6;
}
.corparationSec1{
	/*padding: 80px 0;*/
}
.corparationSec1_box{
	margin-top: 60px;
}
.corparationSec1_box img{
	float: left;
	width: 46%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	margin: 0 4% 0 0;
}
.corparationSec1_box p{
	font-size: 16px;
	color: #666;
	line-height: 2;
	/*text-align: justify;*/
	text-transform: none;
}
.corparationSec1_box p:nth-child(n+3){
	margin-top: 10px;
}
.corparationSec2,
.corparationSec2_box{
	margin-top: 60px;
}
.corparationSec3{
	margin-top: 60px;
}
.honorSwiper{
	padding: 10px 0 50px;
	margin-top: 40px;
	text-align: center;
}
.honorSwiper_pag{
	bottom: 0!important;
}
.honorSwiper_pag .swiper-pagination-bullet{
	background-color: rgba(0,0,0,0.2);
}
.honorSwiper_pag .swiper-pagination-bullet-active{
    background-color: #1265a2;
}
.corparationSec3_img{
	display: inline-block;
	height: 300px;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #1265a2;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.corparationSec3_img img{
	max-width: 100%;
	max-height: 100%;
}
.corparationSec3_txt{
	margin-top: 20px;
}
.corparationSec3_txt p{
	font-size: 18px;
	color: #333;
	text-transform:uppercase;
}
/* corparation.html */

/* system.html */
.systemWarper{
	padding: 80px 0;
	background-color: #fff;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.systemSec1_list{
	margin-top: 60px;
	padding: 50px 40px 90px;
	background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.systemSec1_list li{
	width: 32%;
	margin-right: 2%;
}
.systemSec1_list li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.systemSec1_list li:nth-child(3n){
	margin-right: 0;
}
.systemSec1_list li:nth-child(n+4){
	margin-top: 40px;
}
.systemSec1_list img{
	width: 90px;
	border-radius: 50%;
}
.systemSec1_list p{
	width: calc(100% - 110px);
	font-size: 18px;
	color: #333;
}
.systemSec1_more{
	display: block;
	width: 250px;
	height: 70px;
	border-radius: 70px;
	margin: -35px auto 0;
	background-color: #1265a2;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.systemSec1_more span{
	font-size: 26px;
	color: #fff!important;
	margin-right: 10px;
}

.systemSec2{
	margin-top: 60px;
}
.systemSec2_list{
	margin-top: 60px;
}
.systemSec2_list li{
	position: relative;
}
.systemSec2_list li:nth-child(n+2){
	margin-top: 40px;
}
.systemSec2_img{
	width: 46%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.systemSec2_txt{
	width: 50%;
	margin: 0 0 0 auto;
}
.systemSec2_txtBox{
	padding-left: 100px;
	position: relative;
}
.systemSec2_txtBox:nth-child(n+2){
	margin-top: 30px;
}
.systemSec2_txtBox h6{
	font-size: 28px;
	color: #1265a2;
	position: absolute;
	top: 0;
	left: 0;
}
.systemSec2_txtBox p{
	font-size: 18px;
	color: #666;
	line-height: 1.8;
}
.systemSec2_txtBox span{
	color: #c0a353;
}

.systemSec3{
	margin: 60px 0 40px;
	padding: 60px 40px;
	background-color: #f5f5f5;
}
.systemSec3_box{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.systemSec3_txt{
	width: 46%;
}
.systemSec3_txt p{
	padding-left: 50px;
	padding-bottom: 30px;
	position: relative;
	font-size: 18px;
	color: #666;
	font-weight: bold;
}
.systemSec3_txt p::before{
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	background-color: #1265a2;
	position: absolute;
	top: 4px;
	left: 6px;
}
.systemSec3_txt p::after{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #1265a2;
	background-color: #f5f5f5;
	position: absolute;
	top: 4px;
	left: 0;
}
.systemSec3_img{
	width: 50%;
}
/* system.html */

/* aboutDetail.html */
.aboutDetail{
	padding: 60px 0 100px;
	background-color: #fff;
}
.aboutSec1{
	padding-top: 20px;
}
.aboutSec1_box{
	margin-top: 60px;
	position: relative;
}
.aboutSec1_img{
	width: 46%;
	height: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	position: absolute;
	top: 0;
	left: 0;
}
.aboutSec1_txt{
	width: 50%;
	padding: 40px 0;
	margin: 0 0 0 auto;
}
.aboutSec1_txt h4{
	font-size: 28px;
	color: #1265a2;
}
.aboutSec1_txt h5{
	margin: 40px 0 10px;
	font-size: 22px;
	color: #1265a2;
}
.aboutSec1_txt p{
	font-size: 16px;
	color: #999;
	line-height: 2;
}
.aboutSec1_txt h6{
	margin-top: 40px;
	font-size: 28px;
	color: #2460a6;
}

.aboutSec2{
	margin-top: 80px;
	position: relative;
	z-index: 0;
}
.aboutSec2_list{
	margin-top: 60px;
}
.aboutSec2_list li{
	width: 60%;
	position: relative;
	border-radius: 10px;
	background-color: #f5f5f5;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.aboutSec2_list li:nth-child(n+2){
	margin-top: 40px;
}
.aboutSec2_list li:nth-child(2n){
	margin: 40px 0 0 auto;
}
.aboutSec2_list img{
	width: 28%;
	position: absolute;
	left: 0;
	bottom: 0;
}
.aboutSec2_list li:nth-child(2n) img{
	left: auto;
	right: 0;
}
.aboutSec2_txt{
	padding: 80px 5% 80px 32%;
	position: relative;
}
.aboutSec2_txt::before,
.aboutSec2_txt::after{
	content: '';
	display: block;
	width: 15px;
	height: 14px;
	background: url(../images/dist.png) center/cover no-repeat;
	position: absolute;
	top: 40px;
	left: 32%;
}
.aboutSec2_txt::after{
	top: auto;
	left: auto;
	right: 5%;
	bottom: 40px;
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); 	
	-moz-transform: rotate(180deg); 	
	-webkit-transform: rotate(180deg); 
	-o-transform: rotate(180deg);
}
.aboutSec2_list li:nth-child(2n) .aboutSec2_txt{
	padding: 80px 32% 80px 5%;
}
.aboutSec2_list li:nth-child(2n) .aboutSec2_txt::before{
	left: 5%;
}
.aboutSec2_list li:nth-child(2n) .aboutSec2_txt::after{
	right: 32%;
}
.aboutSec2_txt h6{
	font-size: 22px;
	color: #1265a2;
	line-height: 1.6;
}
.aboutSec2_txt p{
	margin-top: 10px;
	font-size: 18px;
	color: #333;
}

.aboutSec3{
	margin-top: 80px;
}
.matrixSwiper{
    /*cursor: grab;*/
}
.matrixSwiper .swiper-slide{
	width: 320px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.matrixSwiper .swiper-slide:hover,
.aboutSec3_box{
	width: 600px;
}
.aboutSec3_box{
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.aboutSec3_img{
	position: relative;
	z-index: 0;
}
.aboutSec3_img::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
	position: absolute;
	top: 0;
	left: 0;
}
.aboutSec3_txt{
	width: 400px;
	position: absolute;
	left: 5%;
	bottom: 5%;
	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.matrixSwiper .swiper-slide:hover .aboutSec3_txt{
	bottom: 50%;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	transform: translateY(50%);
}
.aboutSec3_txt h6{
	font-size: 24px;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 20px;
}
.aboutSec3_txtBox{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.aboutSec3_txt p{
	width: 45%;
	font-size: 14px;
	color: #fff;
	line-height: 2;
}
.matrixSwiper .swiper-slide:hover .aboutSec3_txt p:nth-child(3){
	display: block;
}
.aboutSec3_ewm{
	width: 120px;
	position: absolute;
	top: calc(50% - 60px);
	right: 15%;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
	-webkit-transition: all 0.3s ease-in-out 0.2s;
	-moz-transition: all 0.3s ease-in-out 0.2s;
	-ms-transition: all 0.3s ease-in-out 0.2s;
	-o-transition: all 0.3s ease-in-out 0.2s;
	transition: all 0.3s ease-in-out 0.2s;
}
.matrixSwiper .swiper-slide:hover .aboutSec3_ewm{
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	-o-transform: translateX(0%);
	transform: translateX(0%);
}

.aboutSec4{
	margin-top: 80px;
}
.aboutSec4_box{
	margin-top: 60px;
	position: relative;
}
.aboutSec4_txt{
	width: 400px;
	padding: 40px 20px 60px;
	background-color: #1265a2;
}
.aboutSec4_txt h6{
	font-size: 28px;
	color: #fff;
}
.aboutSec4_txt p{
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
}
.researSwiper{
	width: calc(100% - 440px);
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.aboutSec4_img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.aboutSec5{
	margin-top: 80px;
}
.aboutSec5Swiper{
	margin-top: 60px;
	padding: 10px 10px 100px;
}
.matrixSwiper_pag .swiper-pagination-bullet,
.aboutSec5Swiper_pag .swiper-pagination-bullet{
	background-color: rgba(0,0,0,0.2);
}
.matrixSwiper_pag .swiper-pagination-bullet-active,
.aboutSec5Swiper_pag .swiper-pagination-bullet-active{
    background-color: #1265a2;
}
.aboutSec5_box{
	padding: 6%;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}
.aboutSec5_img{
	height: 300px;
	text-align: center;
}
.aboutSec5_img img{
	max-width: 100%;
	max-height: 100%;
}
.aboutSec5_txt{
	margin-top: 5%;
	padding-top: 4%;
	border-top: 1px solid #e6e6e6;
}
.aboutSec5_txt p{
	font-size: 32px;
	color: #00a73c;
	text-align: center;
}
/* aboutDetail.html */

/* brand.html */
.brandSec1{
	padding: 80px 10%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.brandSec1_title{
	padding: 10px 4%;
	background-color: #1265a2;
	font-size: 42px;
	color: #fff;
}
.brandSec1_txt{
	width: calc(100% - 440px);
}
.brandSec1_txt p{
	font-size: 18px;
	color: #666;
	line-height: 2;
}

.brandSec2{

}
.brandSec2_top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.brandSec2_top .brandSec2_img{
	width: calc(100% - 440px);
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.brandSec2_top .brandSec2_title{
	text-align: center;
}
.brandSec2_top .brandSec2_title h6{
	margin-top: 30px;
	font-size: 42px;
	color: #1265a2;
}
.brandSec2_box{
	width: 80%;
	padding: 4%;
	margin: -40px 0 0 auto;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brandSec2_list{
	width: 58%;
}
.brandSec2_list li{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brandSec2_list li:nth-child(n+2){
	margin-top: 30px;
}
.brandSec2_list p{
	width: 82%;
	font-size: 16px;
	color: #666;
	line-height: 2;
}
.brandSec2_box .brandSec2_img{
	width: 40%;
}

.brandSec3{
	margin: 80px 0;
	padding: 0 5%;
}
.brandSec3_con{
	margin-top: 30px;
	padding: 0;
	background: url(__STA__/images/brandSec3_bg.png) center/100% auto repeat-y;
	position: relative;
}
.brandSec3_swiper{
	width: 70%;
}
.brandSec3_prev,
.brandSec3_next{
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
.brandSec3_next{
	left: auto;
	right: 0;
}
.brandSec3_box{
	margin: 6% auto 0;
	width: 60%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.brandSec3_img{
	width: 60%;
	margin: 0 auto;
}
.brandSec3_txt{
	width: 40%;
	/*position: absolute;
	top: 45%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);*/
}
.brandSec3_txt h6{
	font-size: 48px;
	color: #333;
	line-height: 1.2;
	font-weight: bold;
	/*background: -webkit-gradient(linear,left top,right top,color-stop(0,#1265a2),color-stop(0.1,#1265a2),color-stop(0.1,white),color-stop(1,white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;*/
}
.brandSec3_txtBox{
	margin-top: 5%;
}
.brandSec3_txt p{
	font-size: 22px;
	color: #333;
	line-height: 2;
	font-weight: bold;
	/*background: -webkit-gradient(linear,left top,right top,color-stop(0,#333),color-stop(0.1,#333),color-stop(0.1,white),color-stop(1,white));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;*/
}
.brandSec3_title h6{
	margin-top: 5%;
	font-size: 32px;
	color: #333;
	text-align: center;
}
/* brand.html */

/* product.html */
.productWarpper,
.productWarpper2{
	padding: 80px 5%;
}
.productWarpper .comment_title.line h6{
	background-color: #f3f2f8;
}
.productSec1{
	padding: 0 5%;
}
.productSec1 p{
	margin-top: 60px;
	font-size: 22px;
	color: #999;
	line-height: 1.6;
	text-align: center;
}
.productSec1_list{
	margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.productSec1_list li{
	width: calc(50% - 20px);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	position: relative;
}
.productSec1_list li:nth-child(n+3){
	margin-top: 40px;
}
.productSec1_txt{
	width: 70%;

	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;

	position: absolute;
	top: 12%;
	left: 15%;
}
.productSec1_txt h6{
	width: 100%;
	font-size: 36px;
	color: #265fa6;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 5%;
}
.productSec1_txt p{
	min-width: 50%;
	font-size: 14px;
	color: #666;
	line-height: 2;
}
.productSec1_list .productSec2_more{
	margin: 0;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 8%;
}
.productSec1_list .productSec2_more a{
	width: 180px;
    height: 44px;
    border-radius: 44px;
    margin-right: 10%;
}
.productSec1_list .productSec2_more span{
	font-size: 16px;
	letter-spacing: 0;
	margin-right: 0;
}

.productSec2_con{
	padding: 80px 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.productSec2_left{
	width: 330px;
	padding: 20px 20px 60px;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.productSec2_title{
	padding: 4%;
	border-bottom: 1px solid #1265a2;
	padding-bottom: 20px;
}
.productSec2_title h6{
	font-size: 28px;
	color: #2460a6;
	font-weight: bold;
}
.productSec2_title p{
	margin-top: 10px;
	font-size: 24px;
	color: #333;
	font-weight: bold;
}
.productSec2_classfiy{
	padding: 20px 20px;
	
}
.productSec2_classfiy li{
	padding: 5px 0;
	position: relative;
}
.productSec2_classfiy li h6{
	font-size: 16px;
	color: #4c4c4c;
	font-weight: bold;
	padding-bottom: 10px;
	cursor: pointer;
}
.productSec2_classfiy li a{
	font-size: 14px;
	color: #4c4c4c;
  text-transform: none;
}
.productSec2_classfiy li.on h6,
.productSec2_classfiy li.on>a{
	color: #1265a2;
	font-weight: bold;
}
.productSec2_classfiy li.on::after{
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background-color: #1265a2;
	position: absolute;
	top: 12px;
	left: -35px;
}
.productSec_classfiyDown{
	padding-left: 20px;
	position: relative;
	overflow: hidden;
	display: none;
}
.productSec2_classfiy li.on .productSec_classfiyDown{
	display: block;
}

.productSec2_list{
	width: calc(100% - 380px);
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.health2{

}

.productSec2_list > li {
    width: calc(100% - 15px); /*calc(50% - 15px);*/
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;/*new*/
}
.health2 li{ 
	padding-bottom:30px  
}
.productSec2_list>li:nth-child(n+3){
	margin-top: 30px;
}
.productSec2_list>li>a{
	padding: 30px 30px 0 30px;
	position: relative;
}
.productSec2_list h5{
	padding-right: 30%;
	margin-top: 20px;
	font-size: 16px;
	color: #1265a2;
	text-transform: uppercase;
}
.productSec2_list h6{
	padding-right: 30%;
	font-size: 20px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}
.health2 h6{
  color: #1265a2;
}
.productSec2_list p{
	padding-right: 30%;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}
.health2 p{
	padding-right:0px; 
}

.health2_right{
	width: 65%;
	height: 150px;  
	padding-right: 15px;
	overflow: hidden;
}
.health2_right:hover{
	overflow-y:scroll;

}
.health2_right::-webkit-scrollbar{
	width: 5px;
}
.productSec2_img{
	width: 29%;
	height: 150px;
	text-align: right;
	position: absolute;
	top: 20%;
	right: 30px;
}

.health_left .productSec_classfiyDown{
	max-height: 700px;
	overflow: hidden;
	overflow-y:scroll;

}


.health_left .productSec_classfiyDown::-webkit-scrollbar{
	width: 5px;
}

.productSec2_img img{
	max-height: 100%;
	max-width: 100%;
}
.productSec2_icon{
	margin-top: 20px;
	padding: 10px 0;
	border-top: 1px solid #1265a2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.productSec2_icon img{
	width: 38px;
	margin-right: 10px;
}
.productSec2_more{
	margin-top: 40px;
	width: 100%;
	text-align: right;
}
.productSec2_more a{
	width: 200px;
	height: 64px;
	border-radius: 64px;
	background-color: #1265a2;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.productSec2_more span{
	margin-right: 10px;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.health2 .productSec2_img{
	top:80px;
	width: 28%;
}




.productSec3{
	padding: 0 5%;
	padding-top: 10px;
}
.productSec3_top{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.productSec3_txt{
	width: 52%;
}
.productSec3_txt h6{
	font-size: 20px;
	color: #1265a2;
	line-height: 1.6;
	/*font-weight: bold;*/
}

.productSec3_txt h6:nth-child(2){
	font-size:32px;
}

.productSec3_txt h6:nth-child(3){
	font-size:40px;
}
.productSec3_txtBox{
	margin-top: 30px;
}
.productSec3_txt p{
	margin-top: 10px;
	padding-left: 25px;
	font-size: 18px;
	color: #666;
	line-height: 1.8;
	position: relative;
}
.productSec3_txt p img{
	position: absolute;
	top: 6px;
	left: 0;
}
.productSec3_video{
	width: 44%;
}
.productSec3_box{
	margin-top: 60px;
}

.productSec4{
	margin-top: 40px;
}
.productSec4 h6{
	font-size: 28px;
	line-height: 1.6;
}

.productSec5{
	padding: 0 5%;
}
.productSec5_big{
	margin-top: 80px;
	padding: 15px;
}
.productSec5_img{
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	position: relative;
	cursor: pointer;
}
.productSec5_img p{
	width: 100%;
	font-size: 48px;
	color: #fff;
	font-weight: bold;
	line-height: 100px;
	text-align: center;
	background: -webkit-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -o-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -moz-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
	position: absolute;
	left: 0;
	bottom: 0;
}
.productSec5_box{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.productSec5_small{
	margin: 0;
	width: calc(100% - 160px);
	padding: 15px;
}
.productSec5_small .productSec5_img p{
	font-size: 16px;
	font-weight: normal;
	line-height: 40px;
}
.productSec5_btn{
	width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.productSec5_btn>div{
	cursor: pointer;
	margin: 0 12px;
}
.productSec5_pag,
.productSec5_pag2{
	display: none;
}
/* product.html */

/* solution.html */
.solutionWarpper{
	padding: 80px 5%;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.solutionSec1_txt{
	margin-top: 60px;
}
.solutionSec1_txt p{
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	text-align: center;
}
.solutionSec1_img{
	margin-top: 60px;
	text-align: center;
	position: relative;
}
.solutionSec1_link{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.solutionSec1_link a{
	position: absolute;
}
.solutionSec1_link a:nth-child(1){
	width: 30%;
	height: 24%;
	top: -2%;
	left: 32%;
}
.solutionSec1_link a:nth-child(2){
	width: 22%;
	height: 24%;
	top: 15%;
	left: 8%;
}
.solutionSec1_link a:nth-child(3){
	width: 26%;
	height: 24%;
	top: 16%;
	right: 9%;
}
.solutionSec1_link a:nth-child(4){
	width: 22%;
	height: 32%;
	left: 9%;
	bottom: 12%;
}
.solutionSec1_link a:nth-child(5){
	width: 26%;
	height: 30%;
	right: 10%;
	bottom: 10%;
}
.solutionSec1_link a:nth-child(6){
	width: 22%;
	height: 22%;
	left: 36%;
	bottom: 0%;
}
.solutionSec2{
	margin-top: 5%;
}
.solutionSec2_list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.solutionSec2_list li{
	margin-right: 30px;
	width: calc(33.33% - 20px);
	background-color: #f5f5f5;
	/*border-top: 40px solid #1265a2;*/
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
}
.solutionSec2_list li:nth-child(3n){
	margin-right: 0;
}
.solutionSec2_list li:nth-child(n+4){
	margin-top: 30px;
}
.solutionSec2_list h6{
	font-size: 22px;
	color: #fff;
	padding: 0 20px;
	line-height: 40px;
	letter-spacing: 1px;
	background-color: #1265a2;
}
.solutionSec2_img{
	overflow: hidden;
}
.solutionSec2_img img{
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.solutionSec2_img:hover img{
    -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.solutionSec2_txt{
	padding: 6%;
}
.solutionSec2_txt p{
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	text-transform: none;
}
/* solution.html */

/* media.html */
.mediaList{
	margin-top: 30px;
	padding-bottom: 60px;
}
.mediaList li{
	padding: 30px 0;
	border-bottom: 1px solid #1265a2;
}
.mediaList h6{
	font-size: 24px;
	color: #333;
	font-weight: bold;
}
.mediaList_box{
	margin-top: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.mediaList_img{
	width: 200px;
}
.mediaList_txt{
	width: calc(100% - 240px);
}
.mediaList_txt p{
	font-size: 18px;
	color: #666;
	line-height: 1.8;

	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mediaList li:first-child .mediaList_txt p{
    -webkit-line-clamp: 12;
}
.mediaList_txt span{
	margin: 3% 0 0 auto;
	display: block;
	width: 100px;
	font-size: 20px;
	color: #1265a2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.mediaList_txt span img{
	margin-left: 6px;
}

.mediaDetail{
	padding: 0 5% 40px 0;
}
.mediaDetail h6{
	padding-right: 30%;
	font-size: 28px;
	color: #1265a2;
	line-height: 1.6;
}
.mediaDetail p{
	margin: 20px 0;
	font-size: 18px;
	color: #666;
	line-height: 1.8;
}
.mediaDetail img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
/* media.html */

/* career.html */
.careerBg{
	padding-bottom: 100px;
	position: relative;
	z-index: 0;
}
.careerBg::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/careerBg.png) top right no-repeat;
	position: absolute;
	top: 0;
	right: 0;
}
.careerSec1{
	margin: 80px 0;
}
.careerSec1_box{
	margin-top: 60px;
	position: relative;
}
.careerSec1_img{
	width: 55%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.careerSec1_txt{
	width: 40%;
	margin: 0 0 0 auto;
}
.careerSec1_txt p{
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}
.careerSec1_box:nth-child(2n-1) .careerSec1_img{
	left: auto;
	right: 0;
}
.careerSec1_box:nth-child(2n-1) .careerSec1_txt{
	margin: 0;
}

.careerSec2{
	padding: 80px 0;
	position: relative;
}
.careerSec2::before{
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	background-color: #f5f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
.careerSec2 .comment_title.line h6{
	background-color: #f3f2f8;
}
.careerSec2_con{
	margin-top: 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.careerSec2_box{
	width: 300px;
}
.careerSec2_box h6{
	font-size: 44px;
	color: #333;
	/*font-weight: bold;*/
}
.careerSec2_box .line{
	margin-top: 20px;
	width: 50px;
	height: 2px;
	background-color: #1265a2;
}
.careerSec2_txt{
	margin-top: 30px;
}
.careerSec2_txt p{
	font-size: 16px;
	color: #666;
	line-height: 2;
}
.careerSec2_swiper{
	width: calc(100% - 300px);
}
.careerSec2_swiper .swiper-slide{
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.careerSec2_swiper .swiper-slide-active{
    -webkit-transform: scale(1) translateX(0%);
	-moz-transform: scale(1) translateX(0%);
	-ms-transform: scale(1) translateX(0%);
	-o-transform: scale(1) translateX(0%);
	transform: scale(1) translateX(0%);
}
.careerSec2_swiper .swiper-slide-prev{
	-webkit-transform: scale(0.5) translateX(40%);
	-ms-transform: scale(0.5) translateX(40%);
	-o-transform: scale(0.5) translateX(40%);
	transform: scale(0.5) translateX(40%);
}
.careerSec2_swiper .swiper-slide-next{
	-webkit-transform: scale(0.5) translateX(-40%);
	-ms-transform: scale(0.5) translateX(-40%);
	-o-transform: scale(0.5) translateX(-40%);
	transform: scale(0.5) translateX(-40%);
}
.careerSec2_btn{
	margin-top: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.careerSec2_btn>div{
	cursor: pointer;
	margin: 0 10px;
}
.careerSec2_next{
}

.careerSec3{
	padding: 80px 0;
}
.careerSec3_con{
	padding: 0 80px;
	position: relative;
}
.careerSec3_swiper{
	margin-top: 60px;
}
.careerSec3_swiper .swiper-slide{
	position: relative;
    -webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
.careerSec3_swiper .swiper-slide-active{
    -webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.careerSec3_prev,
.careerSec3_next{
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
.careerSec3_next{
	left: auto;
	right: 0;
}
.careerSec3_txt{
	width: 100%;
	padding: 5% 5% 20px;
	background: -webkit-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -o-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -moz-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
	position: absolute;
	left: 0;
	bottom: 0;

	opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.careerSec3_txt p{
	font-size: 32px;
	color: #fff;
}
.careerSec3_swiper .swiper-slide-active .careerSec3_txt{
    opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
}

.careerSec4{
	padding: 80px 0;
	position: relative;
}
.careerSec4::before{
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	background-color: #f5f5f5;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
.careerSec4 .comment_title.line h6{
	background-color: #f3f2f8;
}
.careerSec4_con{
	margin-top: 60px;
	position: relative;
}
.careerSec4_box{
	position: relative;
}
.careerSec4_box:nth-child(1){
	width: calc(50% - 20px); 
}
.careerSec4_box:nth-child(1) .careerSec4_img{
	height: 70vh;
}
.careerSec4_box:nth-child(2){
	width: calc(50% - 20px);
	position: absolute;
	top: 0;
	right: 0;
}
.careerSec4_box:nth-child(3){
	width: calc(50% - 20px);
	position: absolute;
	bottom: 0;
	right: 0;
}
.careerSec4_box:nth-child(2) .careerSec4_img,
.careerSec4_box:nth-child(3) .careerSec4_img{
	height: calc(35vh - 20px);
}
.careerSec4_txt{
	width: 100%;
	padding: 5% 5% 20px;
	background: -webkit-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -o-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: -moz-linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
    background: linear-gradient(to bottom, rgba(99, 174, 48, 0), rgba(99, 174, 48, 0.8)); 
	position: absolute;
	left: 0;
	bottom: 0;
}
.careerSec4_txt p{
	font-size: 28px;
	color: #fff;
}

.careerSec5{
	padding: 80px 0;
}
.careerSec5_list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.careerSec5_list li{
	margin-top: 60px;
	padding: 4% 4% calc(4% + 80px);
	width: calc(50% - 30px);
	border-radius: 10px;
	background-color: #1265a2;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	position: relative;
}
.careerSec5_list li:nth-child(2n){
	background-color: #2460a6;
}
.careerSec5_list h6{
	font-size: 32px;
	color: #fff;
	line-height: 1.6;
	margin-bottom: 4%;
}
.careerSec5_list p{
	font-size: 18px;
	color: #fff;
	line-height: 2;
}
.careerSec5_list a{
	width: 220px;
	height: 50px;
	border-radius: 50px;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 6%;
	bottom: 10%;

	font-size: 22px;
	color: #2460a6;
}
.careerSec5_list img{
	margin-left: 10px;
}
/* career.html */

/* contact.html */
.contactWarpper{
	padding: 80px 5%;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.contactWarpper .indSec5_round {
	width: 6px;
	height: 6px;
}

.contactWarpper .indSec5_round:nth-child(9) {
    top: 35%;
    left: 22%;
}
.contactWarpper .indSec5_round::before, 
.contactWarpper .indSec5_round::after {
	width: 6px;
	height: 6px;
}

.contactSec2{
	margin-top: 40px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.contactSec2>div>h6{
	font-size: 32px;
	color: #1265a2;
}
.contactSec2>div>p{
	margin-top: 10px;
	font-size: 22px;
	color: #666;
	line-height: 1.6;
}
.contactSec2_left{
	width: calc(100% - 400px);
}
.contactSec2_form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.contactSec2_input{
	margin-top: 30px;
	width: calc(50% - 20px);
}
.contactSec2_input select{
	width: 95%;
	height: 60px;
	border: none;
	padding: 0 20px;
	border-radius: 10px;
	background-color: #f5f5f5;
	font-size: 18px;
	color: #0f0f0f;
	outline: none;
}
.contactSec2_input input{
	width: 95%;
	height: 60px;
	border: none;
	padding: 0 20px;
	border-radius: 10px;
	background-color: #f5f5f5;
	font-size: 18px;
	color: #0f0f0f;
}
.contactSec2_input.wid100{
	width: 100%;
}
.contactSec2_input textarea{
	width: 100%;
	height: 150px;
	border: none;
	padding: 10px 20px;
	border-radius: 10px;
	background-color: #f5f5f5;
	font-size: 18px;
	color: #0f0f0f;
}
.contactSec2_btn{
	width: 100%;
	margin-top: 30px;
	text-align: right;
}
.contactSec2_btn input{
	width: 200px;
	height: 60px;
	border: none;
	border-radius: 60px;
	background-color: #1265a2;
	font-size: 32px;
	color: #fff;
}

.contactSec2_right{
	width: 340px;
}
.contactSec2_box{
	margin-top: 20px;
	padding: 30px 20px;
	background-color: #f5f5f5;
}
.contactSec2_box h5::selection {
    background: #ccc !important;
    color: #fff !important;
}
.contactSec2_box h6::selection {
    background: #ccc !important;
    color: #fff !important;
}
.contactSec2_box p::selection {
    background: #ccc !important;
    color: #fff !important;
}
.contactSec2_box p > span::selection {
    background: #ccc !important;
    color: #fff !important;
}
.contactSec2_box h5{
	font-size: 18px;
	color: #1265a2;
}
.contactSec2_box h6{
	margin-top: 10px;
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}
.contactSec2_box p{
	margin-top: 10px;
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	text-transform: none;
}
.contactSec2_box p span{
	display: inline-block;
	/* width: 50px; */
	font-size: 16px;
	color: #1265a2;
	font-weight: bold;
	line-height: 1.6;
	/* margin-right: 2px; */
}
.contactSec2_bottom{
	margin-top: 30px;
	padding: 30px;
	text-align: center;
	background-color: #1265a2;
}
.contactSec2_bottom h6{
	font-size: 32px;
	color: #fff;
	margin-bottom: 10px;
}
.contactSec2_bottom p{
	margin-top: 20px;
	font-size: 18px;
	color: #fff;
}
/* contact.html */

/* download.html */
.downloadWarpper{
	padding: 80px 5%;
}
.downloadWarpper .comment_title.line h6{
    /*background-color: #f3f2f8;*/
}
.downloadSearch{
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.downloadSearch h6{
	font-size: 22px;
	color: #2460a6;
}
.downloadSearch input{
	margin-left: 30px;
	width: 338px;
	height: 48px;
	padding: 0 20px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #1265a2;
	font-size: 16px;
	color: #0f0f0f;
}
.downloadPag{
	margin-left: 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.downloadPag a{
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #1265a2;
	font-size: 24px;
	color: #333;
	line-height: 46px;
	text-align: center;
	margin-left: 10px;
}
.downloadPag a:last-child{
	color: #2460a6;
	border-color: #2460a6;
}
.downloadList{
	margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
   
}
.productright{
   width: calc(100% - 380px);
   margin-top:0px;
}
.downloadList>li{
	margin-top: 40px;
	margin-right: 30px;
	padding: 20px 100px 20px 30px;
	width: calc(33.33% - 20px);
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	position: relative;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.downloadList>li:nth-child(3n){
	margin-right: 0;
}
.downloadList h6{
	font-size: 28px;
	color: #2460a6;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

}
.downloadList p{
	margin-top: 20px;
	font-size: 16px;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: flex-start;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.downloadList p span{
	display: block;
	width: 19px;
	height: 19px;
	background: url(../images/download2.png) center/cover no-repeat;
	margin-right: 10px;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.downloadList_more{
	width: 80px;
	height: 50px;
	border-left: 1px solid #dddddd;
	background: url(../images/right.png) center no-repeat;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.downloadList>li:hover{
	background-color: #2460a6;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}
.downloadList>li:hover h6,
.downloadList>li:hover p{
	color: #fff;
}
.downloadList>li:hover p span{
	background: url(../images/download3.png) center/cover no-repeat;
}
.downloadList>li:hover .downloadList_more{
	border-left: 1px solid #fff;
	background: url(../images/right2.png) center no-repeat;
}

.downloadList2{
	margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.downloadList2 li{
	width: 20%;
	padding: 3%;
	margin-right: 6.6%;
	background-color: #fcfcfc;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	cursor: pointer;
}
.downloadList2 li:nth-child(4n){
	margin-right: 0;
}
.downloadList2 li:nth-child(n+5){
	margin-top: 40px;
}
.downloadList2_img{
	height:160px;
	text-align: center;
}
.downloadList2_img img{
	max-width: 100%;
	max-height: 100%;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.downloadList2_txt{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.downloadList2_txt span{
	margin-left: 10px;
	font-size: 18px;
	color: #1265a2;
	line-height: 1.1;
	border-bottom: 1px solid #1265a2;
}
.downloadAlert{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	display: none;
}
.downloadAlert_bg{
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}
.downloadForm{
	padding: 30px 60px!important;
	border-radius: 10px;
	background-color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
	position: absolute;
	top: calc(50% + 55px);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.downloadForm h6{
	width: 100%;
	font-size: 32px;
	color: #0b3775;
}
.downloadForm_input{
	width: 35%;
	margin-top: 30px;
}
.downloadForm_input p{
	font-size: 16px;
	color: #333;
}
.downloadForm_input input{
	margin-top: 10px;
	width: 100%;
	height: 46px;
	padding: 0 20px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	font-size: 16px;
	color: #0f0f0f;
}
.downloadForm_input:nth-child(2n - 1){
	margin-left: 20%;
}
.downloadForm_textarea{
	margin-top: 30px;
	width: 90%;
}
.downloadForm_textarea textarea{
	width: 100%;
	height: 150px;
	padding: 10px 20px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	font-size: 16px;
	color: #0f0f0f;
}
.downloadForm_btn{
	width: 100%;
	margin-top: 30px;
	text-align: center;
}
.downloadForm_btn input{
	width: 170px;
	height: 48px;
	border: none;
	border-radius: 48px;
	background-color: #1265a2;
	font-size: 24px;
	color: #fff;
}
/* download.html */

.productSec3 li{
	padding:10px 0;
	text-align: center;
	margin-top:30px; 

}
.productright li{
	margin-top: 0;
	width: calc(50% - 20px);
	margin-right: 40px;
}
.productright li:nth-child(3n){
	margin-right: 40px;
}
.productright li:nth-child(2n){
	margin-right: 0;
}
.productright li:nth-child(n+3){
	margin-top: 40px;
}

@media(max-width:1760px) {
	
}
@media(max-width:1680px) {
	
}
@media(max-width:1600px) {
	.headerNav li:last-child .headerDown{
		left: auto;
		right: 0;
	}
}
@media(max-width:1520px) {
	
}
@media(max-width:1440px) {
	.floatForm {
	    right: 20px;
	}
	.floatForm_box {
	    right: 90px;
	}
	
	.corparationLeft{
		width: calc(100% - 260px);
	}
	.corparationRight{
    	width: 260px;
	}
	.corparationRight>li {
	    width: 180px;
	    height: 180px;
	    margin-bottom: 20px;
	}
	.corparationRight>li p{
		font-size: 16px;
	}
	.corparationRight>li img{
		margin-top: 10px;
	}
	.corparationRight>li img:nth-child(3) {
	    width: 24px;
	    margin: 10px 0 0 auto;
	}
	.corparationSec3_txt p{
		font-size: 16px;
	}
	.systemSec1_list img{
		width: 70px;
	}
	.systemSec1_list p{
		width: calc(100% - 80px);
		font-size: 14px;
		line-height: 1.8;
	}
	.systemSec2_txtBox{
		padding-left: 80px;
	}
	.systemSec2_txtBox h6{
		font-size: 24px;
	}
	.systemSec2_txtBox p{
		font-size: 16px;
	}


	.downloadForm_input{
		margin-top: 10px;
	}
	.downloadForm_input p{
		font-size: 14px;
	}
	.downloadForm_input input{
		height: 42px;
	}
	.downloadForm_textarea,
	.downloadForm_btn{
		margin-top: 20px;
	}
	.downloadForm_textarea textarea{
		height: 120px;
		font-size: 14px;
	}
	.downloadForm_btn input{
		font-size: 22px;
	}

	.productSec3_txt h6{
		font-size: 32px;
	}
	.downloadList h6{
		font-size: 20px;
	}

	.productWarpper,
	.productWarpper2{
    	padding-left: 0;
    	padding-right: 0;
	}

	.container {
	    padding: 0 40px 0 0!important;
	}
	.indSec7_title{
		padding: 6%;
	}

	.productSec1_txt p{
		font-size: 14px;
	}

	.headerNav>li{
		padding: 0 20px;
	}	
}
@media(max-width:1360px) {
	
}
@media(max-width:1280px) {
	
}
@media(max-width:768px) {
	.row,
	.row>div{
		margin: 0;
		padding: 0;
	}
	.navbar-nav {
		width: 100%;
		margin-left: 0px;
		text-transform: uppercase;
	}
	.navbar-nav li {
		text-align: center;
		border-bottom: 1px dotted #e5e5e5;
		line-height: 40px;
	}
	.navbar-nav li a {
		color: #666;
		font-size: 13px;
	}
	.navbar-nav li a:hover {
		color: #1265a2;
		font-weight: bold;
	}
	.headerbg {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 999999;
		background: #fff;
		-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	}
	.logo_boxlist {
		float: left;
	    width: 120px;
	    margin-top: 17px;
	}
	.navbar-toggle {
		margin-top: 10px;
	}
        .navbar-toggle .icon-bar {
            background-color: #0000FF;
            /* background-color: #000; */
        }
	.navbar-collapse {
		border-top: 1px solid #e5e5e5;
		overflow-y: scroll;
    	max-height: calc(100vh - 52px);
	}
	.collapse_lis{
		background-color: #f5f5f5;
		display: none;
	}

	.container {
		padding: 0 3%!important;
	}

	.floatForm{
		right: 10px;
	}
	.floatForm li{
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
	}
	.floatForm li img{
		width: 40px;
	}
	
	/* index.html */
	.indBanner_txt{
    	width: 70%;
    	text-align: center;
	}
	.indBanner_txt h6{
		font-size: 22px;
		line-height: 1.4;
	}
	.indBanner_txt p {
	    margin-top: 20px;
	    font-size: 16px;
	    color: #fff;
	    line-height: 1.6;
	}
	/* .indBanner_box video{
		display: none;
	} */
	
	.indSec1_list{
		align-items: flex-start;
	}
	.indSec1_list li{
		width: 25%;
	}
	.indSec1_icon{
		width: 48px;
		height: 48px;
	}
	.indSec1_icon::before{
		width: 62px;
		height: 62px;
    	background: url(../images/indSec1_circle.png) center/62px 62px no-repeat;
	}
	.indSec1_txt p{
		font-size: 10px;
	}
	
	.indSec6{
		margin: 40px 0;
	}
	.indSec6_list{
		display: block;
	}
	.indSec6_list li{
		width: 100%;
	}
	.indSec6_list li:nth-child(n+2){
		margin-top: 20px;
	}

	.comment_title h6{
		font-size: 24px;
	}
	.comment_title p{
		font-size: 12px;
		margin: 10px auto 0;
	}
	.comment_title.line h6{
		padding: 0;
	}
	.comment_title.line h6::before, 
	.comment_title.line h6::after,
	.comment_title.line::before{
		display: none;
	}

	.indSec4_list {
	    margin-top: 60px;
	    display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    align-items: flex-start;
	    justify-content: space-between;
	}
	.indSec4_list li{
		width: 48%;
	}
	.indSec4_list li:nth-child(n+3){
		margin-top: 50px;
	}
	.indSec4_list p{
		font-size: 14px;
		margin-top: 0;
	}

	.indSec7{
		margin: 40px 0;
	}
	.indSec7_list{
		display: block;
	}
	.indSec7_list li{
		width: 100%;
	}
	.indSec7_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.indSec7_list li:hover .indSec7_img{
		background-size: cover!important; 
	}
	.indSec7_title h6{
		font-size: 22px;
		line-height: 1.4;
	}

	.indSec5{
		margin: 40px 0;
	}
	.indSec5_list{
		display: block;
	}
	.indSec5_list li{
		width: 100%;
	}
	.indSec5_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.indSec5_txt{
		padding: 20px;
	}
	.indSec5_txt h6{
		font-size: 22px;
		height: 24px;
	}
	.indSec5_txt p{
		margin-top: 10px;
		font-size: 12px;
		height: 84px;
	}
	
	.footer{
		padding: 10px 0;
	}
	.footerLogo,
	.footerList{
		display: none;
	}
	.copy{
		margin-top: 0;
		font-size: 12px;
	}
	/* index.html */

	/* about */
	.detailBanner{
		margin-top: 52px;
	}
	.corparationWarper{
		padding: 40px 0;
		display: block;
	}
	.corparationLeft,
	.corparationRight{
		width: 100%;
	}
	.corparationLeft {
	    border: none;
	    padding: 0 50px 0 20px;
	}
	.corparationRight{
		margin-top: 40px;
	    padding: 0 50px 0 20px;
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    align-items: flex-start;
	    justify-content: space-between;
	}
	.corparationRight>li{
		width: calc(50% - 10px);
		height: 140px;
	}
	.corparationSec1_box{
		margin-top: 30px;
	}
	.corparationSec1_box img{
		float: none;
		width: 100%;
	}
	.corparationSec1_box p{
		font-size: 12px;
		text-align: left;
	}
	.corparationSec1_box p:nth-child(n+2){
		margin-top: 10px;
	}
	.corparationRight>li p{
		font-size: 12px;
	}

	.corparationSec2, 
	.corparationSec2_box {
	    margin-top: 30px;
	}
	.corparationSec3{
		margin-top: 40px;
	}
	.honorSwiper{
		margin-top: 20px;
    	padding: 10px 0 30px;
	}
	.honorSwiper .swiper-pagination .swiper-pagination-bullet{
		width: 8px;
		height: 8px;
    	margin: 0 3px!important;
	}
	.honorSwiper .swiper-pagination .swiper-pagination-bullet-active{
		width: 14px;
	}


	.systemWarper{
		padding: 40px 0;
		display: block;
	}
	.systemSec1_list{
		margin-top: 30px;
	}
	.systemSec1_list{
		padding: 20px 20px 40px;
		display: block;
	}
	.systemSec1_list li{
		width: 100%;
	}
	.systemSec1_list li:nth-child(n+2){
		margin-top: 10px;
	}
	.systemSec1_list img{
		width: 50px;
	}
	.systemSec1_list p {
	    width: calc(100% - 70px);
	}
	.systemSec1_more {
	    width: 200px;
	    height: 50px;
	    border-radius: 50px;
	    margin: -25px auto 0;
	}
	.systemSec1_more span{
		font-size: 20px;
	}
	.systemSec2{
		margin-top: 40px;
	}
	.systemSec2_list{
		margin-top: 30px;
	}
	.systemSec2_img{
		width: 100%;
		height: 200px;
		position: relative;
	}
	.systemSec2_txt{
		width: 100%;
	}
	.systemSec2_txtBox{
		margin-top: 10px!important;
	}
	.systemSec2_txtBox p{
		font-size: 14px;
	}
	.systemSec3{
		margin: 40px 0;
		padding: 20px;
	}
	.systemSec3_box{
		margin-top: 30px;
		display: block;
	}
	.systemSec3_txt{
		width: 100%;
	}
	.systemSec3_txt p {
	    padding-left: 20px;
	    padding-bottom: 10px;
	    font-size: 14px;
	    font-weight: normal; 
	}
	.systemSec3_img{
		margin-top: 20px;
		width: 100%;
	}

	.brandSec1{
		padding: 40px 50px 0 0;
		display: block;
	}
	.brandSec1_title{
		font-size: 32px;
	}
	.brandSec1_txt{
		margin-top: 10px;
		width: 100%;
	}
	.brandSec1_txt p{
		font-size: 14px;
	}
	.brandSec2_top{
		display: block;
	}
	.brandSec2_top .brandSec2_img{
		width: 100%;
		margin-top: 20px;
	}
	.brandSec2_top .brandSec2_title img{
		width: 30px;
		margin-top: 10px;
	}
	.brandSec2_top .brandSec2_title h6{
		font-size: 22px;
		margin-top: 10px;
	}
	.brandSec2_box {
	    width: 100%;
	    padding: 20px 50px 20px 20px;
	    margin: 20px 0 0 auto;
	    display: block;
	}
	.brandSec2_list{
		width: 100%;
	}
	.brandSec2_list li img{
		width: 60px;
	}
	.brandSec2_list p{
		width: calc(100% - 70px);
		font-size: 14px;
	}
	.brandSec2_list li:nth-child(n+2){
		margin-top: 10px;
	}
	.brandSec2_box .brandSec2_img{
		width: 100%;
		margin-top: 20px;
	}
	.brandSec3{
		margin: 40px 0;
		padding: 0 50px 0 0;
	}
	.brandSec3_con{
		padding: 0;
	}
	.brandSec3_box{
		display: block;
		width: 100%;
	}
	.brandSec3_txt{
		width: 100%;
	}
	.brandSec3_txt h6{
		font-size: 18px;
	}
	.brandSec3_txt p{
		font-size: 14px;
		line-height: 1.4;
	}
	.brandSec3_img{
		width: 100%;
		margin: 10px 0;
	}
	.brandSec3_title h6{
		font-size: 16px;
		font-weight: bold;
		margin-top: 0;
	}
	.brandSec3_prev img,
	.brandSec3_next img{
		width: 30px;
	}


	.aboutDetail{
		padding: 40px 0;
	}
	.aboutSec1_box{
		margin-top: 30px;
	}
	.aboutSec1_img{
		width: 100%;
		height: 250px;
		position: relative;
	}
	.aboutSec1_txt{
		width: 100%;
		padding: 0 50px 0 0;
		margin: 20px 0 0;
	}
	.aboutSec1_txt h4{
		font-size: 22px;
	}
	.aboutSec1_txt h5{
		font-size: 18px;
		margin: 20px 0 10px;
	}
	.aboutSec1_txt p{
		font-size: 14px;
	}
	.aboutSec1_txt h6 {
	    margin-top: 20px;
	    font-size: 18px;
	}

	.aboutSec2{
		margin-top: 40px;
	}
	.aboutSec2_list{
		margin-top: 30px;
	}
	.aboutSec2_list li{
		width: 100%;
    	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	}
	.aboutSec2_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.aboutSec2_txt {
	    padding: 40px 50px 40px 32%;
	    position: relative;
	}
	.aboutSec2_list li:nth-child(2n) .aboutSec2_txt{
	    padding: 40px 32% 40px 50px;
	}
	.aboutSec2_txt::before{
		top: 20px;
	}
	.aboutSec2_txt::after{
		bottom: 20px;
	}
	.aboutSec2_list li:nth-child(2n) .aboutSec2_txt::after{
		right: 40%;
	}
	.aboutSec2_txt h6,
	.aboutSec2_txt p{
		font-size: 14px;
	}
	.aboutSec2_list li:nth-child(2n) img{
		right: 13%;
	}

	.aboutSec3{
		margin-top: 40px;
	}
	.matrixSwiper{
		margin-top: 30px;
	}
	.matrixSwiper .swiper-slide,
	.matrixSwiper .swiper-slide:hover, .aboutSec3_box{
		width: 100%;
	}

	.matrixSwiper .swiper-slide .aboutSec3_txt{
		width: 90%;
		bottom: 50%;
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: translateY(50%);
		-ms-transform: translateY(50%);
		-o-transform: translateY(50%);
		transform: translateY(50%);
	}
	.matrixSwiper .swiper-slide .aboutSec3_txt p:nth-child(3){
		display: block;
	}
	.matrixSwiper .swiper-slide .aboutSec3_ewm{
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%);
	}
	.aboutSec3_txt h6{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.aboutSec3_txt p{
		font-size: 12px;
	}

	.aboutSec4{
		margin-top: 40px;
	}
	.aboutSec4_box{
		margin-top: 30px;
	}
	.aboutSec4_txt{
		width: 100%;
		padding: 20px 50px 20px 20px;
	}
	.aboutSec4_txt h6{
		font-size: 22px;
	}
	.aboutSec4_txt p{
		font-size: 14px;
	}

	.aboutSec5{
		margin-top: 40px;
	}
	.aboutSec5Swiper{
		margin-top: 20px;
		padding: 10px 10px 70px;
	}
	.aboutSec5_img{
		height: 200px;
	}
	.aboutSec5_txt p{
		font-size: 18px;
	}
	/* about */

	/* product */
	.productWarpper, .productWarpper2{
		padding: 40px 0;
	}
	.productSec1{
		padding: 0;
	}
	.productSec1 p {
		padding-right: 50px;
	    margin-top: 10px;
	    font-size: 12px;
	    text-align: left;
	}
	.productSec1_list{
		margin-top: 30px;
		display: block;
	}
	.productSec1_list li{
		width: 100%;
	}
	.productSec1_list li:nth-child(n+2){
		margin-top: 20px;
	}
	.productSec1_txt{
		width: 90%;
		top: 10%;
		left: 5%;
	}
	.productSec1_txt h6{
		font-size: 22px;
		margin-bottom: 10px;
	}
	.productSec1_txt p{
		font-size: 12px;
		color: #000;
	}
	.productSec1_list .productSec2_more{
		bottom: 5%;
	}
	.productSec1_list .productSec2_more a {
	    width: 150px;
	    height: 32px;
	    border-radius: 32px;
	    margin-right: 10%;
	}
	.productSec1_list .productSec2_more span{
		font-size: 14px;
		font-weight: normal;
	}
	.productSec2_con{
		padding: 30px 0;
		display: block;
	}
	.productSec2_left{
		width: 100%;
		padding: 20px 20px 0;
	}
	.productSec2_title{
		padding: 0 0 10px;
	}
	.productSec2_title h6{
		font-size: 20px;
	}
	.productSec2_list{
		margin-top: 30px;
		width: 100%;
		display: block;
	}
	.health2 li{
		width: 100%;
	}
	.health2 li:nth-child(n+2){
		margin-top: 20px;
	}
	.productSec2_list h6{
		font-size: 16px;
	}
	.productSec2_list p{
		font-size: 12px;
	}
	.health2_right{
		width: 100%;
		height: auto;
		padding: 0;
	}
	.health2 .productSec2_img{
		margin-top: 20px;
		width: 100%;
		height: auto;
		position: relative;
		top: 0;
		right: 0;
	}
	.productSec3{
		display: block;
	}
	.productSec3 li{
		margin-top: 15px;
		width: 100%
	}
	.productSec4 h6,
	.productSec3 h6{
		font-size: 16px;
	}
	.productSec4{
		display: block;
		width: 100%;
	}
	.productSec4 li{
		width: 100%;
		margin-right: 0;
		margin-top: 20px!important;
	}
	.productSec2_list>li{
		width: 100%;
	}
	.productSec2_img{
		top: 80px;
	}

	.productSec3_top{
		display: block;
	}
	.productSec3_txt{
		width: 100%;
	}
	.productSec3_txt h6:nth-child(2){
		font-size: 22px;
	}
	.productSec3_txt h6:nth-child(3){
		font-size: 28px;
	}
	.productSec3_txt p{
		font-size: 14px;
	}
	.productSec3_video{
		margin-top: 20px;
		width: 100%;
	}
	.productSec3_box{
		margin-top: 20px;
	}
	.productSec5_big{
		margin-top: 20px;
	}
	.productSec5_box{
		margin-top: 0;
	}
	.productSec5_small {
	    width: calc(100% - 90px);
	}
	.productSec5_btn{
		width: 80px;
	}
	.productSec5_btn>div{
		margin: 0 6px;
	}
	.productSec5_btn img{
		width: 24px!important;
	}
	/* product */

	/* solution */
	.solutionWarpper{
		padding: 40px 50px 40px 20px;
	}
	.solutionSec1_txt{
		margin-top: 20px;
	}
	.solutionSec1_txt p{
		font-size: 12px;
		text-align: left;
	}
	.solutionSec1_img{
		margin-top: 20px;
	}
	.solutionSec1_img img{
		width: 100%!important;
	}
	.solutionSec1_link a:nth-child(2){
		left: 0%;
	}
	.solutionSec1_link a:nth-child(3){
		width: 30%;
		right: 0%;
	}
	.solutionSec1_link a:nth-child(4){
		width: 26%;
		bottom: 12%;
		left: 0%;
	}
	.solutionSec1_link a:nth-child(5){
		width: 30%;
		right: 0%;
		bottom: 10%;
	}

	.solutionSec2{
		margin-top: 40px;
	}
	.solutionSec2_list{
		display: block;
	}
	.solutionSec2_list li{
		margin-right: 0;
		width: 100%;
	}
	.solutionSec2_list li:nth-child(n+2){
		margin-top: 20px!important;
	}
	.solutionSec2_list h6{
		font-size: 16px;
	}
	.solutionSec2_txt p{
		font-size: 14px;
	}
	/* solution */

	/* media */
	.mediaList{
		padding-bottom: 30px;
	}
	.mediaList li{
		padding: 15px 0;
	}
	.mediaList h6{
		font-size: 16px;
	}
	.mediaList_box{
		display: block;
	}
	.mediaList_img{
		width: 100%;
	}
	.mediaList_txt{
		width: 100%;
		margin-top: 15px;
	}
	.mediaList_txt p{
		font-size: 14px;
	}
	.mediaList li:first-child .mediaList_txt p{
    	-webkit-line-clamp: 3;
	}
	.mediaList_txt span{
		font-size: 16px;
	}

	.mediaDetail h6{
		font-size: 18px;
		font-weight: bold;
	}
	.mediaDetail p{
		font-size: 14px;
		margin: 10px 0;
	}
	/* media */

	/* career */
	.careerBg{
		padding-bottom: 0;
	}
	.careerSec1{
		margin: 40px 0;
	}
	.careerSec1_box{
		margin-top: 30px;
	}
	.careerSec1_img{
		width: 100%;
		height: 250px;
		position: relative;
	}
	.careerSec1_txt{
		width: 100%;
		margin-top: 20px;
		padding-right: 50px;
	}
	.careerSec1_txt p{
		font-size: 14px;
		color: #333;
	}

	.careerSec2{
		padding: 40px 0;
	}
	.careerSec2_con{
		margin-top: 30px;
		display: block;
	}
	.careerSec2_box {
	    width: 100%;
	    text-align: center;
	}
	.careerSec2_box h6{
		font-size: 22px;
	}
	.careerSec2_box .line{
		margin: 10px auto 0;
	}
	.careerSec2_txt{
		margin-top: 10px;
	}
	.careerSec2_txt p{
		font-size: 14px;
	}
	.careerSec2_swiper{
		width: 100%;
		margin-top: 10px;
	}
	.careerSec2_swiper .swiper-slide{
		width: 100%;
		height: auto;
	}
	.careerSec2_swiper .swiper-slide-active{
		width: 100%;
	}
	.careerSec2_btn{
		margin-top: 20px;
	}
	.careerSec2_btn img{
		width: 30px;
	}

	.careerSec3{
		padding: 40px 0;
	}
	.careerSec3_con{
		padding: 0;
	}
	.careerSec3_prev img,
	.careerSec3_next img{
		width: 30px;
	}
	.careerSec3_prev, .careerSec3_next{
		margin: 20px 20px 0 0;
		position: relative;
		top: 0;
		display: inline-block;

	    -webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	    -o-transform: translateY(0%);
	    transform: translateY(0%);
	}

	.careerSec4{
		padding: 40px 0;
	}
	.careerSec4_con{
		margin-top: 30px;
	}
	.careerSec4_box:nth-child(1){
		width: 100%;
	}
	.careerSec4_box:nth-child(1) .careerSec4_img{
		height: 250px;
	}
	.careerSec4_box:nth-child(2),
	.careerSec4_box:nth-child(3){
		width: 100%;
		position: relative;
		top: 0;
		margin-top: 20px;
	}

	.careerSec5{
		padding: 40px 0;
	}
	.careerSec5_list{
		margin-top: 10px;
		display: block;
	}
	.careerSec5_list li{
		width: 100%;
		margin-top: 20px;
    	padding: 20px 50px 20px 20px;
	}
	.careerSec5_list h6{
		font-size: 18px;
		font-weight: bold;
	}
	.careerSec5_list p{
		font-size: 14px;
	}
	.careerSec5_list a{    
		width: 180px;
    	height: 46px;
		font-size: 16px;
		margin: 20px 0 0 auto;
		position: relative;
		right: 0;
		bottom: 0;
	}
	/* career */

	/* contact */
	.contactWarpper{
		padding: 40px 5%;
	}
	.contactSec2{
		display: block;
	}
	.contactSec2_left{
		width: 100%;
	}
	.contactSec2>div>h6{
		font-size: 22px;
	}
	.contactSec2>div>p{
		font-size: 14px;
	}
	.contactSec2_input{
		width: 48%;
		margin-top: 10px;
	}
	.contactSec2_input input,
	.contactSec2_input select{
		height: 48px;
		font-size: 14px;
	}
	.contactSec2_input textarea{
		font-size: 14px;
		height: 100px;
	}
	.contactSec2_btn{
		margin-top: 20px;
		text-align: left;
	}
	.contactSec2_btn input {
	    width: 140px;
	    height: 44px;
	    font-size: 20px;
	}

	.contactSec2_right{
		margin-top: 30px;
		width: 100%;
	}
	.contactSec2_box{
		padding: 20px;
	}
	.contactSec2_box p span{
		width: 46px;
	}
	.contactSec2_box p span,
	.contactSec2_box h6,
	.contactSec2_box p{
		font-size: 14px;
	}
	/* contact */


	.floatForm_box{
		width: calc(100% - 20px);
		right: 10px;
	}
	.floatForm_box{
		padding: 20px 10px;
	}
	.floatForm_input{
		margin-bottom: 10px;
	}
	.floatForm_input p{
		font-size: 12px;
	}
	.floatForm_input input,
	.floatForm_input select{
		height: 32px;
		font-size: 12px;
	}
	.floatForm_input textarea{
		height: 80px;
		font-size: 12px;
	}

	/* download */
	.downloadWarpper{
		padding: 40px 5%;
	}
	.downloadList{
		margin-top: 10px;
		display: block;
	}
	.downloadList>li{
		width: 100%;
		margin-top: 20px;
		margin-right: 0;
    	padding: 10px 100px 10px 20px;
	}
	.downloadList h6{
		font-size: 18px;
	}
	.downloadList p{
		margin-top: 10px;
		font-size: 14px;
	}
	.downloadList2{
		margin-top: 10px;
		display: block;
	}
	.downloadList2 li{
		margin-top: 20px;
		width: 100%;
    	padding: 20px;
	}
	/* download */
}


@media (min-width: 768px){
	.container{
	    margin: 0 auto;
	    padding: 0;
	}
}
@media (min-width: 1440px){
	.container{
	    width: 1280px;
	}
}
@media (min-width: 1600px){
	.container{
	    width: 1440px;
	}
}
/*@media (min-width: 1760px){
	.container{
	    width: 1620px;
	}
}
*/
