@charset "utf-8";

/*导航栏*/
.nav_menu,
.nav_menu ul,
.nav_menu ul li,
.nav_menu ul li a,
.nav_menu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.nav_menu #menu-button {
	position: absolute;
	z-index: 99999;
}

.nav_menu:after,
.nav_menu>ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.nav_menu #menu-button {
	display: none;
}

.nav_menu {
	width: auto;
	z-index: 99999;
}

#menu-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.nav_menu>ul>li {
	float: left;
	text-align: center;
	/* border-right:solid 1px #e6e6e6; */
	width: 120px;
}

.nav_menu.align-center>ul {
	font-size: 0;
	text-align: center;
}

.nav_menu.align-center>ul>li {
	display: inline-block;
	float: none;
}

.nav_menu.align-center ul ul {
	text-align: left;
}

.nav_menu.align-right>ul>li {
	float: right;
}

.nav_menu.align-right ul ul {
	text-align: right;
}

.nav_menu>ul>li>a {
	text-decoration: none;
	/*-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;*/
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	height: 80px;
	width: 120px;
	padding-top: 30px;
	font-size: 18px;
	color: #272727;
	font-weight: 600;
}

.nav_menu>ul>li:hover>a {
	color: #33aaa9;
	border-top: 3px solid #33aaa9;
}

.nav_menu>ul>li.nav-has-sub>a {
	text-align: center
}

.nav_menu>ul>li.nav-has-sub>a::after {
	position: absolute;
	top: 35px;
	right: 10px;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #444;
	border-right: 1px solid #444;
	content: "";
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}

.nav_menu>ul>li.nav-has-sub:hover>a::after {
	border-color: #444;
}

.nav_menu ul ul {
	position: absolute;
	left: -9999px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.nav_menu li:hover>ul {
	left: auto;
}

.nav_menu.align-right li:hover>ul {
	right: 0;
}

.nav_menu ul ul ul {
	margin-left: 100%;
	top: 0;
}

.nav_menu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}

.nav_menu ul ul li {
	height: 0;
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
}

.nav_menu ul li:hover>ul>li {
	height: auto;
}

.nav_menu ul ul li a {
	padding: 12px 0;
	width: 120px;
	/* border-top: solid 1px #646464; */
	background: #f2efef;
	color: #33aaa9;
	font-size: 13px;
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}

.nav_menu ul ul li:hover>a,
.nav_menu ul ul li a:hover {
	color: #FFFFFF;
	background: #33aaa9;
	/* border-top: solid 1px #33aaa9; */
	padding: 15px 0;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

.nav_menu ul ul li.nav-has-sub>a::after {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}

.nav_menu.align-right ul ul li.nav-has-sub>a::after {
	right: auto;
	left: 10px;
	border-bottom: 0;
	border-right: 0;
	border-top: 1px solid #dddddd;
	border-left: 1px solid #dddddd;
}

.nav_menu ul ul li.nav-has-sub:hover>a::after {
	border-color: #ff8eac;
}

.nav_menu li a span {
	font-size: 12px;
	color: #acacac;
	text-transform: uppercase;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.nav_menu li:hover span {
	color: #FFFFFF;
}

/* PB模板库：Www.PBku.Cn */
/* QQ：43171398 */
/* PBOOTCMS模板交流群号：183945698*/
/* 商龙PBootCMS模板下载  http://www.EcLong.com */
/* 八戒站长 http://www.BaJieZhan.Com  */
/* 站长源码城 整站模板下载网站 Www.CnYmc.Com */
/* 淘搜：Www.TaoSou.Net */
/* 素材海：Www.SuCaiHai.Com */
/* 模板齐：Www.MoBanQi.Com */
/* 开发堂模板网：Www.KaiFaTang.Com */

.my-companyright {
	width: 50%;
}

.my-companyleft {
	width: 50%;
}

.my-companyright img {
	width: 538px;
	padding-left: 2em;
}

.my-companyleft p {
	margin-bottom: 1em;
	font-size: 18px;
	letter-spacing: 0.2em;
}

.my-company {
	margin-top: 2em;
}

.my-font p {
	font-size: 18px;
	margin-bottom: 1.3em;
}

.my-email a {
	color: #ffff !important;
}
.my-email span{
	vertical-align: middle;
}

.my-tti {
	padding: 35px 0px;
}

.my-str {
	text-align: center;
	font-size: 17px;
	margin-bottom: 20px;
	margin-top: 50px;
	letter-spacing: 0.4em;
}

.my-row {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.my-main {
	flex: 0 0 50%;
	max-width: 50%;
}

.my-text {
	margin-bottom: 1.5em;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 0px 15px;
}
.my-text div{
	flex: 1;
}
.my-text div h3{
	margin-bottom: 0.5em;
}
.my-text div p{
	line-height: 2;
}
.my-ttipad{
	padding-bottom: 50px;
}
.my-mainmore{
	text-align: center;
	font-size: 16px;
	margin-top: 1.5em;
}
/* 了解板块样式 */
.my-know{
	padding-top: 75px;
    padding-bottom: 80px;
	margin-bottom: 80px;
}
.yz h2 {
    text-align: center;
    font-weight: normal;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.yz h2 a {
    display: block;
}
.yz h2 em {
    display: inline-block;
    font-size: 35px;
    color: #33aaa9;
    /* background: url(../images/yz-tbg.png) no-repeat left center; */
    height: 74px;
    line-height: 74px;
    /* padding-left: 95px; */
}
i, em {
    font-style: normal;
}
b {
    font-weight: bold;
}
.yz h2 span {
    display: block;
    background: url(../images/xian.png) no-repeat right center;
    height: 26px;
    line-height: 26px;
    color: #333;
    margin-top: 7px;
    letter-spacing: 6px;
    width: 522px;
    margin: 7px auto 0;
    /* padding-left: 82px; */
    box-sizing: border-box;
}
.clearfix {
    zoom: 1;
}
.yz .con li:first-child {
    padding-left: 0;
}
.yz .con li:last-child {
    border-right: 0;
}
.yz .con li {
    float: left;
    padding: 0 52px;
    height: 86px;
    border-right: 1px solid rgba(51, 51, 51, 0.2);
}
.yz .con li em {
    display: inline-block;
    font-size: 60px;
    color: #33aaa9;
    /* font-family: Arial, 宋体; */
    font-weight: bold;
    line-height: 80%;
    position: relative;
    height: 45px;
}
i, em {
    font-style: normal;
}
.yz .con li i {
    display: inline-block;
    font-size: 24px;
    color: #333;
    line-height: 24px;
    margin-left: 13px;
    vertical-align: bottom;
}
.yz .con li span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    color: #333;
    margin-top: 27px;
}
.yz .con {
    margin-top: 58px;
}

/* 底部样式更改 */
.my-footbottom{
	/* border-top: 1px solid #414141; */
	padding: 23px 0px;
    border-top: 1px solid #4b4c4d;
    background: #363839;
	color: #8c8989;
}
.my-footcontent{
	margin: 30px 0px;
}
.my-footcontent p{
	line-height: 1.5;
}
.dw3 a{
	color: #bebdbd;
	padding-right: 6em;
}
.dw3 i{
	color: #33aaa9;
}
.dw3 a:hover{
	color: #33aaa9;
}
.my-partner,.my-order{
	text-align: center;
}
.my-order img{
	width: 1100px;
}

/* 证书的样式 */
.my-authentication{
	display: flex;
}
.my-aubox{
	display: flex;
	flex-wrap: wrap;
	flex: 50%;
}
.my-aubox div{
	flex: 0 0 50%;
	text-align: center;
}
.my-aubox div img{
	width: 250px;
	height: 168px;
}
.my-aubox div p,.my-aubox2 p{
	padding: 10px 0px;
	font-size: 16px;
	font-weight: bolder;
}
.my-aubox2 img{
	height: 376px;
}
.my-aubox2{
	flex: 25%;
	text-align: center;
}
.my-mainmore a{
	width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(0, 0, 0, .4);
    color: #FFFFFF;
    display: block;
    margin: 0 auto;
	border-radius: 500px;
}
.my-mainmore a:hover {
    background: #33aaa9;
}