@charset "UTF-8";

/* CSS Document */
/*
-----------------------------首页样式start-----------------------------
*/
/*头部开始*/
.top {
	position: relative;
	width: 100%;
	height: 90px;
	background: #fff;
	z-index: 9;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	white-space: nowrap;
}

.topR {
	border-radius: 3px;
}

.topSearch {
	overflow: hidden;
}

.topBtn {
	width: 100px;
	height: 42px;
	background: #0193cf url(../images/search.png) center center no-repeat;
	border-radius: 0 3px 3px 0;
	overflow: hidden;
}

.topSearchBox {
	overflow: hidden;
	padding: 0 10px 0 45px;
	background: url(../images/search2.png) 15px center no-repeat;
}

.topSearchBox input {
	width: 100%;
	height: 42px;
	line-height: 42px;
	border: none;
	background: none;
	font-size: 16px;
	color: #333;
}

.topSearchBox input::-webkit-input-placeholder {
	color: #aaa;
	/* placeholder颜色  */
	font-size: 16px;
	/* placeholder字体大小  */
	text-align: left;
	/* placeholder位置  */
}

.topL {
	overflow: hidden;
	padding-left: 2.0833%;
}

.logo {
	padding: 20px 0;
}

.logo a img {
	width: 190px;
	display: block;
	height: 50px;
}

.topSwift {
	overflow: hidden;
	padding-left: 155px;
}

.topWay {
	position: relative;
	height: 90px;
	padding: 0 30px;
	border-left: 1px solid #F5F5F5;
	border-right: 1px solid #F5F5F5;
}

.topWayC {
	padding-left: 35px;
	background: url(../images/indexIcon.png) left center no-repeat;
}

.topWayC .title {
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #666;
}

.topWayC .text {
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	color: #333;
	font-weight: bold;
}

.topSearch {
	overflow: hidden;
	width: 90px;
	height: 90px;
}

.topSearch a {
	display: block;
	width: 90px;
	height: 90px;
	background: url(../images/indexIcon1.png) center center no-repeat;
}

/*头部结束*/
/*menu开始*/
/* .menuBox{
	margin-right: 14.333%;
} */
.menuDl {
	position: relative;
}

.menuDl:after {
	display: block;
	content: "";
	clear: both;
}

.menuDl dd {
	display: inline;
	float: left;
	position: relative;
	z-index: 3;
	padding: 0 26px;
}

.menuDl dd:nth-last-child(2)::before {
	display: none;
}

.menuDl dd span a {
	display: block;
	height: 90px;
	overflow: hidden;
	line-height: 90px;
	color: #555;
	font-size: 15px;
	position: relative;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.menuDl dd.hover span a {
	color: #a90000;
}

.subMenuDiv {
	display: none;
	width: 100%;
	position: absolute;
	/*left: 0px;*/
	top: 90px;
	/*opacity: 0;*/
	z-index: 1;
	padding: 0 30px;
}

.menuDl dd.hover .subMenuDiv {
	z-index: 3;
}

.menuDl dt {
	height: 3px;
	position: absolute;
	left: 0px;
	bottom: 25px;
	z-index: 2;
}

.menuDl dt::after {
	display: block;
	content: "";
	position: absolute;
	width: 10px;
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -8px;
	background: #a90000;
}

.subMenu_ul {
	width: 1000px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.subMenuShadow {
	height: 100%;
	overflow: hidden;
	position: absolute;
	background: rgba(0, 0, 0, 0.6);
	left: 50%;
	top: 0px;
	z-index: 1;
	width: 50000px;
	margin-left: -25000px;
}

.subMenu_ul li {
	overflow: hidden;
	height: 56px;
	line-height: 56px;
	position: relative;
	z-index: 2;
	float: left;
	display: inline;
	margin: 0px 15px;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menuDl dd.hover .subMenu_ul li {
	opacity: 0;
	-webkit-animation: liMove 0.3s linear forwards;
	-o-animation: liMove 0.3s linear forwards;
	animation: liMove 0.3s linear forwards;
}

@keyframes liMove {
	0% {
		transform: translateY(-110%);
		opacity: 0;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

.menuDl dd.hide .subMenu_ul li {
	opacity: 1;
	-webkit-animation: liHIde 0.3s linear forwards;
	-o-animation: liHIde 0.3s linear forwards;
	animation: liHIde 0.3s linear forwards;
}

@keyframes liHIde {
	0% {
		transform: translateY(0px);
		opacity: 1;
	}

	100% {
		transform: translateY(110%);
		opacity: 0;
	}
}

.subMenu_ul li a {
	display: block;
	overflow: hidden;
	font-size: 14px;
	color: #FFFFFF;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	margin-right: 20px;
}

.subMenu_ul li a:hover {
	color: #a90000;
}

.half .subMenu_ul li a {
	font-size: 14px;
}

.subMenu_ul li a span {
	position: relative;
}


.listBg {
	width: 0px;
	height: 0px;
	overflow: hidden;
	background: #fff;
	position: absolute;
	left: 0px;
	top: 0px;
}

.menuBg {
	display: none;
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 100px;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
}

.subMenuDiv.showMenu {
	-webkit-animation: showMenu 0.5s linear forwards;
	-o-animation: showMenu 0.5s linear forwards;
	animation: showMenu 0.5s linear forwards;
}

@keyframes showMenu {
	0% {
		opacity: 0.5
	}

	100% {
		opacity: 1
	}
}

.subMenuDiv.hideMenu {
	-webkit-animation: hideMenu 0.5s linear forwards;
	-o-animation: hideMenu 0.5s linear forwards;
	animation: hideMenu 0.5s linear forwards;
}

@keyframes hideMenu {
	0% {
		opacity: 0.2
	}

	100% {
		opacity: 0
	}
}

/*menu结束*/
/*indexBanner开始*/
.indexBanner {
	overflow: hidden;
	height: 820px;
	width: 100%;
	position: relative;
}

.indexBanner .bannerDot {
	position: absolute;
	width: 100%;
	height: 12px;
	bottom: 23px;
	z-index: 3;
	left: 0;
	text-align: center;
}

.indexBanner .bannerDot span {
	width: 12px;
	height: 12px;
	background: rgb(255, 255, 255);
	opacity: .5;
	cursor: pointer;
}

.indexBanner .bannerDot span.swiper-pagination-bullet-active {
	opacity: 1;
}
.indexBanner .bannerTextNew{
	position: absolute;
	left: 30%;
	top: 46%;
	z-index: 9999;
}
.indexBanner .bannerTextNew .imgItem.img1{
	text-align: center;
	padding: 60px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}
.indexBanner .bannerTextNew .imgItem.img2{
	text-align: center;
}

.indexBanner .img1BgNew{
	position: absolute;
	left: 39%;
	top: 48.5%;
	width: 171px;
	height: 173px;
	animation: turn 8s linear infinite;
	z-index: 9;
	display: none;
}

.indexBanner .swiper-slide1 .img1BgNew{
	display: block;
}

@keyframes turn{
	0%{-webkit-transform:rotate(0deg);}
	25%{-webkit-transform:rotate(90deg);}
	50%{-webkit-transform:rotate(180deg);}
	75%{-webkit-transform:rotate(270deg);}
	100%{-webkit-transform:rotate(360deg);}
}
/*indexBanner结束*/

/*第一通栏start*/
.column1 {
	padding: 55px 0;
}

.indexTitleBox {
	text-align: center;
}

.indexTitleBox.white .indexTitle {
	color: #FFFFFF;
}

.indexTitle {
	height: 44px;
	line-height: 44px;
	font-size: 36px;
	color: #333;
	font-weight: lighter;
}

.indexTitle span {
	position: relative;
	padding: 0 70px;
}

.indexTitle span::before {
	display: block;
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	left: 0;
	top: 50%;
	background: #b83131;
}

.indexTitle span::after {
	display: block;
	content: "";
	position: absolute;
	width: 50px;
	height: 1px;
	right: 0;
	top: 50%;
	background: #b83131;
}

.indexTitleBox.white .indexTitle span::before,
.indexTitleBox.white .indexTitle span::after {
	background: #FFFFFF;
}

.indexItro {
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	color: #a90000;
	font-weight: lighter;
}

.indexTitleBox.white .indexItro {
	color: #c7c7c7;
}

.fineTitle {
	height:30px;
	line-height: 30px;
	background-position: center center;
	background-repeat: no-repeat;
}

.column1TableT {
	text-align: center;
}

.column1TableDl {
	display: inline-block;
	overflow: hidden;
}

.column1TableDl dd {
	float: left;
	display: inline;
	margin: 0 5px;
	width: 90px;
	height: 32px;
	border: 1px solid #999;
	position: relative;
}

.column1TableDl dd::before {
	display: block;
	content: "";
	position: absolute;
	right: -1px;
	bottom:-1px;
	left: -1px;
	top: -1px;
	border-left: 1px solid #a90000;
	border-top: 1px solid #a90000;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	z-index: 2;
	background: rgba(169, 0, 0, 1);
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: 0 0;
	opacity: 0;
	visibility: hidden;
}

.column1TableDl dd::after {
	display: block;
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-right: 1px solid #a90000;
	border-bottom: 1px solid #a90000;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 4;
	background: rgba(169, 0, 0, 1);
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: 100% 100%;
}

.column1TableDl dd .con {
	position: relative;
}

.column1TableDl dd a {
	display: block;
	height: 32px;
	line-height: 32px;
	position: relative;
	z-index: 5;
	font-size: 14px;
	color: #444;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column1TableDl dd:hover::after {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column1TableDl dd:hover::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column1TableDl dd:hover a {
	color: #FFFFFF;
}

.column1TableDl dd.hover::after {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column1TableDl dd.hover::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column1TableDl dd.hover a {
	color: #FFFFFF;
}

.column1TopBox {
	overflow: hidden;
	background: #ececec;
}

.column1Left {
	width: 67.8517%;
}

.column1Left .pic::before {
	padding-top: 42.1053%;
}

.column1Left .pic span{
	position: absolute;
	width: 100%;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	left: 0;
	text-align: center;
}
.column1Left .pic span em{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding:0 30px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 5px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.column1Left .pic span em:hover{
	opacity: 0.8;
}
.column1Left .pic span em i{
	display: inline-block;
	padding-right: 20px;
	position: relative;
	height: 40px;
	font-size: 16px;
	color: #F5F5F5;
	font-style: normal;
}
.column1Left .pic span em i::after{
	display: block;
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: -3px;
	top: 50%;
	margin-top: -7px;
	border: 7px solid transparent;
	border-left-color: #FFFFFF;
}
.column1TopBox .text {
	overflow: hidden;
	padding: 25px 40px;
}

.column1TopBox .text .title {
	height: 50px;
	line-height: 50px;
	font-size: 22px;
	color: #333;
	margin-bottom: 10px;
	overflow: hidden;
}

.column1TopBox .text .notes {
	overflow: hidden;
}

.column1TopBox .text .notes span {
	float: left;
	display: inline;
	font-size: 14px;
	color: #555;
	padding-right: 27px;
	margin-right: 27px;
	position: relative;
	line-height: 26px;
	height: 26px;
	margin-bottom: 25px;
}

.column1TopBox .text .notes span::before {
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 12px;
	right: 0;
	top: 50%;
	margin-top: -6px;
	background: #919191;
}

.column1TopBox .text .notes span:last-child::before {
	display: none;
}

.column1TopBox .textc .textTitle {
	height: 26px;
	line-height: 26px;
	font-size: 16px;
	color: #555;
}

.column1TopBox .textc .textCon {
	height: 120px;
	line-height: 24px;
	font-size: 14px;
	color: #666;
	overflow: hidden;
	margin-bottom: 20px;
}

.column1TopBox .textBtn {
	/* overflow: hidden; */
}

.column1TopBox .textBtn .textBtna {
	float: left;
	display: inline;
	margin-right: 10px;
	width: 130px;
	height: 40px;
	line-height: 40px;
	border: 1px solid rgba(204, 0, 3, 0.5);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.column1TopBox .textBtn .textBtna::before {
	display: block;
	content: "";
	position: absolute;
	width: 260px;
	height: 80px;
	right: -50px;
	bottom: -20px;
	background: #cc0003;
	border-radius: 100%;
	z-index: 1;
	transform: scale(0);
	transform-origin: 100% 100%;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column1TopBox .textBtn .textBtna:hover::before {
	transform: scale(1, 1);
}

.column1TopBox .textBtn .textBtna a {
	display: block;
	height: 40px;
	color: #cc0003;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	position: relative;
	z-index: 3;
}

.column1TopBox .textBtna a em {
	padding: 0 3px;
	font-style: normal;
	font-size: 18px;
}

.column1TopBox .textBtn .textBtna:hover a {
	color: #FFFFFF;
}

.column1Bottom_dl {
	overflow: hidden;
	margin: 0 -10px;
}

.column1Bottom_dl dd {
	float: left;
	display: inline;
	width: 33.333%;
	padding: 10px 0;
}

.column1Bottom_dl dd .con {
	margin: 0 10px;
	position: relative;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column1Bottom_dl dd .pic::before {
	padding-top: 54.8387%;
}
.column1Bottom_dl dd .picBox{
	position: relative;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
.column1Bottom_dl dd .btn{
	position: absolute;
	width: 100%;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	left: 0;
	text-align: center;
}
.column1Bottom_dl dd .btn a{
	display: inline-block;
	height: 32px;
	line-height: 32px;
	padding:0 20px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.column1Bottom_dl dd .btn span{
	display: inline-block;
	padding-right: 20px;
	position: relative;
	height: 32px;
	font-size: 16px;
	color: #F5F5F5;
}
.column1Bottom_dl dd .btn span::after{
	display: block;
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: -3px;
	top: 50%;
	margin-top: -7px;
	border: 7px solid transparent;
	border-left-color: #FFFFFF;
}
.column1Bottom_dl dd .text {
	position: relative;
	padding:0 10px 10px;
}

.column1Bottom_dl dd .btn:hover a{
	opacity: .8;
}

.column1Bottom_dl dd .text .title {
	overflow: hidden;
	padding-right: 10px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #333;
}
.column1Bottom_dl dd .con:hover .text .title{
	color: #cc0003;
}
.column1Bottom_dl dd .con .textc{
	overflow: hidden;
}
.column1Bottom_dl dd .con .textc span{
	float: left;
	display: inline;
	height: 28px;
	line-height: 28px;
	font-size: 14px;
	color: #666;
	padding-right: 10px;
	margin-right: 10px;
	position: relative;
}
.column1Bottom_dl dd .con .textc span::after{
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 14px;
	right: 0;
	top: 50%;
	margin-top: -7px;
	background: #999;
}
.column1Bottom_dl dd .con .textc span:last-child::after{
	display: none;
}
.column1Bottom_dl dd .con:hover .picBox{
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/*第一通栏end*/
/*第二通栏start*/
.column2 {
	position: relative;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 70px;
}

.column2TableT {
	text-align: center;
}

.column2TableDl {
	display: inline-block;
	overflow: hidden;
}

.column2TableDl dd {
	float: left;
	display: inline;
	margin: 0 5px;
	width: 90px;
	height: 32px;
	border: 1px solid #fff;
	position: relative;
	background: rgba(255, 255, 255, 0.2);
}

.column2TableDl dd::before {
	display: block;
	content: "";
	position: absolute;
	right: -1px;
	bottom: -1px;
	left: -1px;
	top: -1px;
	border-left: 1px solid #a90000;
	border-top: 1px solid #a90000;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	z-index: 2;
	background: rgba(169, 0, 0, 0.5);
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: 0 0;
	opacity: 0;
	visibility: hidden;
}

.column2TableDl dd::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: -1px;
	bottom: -1px;
	border-right: 1px solid #a90000;
	border-bottom: 1px solid #a90000;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 4;
	background: rgba(169, 0, 0, 0.5);
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: 100% 100%;
}

.column2TableDl dd .con {
	position: relative;
}

.column2TableDl dd a {
	display: block;
	height: 32px;
	line-height: 32px;
	position: relative;
	z-index: 5;
	font-size: 14px;
	color: #fff;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column2TableDl dd:hover::after {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column2TableDl dd:hover::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column2TableDl dd:hover a {
	color: #FFFFFF;
}

.column2TableDl dd.hover::after {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column2TableDl dd.hover::before {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.column2TableDl dd.hover a {
	color: #FFFFFF;
}

.column2C {
	position: relative;
	padding-top: 44.0104%;
}

.column2TabC {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -1;
}

.column2TabC.active {
	z-index: 1;
}

.column2Banner {
	float: left;
	display: inline;
	width: 39.5833%;
	position: relative;
}

.column2Banner .pic::before {
	padding-top: 54.6053%;
}

.column2Banner .slick-dots {
	position: absolute;
	width: 100%;
	height: 86px;
	right: 0;
	bottom: 0;
	padding: 37px 25px;
	box-sizing: border-box;
	background: url(../images/dotBg.png) bottom center no-repeat;
	text-align: right;
}

.column2Banner .slick-dots li {
	display: inline-block;
	margin: 0 7px;
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	border-radius: 100%;
	cursor: pointer;
}

.column2Banner .slick-dots li.slick-active {
	background: #a90000;
	border-color: #a90000;
}

.column2Nav {
	position: absolute;
	top: 18.0723%;
	left: 13.8158%;
	z-index: 2;
	width: 75px;
	height: 75px;
	background: #a90000;
	border-radius: 100%;
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;
}

.column2Nav::before {
	display: block;
	content: "";
	position: absolute;
	left: -7px;
	right: -7px;
	top: -7px;
	bottom: -7px;
	background: rgba(173, 0, 3, 0.1);
	border-radius: 100%;
	animation: zon 2s infinite;
	-webkit-animation: zon 2s infinite;
}

.column2Nav::after {
	display: block;
	content: "";
	position: absolute;
	left: -7px;
	right: -7px;
	top: -7px;
	bottom: -7px;
	background: rgba(173, 0, 3, 0.1);
	border-radius: 100%;
	animation: zon1 2.5s infinite;
	-webkit-animation: zon1 2.5s infinite;
}

@keyframes zon {
	0% {
		transform: scale(1.01);
	}

	50% {
		transform: scale(.95)
	}

	100% {
		transform: scale(1)
	}
}

/* @keyframes zon1 {
	0% {
		transform: scale(1.05);
	}

	50% {
		transform: scale(.9)
	}
	100%{
		transform: scale(1)
	}
} */

.column2CDl {
	position: absolute;
	left: 39.5833%;
	top: 0;
	right: 0;
	bottom: 11.5%;
}

.column2CDl::before {
	display: block;
	content: "";
	clear: both;
}

.column2CDl dd {
	float: left;
	display: inline;
	width: 50%;
	margin-bottom: 10px;
}

.column2CDl dd .con {
	margin-left: 10px;
	position: relative;
	overflow: hidden;
}

.column2CDl dd .pic::before {
	padding-top: 63.1579%;
}

.column2CDl dd.dd3 {
	position: absolute;
	width: 65.51724%;
	left: -65.51724%;
	top: 57.6662%;
}

.column2CDl dd.dd3 .con {
	margin-left: 0;
}

.column2CDl dd.dd3 .pic::before {
	padding-top: 54.6053%;
}

.column2CDl dd .text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}

.column2CDl dd .text .textBottom {
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transform-origin: 0 100%;
}

.column2CDl dd .text .textBottom .textBottomC {
	padding: 0 20px;
	overflow: hidden;
}

.column2CDl dd .text .textBottom .title {
	overflow: hidden;
	padding-right: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #FFFFFF;
}

.column2CDl dd .text .textBottom .textType {
	padding: 0 15px;
	height: 25px;
	line-height: 25px;
	margin-top: 11px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	font-size: 14px;
	color: #FFFFFF;
}

.column2CDl dd .text .textContent {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	perspective: 1000px;
	-webkit-perspective: 1000px;
	overflow: hidden;
}

.column2CDl dd .text .textContent::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	transform-origin: 0 0;
	transform: rotateX(-180deg);
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
}

.column2CDl dd .con:hover .text .textContent::before {
	transform: rotateX(0deg);
}

.column2CDl dd .text .textContentc {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	padding: 30px;
	box-sizing: border-box;
}

.column2CDl dd .text .textContentc .title {
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	overflow: hidden;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
	visibility: hidden;
	opacity: 0;
	transition-delay: .4s;
}

.column2CDl dd .text .textContentc .textItro {
	overflow: hidden;
	text-align: center;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
	visibility: hidden;
	opacity: 0;
	transition-delay: .6s;
	margin-bottom: 30px;
}

.column2CDl dd .text .textContentc .textItro span {
	display: inline-block;
	margin-right: 10px;
	padding-right: 10px;
	height: 30px;
	line-height: 32px;
	font-size: 14px;
	color: #E5E5E5;
	position: relative;

}

.column2CDl dd .text .textContentc .textItro span::before {
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 12px;
	right: 0;
	top: 50%;
	margin-top: -6px;
	background: #a1a3a6;
}

.column2CDl dd .text .textContentc .textItro span:last-child::before {
	display: none;
}

.column2CDl dd .text .textContentc .textMore {
	width: 130px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	margin: 0 auto;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	line-height: 36px;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	transition-delay: .8s;
}

.column2CDl dd .text .textContentc .textMore a {
	display: block;
	height: 36px;
	font-size: 14px;
	color: #FFFFFF;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column2CDl dd .text .textContentc .textMore a em {
	font-style: normal;
	font-size: 16px;
	color: #fff;
	padding: 0 5px;
}

.column2CDl dd .con:hover .textBottom {
	transform: rotateX(-180deg);
	-webkit-transform: rotateX(-180deg);
}

.column2CDl dd .con:hover .text .textContentc .title {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.column2CDl dd .con:hover .text .textContentc .textItro {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.column2CDl dd .con:hover .text .textContentc .textMore {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

.column2CDl dd .text .textContentc .textMore:hover a {
	background: rgba(255, 255, 255, 0.5);
}

.column2More {
	position: absolute;
	right: 0;
	bottom: 36px;
	left: 39.5833%;
	text-align: center;
}

.column2More .more {
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.column2More .more a {
	display: inline-block;
	height: 30px;
	font-size: 16px;
	color: #FFFFFF;
}

.column2More .more a span {
	display: inline-block;
	padding-right: 110px;
	height: 30px;
	line-height: 30px;
	background: url(../images/moreRightw.png) right center no-repeat;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column2More .more a span:hover {
	padding-right: 115px;
	font-weight: bold;
}

/*第二通栏end*/

/*第四通栏start*/
.column4 {
	padding: 65px 0 0;
	overflow: hidden;
}

.col4topswiper {
	position: relative;
	padding: 0 30px;
}

.col4topswiper .border {
	width: 100%;
	height: 90%;
	position: absolute;
	bottom: 0;
	left: 0;
}

.col4topswiper .border1 {
	width: 0;
	height: 0;
	top: 0;
	left: 0;
	border-style: solid;
	border-width: 6px 6px 0 0;
	-webkit-box-sizing: border-box;
	border-image: -webkit-linear-gradient(35deg, #110100, #f90300) 1 10;
	position: absolute;
	opacity: 0;
}

.col4topswiper .border2 {
	width: 0;
	height: 0;
	bottom: 0;
	right: 0;
	border-style: solid;
	border-width: 0 0 6px 6px;
	-webkit-box-sizing: border-box;
	border-image: -webkit-linear-gradient(50deg, #110100, #f90300) 1 10;
	position: absolute;
	opacity: 0;
}

.col4topswiper .bd {
	overflow: hidden;
}

.col4topswiper .picL {
	width: 26.5942%;
	margin-right: 40px;
	background: #000;
	z-index: 5;
}

.col4topswiper .picL::before {
	padding-top: 132.425%;
}

.col4topswiper .text {
	overflow: hidden;
	padding-top: 97px;
	padding-right: 160px;
	text-align: left;
}

.col4topswiper .text .title {
	font-size: 26px;
	font-weight: bold;
	color: #000;
	height: 28px;
	line-height: 28px;
	margin-bottom: 20px;
	overflow: hidden;
}

.col4topswiper .text .info {
	font-size: 14px;
	color: #666;
	height: 135px;
	line-height: 23px;
	margin-bottom: 20px;
	overflow: hidden;
}

.col4topswiper .text .most {
	width: 19.1176%;
	margin-left: 48px;
	margin-top: 10px;
}

.col4topswiper .text .most a {
	display: block;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.col4topswiper .text .most a em {
	display: inline-block;
	width: 20px;
	height: 15px;
	vertical-align: middle;
	margin-right: 8px;
}

.col4topswiper .text .most a.moston {
	background: #a90000;
	margin-bottom: 20px;
}

.col4topswiper .text .most a.moston em {
	background: url(../test/imgBot/moston.png)no-repeat center;
}

.col4topswiper .text .most a.more em {
	background: url(../test/imgBot/more.png)no-repeat center;
}

.col4topswiper .text .most a.more {
	background: #d1ba74;
}

.col4topswiper .text .list {
	overflow: hidden;
	margin-right: -20px;
}

.col4topswiper .text .list .item {
	width: 33.3333%;
}

.col4topswiper .text .list .item .con {
	margin-right: 20px;
	display: block;
}

.col4topswiper .text .list .item .con .pic::before {
	padding-top: 65%;
}

.col4topswiper .text .list .item .con .pic .text {
	height: 40px;
	width: 100%;
	line-height: 40px;
	background: rgb(0, 0, 0, 0.5);
	position: absolute;
	bottom: -40px;
	left: 0;
	padding: 0 10px;
	font-size: 14px;
	color: #fff;
	-webkit-transition: all .3s linear;
}

.col4topswiper .text .list .item .con:hover .pic .text {
	bottom: 0;
	z-index: 2;
}

.col4Bot {
	padding: 0 60px;
	position: relative;
}

.col4Botswiper {
	overflow: hidden;
}

.col4Botswiper .pic::before {
	padding-top: 132.425%;
}

.col4Botswiper .swiper-slide {
	cursor: pointer;
}
.col4Botswiper .swiper-slide .con{
	background: #000;
}
.col4Botswiper .swiper-slide .pic .border1 {
	border-width: 3px 3px 0 0;
	border-style: solid;
	width: 0;
	border-image: -webkit-linear-gradient(#681915, #9a0605) 1 10;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: "";
	-webkit-box-sizing: border-box;
}

.col4Botswiper .swiper-slide .pic .border2 {
	border-width: 0 0 3px 3px;
	border-style: solid;
	width: 0;
	border-image: -webkit-linear-gradient(#681915, #9a0605) 1 10;
	height: 0;
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	content: "";
	-webkit-box-sizing: border-box;
}

.col4Bot .next {
	cursor: pointer;
	width: 30px;
	height: 60px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	right: 0;
	background: rgb(0, 0, 0, 0.4) url(../test/imgBot/next.png)no-repeat center;
	outline: none;
}

.col4Bot .prev {
	cursor: pointer;
	width: 30px;
	height: 60px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%)rotateZ(180deg);
	left: 0;
	background: rgb(0, 0, 0, 0.4) url(../test/imgBot/next.png)no-repeat center;
	outline: none;
}

.col4Bot .prev:hover {
	background-color: #a90000;
}

.col4Bot .next:hover {
	background-color: #a90000;
}

.col4Botswiper .swiper-slide-thumb-active .pic .border1 {
	animation: border1 .5s linear;
	animation-fill-mode: forwards;
}

.col4Botswiper .swiper-slide-thumb-active .pic .border2 {
	animation: border2 .5s linear;
	animation-delay: .5s;
	animation-fill-mode: forwards;
}

@keyframes border1 {
	from {
		width: 100%;
	}

	to {
		width: 100%;
		height: 100%;
	}
}

@keyframes border2 {
	from {
		width: 100%;
	}

	to {
		width: 100%;
		height: 100%;
	}
}

/*第五通栏start*/
.column5 {
	overflow: hidden;
	padding-top: 70px;
}

.column5 .list {
	margin-right: -30px;
}

.column5 .list .item {
	width: 25%;
}

.column5 .list .item .con {
	margin-right: 30px;
	position: relative;
}
.column5 .list .item .pic::before{
	padding-top: 157.2700%;
}
.column5 .list .item .con .textBox {
	padding: 0 25px;
	width: 90%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	bottom: 20px;
	height: 95px;
	background: rgb(0, 0, 0, 0.5);
	padding-top: 30px;
	-webkit-box-sizing: border-box;
	-webkit-transition: all .4s linear;
}

.column5 .list .item .con .textBox .text {
	overflow: hidden;
}

.column5 .list .item .con .textBox .text .title {
	font-size: 16px;
	color: #fff;
	height: 16px;
	line-height: 16px;
	overflow: hidden;
	margin-bottom: 10px;
}

.column5 .list .item .con .textBox .text .info {
	font-size: 16px;
	color: #fff;
	height: 16px;
	line-height: 16px;
	overflow: hidden;
	font-family: "Bodoni Bk BT";
}

.column5 .list .item .con .textBox .btn {
	display: block;
	height: 40px;
	width: 11.5384%;
	background: url(../test/imgBot/jiantou.png)no-repeat center;
	-webkit-transition: all .4s linear;
}

.column5 .list .item .con:hover .textBox {
	background: #ad0003;
}

.column5 .list .item .con:hover .textBox .btn {
	background-position: center right;
}

/*第五通栏end*/
/*第六通栏start*/
.column6 {
	background: #fff;
	padding: 65px;
}

.col6L {
	width: 45.83333%;
	margin-right: 40px;
}

.col6swiper {
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.col6swiper .pic::before {
	padding-top: 59.0909%;
}

.col6swiper .swiper-wrapper {
	position: relative;
	z-index: -1;
}

.col6swiper .textNew {
	position: absolute;
	height: 60px;
	line-height: 60px;
	overflow: auto;
	background: rgb(0, 0, 0, 0.5);
	width: 100%;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	z-index: 5;
	bottom: 0;
	left: 0;
}

.col6swiper .textNew .titleNew {
	display: block;
	width: 70%;
	font-size: 16px;
	color: #fff;
}

.col6swipertion span {
	display: inline-block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin: 0 2.5px;
	border-radius: unset;
	opacity: 1;
}

.col6swipertion span.swiper-pagination-bullet-active {
	background: #cc0003;
}

.col6swipertion {
	padding-top: 30px;
}

.col6swiper .textBoxnew {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../test/imgBot/col6bg.png)no-repeat center /cover;
	text-align: right;
	padding: 30px;
	z-index: 2;
	-webkit-box-sizing: border-box;
	padding-top: 70px;
}

.col6swiper .textBoxnew .title {
	font-size: 36px;
	color: #fff;
	height: 36px;
	line-height: 36px;
	margin-bottom: 20px;
	overflow: hidden;
}

.col6swiper .textBoxnew .titlec {
	font-size: 18px;
	color: #fff;
	height: 18px;
	line-height: 18px;
	margin-bottom: 35px;
	overflow: hidden;
}

.col6swiper .textBoxnew .btn {
	display: block;
	margin-left: auto;
	width: 120px;
	height: 40px;
	border-radius: 25px;
	overflow: hidden;
	background: #f4af00;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: #333;
}

.col6R {
	overflow: hidden;
}

.col6R .list .item .time {
	width: 16.2162%;
	font-size: 14px;
	color: #808080;
	text-align: center;
	position: relative;
	top: -2px;
}

.col6R .list .item .time span {
	display: block;
	font-size: 30px;
	font-weight: bold;
	color: #999;
	height: 32px;
	line-height: 32px;
	overflow: hidden;
}

.col6R .list .item .text {
	overflow: hidden;
	border-left: 1px solid #ebebeb;
	padding-left: 30px;
}

.col6R .list .item .text .title {
	font-size: 18px;
	color: #333;
	height: 18px;
	line-height: 18px;
	margin-bottom: 10px;
	display: block;
}

.col6R .list .item .text .info {
	font-size: 14px;
	color: #999;
	height: 14px;
	line-height: 14px;
	display: block;
}

.col6R .list .item:hover {
	background: #a90000;
}

.col6R .list .item:hover .time {
	color: #fff;
}

.col6R .list .item:hover .time span {
	color: #fff;
}

.col6R .list .item:hover .title {
	color: #fff;
}

.col6R .list .item:hover .info {
	color: #fff;
}

/*第六通栏end*/
/*第七通栏start*/
.column7 {
	padding: 70px 0 0;
	position: relative;
}

.col7Top {
	padding: 40px 0;
}

.col7Top .list .item {
	width: 33.3333%;
}

.col7Top .list .item .con {
	text-align: center;
	display: block;
}

.col7Top .list .item .con img {
	display: block;
	height: 46px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.col7Top .list .item .con .title {
	font-size: 16px;
	color: #fff;
	line-height: 16px;
	height: 16px;
	margin-bottom: 22px;
	overflow: hidden;
}

.col7Top .list .item .con .info {
	font-size: 14px;
	color: #a0a0a0;
	line-height: 14px;
	height: 14px;
	overflow: hidden;
}

.col7Bot {
	position: relative;
}

.col7Bot .con {
	z-index: 1;
	position: relative;
}

.col7Bot::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgb(0, 0, 0, 0.65);
	z-index: 0;
}

.col7Bot .title {
	height: 37px;
	overflow: hidden;
	margin-bottom: 20px;
}

.col7Bot .title img {
	height: 37px;
	display: block;
	margin: 0 auto;
}

.col7Bot .titlec {
	font-size: 14px;
	color: #fff;
	height: 14px;
	line-height: 14px;
	overflow: hidden;
	margin-bottom: 40px;
	text-align: center;
}

.col7Bot .list .item {
	width: 14.2857%;
}

.col7Bot .list .item .con {
	text-align: center;
	display: block;
}

.col7Bot .list .item .con img {
	display: block;
	height: 46px;
	margin: 0 auto;
	margin-bottom: 28px;
}

.col7Bot .list .item .con .title {
	font-size: 16px;
	color: #fff;
	line-height: 16px;
	height: 16px;
	margin-bottom: 22px;
	overflow: hidden;
}

.col7Bot .list .item .con .info {
	font-size: 16px;
	color: #fff;
	line-height: 16px;
	height: 16px;
	overflow: hidden;
}

.column7 .list .item .con img {
	position: relative;
	top: 0;
	-webkit-transition: all .4s linear;
}

.column7 .list .item .con:hover img {
	top: -5px;
}

/*第七通栏end*/

/* 友情链接 start */
.linkBox {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.linkBoxC {
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	padding: 22px 0;
}

.linkTitle {
	float: left;
	display: inline;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #ccc;
	margin-right: 25px;
}

.linkR {
	overflow: hidden;
}

.linkR a {
	float: left;
	display: inline;
	line-height: 30px;
	margin: 0 21px;
	font-size: 14px;
	color: #808080;
	-webkit-transition: all 0.3s esae;
	-moz-transition: all 0.3s esae;
	-ms-transition: all 0.3s esae;
	-o-transition: all 0.3s esae;
	transition: all 0.3s esae;
}

.linkR a:hover {
	color: #FFFFFF;
}

.linkL a {
	display: block;
	height: 40px;
	line-height: 40px;
	padding-right: 52px;
	background: url(../images/backTop.png) right center no-repeat;
	font-size: 14px;
	color: #666;
}

/* 友情链接 end */

/*底部开始*/
.footer {
	background: #313131;
}

.footerBody {
	margin-bottom: 20px;
}

.footerBodyR {
	position: relative;
	padding-top: 26px;
}

.footerEwmDl {
	overflow: hidden;
}

.footerEwmDl dd {
	float: left;
	display: inline;
	margin-left: 30px;
}

.footerEwmDl dd .con {
	width: 117px;
	padding: 0px;
	background: #FFFFFF;
	border-radius: 2px;
	overflow: hidden;
}

.footerEwmDl dd img {
	display: block;
	width: 117px;
	height: 117px;
}

.footerEwmDl dd span {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #808080;
	text-align: center;
}

.footerDl dd .con {
	overflow: hidden;
}

.footerDl dd .title {
	float: left;
	display: inline;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	padding-left: 28px;
}

.footerDl dd.dd1 .title {
	background: url(../images/icn1.png) left center no-repeat;
}

.footerDl dd.dd2 .title {
	background: url(../images/icn2.png) left center no-repeat;
}

.footerDl dd .text {
	overflow: hidden;
	line-height: 30px;
	padding: 5px 0;
	font-size: 14px;
	color: #FFFFFF;
}

.footerDl dd.dd1 .text {
	font-size: 24px;
}

.footerBodyL {
	padding-top: 15px;
}

.footerMenu {
	overflow: hidden;
}

.footerMenu dd {
	float: left;
	display: inline;
	margin-right: 87px;
	min-width: 100px;
}

.footerMenu dd em {
	font-style: normal;
	display: block;
	line-height: 44px;
	height: 44px;
	overflow: hidden;
	margin-bottom: 3px;
}

.footerMenu dd em a {
	font-size: 16px;
	color: #ccc;
}

.footerMenu dd em a:hover {
	color: #a90000;
}

.footerMenu dd span {
	font-style: normal;
	display: block;
	line-height: 24px;
	padding: 5px 0;
	overflow: hidden;
}

.footerMenu dd span a {
	font-size: 14px;
	color: #999;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.footerMenu dd span a:hover {
	color: #a90000;
	letter-spacing: 1px;
}

.footerBody1 {
	background: url(../images/beianBg.jpg) center center no-repeat;
	height: 60px;
	border-top: 1px solid #323232;
}

.footerBottom {
	overflow: hidden;
}

.footerBottomT {
	overflow: hidden;
	display: inline-block;
	line-height: 60px;
}

.footerBottomT span {
	float: left;
	display: inline;
	font-size: 14px;
	color: #666;
	margin-right: 30px;
}

.footerBottomT span.span1 {
	padding-left: 28px;
	background: url(../images/iconJ.png) left center no-repeat;
}

.footerBottomT span a {
	color: #666;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomT span a:hover {
	color: #fff;
}

.footerBottomB {
	line-height: 60px;
	color: #666;
	font-size: 14px;
}

.footerBottomB a {
	color: #666;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomB a:hover {
	color: rgba(255, 255, 255, 1);
}

.footerBodyC {
	overflow: hidden;
	padding-top: 24px;
}

.footerBody_dl {
	overflow: hidden;
}

.footerBody_dl dd {
	float: left;
	display: inline;
	width: 270px;
	margin-right: 50px;
}

.footerBody_dl dd.dd1 {
	width: 210px;
}

.footerBody_dl dd .title {
	height: 34px;
	line-height: 34px;
	font-size: 16px;
	color: #fff;
	padding-left: 34px;
	margin-bottom: 5px;
	background-position: left center;
	background-repeat: no-repeat;
}

.footerBody_dl dd .text span {
	display: block;
	height: 64px;
	line-height: 32px;
	font-size: 14px;
	color: #B2B2B2;
}

.footerBody_dl dd .text img {
	display: block;
	height: 16px;
}



/*底部结束*/


/* 底部调查 start */
.bottomQuest {
	background: url(../images/dbBg.jpg) center center no-repeat;
	height: 140px;
	position: relative;
	z-index: 2;
}

.bottomQuestL {
	/* 	overflow: hidden; */
	width: 28.4722%;
}

.bottomPic {
	position: relative;
	height: 140px;

}

.bottomPic img {
	display: block;
	margin: 0 auto;
	height: 146px;
	position: relative;
	top: -6px;
}

.bottomQuest_form {
	width: 400px;
}

.bottomQuest_form .form-form-item {
	width: 180px;
	background: #FFFFFF;
	padding: 0 0;
	margin: 8px 9px;
}

.bottomQuest_form .form-form-label {
	width: 30px;
	padding: 0 0;
	line-height: 32px;
	text-align: center;
}

.bottomQuest_form .form-form-label span {
	color: #e3120b;
	display: inline-block;
	height: 32px;
	line-height: 32px;
	font-size: 12px;
	position: relative;
	top: 3px;
}

.bottomQuest_form .form-form-formBox {
	margin-left: 30px;
	min-height: 32px;
}

.bottomQuest_form .form-form-input {
	height: 32px;
	line-height: 32px;
	border: none;
	padding-left: 0;
}

.bottomQuest_form .form_cssSelect .form_selectLt {
	min-height: 32px;
	min-width: 32px;
	line-height: 32px;
	font-size: 12px;
}

.bottomQuest .form_cssSelect .form_selectBox {
	border: none;
}

.bottomQuest_btn {
	overflow: hidden;
	width: 82px;
	height: 82px;
	position: relative;
	top: 23px;
	padding-left: 9px;
}

.bottomQuest_btn a {
	display: block;
	height: 82px;
	width: 82px;
	background: #eb5954;
	font-size: 16px;
	color: #FFFFFF;
	text-align: center;
}

.bottomQuestRT {
	padding-top: 10px;
	margin-right: 20px;
}

.bottomQuestRT .title {
	height: 60px;
	line-height: 60px;
	font-size: 30px;
	color: #FFFFFF;
}

.bottomQuestRT .text {
	height: 48px;
	line-height: 48px;
	font-size: 18px;
	color: #FFFFFF;
}

.bottomQuestRT .text span {
	color: #a90000;
}

/* 底部调查 end */
/*
-----------------------------首页样式end-----------------------------
*/
/*
-----------------------------频道页start-----------------------------
*/
/*
-----------------------------频道页end-----------------------------
*/
/*内页框架开始*/
/*内页外结构开始*/

/*内页外结构结束*/

/* subBanner start */
.subBox {
	position: relative;
	height: 500px;
}

.subBanner {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.subBanner::before{
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.34);
}

.titleBox{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.titleBox .title{
	font-size: 0px;
	color: #fff;
	height: 46px;
	line-height: 46px;
	text-align: center;
}
.titleBox .title .titleText1 span{
	font-size: 36px;
	margin: 0;
	padding: 0;
	margin-right: 5px;
}

.titleBox .title .titleText1{
	margin-right: 20px;
}
.titleBox .title1{
	font-size: 0px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	color: #fff;
}

.titleBox .title1 .word1{
	margin-right: 5px;
}

.titleBox .title1 .word1 span{
	font-size: 18px;
	margin: 0;
	padding: 0;
}

/* subBanner end */
/*当前位置开始*/
.locationBox {
	height: 70px;
	line-height: 70px;
	background: #fff;
	box-shadow: 0 0px 3px rgba(0, 0, 0, 0.09);
	text-align: center;
}

.locationRight {
	display: inline-block;
}

.locationLeft span {
	font-size: 14px;
	color: #666;
	background: url(../images/locationIcon.png) left center no-repeat;
	line-height: 60px;
	padding: 10px 0 10px 28px;
}

.locationLeft a {
	font-size: 14px;
	color: #666;
}

.locationLeft em {
	font-style: normal;
	font-size: 14px;
	color: #666;
}

.locationMenu {
	overflow: hidden;
}

.locationMenu dd {
	float: left;
	display: inline;
	padding: 0 30px;
}

.locationMenu dd a {
	display: block;
	line-height: 70px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	overflow: hidden;
	font-size: 16px;
	color: #333;
}

.locationMenu dd:hover a {
	color: #0c427a;
}

.locationMenu dd.hover a {
	color: #0c427a;
}

.minH600 {
	min-height: 600px;
	height: auto !important;
	height: 600px;
}

/*当前位置结束*/
/*页码开始*/
.page {
	text-align: center;
	clear: both;
	font-size: 14px;
}

.page a {
	display: inline-block;
	overflow: hidden;
	width: 40px;
	height: 40px;
	color: #999999;
	border-radius: 3px;
	background: #fff;
	margin: 0 3px;
	/* 	border: 1px solid #E2E2E2; */
	border-radius: 100%;
	line-height: 40px;
}

.page span {
	display: inline-block;
	padding: 6px 2px;
	position: relative;
	top: -15px;
}

.page a:hover {
	background: #a90000;
	color: #fff;
	border-color: #a90000;
}

.page a.hover {
	background: #a90000;
	color: #fff;
	border-color: #a90000;
}

.page input {
	display: inline-block;
	vertical-align: middle;
	height: 22px;
	border: 1px solid #e6e6e6;
	position: relative;
	top: -2px;
}

.page input.pageDetail {
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 3px;
	color: #999999;
	position: relative;
	top: -13px;
}

.page label {
	color: #999999;
	position: relative;
	top: -11px;
}

.page input.page_bnt {
	border: none;
	width: 30px;
	height: 25px;
	cursor: pointer;
	background: none;
	color: #999999;
	position: relative;
	top: -13px;
}

.page a div {
	width: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.firstPage div {
	background-image: url(../images/page/firstPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.prevPage div {
	background-image: url(../images/page/prevPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.nextPage div {
	background-image: url(../images/page/nextPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.lastPage div {
	background-image: url(../images/page/lastPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.firstPage:hover div {
	background-image: url(../images/page/firstPageh.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.prevPage:hover div {
	background-image: url(../images/page/prevPageh.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.nextPage:hover div {
	background-image: url(../images/page/nextPageh.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.lastPage:hover div {
	background-image: url(../images/page/lastPageh.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.firstPage.disabled {
	background: #E2E2E2;
}

.page a.prevPage.disabled {
	background: #E2E2E2;
}

.page a.nextPage.disabled {
	background: #E2E2E2;
}

.page a.lastPage.disabled {
	background: #E2E2E2;
}

.page a.firstPage.disabled div {
	background-image: url(../images/page/firstPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.prevPage.disabled div {
	background-image: url(../images/page/prevPage.png);
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.nextPage.disabled div {
	background-image: url(../images/page/nextPage.png) background-position: center center;
	background-repeat: no-repeat;
}

.page a.lastPage.disabled div {
	background-image: url(../images/page/lastPage.png) background-position: center center;
	background-repeat: no-repeat;
}

/*页码结束*/
/*内页框架结束*/


/* 装修计算器  start */
.formDl dd {
	margin-bottom: 20px;
}

.formDd .title {
	width: 75px;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	color: #666;
	margin-right: 15px;
	text-align: right;
}

.formDd .title span {
	color: #e7000d;
	padding: 0 2px;
}

.formBox {
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	padding: 0 10px;
	position: relative;
}

.formDivl {
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	margin-right: 10px;
	padding: 0 10px;
}

.formIpt {
	width: 100%;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	color: #666;
	border: none;
	background: none;
	outline: none;
}

.formArea {
	width: 100%;
	border: none;
	background: none;
	outline: none;
	line-height: 30px;
	resize: none;
}

.formAreaH_70 {
	height: 60px;
	padding: 5px 0;
}

input.formIpt::-webkit-input-placeholder {
	font-size: 14px;
	color: #999;
}

input.formIpt::-moz-input-placeholder {
	font-size: 14px;
	color: #999;
}

input.formIpt::-ms-input-placeholder {
	font-size: 14px;
	color: #999;
}

.demo2 {
	height: 42px;
	position: relative;
	margin-right: 0px;
}

.demo2 .seljg {
	line-height: 42px;
	color: #333;
	font-size: 14px;
	cursor: pointer;
}

.demo2 .seljg input {
	display: block;
	width: 100%;
	height: 42px;
	border: none;
	background: none;
}

.demo2 i {
	display: block;
	width: 20px;
	height: 42px;
	background: url(../images/selw.png) no-repeat center center;
	position: absolute;
	right: 5px;
	top: 0px;
	cursor: pointer;
}

.demo2 .selTj {
	overflow: hidden;
	border: 1px solid #dddddd;
	border-top: none;
	max-height: 240px;
	overflow-y: auto;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 43px;
	background: #FFF;
	display: none;
	z-index: 100000;
	border-top: none;
}

.demo2 .selTj a {
	display: block;
	height: 42px;
	line-height: 42px;
	padding-left: 10px;
	color: #666666;
	margin-bottom: 1px;
	font-size: 12px;
}

.demo2 .selTj a:hover {
	background: #f8f8f8;
	color: #ff7800;
}

.demo2 .selTj a.hover {
	background: #f8f8f8;
	color: #ff7800;
}

.w_200 {
	width: 200px;
}

.w_300 {
	width: 300px;
}

.w_150 {
	width: 150px;
}

.w_500 {
	width: 515px;
}

.quotesBox {
	width: 100%;
	height: 725px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.quotesOuster {
	width: 975px;
	height: 480px;
	margin: 0 auto;
	position: relative;
}

.quotesOusterBox {
	padding: 45px 30px;
}

.quotesOuster-leftTitle {
	height: 56px;
	line-height: 56px;
	font-size: 24px;
	color: #333333;
}

.quotesOuster-leftTitle span {
	font-size: 14px;
	color: #aa0000;
	padding: 0 10px;
}

.quotesOuster-leftTitle span i {
	font-style: normal;
	padding: 0 5px;
}

.quotesOuster-leftBody .formDd .title {
	height: 36px;
	line-height: 36px;
}

.quotesOuster-leftBody .demo2 {
	height: 34px;
}

.quotesOuster-leftBody .demo2 .seljg {
	line-height: 34px;
}

.quotesOuster-leftBody .demo2 i {
	height: 34px;
	right: -10px;
}

.w_85 {
	width: 85px;
}

.w_180 {
	width: 180px;
}

.w_46 {
	width: 46px;
}

.quotesOuster-leftBody .demo2 .selTj {
	left: -10px;
	right: -10px;
	top: 35px;
}

.formUnit {
	height: 34px;
	line-height: 34px;
	font-size: 14px;
	color: #333;
}

.quotesOuster-leftBody .formDl dd {
	margin-bottom: 10px;
}

.quotesOuster-right {
	width: 320px;
}

.quotesOuster-rightTitle {
	height: 56px;
	line-height: 56px;
	font-size: 24px;
	color: #333;
	overflow: hidden;
}

.quotesOuster-rightTitle i {
	font-size: 18px;
	color: #333;
	font-style: normal;
}

.quotesOuster-rightTitle span.spanToal {
	color: #aa0000;
	width: 100px;
	overflow: hidden;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}

.quotesOuster-rightBody {
	margin-left: 8px;
	width: 310px;
	height: 265px;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
	position: relative;
}

.quotesOuster-rightDl {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.quotesOuster-rightDl dd {
	height: 40px;
	line-height: 40px;
	overflow: hidden;
}

.quotesOuster-rightDl dd span {
	float: left;
	display: inline;
	font-size: 16px;
	color: #333;
	text-align: right;
}

.quotesOuster-rightDl dd .detilaYS {
	width: 70px;
	font-size: 16px;
	color: #aa0000;
	font-weight: bold;
	margin-right: 3px;
}

.quotesOuster-center {
	position: absolute;
	width: 270px;
	top: 45px;
	bottom: 45px;
	left: 50%;
	margin-left: -135px;
	/* background: #FAFAFA; */
}

.quotesOuster-center::before {
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 67px;
	left: 50%;
	top: 25px;
	background: #DEDEDE;
}

.quotesOuster-centerBox {
	position: relative;
	top: 92px;
	left: 66px;
	width: 141px;
	height: 141px;
	background: url(../images/wicon75.png) center center no-repeat;
}

.quotesOuster-centerBox:before {
	display: block;
	content: '';
	position: absolute;
	left: -10%;
	top: -10%;
	background: rgba(254, 225, 197, 0.8);
	width: 120%;
	height: 120%;
	border-radius: 50%;
	opacity: 0;
	animation: wave 2.5s infinite ease-out;
	-webkit-animation: wave 2.5s infinite ease-out;
	z-index: 0;
}

.quotesOuster-centerBg {
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	background: #fee1c5;
	border-radius: 100%;
	z-index: 5;
}

.quotesOuster-centerBg span {
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	background: #aa0000;
	border-radius: 100%;
}

.quotesOuster-centerBg span i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	font-style: normal;
}

@-webkit-keyframes wave {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.1;
	}

	25% {
		-webkit-transform: scale(0.2);
		opacity: 0.25;
	}

	50% {
		-webkit-transform: scale(0.5);
		opacity: .5;
	}

	75% {
		-webkit-transform: scale(0.7);
		opacity: .75;
	}

	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

@keyframes wave {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.1;
	}

	25% {
		-webkit-transform: scale(0.2);
		opacity: 0.25;
	}

	50% {
		-webkit-transform: scale(0.5);
		opacity: .5;
	}

	75% {
		-webkit-transform: scale(0.7);
		opacity: .75;
	}

	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

.userCheck {
	padding-left: 20px;
	background: url(../images/checkBox.png) left center no-repeat;
	background-size: auto 80%;
}

.userAppointment.hover .userCheck {
	background: url(../images/checkBox_h.png) left center no-repeat;
}

a.userDna {
	padding: 0 3px;
	color: #aa0000;
}

/* 装修计算器  end */

/* ========== 关于冰点 start ========== */
/* ————— 公共部分 start ————— */
.aboutColBg {background-repeat: no-repeat;background-size: cover;}
.aboutatitleBox {overflow: hidden;}
.aboutatitleBox .enTitle {font-size: 36px;color: #333333;font-weight: bold;height: 46px;line-height: 46px;overflow: hidden;}
.aboutatitleBox .cnTitle {font-size: 26px;color: #333333;height: 42px;line-height: 42px;overflow: hidden;}
.aboutatitleBox.center .cnTitle,
.aboutatitleBox.center .enTitle {text-align: center;color: #FFFFFF;}
/* ————— 公共部分 end ————— */
/* ————— 第1通栏 公司简介 start ————— */
.aboutCol1 {background-color: #FFFFFF;overflow: hidden;padding: 50px 0 60px;}
.aboutInfo {overflow: hidden;margin-bottom: 20px;}
.aboutInfo .aboutatitleBox {float: left;display: block;margin-right: 30px;}
.aboutInfo .info {overflow: hidden;font-size: 14px;color: #666666;line-height: 28px;}
.aboutCol1Slick {position: relative;}
.aboutCol1Slick .slick-dots {position: absolute;bottom: 30px;left: 50%;transform: translateX(-50%);-webkit-transform: translateX(-50%);text-align: center;font-size: 0;background: rgba(0, 0, 0, 0.5);padding: 8px 25px;border-radius: 15px;}
.aboutCol1Slick .slick-dots li {display: inline-block;width: 10px;height: 10px;border-radius: 100%;margin: 0 5px;vertical-align: middle;cursor: pointer;position: relative;border: 2px solid #FFFFFF;}
.aboutCol1Slick .slick-dots li.slick-active {background: #FFFFFF;}
.aboutCol1Slick .bd {overflow: hidden;}
.aboutCol1Slick .slick-list {overflow: visible;}
.aboutCol1Slick .myslide {float: left;display: inline;}
.aboutCol1Slick .slickCon {display: block;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol1Slick .slickCon .pic::before {padding-top: 36.7361%;}
/* ————— 第1通栏 公司简介 end ————— */
/* ————— 第2通栏 企业文化 start ————— */
.aboutCol2 {overflow: hidden;padding: 50px 0 60px;}
.aboutCol2Slick {position: relative;padding: 24px 0 0;}
.aboutCol2Slick .slick-dots {width: 100%;position: absolute;bottom: -30px;left: 0%;text-align: center;font-size: 0;background: rgba(0, 0, 0, 0.5);border-radius: 15px;}
.aboutCol2Slick .slick-dots li {display: inline-block;width: 10px;height: 10px;border-radius: 100%;margin: 0 5px;vertical-align: middle;cursor: pointer;position: relative;border: 2px solid #FFFFFF;}
.aboutCol2Slick .slick-dots li.slick-active {background: #FFFFFF;}
.aboutCol2Slick .bd {overflow: hidden;}
.aboutCol2Slick .slick-list {overflow: visible;}
.aboutCol2Slick .myslide {float: left;display: inline;outline: none;}
.aboutCol2Slick .slickCon {display: block;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol2Dl {overflow: hidden;}
.aboutCol2Dl dd {width: 50%;float: left;display: inline;}
.aboutCol2Dl dd .con {overflow: hidden;background-color: #FFFFFF;}
.aboutCol2Dl dd .pic {width: 50%;float: left;}
.aboutCol2Dl dd.dd1 .pic,
.aboutCol2Dl dd.dd2 .pic {float: right;}
.aboutCol2Dl dd .pic::before {padding-top: 100%;}
.aboutCol2Dl dd .text {overflow: hidden;background: #f9f9f9;padding-left: 14.168%;}
.aboutCol2Dl dd .number {font-size: 26px;color: #666666;height: 54px;line-height: 54px;overflow: hidden;}
.aboutCol2Dl dd .title {font-size: 26px;color: #333333;font-weight: bold;height: 60px;line-height: 60px;overflow: hidden;}
.aboutCol2Dl dd .info {font-size: 14px;color: #666666;line-height: 28px;max-height: 168px;overflow: hidden;padding-right: 15px;}
/* ————— 第2通栏 企业文化 end ————— */
/* ————— 第3通栏 公司新闻 start ————— */
.aboutCol3 {background-color: #FFFFFF;overflow: hidden;padding: 50px 0 60px;}
.aboutCol3BtnBox {text-align: center;position: relative;height: 48px;}
.aboutCol3BtnBox .more {position: absolute;left: 50%;top: 0;transform: translateX(-50%);-webkit-transform: translateX(-50%);}
.aboutCol3BtnBox .more a {display: block;width: 88px;height: 48px;border-radius: 2px;border: 1px solid rgb(230, 230, 230);background: url(../images/bg/more1.png)no-repeat center center;background-size: 12px 12px;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol3BtnBox .more a:hover {border: 1px solid #a90000;background: #a90000 url(../images/bg/more1h.png)no-repeat center center;background-size: 12px 12px;}
.aboutCol3Btn {display: inline-block;text-align: center;font-size: 0;}
.aboutCol3Btn .prev,
.aboutCol3Btn .next {display: inline-block;width: 48px;height: 48px;cursor: pointer;border-radius: 2px;border: 1px solid rgb(230, 230, 230);margin: 0 55px;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol3Btn .prev {background: url(../images/bg/prev1.png) no-repeat center center;background-size: 15px 12px;}
.aboutCol3Btn .prev:hover {background: #a90000 url(../images/bg/prev1h.png) no-repeat center center;background-size: 15px 12px;border: 1px solid #a90000;}
.aboutCol3Btn .next {background: url(../images/bg/next1.png) no-repeat center center;background-size: 15px 12px;}
.aboutCol3Btn .next:hover {background: #a90000 url(../images/bg/next1h.png) no-repeat center center;background-size: 15px 12px;border: 1px solid #a90000;}
.aboutCol3Slick {position: relative;margin-bottom: 96px;}
.aboutCol3Slick .bd {overflow: hidden;margin: -10px;}
.aboutCol3Slick .slick-list {overflow: visible;}
.aboutCol3Slick .myslide {float: left;display: inline;}
.aboutCol3Slick .slickCon {display: block;margin: 10px;transition: all 0.4s;-webkit-transition: all 0.4s;padding: 30px 30px 0;background: #FFFFFF;}
.aboutCol3Slick .slickCon:hover {box-shadow: 0px 10px 20px 0px rgba(31, 21, 18, 0.12);-webkit-box-shadow: 0px 10px 20px 0px rgba(31, 21, 18, 0.12);background-color: rgb(245, 245, 245);}
.aboutCol3Slick .slickCon .pic::before {padding-top: 56.1905%;}
.aboutCol3Slick .slickCon .text {padding: 23px 0;}
.aboutCol3Slick .slickCon .title a {display: inline-block;font-size: 16px;color: #333333;height: 40px;line-height: 40px;max-width: 100%;font-weight: bold;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol3Slick .slickCon:hover .title a {color: #a90000;}
.aboutCol3Slick .slickCon .info {font-size: 14px;color: #858585;line-height: 28px;height: 56px;overflow: hidden;margin-bottom: 46px;}
.aboutCol3Slick .slickCon .textC {overflow: hidden;}
.aboutCol3Slick .slickCon .time {overflow: hidden;height: 26px;line-height: 26px;font-size: 14px;color: #999999;}
.aboutCol3Slick .slickCon .more {height: 26px;line-height: 26px;display: inline-block;font-size: 14px;color: #666666;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol3Slick .slickCon:hover .more {color: #a90000;}
/* ————— 第3通栏 公司新闻 end ————— */
/* ————— 第4通栏 发展历程 start ————— */
.aboutCol4 {overflow: hidden;padding: 50px 0 60px;}
.aboutCol4Con {padding-top: 6.875%;}
.aboutCol4Slick {position: relative;min-height: 436px;padding: 17px 116px 0;}
.aboutCol4Slick.hover::before{content: '';display: block;width: 100%;height: 2px;background-color: rgb(64, 64, 64);position: absolute;left: 0;top: 27px;}
.aboutCol4Slick .aboutCol4BtnBox{width: 100%;height: 56px;position: absolute;top: 0;left: 0;overflow: hidden;}
.aboutCol4Btn{overflow: hidden;}
.aboutCol4BtnBox .aboutCol4Line{overflow: hidden;height: 2px;background-color: rgb(64, 64, 64);margin: 0 56px;position: relative;top: -27px;}
.aboutCol4Slick .prev,
.aboutCol4Slick .next {display: inline-block;width: 50px;height: 50px;border-radius: 50%;cursor: pointer;transition: all 0.4s;-webkit-transition: all 0.4s;border: 3px solid #FFFFFF;}
.aboutCol4Slick .prev {float: left;background:url(../images/bg/prev2.png) no-repeat center center;background-size: 13px 19px;}
.aboutCol4Slick .prev:hover{border: 3px solid #a90000;background:url(../images/bg/prev2h.png) no-repeat center center;background-size: 13px 19px;}
.aboutCol4Slick .next {float: right;background:url(../images/bg/next2.png) no-repeat center center;background-size: 13px 19px;}
.aboutCol4Slick .next:hover{border: 3px solid #a90000;background:url(../images/bg/next2h.png) no-repeat center center;background-size: 13px 19px;}
.aboutCol4Slick .bd {overflow: hidden;margin: 0 -46px;}
.aboutCol4Slick .slick-list {overflow: visible;}
.aboutCol4Slick .myslide {float: left;display: inline;outline: none;}
.aboutCol4Slick .slickCon {display: block;margin: 0 46px;transition: all 0.4s;-webkit-transition: all 0.4s;position: relative;z-index: 3;}
.aboutCol4Slick .slickCon .dot{width: 14px;height: 14px;border-radius: 50%;border: 4px solid rgb(169, 0, 0);margin: 0 auto;background: #020102;transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol4Slick .slickCon:hover .dot{background: #a90000;}
.aboutCol4Slick .slickCon .text{padding: 30px 0 0;}
.aboutCol4Slick .slickCon .textC{background: #f5f5f5;position: relative;}
.aboutCol4Slick .slickCon .textC::before{content: '';width: 0;height: 0;border-left: 12px solid transparent;border-right: 12px solid transparent;border-bottom: 12px solid #fcfcfc;position: absolute;top: -12px;left: 50%;transform: translateX(-50%);transition: all 0.4s;-webkit-transition: all 0.4s;}
.aboutCol4Slick .slickCon:hover .textC::before{border-bottom: 12px solid #a90000;}
.aboutCol4Slick .slickCon .year{height: 40px;line-height: 40px;text-align: center;font-size: 18px;color: #333333;transition: all 0.4s;-webkit-transition: all 0.4s;background: #f5f5f5;}
.aboutCol4Slick .slickCon:hover .year{background: #a90000;color: #FFFFFF;}
.aboutCol4Slick .slickCon .info{padding: 15px 24px 32px;line-height: 24px;font-size: 14px;color: #333333;}
/* ————— 第4通栏 发展历程 end ————— */
/* ========== 关于冰点 end ========== */


/* 装修方案弹框 start */
.aykjClass7.layui-layer {
	background: transparent;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.palnPopC {
	position: relative;
	top: 50px;
	background: #FAFAFA;
	border-radius: 2px;
	padding: 0 50px;
}

.palnTop {
	border: 8px solid rgba(0, 0, 0, 0.19);
	border-radius: 100%;
	display: block;
	width: 85px;
	height: 85px;
	margin: 0 auto;
	position: relative;
	top: -50px;
}

.palnTop span {
	display: block;
	width: 85px;
	height: 85px;
	background: #cc0003;
	border-radius: 100%;
	text-align: center;
	font-size: 16px;
	color: #FFFFFF;
}

.palnBody {
	position: relative;
	top: -25px;
}

.palnTitle {
	height: 34px;
	line-height: 34px;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	text-align: center;
}

.palnTitle1 {
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	color: #333;
	text-align: center;
}

.palnBodyC .form-form-item {
	float: none;
	display: block;
}

.palnBodyC .form-form-label {
	width: 70px;
	padding: 6px 0;
	font-size: 14px;
	color: #333;
}

.palnBodyC .form-form-label span {
	color: #fe1c1c;
	padding-right: 2px;
}

.palnBodyC .form-form-formBox {
	margin-left: 80px;
	min-height: 36px;
}

.palnBodyC .form-form-input {
	height: 36px;
	line-height: 36px;
	border-radius: 2px;
}

.palnBodyC .form_cssSelect .form_selectLt {
	min-height: 36px;
	min-width: 36px;
	line-height: 36px;
	border-radius: 2px;
}
.planBtn a{
	display: block;
	height: 46px;
	line-height: 46px;
	background: #cc0003;
	text-align: center;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}
.planIntro{
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 14px;
	color: #999;
}
.planIntro span{
	color: #fe1c1c;
	padding: 0 3px;
}
.aykjClass7 .layui-layer-setwin{
	position: absolute;
	width: 55px;
	height: 46px;
	top: 50px;
	right: 0;
}
.aykjClass7 .layui-layer-setwin .layui-layer-close2{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/gb.png) !important;
	background-position: center center;
}

/* 装修方案弹框 end */
/*
* 右边漂浮 start
*/
.rightFlex {
	position: fixed;
	right: 30px;
	top: 50%;
	margin-top: -50px;
	z-index: 999;
	width: 65px;
	/* -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08); */
}
.rightFlexDiv {
	position: relative;
}

a.rightFlex_a {
	display: block;
	width: 65px;
	height: 45px;
	padding: 10px 0;
	overflow: hidden;
	font-size: 14px;
	color: #666;
	text-align: center;
	line-height: 40px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	background: #e6e6e6;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rightGoTop a.rightFlex_a {
	border-bottom: none;
}

.rightFlex_a span.text {
	display: block;
	height: 25px;
	line-height: 25px;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.rightFlex_a span.footerSpanIcon {
	display: block;
	height: 20px;
	line-height: 20px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.rightCustom span.footerSpanIcon {
	background: url(../images/rightIcon1.png) bottom center no-repeat;
}

.shopCar span.footerSpanIcon {
	background: url(../images/rightIcon2.png) bottom center no-repeat;
}

.rightGoTop span.footerSpanIcon {
	background: url(../images/rightIcon3.png) bottom center no-repeat;
}

.rightFlex_a:hover {
	background: #a90000;
}

.rightCustom .rightFlex_a:hover span.footerSpanIcon {
	background: url(../images/rightIcon1_h.png) center bottom no-repeat;
}

.shopCar .rightFlex_a:hover span.footerSpanIcon {
	background: url(../images/rightIcon2_h.png) center bottom no-repeat;
}

.rightGoTop .rightFlex_a:hover span.footerSpanIcon {
	background: url(../images/rightIcon3_h.png) center bottom no-repeat;
}

.rightFlex_a:hover span.text {
	color: #FFFFFF;
}

.shopCar .rightFlex_a i {
	position: absolute;
	width: 20px;
	height: 20px;
	line-height: 20px;
	top: 4px;
	right: 6px;
	font-style: normal;
	background: #cd212d;
	font-size: 12px;
	color: #fff;
	text-align: center;
	border-radius: 50%;
}

.rightGoTop {
	display: none;
}

.rightFlex.show .rightGoTop {
	display: block;
}

.rightGoTop .rightFlex_a:hover {
	background: #a90000;
}

/*.rightFlex_dl dt{
    padding-top: 5px;
}*/

.bottomQuest_result{
	overflow: hidden;
	width: 460px;
	height: 90px;
	padding-top: 20px;
}
.bottomQuest_resultT{
	background: url(../images/textBg.png) center center no-repeat;
	height: 90px;
	line-height: 90px;
	text-align: center;
	font-size: 18px;
	color: #FFFFFF;
}
.bottomQuest_resultT span{
	font-size: 24px;
	color: #e3120b;
}
.bottomQuest .close{
	position: absolute;
	width: 20px;
	height: 20px;
	top: 6px;
	right: 55px;
	background: url(../images/cloase.png) center center no-repeat;
}
/* 右边漂浮 end */

/* 全栈搜索 start */
.footSearchBox{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    display: none;
}
.footSearchBox .wrap{
    position: relative;
    top: 50%;
    margin-top: -25px;
}
.searchCont{
    overflow: hidden;
    width: 600px;
    margin: 0px auto;
    position: relative;
}
.searchInpDiv{
    display: block;
    overflow: hidden;
    padding: 0px 10px;
    border: 3px solid #cc0003;
    border-radius: 0px 0px 0px 3px;
    background: #fff;
}
.searchInpDiv input{
    display: block;
    height: 44px;
    width: 100%;
    border:none;
    background: none;
    font-size: 14px;
    color:#666;
    overflow: hidden;
    line-height: 44px;
}
a.footSearchBt{
    display: block;
    width: 100px;
    height: 50px;
    overflow: hidden;
    background: #cc0003;
    font-size: 16px;
    color:#fff;
    text-align: center;
    line-height: 50px;
    border-radius: 0px 3px 3px 0px;
}
.closeSearchBt{
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 15px;
    background: #000 url(../images/cloase.png) no-repeat center center;
}
/* 全栈搜索 end */

/* vr 更多 start */
.column1More {
	text-align: center;
}

.column1More a {
	display: inline-block;
	padding: 0 30px;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	border: 1px solid #cc0003;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
	color: #cc0003;
}

.column1More a span{
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding-right: 30px;
	background: url(../images/jiantouw.png) right center no-repeat;
}
.column1More a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #cc0003;
	z-index: -1;
	opacity: 0;
	-webkit-transform: scale3d(0.7, 1, 1);
	transform: scale3d(0.7, 1, 1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.column1More a:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.column1More a:hover span{
	color: #FFFFFF;
	padding-right: 35px;
	background: url(../images/jiantou.png) right center no-repeat;
}
/* vr 更多 end */
.minH400 {
	min-height: 400px;
	height: auto !important;
	height: 400px;
}