﻿/*搜索框css*/
.soubtn {
	background: url(../images/header-sou.png) no-repeat center;
	width: 28px;
	height: 28px;
	border: none;
}

.search_box {
	position: relative;
}

.text {
	width: 0px;
	position: absolute;
	right: 35px;
	border: none;
	height: 35px;
	text-indent: 10px;
	top: -2px;
}

.search_cha {
	background: url(../images/search_cha.png) no-repeat center;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 10px;
	right: 45px;
	display: none;
	cursor: pointer;
}

.search_icon {
	width: 28px;
	height: 28px;
	background: none;
	position: absolute;
	top: 0;
	cursor: pointer;
}

/*手机导航*/
#navToggle {
	position: relative;
	width: 30px;
	height: 20px;
	display: none;
	float: right;
}

#navToggle .line {
	background: #173887;
	border-radius: 1px;
	display: block;
	height: 2px;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
	transform-origin: center center;
	width: 100%;
	position: absolute;
}

#navToggle .line1 {
	top: 0;
}

#navToggle .line2 {
	top: 50%;
	margin-top: -1px;
}

#navToggle .line3 {
	top: auto;
	bottom: 0;
}

#navToggle.active .line {
	top: 50%;
	bottom: auto;
	margin-top: -1px;
}

#navToggle.active .line1 {
	transform: rotate(45deg);
}

#navToggle.active .line2 {
	opacity: 0;
	filter: alpha(opacity=0);
}

#navToggle.active .line3 {
	transform: rotate(-45deg);
}

.mobileMenu {
	display: none;
	position: fixed;
	top: 108px;
	left: 0;
	width: 100%;
	height: calc(100% - 108px);
	background-color: #fff;
	overflow-y: auto;
	z-index: 400;
	border-top: 1px solid #dcdcdc;
}

.mobileMenu ul {
	background: #fff;
}

.mobileMenu ul li {
	transform: translate3d(0, 10px, 0);
	transition: transform 0.4s ease, opacity 0.4s ease;
	opacity: 0;
}

.mobileMenu.h-show ul li {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.menu-item {
	display: flex;
	flex-direction: row;
	height: 100px;
	align-items: center;
	padding-left: 40px;
	padding-right: 20px;
	border-bottom: 1px solid #dcdcdc;
	position: relative;
	transition: all .5s;
}

.menu-item i {
	font-size: 30px;
	display: block;
	margin-top: 4px;
	font-style: normal;
}

.menu-item>a {
	font-size: 30px;
	color: #333;
	padding-left: 30px;
	text-transform: uppercase;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
}

.menu-item:hover i,
.menu-item:hover a {
	color: #173887;
}

.menu li.on .menu-item i {
	color: #173887;
}

.menu_dl {
	display: none;
	padding-left: 98px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dcdcdc;
}

.menu_dl dd a {
	font-size: 24px;
	color: #333;
	line-height: 54px;
}

.menu_dl dd img {
	margin-bottom: 10px;
}

.menu_dl dd a:hover {
	color: #173887;
}

.ovh-f {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	overflow: hidden;
}

.menu-itemtit {
	display: flex;
}

.menu_li .menu-item span {
	font-size: 30px;
	position: absolute;
	right: 40px;
	/* transform: rotate(-90deg); */
	transition: all 0.4s;
}

.menu_li.on .menu-item span {
	transform: rotate(90deg);
	color: #173887;
}

@media(max-width: 991px) {
	#navToggle {
		display: block;
	}
}

@media(max-width: 767px) {
	.menu-item {
		padding-left: 20px;
		height: 70px;
	}

	.menu-item i {
		font-size: 24px;
		margin-top: 4px;
	}

	.menu-item a {
		font-size: 24px;
		padding-left: 15px;
	}

	.menu_li .menu-item span {
		right: 20px;
		font-size: 24px;
	}

	#navToggle {
		margin-right: 0px;
	}

	.menu_dl {
		padding-left: 68px;
	}

	.menu_dl dd a {
		font-size: 18px;
		line-height: 36px;
	}
}

@media(max-width: 599px) {
	.menu-item i {
		font-size: 18px;
		margin-top: 2px;
	}

	.mobileMenu {
		top: 70px;
		height: calc(100% - 70px);
	}

	.menu-item a {
		font-size: 18px;
	}

	.menu_dl {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.menu_dl dd a {
		font-size: 16px;
		line-height: 32px;
	}

	.menu_li .menu-item span {
		font-size: 20px;
	}
}

/* 内页导航按钮 */
.pronavToggle {
	position: relative;
	width: 50px;
	height: 50px;
	display: none;
	float: right;
	background: transparent;
	cursor: pointer;
}

.pronavToggle .line {
	background: #fff;
	border-radius: 1px;
	display: block;
	height: 2px;
	top: 0;
	left: 50%;
	transition: all 0.3s ease;
	transform-origin: center center;
	width: 28px;
	margin-left: -14px;
	position: absolute;
}

.pronavToggle .line1 {
	top: 15px;
}

.pronavToggle .line2 {
	top: 50%;
	margin-top: -1px;
}

.pronavToggle .line3 {
	top: auto;
	bottom: 15px;
}

.pronavToggle.active .line {
	top: 50%;
	bottom: auto;
	margin-top: -1px;
}

.pronavToggle.active .line1 {
	transform: rotate(45deg);
}

.pronavToggle.active .line2 {
	opacity: 0;
	filter: alpha(opacity=0);
}

.pronavToggle.active .line3 {
	transform: rotate(-45deg);
}

@media(max-width:991px) {
	.pronavToggle {
		display: block;
	}
}

/* 内页banner */
.inside-banner {
	width: 100%;
	position: relative;
	padding-bottom: 20%;
}

.inside-banner img {
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inside-banner_txt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	font-size: 36px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}

.inside-banner_txt span {
	position: relative;
	display: block;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	text-transform: uppercase;
	margin-top: 10px;
	padding-top: 10px;
}

.inside-banner_txt span::before {
	position: absolute;
	content: '';
	width: 50%;
	height: 3px;
	background: #173887;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.inside-banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}





@media(max-width:991px) {


	/* 内页banner */
	.inside-banner {
		width: 100%;
		position: relative;
		padding-bottom: 50%;
	}

	.inside-banner img {
		z-index: -1;
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.inside-banner_txt {
		position: absolute;
		left: 50%;
		top: 55%;
		transform: translate(-50%, -50%);
		z-index: 2;
		font-size: 20px;
		font-weight: 600;
		color: #fff;
		text-align: center;
		line-height: 1.5;
	}

	.inside-banner_txt span {
		position: relative;
		display: block;
		font-size: 12px;
		line-height: 20px;
		font-weight: 300;
		text-transform: uppercase;
		margin-top: 3px;
		padding-top: 3px;
	}

	.inside-banner_txt span::before {
		position: absolute;
		content: '';
		width: 50%;
		height: 3px;
		background: #173887;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.inside-banner::before {
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.4);
	}


}



/* banner */
.swiper-container {
	width: 100%;
	max-width: 1920px;
}

#banner .swiper-slide img {
	width: 100%;
	display: block;
	min-height: 150px;
}

.banner-swiper .swiper-pagination-bullet {
	width: 25px;
	height: 25px;
	background: url(../images/swiper-navgation.png) no-repeat center;
	position: relative;
	opacity: 1;
	background-size: 100% 100%;
	border-radius: 0;
}

.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.banner-swiper>.swiper-pagination-bullets {
	bottom: 40px;
}

.banner-swiper .swiper-pagination-fraction {
	bottom: 40px;
}

.banner-swiper>.swiper-pagination {
	text-align: left;
	padding-left: 8.3%;
	color: #173887;
	font-size: 36px;
	font-family: "pMedium";
	width: auto;
}

.banner-swiper .swiper-button-next {
	width: 15px;
	height: 28px;
	background-size: 15px 28px;
	background-image: url(../images/banner-arrow.png);
	margin-top: 0px;
	top: auto;
	bottom: 38px;
	left: calc(8.3% + 96px);
	right: auto;
}

.banner-page {
	position: absolute;
	bottom: 39px;
	color: #173887;
	font-size: 36px;
	height: 36px;
	font-family: "pMedium";
	left: 8.3%;
	display: flex;
	align-items: center;
	z-index: 99;
}

.banner-page span {
	line-height: 36px;
}

.banner-pageprev {
	color: #fff;
}

.banner-swiper .swiper-pagination-current {
	color: #fff;
}

@media (max-width: 991px) {
	.banner-swiper>.swiper-pagination-bullets {
		bottom: 25px;
	}

	.banner-swiper .swiper-button-next {
		bottom: 18px;
	}

	.banner-swiper .swiper-pagination-fraction {
		bottom: 20px;
	}
}

@media (max-width: 767px) {
	.banner-swiper>.swiper-pagination {
		font-size: 24px;
	}

	.banner-swiper .swiper-button-next {
		background-size: 10px 19px;
		left: calc(8.3% + 62px);
	}

	.banner-swiper .swiper-button-next {
		bottom: 12px;
	}

	.banner-swiper .swiper-pagination-fraction {
		bottom: 14px;
	}
}

/* 自定义宽度 */
.inside-container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.inside-container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.inside-container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.inside-container {
		width: 1180px;
		padding-right: 0px;
		padding-left: 0px;
	}
}

@media (min-width: 1300px) {
	.inside-container {
		width: 1280px;
	}
}

@media (min-width: 1400px) {
	.inside-container {
		width: 1400px;
	}
}

@media screen and (min-width:1400px) and (max-width:1499px) {
	.inside-container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* 
#bsWXBox{
   background: none !important;
}
#bsWXBox .bsTop {
    color: #666;
    background: #ffffff !important;
    height: 24px;
    line-height: 24px;
    border-bottom: 0px;
}
.bsBox {
    padding: 0px !important;
    background: none !important;
}
.bsFrameDiv>div{
    background: white;
    border: 1px solid #cccccc;
} */
/*右侧浮窗*/
.right-side {
	position: fixed;
	right: 5px;
	top: 40%;
	z-index: 300;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.right-item {
	width: 68px;
	height: 68px;
	background: #173887;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.right-item:last-child{
	border-bottom: none;
}

.right-img {
	display: block;
}

.right-item-right {
	position: absolute;
  width: 280px;
  height: auto;
  background: #fff;
  border: 1px solid #173887;
  color: #173887;
  font-size: 28px;
  line-height: 48px;
  text-align: center;
  right: 70px;
  padding: 0 20px;
  top: 0px;
}
}

/* .right-item:hover{
    background: #009944;
} */
.right-wechat {
	position: relative;
}

.wx-img {
	display: none;
	position: absolute;
	right: 70px;
	top: 0px;
	width: 120px;
	height: 120px;
	border: 1px solid #173887;
	padding: 5px;
	background: #fff;
}

.wx-img img {
	display: block;
	width: 100%;
}

.footer-wx-img {
	position: absolute;
	left: -45px;
	top: -130px;
	width: 120px;
	height: 120px;
	border: 1px solid #173887;
	padding: 5px;
	background: #fff;
	display: none;
}

.footer-wx-img img {
	display: block;
	width: 100%;
}

@media(max-width: 599px) {
	.right-side {
		display: none;
	}
}