﻿body,
html {
	width: 100%;
	height: 100%;
}

img {
	max-width: 100%;
}

.clear1 {
	display: block;
}

.clear2 {
	display: none;
}

.clear3 {
	display: none;
}
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1300px;
	}
}
/*新增*/
.team-wrapper .swiper-pagination-bullet{
	width:24px;
	height:8px;
	border-radius:0;
	border-radius:8px;
}
.team-wrapper.swiper-container{
	padding-bottom:40px;
}
.team-wrapper.swiper-container-horizontal>.swiper-pagination-bullets{
	bottom:0;
}
.team-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1d95cf!important;
}
/**/
header .container{
	min-height:100px;
}
.fupad {
	display: flex;
	outline: 0;
	margin-right: 10px;
}
.head_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.head_left .rz,
.head_left .lang{
	margin: 5px 0px 0;
	font-weight: bold;
}
.head_left span{
	display: inline-block;
	margin: 5px 15px 0;
}
.head_left .rz i,
.head_left .lang i{
	font-size: 18px;
	margin-right: 5px;
	font-weight: normal;
}

header .by{
	margin-top: 5px;
	font-weight: bold;
}

#navbarNavDropdown .navbar-nav>li:hover .dropdown-menu {
	display: block;
}


.pc_header>.container {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;

}
/**/
.video-tb {
	position: fixed;
	right:10%;
	bottom: 15%;
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	z-index: 10000000000;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border: 1px solid #fff;
	cursor: pointer;
	transition: all 0.3s;
}
.video-tb.active{
	right: 3%;
	bottom: 10%;
	transition: all 0.3s;
}
.video-tb:hover{
	margin-bottom: 5px;
	transition: all 0.3s;
}
.video-box{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.video-box img{
	margin-right: -5px;
}
.video-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: circlepulse2 1.5s ease 0s infinite;
    animation: circlepulse2 1.5s ease 0s infinite;
    z-index: 0;
}
@-webkit-keyframes circlepulse2 {
	0% {
		-webkit-box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 0px rgba(0, 0, 0, 0.5);
	}
	50% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
	}
	100% {
		-webkit-box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 0px 0 20px rgba(0, 0, 0, 0.2);
	}
}
.pop_up_video {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999999;
}

.pop_up_video>div {
	display: flex;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
}

.pop_up_video .video {
	position: relative;
	width: 100%;
	max-width: 1200px;
}

.pop_up_video .video>span {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0px;
	right: 0px;
	line-height: 60px;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 30px;
	z-index: 99;
	cursor: pointer;
}

/**/
.head_right{
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.head_right a{
	color: #fff;
	display: block;
	width: 143px;
	height: 40px;
	line-height: 40px;
	background: #1d95cf;
	text-align: center;
	border-radius:3px ;
}
.head_right a i{
	color: #fff;
	margin-right: 5px;
	font-size: 18px;
}

/**/

ul.navbar-nav {
	width: 100%;
	justify-content: space-between;
}

.header-position{
	position: relative;
	width: 100%;
	
}

.header-bottom.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	
}
.header-bottom{
	width: 100%;
	height:60px;
	background:#222222;
}

.header-bottom .nav-link{
	position: relative;
	display: flex;
    color: #fff;
    height: 60px;
    font-weight: bold;
    align-items: center;
}
.header-bottom .dropdown .nav-link:before{
	position: absolute;
    content: "";
    left: 30px;
    bottom: 0;
    margin-left: -8px;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom:0px solid #fff;
    transition: all 0.3s;
}

.header-bottom .nav-link:after{
	position: absolute;
    content: "";
    left:0;
    right: 100%;
    height: 3px;
    background: #1d95cf;
    bottom: 0;
    transition: all 0.3s;
}
.header-bottom .dropdown .nav-link:after{
	display: none!important;
}
.header-bottom .nav-link:hover:after{
	right: 0px;
	transition: all 0.3s;
}
.header-bottom .nav-item.dropdown:hover .nav-link:before{
	border-bottom:6px solid #fff;
	transition: all 0.3s;
}
.header-bottom .navbar{
	padding: 0;
}
.header-bottom .dropdown-menu{
	display: none;
	width: 220px;
	padding:0;
	left:0;
	margin: 0;
	top: 100%;
	background: #fff;
	color: #666;
	border-radius: 0;
	text-align: center;
}
.header-bottom .dropdown:hover .dropdown-menu{
	display: block;
}
.header-bottom .dropdown-menu ul li{
	position: relative;
	text-align: left;
	list-style:  none;
	line-height: 40px;
	border-bottom: 1px solid #EAEAEA;
}
.header-bottom .dropdown-menu ul li:before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	right: 100%;
	bottom: 0;
	background: #1d95cf;
	transition: all 0.3s;
	z-index: 0;
}
.header-bottom .dropdown-menu ul li:hover:before{
	right: 0;
	transition: all 0.3s;
}
.header-bottom .dropdown-menu ul li:last-child{
	border-bottom: none;
}
.header-bottom .dropdown-menu ul li a{
	position: relative;
	z-index: 2;
	color: #666;
	font-size: 14px;
	height: auto;
overflow: hidden;
   white-space: nowrap;
text-overflow: ellipsis;
}
.header-bottom .dropdown-item:focus,.header-bottom .dropdown-item:hover{
	color: #fff;
	background: none;
	font-weight: bold;
	transition: all 0.3s;
}

/* 手机端导航栏 */

.mobile_header {
	background: #ffffff;
	color: #333333;
	width: 100%;
}

.mobile_header a {
	color: #333333;
}

.mobile_header_title {
	display: flex;
    height: 70px;
    background: #ffffff;
    box-shadow: rgb(102, 102, 102) 0.01rem 0.01rem 0.08rem;
    justify-content: space-between;
    align-items: center;
}

.mobile_header_title .head_right{
	display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.mobile_header_title .head_right p{
	font-size: 14px;
	margin-right: 10px;
}
.mobile_header_title img {
	display: inline-block;
	height:48px;
}

.mobile_header_list {
	background: #1b1b1b;
	width: 100%;
	cursor: pointer;
	color: #ffffff;
	display: none;
	min-height: 100vh;
}

.mobile_header_list .card {
	background: none;
}

.mobile_header_list input {
	background: transparent;
	border: 0;
	width: calc(100% - 100px);
}

.mobile_header_list .btn:focus {
	outline: none;
	box-shadow: none;
}

.mobile_header_list input:focus {
	border: none;
	box-shadow: none;
	outline: none;
	background-color: transparent;
}

.mobile_header_list input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #999 !important;
}

.mobile_header_list input::-webkit-input-placeholder {
	color: #999 !important;
}

.mobile_header_list input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999 !important;
}

.mobile_header_list input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999 !important;
}

.mobile_header_list .card h5 img {
	float: right;
	margin-top: 0.4rem;
	margin-right: 0.25rem;
}

.mobile_header_list .card h5 img:nth-child(2) {
	display: none;
}

.mobile_header_list .card h5 {
	line-height: 50px;
	font-size: 14px;
	padding-left: 15px;
	color: #ffffff;
	position: relative;
	cursor: pointer;
	border-bottom: 1px dashed #999;
	width: 90%;
	margin: auto;
}

.mobile_header_list .card h5 .btn {
	float: right;
	margin-top: 0.4rem;
	color: #ffffff;
	margin-right: 3%;
}

.mobile_header_list .card h5::after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	right: 5%;
	top: 50%;
	margin-top: -0.06rem;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.mobile_header dl{
	display: flex;
	margin-bottom: 0;
}
.mobile_header dl dd{
	margin-bottom: 0;
	margin: 0 10px;
}

.mobile_header_list .card:last-child h5::after {
	border: 0;
}

.mobile_header_list .card.nodropdown h5::after {
	border-bottom: none;
	border-right: none
}

.mobile_menu_title.active h5::after {
	-webkit-transform: translate3d(0, 0px, 0) rotate(-135deg);
	transform: translate3d(0, 0px, 0) rotate(-135deg);
}


.mobile_header .card-body {
	background: #111111;
	padding: 15px;
}

.card-body ul {
	width: 90%;
	margin: auto;
}

.card-body ul li {
	list-style: none;
}

.card-body ul li a {
	color: #ffffff;
	line-height: 36px !important;
}

.moblie_title_left {
	padding-left: 25px;
	margin-right: 20px;
}
.mobile_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mobile_right>a{
	font-size: 12px;
	color: #fff;
    display: block;
    width: 100px;
    height:30px;
    line-height:30px;
    background: #1d95cf;
    text-align: center;
    border-radius: 3px;
}
.moblie_title_search {
	float: right;
	width: 10%;
	height: 70px;
	text-align: center;
	justify-content: center;
	padding-top: 25px;
	color: #999;
	font-size: 12px;
	cursor: pointer;
	position: relative;
}

.moblie_title_right {
	width:40px;
	text-align: center;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
	cursor: pointer;
}

.menuicon {
	width: 20px;
	height: 2px;
	background: #999;
	position: relative;
	left: 50%;
	top: 50%;
	margin-top: -10px;
	margin-left: -10px;
}

.menuicon::before {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: -6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.menuicon::after {
	content: '';
	width: 20px;
	height: 2px;
	background: #999;
	position: absolute;
	left: 0;
	top: 6px;
	z-index: 999;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.moblie_title_right.is-active .menuicon {
	background: none;
}

.moblie_title_right.is-active .menuicon::before {
	-webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
	transform: translate3d(0, 8px, 0) rotate(45deg);
}

.moblie_title_right.is-active .menuicon::after {
	-webkit-transform: translate3d(0, -4px, 0) rotate(-45deg);
	transform: translate3d(0, -4px, 0) rotate(-45deg);
}

/*banner*/

.banner-wrapper .swiper-slide,
.swiper-container {
	width: 100%;
	height: 100%;
}

#banner {
	position: relative;
	width: 100%;
}

#banner .swiper-slide a {
	position: relative;
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#banner .swiper-slide img{
	width: 100%;
}


#banner:hover .banner_button{
	display: flex;
}
.banner_button{
	display: none;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 60px;
	margin-top: -30px;
	background: rgba(0,0,0,0.3);
	z-index: 33;
	    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}
.buttonbox{
	position: absolute;
	bottom: 10%;
	left: 0;
	width: 100%;
	z-index: 2;
}
.buttonbox .container{
	display: flex;
    justify-content: flex-end;
}
.banner_button.button-next{
	right: 0;
}
.banner_button.button-left{
	left: 0;
}
#banner .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    border-radius: 0;
    transition: all 0.4s;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 1;
    margin: 0 5px;
}
#banner .swiper-pagination-bullet-active {
	position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid #1d95cf;
    transition: all 0.4s;
    background: rgba(0,0,0,0);
}
#banner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1d95cf;
    top: 4px;
    border-radius: 50%;
    left: 4px;
}
/**/
.warpbox{
	padding: 90px 0;
}
.title{
	margin-bottom: 60px;
}
.title h1{
	text-align: center;
color: #333;
font-weight: bold;
font-size: 34px;
}
.title p{
	text-align: center;
}
/**/
#product{
	padding-bottom: 0;
}
.service_li:after,
.choose-li:after{
	content: '.';
	height: 0;
	clear: both;
	visibility: hidden;
	display: block;
	font-size: 0
}
.service_li li{
	position: relative;
	float: left;
	list-style: none;
	width:calc(33.33333% - 10px);
	margin: 5px;
}
.service_li li:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.4);
	z-index: 1;
	transition: all 0.5s;
}
.service_li li>a{
	display: flex;
	position: absolute;
	top: 0;
	left: 5%;
	bottom: 0;
	right: 0;
	flex-direction: column;
    justify-content: center;
    color: #fff;
    z-index: 9;
}
.service_li li>a h2{
	font-size: 20px;
	font-weight: bold;
	margin-bottom:30px;
}
.service_li li>a span{
	display: inline-block;
	width: 146px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #1d95cf;
}
.img-box{
	overflow: hidden;
}
.img-box img{
	width: 100%;
	transform: scale(1);
	transition: all 0.5s;
}
.service_li li:hover:after{
	opacity: 0;
	transition: all 0.5s;
}
.service_li li:hover .img-box img,
.img_ul_li li:hover .img-box img{
	transform: scale(1.1);
	transition: all 0.5s;
}
/**/
#choose{
	padding-bottom: 140px;
	background: url(../images/choose_bj.jpg) no-repeat center bottom;
}
.choose-li{
	margin-left: -15px;
	margin-right: -15px;
}
.choose-li li{
	display: flex;
	float: left;
	width:calc(50% - 40px);
	margin: 15px 20px 30px;
	list-style: none;
	align-items: center;
    justify-content: flex-start;
}
.choose-li li img{
	margin-right: 30px;
}

.choose-li li h5{
	font-weight: bold;
	font-size: 18px;
}

.more {
	margin-top: 40px;
	text-align: center;
}
/**/
#case{
	padding-bottom: 40px;
}
.case-wrapper{
	padding: 0 5px 60px;
}

.case-wrapper .swiper-slide{
	position: relative;
}
.case-wrapper .case-list{
	position: absolute;
	bottom: 50px;
	left: 30px;
	right: 30px;
	color: #fff;
	padding-bottom: 30px;
	z-index: 2;
}
.case-wrapper .swiper-pagination,
.news-wrapper .swiper-pagination{
	display: none;
}
.case-wrapper .swiper-slide:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	transition: all 0.3s;
}
.case-wrapper .swiper-slide:before{
	content: "";
	position: absolute;
	bottom: 50px;
	left: 30px;
	right: 30px;
	height: 1px;
	background: rgba(255,255,255,0.5);
	z-index: 3;
	transition: all 0.3s;
}
.case-wrapper .case-list img{
	margin-bottom: 28px;
	width: 45px;
}
.case-wrapper .case-list p{
	font-weight: bold;
	font-size: 16px;
}
.case-wrapper .swiper-slide:hover:after{
	opacity: 0;
	transition: all 0.3s;
}
.case-wrapper .swiper-slide:hover:before{
	height: 2px;
	background: #fff;
	transition: all 0.3s;
}
.case-wrapper .swiper-pagination-bullet-active,
.news-wrapper .swiper-pagination-bullet-active{
	background: #1d95cf;
}
.case-wrapper .swiper-slide>img{
	width: 100%;
}
/**/
.news-wrapper {
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: -20px;
	padding: 10px 10px 40px;
}
.news-wrapper .date {
	font-weight: bold;
	color: #999;
}
.news-wrapper .date i{
	float: left;
	margin-top: 5px;
	margin-right: 10px;
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #1d95cf;
}
.news-wrapper h3{
	min-height:56px;
	margin:30px 0 20px;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s;
	    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
	line-height:28px;
    -webkit-box-orient: vertical;
}
.news-wrapper p{
	min-height:78px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-wrapper a span{
	display: inline-block;
	margin-top:30px;
	width: 100px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	background: #eee;
	font-size: 14px;
	transition: all 0.3s;
}
.news-wrapper .swiper-slide a{
	display: block;
	padding:25px 20px;
	transition: all 0.3s;
}
.news-wrapper .swiper-slide a:hover{
	box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	transition: all 0.3s;
}
.news-wrapper .swiper-slide a:hover h3{
	color: #1d95cf;
	transition: all 0.3s;
}
.news-wrapper .swiper-slide a:hover span{
	background: #1d95cf;
	color: #fff;
	transition: all 0.3s;
}
/**/
.contact-bottom{
	padding: 40px 0;
	background: #1d95cf;
}
.contact-bottom h3{
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 0;
}
.contact-bottom .container{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-bottom .feedback-form{
	width: calc(100% - 250px);
}
.contact-bottom  .form-row>div{
	display: flex;
	width: calc(100% - 170px);
}
.contact-bottom .form-group{
	width:calc(33.3333333% - 20px);
	margin-bottom: 0;
	margin-right: 20px;
	
}
.contact-bottom .form-control{
	height: 53px;
	border-radius: 0;
	border: 0;
	font-size: 14px;
}
.contact-bottom .btn{
	width: 151px;
	height: 53px;
	background:#222222;
	border-radius: 0;
	color: #fff;
	font-weight: bold;
}
/**/
.footer{
	background: #222222;
}
.footer a{
	color: #fff;
}
.footer_bottom{
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
    min-height:40px;
    background: #101010;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}


.footer_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 80px;
}
.footer_top .link{
	max-width: 35%;
	min-width: 220px;
	color: #FFFFFF;
}
.footer_top .link h3{
	position: relative;
	font-size:18px;
	font-weight: bold;
	padding-bottom: 25px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.footer_top .link h3:before{
	position: absolute;
	content: "";
	bottom: -1px;
	width: 30px;
	height: 2px;
	background: #1d95cf;
}
.footer_top .link>a{
	display: block;
	width:100%;
	min-width: 150px;
	line-height: 28px;
}
.footer_top .link>a:hover{
	color:#fff;
	transition-duration:underline;
}
.footer_bottom .container{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.tb-bottom li{
	    display: flex;
    align-items: center;
    justify-content: center;
	list-style: none;
	float: left;
	width: 40px;
	height: 40px;
	border-radius: 2px;
	background: #313131;
	font-size: 18px;
	margin-right:15px;
}
/**/
#banner-img{
	height: 300px;
}
.container-banner{
	display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.container-banner h3{
	font-weight: bold;
	color: #fff;
}
.db{
	padding:10px 0 0;
	line-height: 20px;
	font-weight: normal;
	color: #fff;
}
.db a{
	color: #fff;
}
.center_main{
	padding: 80px 0;
}
.about_main .txtbox{
	min-height: 500px;
}
.title_ny{
	text-align: center;
	margin-bottom: 40px;
}
.title_ny h2{
	font-weight: bold;
	font-size: 28px;
}

/**/
.contli {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
    align-items: flex-start;
}
.contli li{
	display: flex;
    list-style: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
}

.contli li em{
	width:100px;
	height: 100px;
	background: #1d95cf;
	color: #fff;
	text-align: center;
	line-height:98px;
	border-radius: 50%;
	font-size:28px;
	border: 1px solid #fff;
	box-shadow: 0 3px 0px rgba(193,76,31,0.2);
}
.contli li h3{
	margin: 30px 0 20px;
	font-size: 20px;
	font-weight: bold;
	width: 100%;
	padding-bottom: 20px;
	text-align: center;
	border-bottom: 1px solid #EAEAEA;
}
.con_right {
	margin-top:80px;
    padding: 60px 60px 120px;
    background: #f5f5f5;
}
.con_right>h3 {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}
.feedback-form .form-control-input {
	position: relative;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	width: 100%;
	padding: 15px 15px 15px 20px;
	height: 57px;
	line-height: 26px;
	color: #000;
	background-repeat: no-repeat;
	background-position: 0.5rem center;
	background-size: 0.5rem;
	border: 1px solid #e5e5e5;
	border-radius: 0;
	transition: all .3s;
	outline: 0;
}

.feedback-form .form-textarea {
	padding-left: 20px;
	height: 180px;
}

.feedback-submit {
	float: right;
	background: #1d95cf;
	color: #ffffff;
	border-radius: 0;
	width: 100%;
	max-width: 300px;
	height: 51px;
}

.feedback-submit:hover {
	color: #fff;
	background: #e64e13;
}

.feedback-form .form-control-input .form-control,
.feedback-form .form-textarea {
	background-color: #ffffff7a;
}

/**/
.about-box {
    padding;20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #EAEAEA;
}
.about-box .about-text{
	margin-left:5%;
	padding-right: 5%;
	width: 50%;
}

.about-box .img-video{
	position: relative;
	width: 50%;
}
.about-box .img-video-box{
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.1);
	align-items: center;
    justify-content: center;
} 
.about-box .img-video-box .video-box{
	width: 60px;
	height: 60px;
	background: rgba(255,255,255,0.8);
	border-radius: 50%;
}
.capacity_box>div{
	display: flex;
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    align-items: center;
}
.capacity_box em{
	margin-right: 10px;
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: #1d95cf;
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	font-size: 25px;
	font-family:'Impact';
}
.capacity_box h6{
	margin-bottom: 0;
	width: calc(100% - 50px);
	font-size: 16px;
	line-height: 28px;
}
.value-list{
	margin-top: 80px;
	display: flex;
    color: #fff;
    font-weight: bold;
    text-align: center;
    justify-content: space-around;
    align-items: center;
}
.value-list li{
	list-style: none;
	min-width: 200px;
}
.value-list li p{
	font-size: 20px;	
}
.value-list li img{
	width: 80px;
	margin-bottom: 30px;
}
.culture-text{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.zs-wrapper{
	margin-bottom: -20px;
	padding-bottom:60px;
	margin-top: 40px;
}
.zs-wrapper .swiper-pagination-bullet-active{
	background: #1d95cf;
}
.cul-wrapper{
	padding:20px;
}

.cul-wrapper .swiper-slide{
	text-align:center;
	border:1px solid #eaeaea;
	padding:80px 30px;
	box-shadow:0 1px 3px rgba(0,0,0,0.2)
}
.cul-wrapper .swiper-slide i {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #1d95cf;
    line-height: 100px;
    font-size: 24px;
    border: 2px solid #1d95cf;
}

.cul-wrapper .swiper-slide i img {
   width: 50%; 
   margin-bottom: 5px;
}    

.cul-wrapper .swiper-slide h4{
	margin:25px 0;
}
.cul-wrapper .swiper-slide p{
	line-height:22px;
	min-height:120px;
}
/**/
.nav-wrapper .swiper-slide{
	width: auto!important;
	background: #f5f5f5;
}
.nav-wrapper .swiper-slide a{
	display: inline-block;
	width: 100%;
	line-height: 30px;
	padding: 10px 20px;
	text-align: center;
}
.nav-wrapper .swiper-slide a.cur{
	background: #1d95cf;
	color:#fff;
}
/**/
li{
	list-style: none;
}
.img_ul_li{
	margin-left: -15px;
	margin-right: -15px;
}
.img_ul_li li{
	float: left;
	margin: 15px;
	width: calc(33.3333% - 30px);
	cursor: pointer;
}
.product-li,
.factory-li{
	margin-top: 40px;
	
}
.product-li li{
	border: 1px solid #ddd;
}
.product-li li h2,
.factory-li .text-box h2{
	font-size: 18px;
	font-weight: bold;
}

.product-li .text-box{
	padding:20px;
	border-top: 1px solid #ddd;
}
.product-li li p,
.factory-li .text-box p{
	color: #666;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-li li:hover h2,
.factory-li li:hover h2{
	color: #1d95cf;
}
/**/
.factory-li{
	text-align: center;
}
.factory-li .text-box{
	padding: 20px 10px;
}
/**/
.news-li .text-box{
	padding: 15px;
	background: #f5f5f5;
}
.news-li .text-box h2{
	font-size: 16px;
	color: #000;
	line-height: 28px;
	    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-li li{
	transition: all 0.3s;
	border-radius: 10px;
	overflow: hidden;
}
.news-li li:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	transition: all 0.3s;
	border-radius: 0px;
	
}
.news-li li:hover .text-box{
	background: #fff;
	
}
.news-li li:hover .text-box>div{
	border-color: #1d95cf;
}
.news-li .text-box p{
	font-size: 14px;
	color: #666;
	line-height: 28px;
	    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-li .text-box span{
	display: inline-block;
	color: #666;
	font-size: 14px;
}
.news-li .text-box >div{
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #ddd;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-view-container {
	width: 100%;
}

.news-share {
	padding-top: 8px;
	padding-bottom: 8px;
	border: #c5c5c5 1px dashed;
	margin: 0 auto;
	margin-top: 15px;
}

.news-con-title {
	text-align: center;
}

.news-con-title h3 {
	margin-bottom: 30px;
	font-size: 30px;
}

.news-conner {
	margin-top: 30px;
	color: #444;
}
.news-bottom {
	display: flex;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px dashed #ddd;
	margin-top: 150px;
	justify-content: space-between;
}
/**/
.process_center .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.process_box h1{
	font-weight: bold;
	margin-bottom:30px;
}
.pro-type-nav {
	display: flex;
	text-align: left;
	background: #f3f6ff;
	padding: 15px 20px;
	line-height: 30px;
	align-items: center;
	justify-content: space-between;
}

.pro-type ul {
	height: 0;
	overflow: hidden;
}

.pro-type.cur ul {
	height: 100%;
}
.pro-type.cur>a{
	background: #1d95cf;
	color: #fff;
}
.pro-nav-box{
	position: sticky;
    top: 80px;
	width: 320px;
}
.process_box{
	width: calc(100% - 370px);
}
.pro-type{
	margin-bottom: 10px;
}
.pro-type.cur>.pro-type-nav i {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	/* IE 9 */
	-webkit-transform: rotate(180deg);
	transition: all 0.3s;
}

.pro-type>.pro-type-nav i {
	transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	/* IE 9 */
	-webkit-transform: rotate(0deg);
	transition: all 0.3s;
}
.pro-type ul{
	background: #f3f6ff;
}
.pro-type li {
	padding: 15px 15px;
	font-size: 14px;
	border-bottom: 1px solid #EAEAEA;
}
.pro-type li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #666;
}
.pro-type li:hover{
	background: rgba(0,0,0,0.05);
}
.pro-type li:hover a{
	color: #000;
}
.pro-type li:last-child {
	border: none;
}
.title-tab{
	display: flex;
	margin-top: 40px;
	margin-bottom: 30px;
	width: 100%;
	height: 36px;
	/*border-top-left-radius: 36px;
	border-bottom-left-radius: 36px;*/
	overflow: hidden;
	justify-content: space-between;
    align-items: center;
    background: #f3f6ff;
}
.title-tab a{
	margin-right: 20px;
	font-weight: bold;
	color: #666;
}
.title-tab a:hover{
	color: #1d95cf;
}
.title-tab a:hover i{
	color: #1d95cf;
}
.title-tab i{
	color: #999;
	margin-left: 5px;
}
.title-tab h5{
	position: relative;
	display: inline-block;
	padding: 0 20px;
	font-size:16px;
	background: #1d95cf;
	color: #fff;
	font-weight: bold;
	line-height: 36px;
	margin-bottom: 0;
}
.title-tab h5:before{
	position: absolute;
	content: "";
	width:4px;
	top: 0;
	bottom: 0;
	right: -8px;
	background: #1d95cf;
	opacity: 0.8;
}
.title-tab h5:after{
	position: absolute;
	content: "";
	width:4px;
	top: 0;
	bottom: 0;
	right: -16px;
	background: #1d95cf;
	opacity: 0.2;
}
.products-wrapper,
.facility-wrapper {
	margin-bottom: -20px;
	padding-bottom: 50px;
}
.products-wrapper .swiper-pagination-bullet-active,
.facility-wrapper .swiper-pagination-bullet-active{
	background: #1d95cf;
}
.products-wrapper .swiper-slide,
.facility-wrapper .swiper-slide{
	border: 1px solid #ddd;
}
.products-wrapper .text-box,
.facility-wrapper .text-box{
	padding: 15px;border-top: 1px solid #ddd;
}
.products-wrapper .text-box h2,
.facility-wrapper .text-box h2{
	font-size: 14px;
	font-weight:bold;
}
.products-wrapper .text-box p,
.facility-wrapper .text-box p{
	line-height:22px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
/**/
.network-list{
	margin-top: -15px;
	margin-left: -15px;
	margin-right: -15px;
}
.network-list i{
	width:40px;
	height:40px;
	background: #f5f5f5;
	border-radius: 50%;
	text-align: center;
	line-height: 38px;
	color: #1d95cf;
	font-size: 24px;
}
.network-list li{
	float: left;
	    display: flex;
    width: calc(50% - 30px);
    padding: 25px;
    margin: 15px;
    border: 1px solid #EAEAEA;
    border-bottom: 3px solid #1d95cf;
    justify-content: space-between;
}
.network-list li>div{
	width: calc(100% - 60px);
}

.network-list li h4{
	line-height:40px;
	margin-bottom: 40px;
	font-size: 22px;
}

.network-list li p{
	font-size: 14px;
}
/**/
.choose-h6{
	font-weight: bold;
	margin:40px 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #EAEAEA;
}
.flow-box{
	margin: 15px 0;
}
.flow-box span{ 
	display: inline-block;
	margin: 5px;
	padding:8px 20px;
	line-height: 30px;
	border-radius: 3px;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	background: #f8f8f8;
	 /*background-image: linear-gradient(-90deg, #1d95cf , #ddd);*/
}
.team-box{
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.team-box>img{
	margin-right: 40px;
	width: 50%;
}
.team-box h3{
	font-weight: bold;
	font-size: 24px;
	color: #1d95cf;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.team-box h6{
	font-weight: bold;
	margin-bottom: 20px;
}
/**/
.hiden-pronav{
	display:none;
	width:100%;
	margin-top:-20px;
    text-align: left;
    background: #f3f6ff;
    padding: 15px 20px;
    line-height: 30px;
    align-items: center;
    justify-content: space-between;
}
.hiden-pronav.cur{
	background:#1d95cf;
	color:#fff;
}
/**/
.catname_list li h2{
	padding:10px 0;
	text-align:center;
	font-size:16px;
}
.good-box-warp{
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
 .pro-view-left {
 	width: 100%;
    max-width:calc(50% - 40px);
}
 .pro-img {
    text-align: center;
}
.pro-view-img {
    width: 100%;
    margin: auto;
    position: relative;
}
 .pro-view-right {
    width:100%;
    max-width: 50%;
}
.gallery-thumbs {
	margin: 20px 0;
    padding: 10px;
}
.gallery-top{
	position: relative;
	border: 1px solid #eaeaea;
}
.gallery-top .swiper-slide img{
	width: 100%;
}.gallery-top .swiper-slide{
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
 .pro-title {
    font-size: 18px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
 .pro-title h1 {
	 padding-bottom:15px;
    font-size: 24px;
    margin-bottom: 0;
    font-weight: bold;
	border-bottom: 1px solid #eaeaea;
}
.pro-view-back {
 
    font-size: 14px;
    top: 0px;
}

 .pro-back a {
    display: inline-block;
    font-size: 16px;
    padding: 10px 0px;
    margin-right: 10px;
    width: 120px; 
	background: #111;
    color: #ffffff;
    text-align: center;
}



.pro-back {
    display: flex;
    margin-top: 20px;
    align-items: center;
}
.gallery-thumbs{
	position: relative;
	padding: 10px 0;
}
.gallery-thumbs .swiper-slide{
	border: 1px solid #eaeaea;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active{
	border-color: #1557cc;
}
.gallery-top:hover .swipers-bt{
	display: block;
}
.swipers-bt{
	display: none;
	position: absolute;
	font-size: 24px;
	top: 50%;
	margin-top: -25px;
	width: 30px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	z-index: 2;
	color: #fff;
	background: rgba(0,0,0,0.5);
}
.pro-view-but-next{
	right: 0px;
}
.pro-view-but-prev{
	left: 0px;
}

.recombox{
	padding: 40px 0;
	width: 100%;
	background: #f5f5f5;
}
.title-recom h2{
	font-size: 26px;
	font-weight: bold;
}
.recombox .pro-item h3 {
	text-align: center;
    font-size: 16px;
    color: #000;
    font-weight: normal;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.recombox  .swiper-slide .pro-item{
	padding-bottom: 15px;
}


.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: #eeeeee;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.jumpto {
    display: none;
}


.erji {
    height: auto;
    overflow: hidden;
	margin-top:10px;
	margin-bottom:10px;
}

.erji li {
    list-style-type: none;
    width: 120px;
    height: 30px;
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.erji li a {
    display: block;
    height: 30px;
    line-height: 28px;
	font-size:14px;
    color: #2c3135;
    background-color: #EEEEEE;
    text-align: center;
}

.erji li a:hover {
    color:#0063FF;
   }
   
.erji li.hover a {
    color:#0063FF;
   }
   
.erji li > a::after {
    width: 0;
    transition: width .3s;
    height: 2px;
    display: block;
    margin: 0 auto;
    content: "";
    background-color:#0063FF;
}

.erji li > a:hover:after{
	width:100%;
	height:2px;
	display:block;
	content:"";
	transition:width .3s;
	background-color:#0063FF;
}  

.yd {
    display: none;
}

.yc {
    display: block;
}


@media (max-width: 1200px) {
	.pro-nav-box{
		width:270px;
	}
	.process_box{
		width:calc(100% - 290px)
	}
	.about-box{
		padding: 3%;
	}
	.about-box .about-text{
		width: 80%;
		margin-left: 4%;
		padding: 0;
	}
	.img_ul_li{
		margin-left: -8px;
		margin-right: -8px;
	}
	.img_ul_li li{
		margin: 8px;
		width: calc(33.3333% - 16px);
	}
	.case-wrapper .swiper-pagination,
	.news-wrapper .swiper-pagination{
		display: block;
	}
	.head_left .rz i, .head_left .lang i{
		font-size: 14px;
		margin-right: 0;
	}
	.head_left span{
		margin: 5px 10px 0;
	}
	.service_li li>a h2{
		margin-bottom: 20px;
	}
	.service_li li>a span{
		width: 105px;
		height: 35px;
		line-height: 35px;
	}
	header .by{
		font-size: 12px;
	}
	.head_left .rz, .head_left .lang{
		font-size: 12px;
	}
	.logo1{
		height: 50px;
	}
	.network-list li{
		width: calc(50% - 30px);
	}
}
@media (max-width: 991px) {
	.good-box-warp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
	}
	
	.pro-view-left,.pro-view-right{
		width:100%;
		max-width: initial;
	}
	
	.pro-view-right{
		margin-top: 30px;
	}
	
	.clear1{
		display:none;
	}
	.clear2{
		display:block;
	}
	.hiden-pronav{
		
	display: flex;
	}
	.process_box{
		margin-top:30px;
	}
	.pro-nav-box{
		display:none;
	}
	.process_center .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column-reverse;
	}
	.process_box,.pro-nav-box{
		width:100%;
	}
	.contli li h3{
		margin-top: 20px;
		margin-bottom: 0;
		border: none;
		padding-bottom: 0;
	}
	.contli li {
		padding-bottom: 25px;
		border-bottom: 1px solid #ddd;
		margin-bottom: 25px;
	}
	.contli li em{
		width: 60px;
		height: 60px;
		line-height: 58px;
	}
	.contli {
    flex-direction: column;
    margin-bottom: 20px;
	}
	.network-list li{
		width: calc(100% - 30px);
	}
	.team-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
	}
	.team-box img{
		width: 100%;
		margin: 40px 0 0;
	}
	.about-box {
    flex-direction: column!important;
	}
	.img_ul_li li{
		width: calc(50% - 16px);
	}
	.header-position{
		display: none;
	}
	.service_li li{
		width: calc(50% - 10px);
	}
	.choose-li li{
		width: calc(100% - 40px);
	}
	.contact-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
	}
	.about-box .img-video,
	.about-box .img-video>img{
		width: 100%;
	}
	.about-box .about-text{
		width: 100%;
		margin-top: 5%;
		margin-left: 0;
	}
	.contact-bottom .feedback-form{
		margin-top: 25px;
		width: 100%;
	}
	.contact-bottom .form-control,
	.contact-bottom .btn{
		height: 45px;
	}
	.footer_top .link{
		margin-bottom:30px;
	}
	.footer_top {
    flex-wrap: wrap;
	}
	.footer_bottom .container {
        display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
	}
	.footer_bottom ul{
		margin-right: -15px;
		margin-bottom: 20px;
	}
		.title h1{
		font-size:30px;
	}
	.title{
		margin-bottom: 40px;
	}
	.buttonbox{
		bottom: 15%;
		transform: scale(0.8);
	}
	.banner_button{
		display: flex;
		transform: scale(0.5);
	}
	
}

@media (max-width: 768px) {
	.team-box h3{
		font-size: 18px;
	}
	.title h1{
		font-size: 24px;
	}
	.warpbox{
		padding: 60px 0;
	}
	.img_ul_li li{
		width: calc(50% - 16px);
	}
	.value-list li img{
		width: 60px;
		margin-bottom: 10px;
	}
	.value-list li p{
		font-size: 16px;
	}
	.value-list li{
		min-width: 50%;
		float: left;
		margin-bottom: 40px;
	}
	
.value-list {
    margin-top: 40px;
    height: auto; overflow: hidden;
    display:inline;
}

.product-li .text-box {
    padding: 10px;
    border-top: 1px solid #ddd;
}

.product-li li h2, .factory-li .text-box h2 {
    font-size: 14px;
    font-weight: bold;
    height: 36px; overflow: hidden;
}

}
@media (max-width: 680px) {
	.center_main{
		padding: 40px 0;
	}
	.title_ny h2{
		font-size: 22px;
	}
	.capacity_box h6{
		font-size: 12px;
		line-height: 22px;
	}
	.footer_top .link>a{
		line-height: 24px;
	}
	.footer_top{
		padding-top: 50px;
		padding-bottom: 20px;
	}
	.contact-bottom .form-row {
    
    flex-direction: column;
	}
	.contact-bottom .form-row>div {
    display: flex;
  	width: 100%;
    flex-direction: column;
	}
	.contact-bottom .form-group{
		width: 100%;
		margin-bottom: 10px;
	}
	.contact-bottom .btn{
		min-width: 100%;
	}
	#choose{
		padding-bottom: 70px;
	}
	.choose-li p{
		line-height: 18px;
	}
	.choose-li li img{
		width: 80px;
	}
	.service_li li{
		width: calc(100% - 10px);
	}
	.warpbox{
		padding: 40px 0;
		height: auto; overflow: hidden;
	}
	.title{
		margin-bottom: 20px;
	}
	.title h1{
		font-size: 20px;
	}
	.title p{
		line-height: 16px;
	}
	.mobile_header_title{
		height:58px;
	}
	.head_left .rz, .head_left .lang,
	.head_left span,
	a.quote,
	.buttonbox{
		display: none;
	}
	.mobile_header_title img{
		height: 39px;
	}
	.moblie_title_right{
		margin-left: 10px;
	}
	.mobile_header_title .head_right a{
		display: none;
	}
	.mobile_header_title .head_right p{
		margin-right: 0;
		margin-top: 5px;
	}
}

@media (min-width: 0px) and (max-width: 1000px) {
.h1, h1 {
    font-size: 1.6rem;
   }
   
.con_right {
    margin-top: 30px;
    padding: 20px;
    background: #f5f5f5;
}

.con_right>h3 {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.h3, h3 {
    font-size: 1.2rem;
}

.mobile_header {
    background: #ffffff;
    color: #333333;
    width: 100%;
    position:fixed;
    top:0px;
    z-index: 99;
}

body {
    margin-top: 58px;
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width:100%;
    z-index: 1030;
}

.fygnav {
    padding: 0px;
	height:50px;
	background-color:#000000;
}
.fygnav ul {
    list-style-type: none;
    width: 100%;
    margin: 0px;
    padding: 0px;
}
.fygnav li {
    width: 25%;
    text-align: center;
    float: left;	
}

.fygnav li img {
    display:inline;
}

.fygnav li a { display:block; color:#FFFFFF; background-color:#1d95cf; height:50px; padding-top:3px; border-right:1px solid rgba(255,255,255,.2);}

.fygnav li a:hover { color:#FFFFFF; background-color:#1d95cf;}

.fygnav li p {
   margin-top:2px;
   } 
   
.yd {
    display: block;
}

.yc {
    display: none;
}

.footer {
    padding-bottom: 50px;
   }

}

