/* 公用 */
/* a标签 */
body {
	margin: 0 auto;
	overflow-x: hidden;
	max-width: 1920px;
	min-width: 1280px;
}

.banner .phoneimg {
	display: none;
}

.clearfix:after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	*zoom: 1;
}

.ff_12 {
	font-size: 12px;
	font-weight: bold;
}

.ff_16 {
	font-size: 16px;
	font-weight: bold;
}

.ff_18 {
	font-size: 18px;
	font-weight: bold;
}

.ff_20 {
	font-size: 20px;
	font-weight: bold;
}

.ff_22 {
	font-size: 22px;
	font-weight: bold;
}

.ff_24 {
	font-size: 24px;
	font-weight: bold;
}

.ff_26 {
	font-size: 26px;
	font-weight: bold;
}

.ff_28 {
	font-size: 28px;
	font-weight: bold;
}

.ff_30 {
	font-size: 30px;
	font-weight: bold;
}

.ff_32 {
	font-size: 32px;
	font-weight: bold;
}

.ff_34 {
	font-size: 34px;
	font-weight: bold;
}

.ff_36 {
	font-size: 36px;
	font-weight: bold;
}

.ff_38 {
	font-size: 38px;
	font-weight: bold;
}

.ff_40 {
	font-size: 40px;
	font-weight: bold;
}

a {
	color: #666;
	text-decoration: none;
	outline: none;
}

/* 弹窗 */

.z_tanchuang {
	position: fixed;
	display: table;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	z-index: 10;
}

.z_tanchuang .tbox {
	display: table-cell;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
	background: white;
	/*padding: 50px;*/
	display: block;
	border-radius: 5px;
	position: relative;
	width: 90%;
	max-width: 1200px;
	max-height: 90%;
	margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff url("../image/out1.png") center no-repeat;
	background-size: 40px;
	color: #000;
	font-size: 30px;
	text-align: center;
	border-radius: 50%;
	top: 0;
	right: -50px;
	cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
	margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
	background: #fff url("https://www.xifashiye.com/template/xfsy/assets/css/out2.png")
		/*tpa=http://www.saintyeartex.com/images/https://www.xifashiye.com/template/xfsy/assets/css/out2.png*/
		center no-repeat;
	background-size: 40px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
	padding: 20px;
}

.z_tanchuang .tbox .modal .img {
	max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
	transform: scaleY(0.01) scaleX(0);
	animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	-webkit-transform: scaleY(0.01) scaleX(0);
	-webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
	transform: scale(0);
	animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	-webkit-transform: scale(0);
	-webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
	transform: scale(1);
	animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	-webkit-transform: scale(1);
	-webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
	animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	-webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.khz {
	width: 100%;
	height: 110px;
}

.banner1 {
	position: relative;
}

.banner1 .bg_img {
	width: 100%;
	height: 640px;
}

.banner1 .obox {
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.banner1 .text {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -49px;
}

.banner1 .text .d_text {
	color: #fff;
}

.banner1 .text .c_text {
	color: #fff;
	margin-top: 20px;
}

.banner2 {
	display: none;
}

/* 弹窗动画 */

@keyframes unfoldIn {
	0% {
		transform: scaleY(0.005) scaleX(0);
	}

	50% {
		transform: scaleY(0.005) scaleX(1);
	}

	100% {
		transform: scaleY(1) scaleX(1);
	}
}

@keyframes zoomIn {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes zoomOut {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes unfoldOut {
	0% {
		transform: scaleY(1) scaleX(1);
	}

	50% {
		transform: scaleY(0.005) scaleX(1);
	}

	100% {
		transform: scaleY(0.005) scaleX(0);
	}
}

@-webkit-keyframes zoomIn {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes zoomOut {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@-webkit-keyframes unfoldOut {
	0% {
		transform: scaleY(1) scaleX(1);
	}

	50% {
		transform: scaleY(0.005) scaleX(1);
	}

	100% {
		transform: scaleY(0.005) scaleX(0);
	}
}

@-webkit-keyframes unfoldIn {
	0% {
		transform: scaleY(0.005) scaleX(0);
	}

	50% {
		transform: scaleY(0.005) scaleX(1);
	}

	100% {
		transform: scaleY(1) scaleX(1);
	}
}

/* 面包屑导航 */
.mbxdh {
	width: 100%;
	height: 80px;
	border-bottom: 1px solid #eeeeee;
}

.mbxdh .obox {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mbxdh .obox .left {
	height: 100%;
}

.mbxdh .obox .left .ul1 {
	height: 100%;
	display: flex;
}

.mbxdh .obox .left .ul1 li {
	height: 100%;
	margin-right: 90px;
	display: flex;
	position: relative;
}

.mbxdh .obox .left .ul1 li::before {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #08469b;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.mbxdh .obox .left .ul1 li:hover::before {
	width: 100%;
}

.mbxdh .obox .left .ul1 li.act::before {
	width: 100%;
}

.mbxdh .obox .left .ul1 li a {
	height: 100%;
	color: #666;
	display: flex;
	align-items: center;
}

.mbxdh .obox .left .ul1 li:hover a {
	color: #08469b;
}

.mbxdh .obox .left .ul1 li.act a {
	color: #08469b;
}

.mbxdh .obox .left .ul1 li:last-child {
	margin-right: 0;
}

.mbxdh .obox .right {
	height: 100%;
}

.mbxdh .obox .right .ul2 {
	height: 100%;
	display: flex;

}

.mbxdh .obox .right .ul2 li {
	height: 100%;
	display: flex;
	align-items: center;
}

.mbxdh .obox .right .ul2 li:nth-child(2n) {
	margin: 0 10px;
}

.mbxdh .obox .right .ul2 li a {
	height: 100%;
	color: #666;
	display: flex;
	align-items: center;
}

.mbxdh .obox .right .ul2 li.act a {
	color: #08469b;
}

.mbxdh .obox .right .ul2 li a:hover {
	color: #08469b;
}

/* 分页 */
/* .phone_ckgd{
    display: none;
} */
.fy {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fy .sxyy {
	display: flex;
	align-items: center;
}

.fy .sxyy .img {
	width: 16px;
	height: 13px;
	position: relative;
}

.fy .sxyy .img img {
	position: absolute;
	top: 0;
	left: 0;
}

.fy .sxyy .img img:last-child {
	opacity: 0;
}

.fy .sxyy:hover .img img:last-child {
	opacity: 1;
}

.fy .sxyy:hover .img img:first-child {
	opacity: 0;
}

.fy .sxyy .text {
	color: #333;
	font-weight: bold;
}

.fy .sxyy:hover .text {
	color: #08469b;
}

.fy .syy .img {
	margin-right: 15px;
}

.fy .xyy .img {
	margin-left: 15px;
}

.fy .ul1 {
	display: flex;
}

.fy .ul1 li {
	width: 45px;
	height: 45px;
	margin-right: 20px;
}

.fy .ul1 li:last-child {
	margin-right: 0;
}

.fy .ul1 li:nth-last-child(2) {
	margin-left: 10px;
}

.fy .ul1 li input {
	width: 100%;
	height: 100%;
	border: 1px solid #c3c3c3;
	border-radius: 50%;
	color: #333333;
	/* display: flex;
    justify-content: center;
    align-items: center; */
	text-align: center;
}

.fy .ul1 li a {
	width: 100%;
	height: 100%;
	border: 1px solid #c3c3c3;
	border-radius: 50%;
	color: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fy .ul1 li a:hover {
	color: #08469b;
	border: 1px solid #08469b;
}

.fy .ul1 li.act a {
	border: 1px solid #08469b;
	background-color: #08469b;
	color: #fff;
}

/* 
.more {
	width: 172px;
	height: 45px;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #08469b;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
	position: relative;
	z-index: 6;
} */

.more:hover {
	background-color: #08469b;
	transform: translateY(-5px);
	opacity: 0.7;
}

.more .m_text {
	color: #fff;
	margin-right: 10px;
}

.more1 {
	width: 153px;
	height: 45px;
	padding: 0 43px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #08469b;
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
	position: relative;
	z-index: 6;
}

.more1:hover {
	/*background-color: #a856be;*/
	transform: translateY(-5px);
	opacity: 0.7;
}

.more1 .m_text {
	color: #fff;
	margin-right: 10px;
}

.more2 {
	width: 153px;
	height: 45px;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.12);
	border-bottom-left-radius: 20px;
	border-top-right-radius: 20px;
	position: relative;
	z-index: 6;
}

.more2:hover {
	background-color: #08469b;
	transform: translateY(-5px);
}

.more2 .m_text {
	color: #fff;
	margin-right: 10px;
}

/* 关于我们页面公共title */
.about_title {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.about_title .text {
	color: #333;
}

.about_title .line {
	width: 30px;
	height: 2px;
	background-color: #08469b;
	margin-top: 20px;
}

/* 公共按钮样式结束 */
@media (max-width: 1680px) {}

@media (max-width: 1440px) {}

@media (max-width: 1366px) {}

@media (max-width: 1280px) {}

@media (max-width: 1030px) {
	body {
		min-width: 100px;
	}

	.ibox {
		max-width: 1030px;
		min-width: 100px;
		width: 90%;
		margin: 0 auto;
	}

	.wow {
		opacity: 1;
	}

	.khz {
		width: 100%;
		height: 80px;
	}

}

@media (max-width: 960px) {
	.wow {
		opacity: 1;
	}

	.khz {
		width: 100%;
		height: 50px;
	}

	.mbxdh {
		/*height: 40px;*/
		height: 80px;
	}

	.mbxdh .obox .left .ul1 li {
		margin-right: 20px;
	}

	.mbxdh .obox .right {
		display: none;
	}

	.fy {
		/* display: block; */
	}

	.more1 {
		width: 140px;
		height: 40px;
		padding: 0 20px;
	}

	.more2 {
		width: 140px;
		height: 40px;
		padding: 0 20px;
	}

	/* .phone_ckgd{
    display: block;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #08469b;
    color: #fff;
    border-radius: 7px;
    margin: 0 auto;
} */
	.banner1 {
		display: none;
	}

	.banner2 {
		display: block;
		position: relative;
	}

	.banner2 .bg_img {
		height: 100%;
	}

	.banner2 .obox {
		position: absolute;
		top: 50%;
		left: 7%;
		transform: translateY(-50%);
	}

	.banner2 .obox .d_text,
	.banner2 .obox .c_text {
		color: #fff;
	}

	.banner2 .obox .c_text {
		margin-top: 20px;
	}

	.z_tanchuang .tbox .modal .out {
		position: absolute;
		width: 40px;
		height: 40px;
		line-height: 40px;
		background: #fff url("https://www.xifashiye.com/template/xfsy/assets/css/out1.png")
			/*tpa=http://www.saintyeartex.com/images/https://www.xifashiye.com/template/xfsy/assets/css/out1.png*/
			center no-repeat;
		background-size: 40px;
		color: #000;
		font-size: 30px;
		text-align: center;
		border-radius: 50%;
		top: -55px;
		right: 0px;
		cursor: pointer;
	}

	.z_tanchuang .tbox .modal {
		background: white;
		padding: 0;
		display: block;
		border-radius: 5px;
		position: relative;
		width: 90%;
		max-width: 1200px;
		max-height: 90%;
		margin: 0 auto;
	}

	.fy .ul1 li {
		width: 30px;
		height: 30px;
		margin-right: 7px;
	}

	.fy .ul1 li:nth-last-child(2) {
		margin-left: 0;
	}

	.fy .syy .img {
		margin-right: 7px;
	}

	.fy .xyy .img {
		margin-left: 7px;
	}
}

.index-zfgh .row {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.zfgh {
	display: flex;
	max-width: 1700px;

}

.left {
	/* width: 33.333%; */
}

.right {
	/* width: 66.666%; */
}

.index-news-list .index-news-item a {
	display: block;
	background: #f8f8f8;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 2px 2px 1px rgb(0 0 0 / 8%);
}

.index-news-list .index-news-item a .news-thumb {
	height: inherit;
	width: 100%;
	background: #CCC;
	margin-bottom: 10px;
}

.index-news-list .index-news-item a h3 {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 24px;
	margin-top: 20px;
	color: #333;
	line-height: 32px;
	margin-bottom: 10px;
}

.left_da {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.right_xiao {
	width: 50%;
	float: left;
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.index-news-list .index-news-item a .news-data {
	font-size: 16px;
	font-weight: normal;
	color: #666;
	line-height: 36px;
}

.index-news-list .index-news-item a p {
	padding-bottom: 20px;
	height: 7em;
	color: #666;
	font-size: 16px;
	line-height: 28px;
	overflow: hidden;
}

.zfgh .left .index-news-list .left_da p {
	height: 8.5em;
}

@media only screen and (max-width:768px) {
	.index-zfgh .row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.zfgh {
		display: flex;
		max-width: 1700px;
		flex-direction: column;
	}

	.zfgh {
		width: 100%;
	}

	.left {
		width: 100%;
	}

	.right {
		width: 100%;
	}

	.right_xiao {
		width: 100%;
	}

	.zfgh .right div ul {
		width: 100%;
	}

	.zfgh .left div ul {
		width: 100%;
	}
}

.index3 {
padding: 0% 0 0% 5%;
	background: #f1f1f1;
	/*height: 800px;*/
	position: relative;
}

.index3 .box {
	width: 50%;
	float: left;
}

.index3 .img {
	/*height: 700px;*/
	float: right;
	width: 50%;
}

.index3 .img img {
    float: right;
    max-width: 100%;
    width: 80%;

    height: 100%;
    object-fit: cover;
}

.index3 .box .more {
	color: #333;
	border: 1px solid #333;
}

.index3 .box .more:hover {
	color: #fff;
	border: 1px solid #08469b;
}

.index3 .box .des {
	margin: 20px 0 55px;
	margin-right: 110px;
	height: 180px;
	overflow: hidden;
}

.index3 .box {
	width: 50%;
	margin-top: 80px;
}

.index3 .box .des {
	margin: 20px 0 0px;
	margin-right: 110px;
	height: 250px;
	overflow: hidden;
}

.more {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 500px;
	padding: 12px 24px;
	transition: .4s;
}

.index3 .box .more {
	/* margin-top: 30px; */
	color: #333;
	border: 1px solid #333;
}

.ab-num {
	z-index: 9;
	position: absolute;
	bottom: 70px;
}

.sy-tit {
	font-size: 36px;
	position: relative;
	z-index: 9;
	color: #333;
	font-family: Montserrat-Bold !important;
	text-transform: uppercase;
}

.ab-num dt {
	width: 320px;
	background: #fff;
	border-radius: 5px;
	float: left;
	margin-right: 20px;
	color: #333;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.ab-num dt:last-child {
	margin-right: 0;
}

.ab-num dt b {
	font-size: 54px;
	font-family: Montserrat-Bold !important;
}

.ab-num dt p {
	font-size: 14px;
	margin-top: 20px;
}

.ab-num dt .pad {
	padding: 30px 40px;
}

.ab-num dt img {
	position: absolute;
	top: 30px;
	right: 40px;
}

.ab-num dt:hover img {
	transform: translateY(-4000px);
	filter: drop-shadow(#fff 0 4000px);
}

.ab-num dt:hover {
	background: #004ea2;
	color: #fff;
}

.c {
	clear: both;
}

@media (max-width: 768px) {

	.index2 .tab-bd,
	.index2 .right,
	.index3 .box,
	.index3 .img {
		margin-top: 40px;
		width: 100%;
	}


	.index3 .ab-num,
	.index4 .box2 {
		display: block;
	}

	.ab-num dt {
		width: 32%;
		margin-right: 1%;
	}

	.ab-num dt b {
		font-size: 20px;
	}

	.ab-num {
		position: initial;
		margin: 30px 0;
	}

	.ab-num dt .pad {
		text-align: center;
		padding: 32px 2px;
	}

	.ab-num dt p {
		font-size: 12px;
		margin-top: 20px;
	}

	.ab-num dt img {
		width: 26px;
		position: static;
		display: inline-block;
	}

	.ab-num dt img:nth-child(1) {
		width: 20px;
		position: static;
		display: inline-block;
	}

	.index3 {
		padding: 2% 2%;
	}

	.index3 .img {
		margin: 0;
		height: 260px;

	}

	.index3 .box .des {
		/* margin: 20px 0 0px; */
		/* margin-right: 110px; */
		margin: 0;
		height: 250px;
		overflow: hidden;
	}

	.sy-tit {
		text-align: center;
		margin-bottom: 20px;
	}
}