body,
html {
	font-size: 10px;
	min-width: 1366px;
	font-family: MicrosoftYaHei;
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../images/bg_body.jpg')
}

:root {
	--main-color: #28334f;
	--h3-color: #303d56;
	--active-color: #f50704;
	--hover-color:#efd8de;
	--active-img: url('../images/bg_active.png')
}
::-webkit-scrollbar{width: 9px;background-color: #222}
::-webkit-scrollbar-thumb{border: solid 2px #333;    width: 5px;    border-radius: 4px;    background-color: #fc6}
::-webkit-scrollbar-thumb:hover{background-color:#ff9}
::-webkit-scrollbar-corner{background-color: #333}
::-webkit-scrollbar:horizontal{height: 9px}

div{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5 {
	font-family: MicrosoftYaHei-Bold;
	margin: 0;
	padding: 0;
}

h3 {
	font-size: 16px;
	color: #000000;
}

h2 {
	font-size: 24px;
	color: #000000;
}

a {
	color: #000000;
	text-decoration: none;
}
p,ul,li{
	margin: 0;
	padding: 0;
}
ul,li{
	list-style: none;
}


.card {
	background-color: #fff;
	position: relative;
}
.card .detail {
	padding: 10px 20px;
	box-sizing: border-box;
}
.card .detail .label {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.container {
	padding: 50px;
	box-sizing: border-box;
}

.clearfix:after,
.clearfix:before {
	/*伪元素是行内元素 正常浏览器清除浮动方法*/
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
	/*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}

.left {
	float: left;
}

.right {
	float: right;
}

/* 富文本 */


.hide {
	display: none;
}

.block {
	display: block;
}

/* // 超出隐藏 */
.onerow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.5em;
  width: 100%;
}

.tworow {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.5em;
	max-height: 3em;
}

.threerow {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	line-height: 1.5em;
	max-height: 4.5em;
}

small {
	zoom: 80%;
}

.el-row,
.el-col {
	height: 100%;
}

.bannerCommon {
	width: 100%;
	max-height: 500px;
	overflow: hidden;
	font-size: 0;
}

.bannerCommon img {
	width: 100%;
	animation: fadeInOut .3s;
}

.el-pagination {
	display: flex;
	justify-content: center;
}

.el-pagination .number,
.el-pagination .btn-prev,
.el-pagination .btn-next,
.el-pagination .btn-quickprev,
.el-pagination .btn-quicknext {
	width: 35.5px !important;
	height: 35.5px !important;
	/*border-radius: 50% !important;*/
	margin: 0 10px;
	line-height: 35.5px !important;
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
	border: 1px solid var(--main-color);
	color: var(--main-color);
}

.el-pagination .number:hover,
.el-pagination .btn-prev:hover,
.el-pagination .btn-next:hover,
.el-pagination .btn-quickprev:hover,
.el-pagination .btn-quicknext:hover {
	color: var(--active-color);
}

.el-pagination .active {
	color: #fff !important;
	background-color: var(--main-color);
}

.header {
	width: 100%;
	min-width: 1366px;
	height: 100px;
	padding: 20px 50px;
	box-sizing: border-box;
	background-image: url('../images/bg_nav.png');
	z-index: 10;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transform: width .2s
}

.header .logo,
.header {
	display: flex;
	align-items: center;
	position: relative;
}

.header .logo {
	width: 250px;
	height: 60px;
	margin-right: 100px;
	cursor: pointer;
	font-size: 20px;
	color: #ffffff;
}
.header .logo a{
    color: #ffffff;
}

.header .logo img {

	 vertical-align: middle;
	 margin-right: 5px;
	
    border-radius: 45px;
}

.header .swiper-wrapper {
	flex: 1
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.header .swiper-wrapper .swiper-slide {
	width: 10%;
	color: #cdd7ff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
}
.header .swiper-wrapper .swiper-slide a:hover{
	color: var(--hover-color);
}
.header .swiper-wrapper .swiper-slide .title {
	line-height: 1;
	display: flex;
	align-items: center;
	font-size: 18px;
	color: #FFFFFF;
}

.header .swiper-wrapper .swiper-slide .title i {
	font-size: 14px
}
.header .swiper-wrapper .swiper-slide:hover .submenus{
	display: block;
}
.header .swiper-wrapper .swiper-slide .submenus {
	position: absolute;
	width: 100px;
	top: 35px;
	height: auto;
	padding: 15px 0 5px;
	border-radius: 5px;
	display: none;
}
.header .swiper-wrapper .swiper-slide .el-icon-arrow-down{
	font-size: 18px;
	color: #FFFFFF;
	margin-left: 2px;
	margin-top: 3px;
}
.header .swiper-wrapper .swiper-slide .submenus .el-icon-caret-top{
	position: absolute;
	font-size: 18px;
	top: 4px;
	color: #fff;
	left: 40px;
}
.header .swiper-wrapper .swiper-slide .submenus a{
	width: 100%;
	height: 35px;
	display: block;
	text-align: center;
	line-height: 35px;
	font-size: 15px;
	background-color: #EEEEEE;
	color: #666666;
}
.header .swiper-wrapper .swiper-slide .submenus a:hover{
	background-color: #d8e0fd;
}
@media screen and (max-width:1745px) {
	.header .swiper-wrapper .swiper-slide {
		/* width: 20% */
	}
}

.header .top-right-btns {
	margin-left: 80px;
	display: flex;
	align-items: center
}

.header .top-right-btns .city-name {
	color: #cdd7ff;
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #cdd7ff;
	cursor: pointer;
}

.header .top-right-btns i {
	color: #cdd7ff;
	font-size: 25px;
	margin-left: 20px;
	margin-right: 5px;
}
.header .top-right-btns a{
	color: #cdd7ff;
	font-size: 23px;
	margin-left: 20px;
}
.header .top-right-btns a:hover,.header .top-right-btns .city-name:hover{
	color: var(--hover-color);
}
.headercityList {
 display:flex;
 flex-wrap:wrap
}
.headercityList .headercityListItem {
 text-align:center;
 width:33.33%;
 cursor:pointer;
 font-size:14px;
 margin-bottom:10px
}
.headercityList .headercityListItem:hover {
 color:var(--active-color)
}
@media screen and (max-width:1745px) {
	.header .swiper-wrapper .swiper-slide .title,.header .swiper-wrapper .swiper-slide .submenus a {
		font-size: 14px
	}
	.header .swiper-wrapper .swiper-slide .el-icon-arrow-down{
		font-size: 15px;
	}
	.header .swiper-wrapper .swiper-slide .title i {
		font-size: 12px
	}

	.header .logo {
		margin-right: 10px
	}

	.header .btns {
		margin-left: 10px
	}
}

footer {
	width: 100%;
	height: 360px
}

footer .footer_top {
	padding: 30px 100px;
	box-sizing: border-box;
	height: 300px;
	background-image: url('../images/bg_footer.jpg');
	background-size: auto 100%;
	display: flex;
	position: relative
}

footer .footer_top .footer_top_left {
	flex: 1
}

footer .footer_top .footer_top_left .thridPartys {
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 40px;
	box-sizing: border-box
}

footer .footer_top .footer_top_left .thridPartys .logo {
	width: 250px;
	height: 100%;
	display: flex;
	align-items: center
}

footer .footer_top .footer_top_left .thridPartys .logo  span{
    color: #ffffff;
    margin-left: 10px;
    font-size: 14px;
}

footer .footer_top .footer_top_left .thridPartys .thridParty {
	width: 800px;
	height: 100%;
	display: flex;
	justify-content: space-between;
    align-items: center;
    align-content: space-between;
    flex-direction: row-reverse;
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card {
	width: 300px;
	height: 100%;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 30px;
	overflow: hidden
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card .img {
	width: 50px;
	height: 50px;
	overflow: hidden
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card .img img {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card .head {
	flex: 1;
	margin: 0 10px
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card .head .head_h3 {
	font-size: 16px;
	font-weight: 700;
	color: #000
}

footer .footer_top .footer_top_left .thridPartys .thridParty .card:nth-of-type(2n+2) {
	margin: 0 22px
}

footer .footer_top .footer_top_left .wire {
	width: 100%;
	height: 2px;
	background-color: #fff;
	margin: 30px 0;
	opacity: .2
}

footer .footer_top .footer_top_left .footer_top_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	padding-right: 40px;
	box-sizing: border-box;
	line-height: 2
}

footer .footer_top .footer_top_left .footer_top_bottom .linkman {
	margin-right: 20px
}

footer .footer_top .footer_top_left .footer_top_bottom .link {
	width: 760px
}

footer .footer_top .phone {
	position: relative;
	bottom: 0;
	width: 150px
}

footer .footer_top .phone img {
	display: inline-block;
	position: absolute;
	bottom: -30px
}

footer .footer_bottom {
	height: 60px;
	width: 100%;
	background-color: #10151c;
	display: flex;
	align-items: center;
	justify-content: center
}

footer .footer_bottom a img,
footer .footer_bottom p img,
footer .footer_bottom span img {
	width: 14px;
	height: 14px
}

footer a,
footer p,
footer span {
	color: #fff;
	font-size: 14px;
	margin-right: 10px
}

footer a:hover {
	color: var(--active-color)
}

.header_paddding {
	width: 100%;
	height: 100px
}

.bannerCommon[data-v-68ca9ecd] {
	width: 100%;
	max-height: 330px;
	overflow: hidden;
	font-size: 0;
	display: flex
}

.bannerCommon img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.indexh2 {
	width: 220px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	overflow: hidden
}

.indexh2 h2 {
	font-family: MicrosoftYaHei-Bold;
	font-size: 3em;
	color: var(--main-color)
}

.indexh2 .change {
	transform: rotate(180deg)
}

.indexh2 img {
	height: 100%
}
.sbanner{
	width: 100%;
	max-height: 330px;
	overflow: hidden;
	font-size: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sbanner img {
  width: 100%;
  -webkit-animation: fadeInOut .3s;
  animation: fadeInOut .3s;
}