/* 关于我们 */
.about_us_box {
	width: 100%;
	padding: 65px 0 55px;
}

.about_us_box .ct_content_box {
	padding: 0 35px;
	box-sizing: border-box;
}

.about_us_box .about_box {
	border: 2px solid #dddddd;
	position: relative;
	padding: 65px 35px 30px 45px;
}

.about_us_box .about_box .title_box {
	width: 370px;
	height: 82px;
	background-color: #fff;
	position: absolute;
	top: -20px;
	left: -5px;
}

.about_us_box .about_box .title_box .title {
	color: #222222;
	font-size: 32px;
	margin-right: 20px;
}

.about_us_box .about_box .title_box .content {
	color: #999999;
	font-size: 30px;
}

.about_us_box .about_box .content_box {
	width: 100%;
	display: flex;
}

.about_us_box .about_box .content_box .img_box {
	width: 490px;
	height: 330px;
	overflow: hidden;
}

.about_us_box .about_box .content_box .img_box img {
	width: 100%;
	height: 100%;
	transition: -moz-all .6s;
	transition: all .6s;
}

.about_us_box .about_box .content_box .img_box:hover img {
	transform: scale(1.1);
}

.about_us_box .about_box .content_box .right_txt_box {
	width: calc(100% - 490px);
	padding-left: 30px;
	box-sizing: border-box;
}

.about_us_box .about_box .content_box .right_txt_box .txt_box {
	color: #333333;
	font-size: 14px;
	line-height: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	text-indent: 2em;
}

.about_us_box .about_box .content_box .right_txt_box .list_box {
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.about_us_box .about_box .content_box .right_txt_box .list_item {
	width: 80px;
	height: 80px;
	border: 1px solid #ff0f0f;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

/* 我们的服务 */
.our_services_box {
	padding: 65px 0 90px;
	background-color: #f0f0f0
}

.our_services_box .list_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.our_services_box .list_box .list_item {
	width: 350px;
	height: 250px;
	margin: 0 12px;
	position: relative;
	transition: -moz-all .6s;
	transition: all .6s;
}

.our_services_box .list_box .list_item .bg {
	width: 100%;
	height: 100%;
}

.our_services_box .list_box .list_item .txt_box {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	padding: 10px 15px 60px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	transition: -moz-all .6s;
	transition: all .6s;
}

.our_services_box .list_box .list_item .txt_box .txt {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 60px;
	box-sizing: border-box;

}

.our_services_box .list_box .list_item .txt_box .txt::before,
.our_services_box .list_box .list_item .txt_box .txt::after {
	content: "";
	display: block;
	background-color: #CCCCCC;
	position: absolute;
	top: 0;
	left: 0;
	transition: -moz-all .6s;
	transition: all .6s;
}

.our_services_box .list_box .list_item .txt_box .txt::before {
	width: 0px;
	height: 2px;
}

.our_services_box .list_box .list_item .txt_box .txt::after {
	width: 2px;
	height: 0px;
}

.our_services_box .list_box .list_item .txt_box .txt>a {
	color: #fff;
	font-size: 32px;
	padding: 15px 25px;
	border-radius: 10px;
	transition: -moz-all .6s;
	transition: all .6s;
}

.our_services_box .list_box .list_item:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	/*触碰*/
}

.our_services_box .list_box .list_item:hover .txt_box {
	background-color: rgba(0, 0, 0, .2);
}

.our_services_box .list_box .list_item:hover .txt_box .txt::before {
	width: 320px;
}

.our_services_box .list_box .list_item:hover .txt_box .txt::after {
	height: 180px;
}

.our_services_box .list_box .list_item:hover .txt_box .txt>a {
	background-color: rgba(255, 15, 15, .5);
}

/* 新闻动态 */
.news_box {
	width: 100%;
	padding: 65px 0 55px;
}

.news_box .title_box {
	margin-bottom: 45px;
}

.news_box .title_box .title {
	color: #222222;
	font-size: 32px;
	margin-right: 20px;
}

.news_box .title_box .content {
	color: #999999;
	font-size: 30px;
}

.news_box .content_box {
	width: 100%;

}

.news_box .content_box .list_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news_box .content_box .list_box .list_item {
	width: 48%;
	height: 160px;
	margin-bottom: 35px;
	display: flex;
	justify-content: space-between;
}

.news_box .content_box .list_box .list_item .item_box {
	width: 95%;
	height: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	background-color: #f0f0f0;
	padding: 12px;
	box-sizing: border-box;
	display: flex;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_box .content_box .list_box .list_item .item_box .img_box {
	width: 200px;
	height: 140px;
	overflow: hidden;
}

.news_box .content_box .list_box .list_item .item_box .img_box img {
	width: 100%;
	height: 100%;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_box .content_box .list_box .list_item .item_box .img_box:hover img {
	transform: scale(1.05);
}

.news_box .content_box .list_box .list_item .item_box .txt_box {
	width: calc(100% - 200px);
	height: 100%;
	padding-left: 10px;
	box-sizing: border-box;
	line-height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news_box .content_box .list_box .list_item .item_box .txt_box .title {
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}

.news_box .content_box .list_box .list_item .item_box .txt_box .content {
	color: #666666;
	font-size: 14px
}

.news_box .content_box .list_box .list_item .btn_box {
	width: 20px;
	height: 60px;
	background-color: #999999;
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
	transition: -moz-all .6s;
	transition: all .6s;
}

.news_box .content_box .list_box .list_item .btn_box img {
	width: 13px;
	height: 13px;
}

.news_box .content_box .list_box .list_item:hover .item_box {
	background-color: #FFFFFF
}

.news_box .content_box .list_box .list_item:hover .btn_box {
	background-color: #ff0f0f;
	transform: translateY(20px);
}

/* 产品中心 */
.products_box {
	width: 100%;
	padding: 60px 0;
	background: url(../img/home/products_bg_15.jpg) center no-repeat;
	background-size: cover;
}

.products_box .header_box {
	width: 100%;
	margin-bottom: 120px;
	display: flex;
	justify-content: space-between;
}

.products_box .header_box .title_box .title {
	color: #FFFFFF;
	font-size: 32px;
	margin-right: 20px;
}

.products_box .header_box .title_box .content {
	color: #FFFFFF;
	font-size: 30px;
}

.products_box .header_box .looks_box {
	display: flex;
	align-items: center;
}

.products_box .header_box .looks_box>.txt {
	color: #ff263e;
	font-size: 20px;
	padding-right: 20px;
	border-right: 2px solid #dddddd
}

.products_box .header_box .looks_box>img {
	margin-left: 20px;
}

.products_box .swiper-container {
	width: 100%;
	height: 325px;
}

.products_box .swiper-slide {
	height: 220px;
}

.products_box .swiper-slide .item {
	width: 95%;
	height: 100%;
	position: relative;
	margin: 0 auto;
}

.products_box .swiper-slide .item img {
	width: 100%;
	height: 100%;
}

.products_box .swiper-button-prev::after,
.products_box .swiper-button-next::after {
	display: none;
}

.products_box .swiper-button-prev,
.products_box .swiper-button-next {
	width: 55px;
	height: 29px;
	top: 95%;
	outline: none;
}

.products_box .swiper-button-prev {
	left: calc(50% - 70px);
}

.products_box .swiper-button-next {
	right: calc(50% - 70px);
}

.products_box .swiper-slide .item .zz_box {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	padding: 18px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	transition: -moz-all .6s;
	transition: all .6s;
	transform: scale(0);
}

.products_box .swiper-slide .item .zz_box .txt_box {
	width: 100%;
	height: 100%;
	border: 2px solid #FFFFFF;
	display: flex;
	align-items: center;
}

.products_box .swiper-slide .item .zz_box .txt_box .title {
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	font-size: 30px;
	font-weight: bold;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .5);
}

.products_box .swiper-slide .item:hover .zz_box {
	transform: scale(1);
}

/* 最新案例 */
.new_cases_box {
	width: 100%;
	padding: 60px 0;
}

.new_cases_box .header_box {
	width: 100%;
	margin-bottom: 60px;
	display: flex;
	justify-content: space-between;
}

.new_cases_box .header_box .title_box .title {
	color: #222222;
	font-size: 32px;
	margin-right: 20px;
}

.new_cases_box .header_box .title_box .content {
	color: #999999;
	font-size: 30px;
}

.new_cases_box .header_box .looks_box {
	display: flex;
	align-items: center;
}

.new_cases_box .header_box .looks_box>.txt {
	color: #ff263e;
	font-size: 20px;
	padding-right: 20px;
	border-right: 2px solid #dddddd
}

.new_cases_box .header_box .looks_box>img {
	margin-left: 20px;
}

.new_cases_box .swiper-container {
	width: 100%;
	height: 277px;
}

.new_cases_box .swiper-slide {
	height: 100%;
}

.new_cases_box .swiper-slide .item {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.new_cases_box .swiper-slide .item .zz_box {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	transition: -moz-all .6s;
	transition: all .6s;
	transform: scale(0);
	display: flex;
	justify-content: center;
	align-items: center;
}
.new_cases_box .swiper-slide .item .zz_box .title{
	color: #FFFFFF;
	font-size: 32px;
	transition: -moz-all .6s;
	transition: all .6s;
}
.new_cases_box .swiper-slide .item .zz_box .title:hover{
	color: #CCCCCC;
}
.new_cases_box .swiper-slide .item:hover .zz_box {
	transform: scale(1);
}

/* 联系我们 */
.catact_us_box {
	width: 100%;
	padding: 45px 0;
	background-color: #f0f0f0;
}

.catact_us_box .ct_content_box {
	display: flex;
	justify-content: space-around;
	height: 404px;
}

.catact_us_box .ct_content_box>.left {
	width: 656px;
	height: 100%;
}

.catact_us_box .ct_content_box>.left img {
	width: 100%;
	height: 100%;
}

.catact_us_box .ct_content_box>.right {
	width: calc(100% - 656px);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.catact_us_box .ct_content_box>.right .title_box .title {
	color: #222222;
	font-size: 32px;
}

.catact_us_box .ct_content_box>.right .title_box .content {
	color: #999999;
	font-size: 32px;
}

.catact_us_box .ct_content_box>.right .txt_box .txt {
	margin-bottom: 20px;
}

.catact_us_box .ct_content_box>.right .txt_box .txt .title {
	color: #222222;
	font-size: 20px;
	font-weight: bold;
}

.catact_us_box .ct_content_box>.right .txt_box .txt .info {
	color: #222222;
	font-size: 20px;
	padding-left: 30px;
}

.catact_us_box .ct_content_box>.right .txt_box .txt .phone {
	color: #ff0f0f;
	font-size: 38px;
	padding-left: 30px
}

.catact_us_box .ct_content_box>.right .txt_box .txt .address {
	color: #222222;
	font-size: 20px;
	padding-left: 30px;
}

@media screen and (min-width:1024px) and (max-width:1279px) {
	.catact_us_box .ct_content_box>.left {
		width: 456px;
	}

	.catact_us_box .ct_content_box>.right {
		width: calc(100% - 456px);
		padding: 5px;
	}

	.catact_us_box .ct_content_box {
		height: 310px;
	}
}
