@charset "utf-8";

html,
body {
	min-width: 1460px;
}

* {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
	box-sizing: border-box;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #000;
}

@font-face {
	font-family: "mc";
	src: url("../../fonts/mc.ttf") format("truetype");
	font-display: swap;
	/* 加载中先用系统字体显示，避免页面空白 */
}

@font-face {
	font-family: "mc2";
	src: url("../../fonts/mc2.ttf") format("truetype");
	font-display: swap;
	/* 加载中先用系统字体显示，避免页面空白 */
}

@font-face {
	font-family: "nav";
	src: url("../../fonts/nav.ttf") format("truetype");
	font-display: swap;
	/* 加载中先用系统字体显示，避免页面空白 */
}

.op6 {
	opacity: 0.6;
	font-weight: bolder;
	/* animation: fadeInOut 35s infinite; */
}

.op6n {
	opacity: 0.6;
	font-weight: normal;
	/* animation: fadeInOut 35s infinite; */
}

@keyframes fadeInOut {
	0% {
		display: block;
	}

	65% {
		display: block;
	}

	66% {
		display: none;
	}

	100% {
		display: none;
	}
}

.mouse-move img {
	display: block;
	position: absolute;
	width: 40px;
	left: 50%;
	margin-left: -20px;
	bottom: 60px;
	z-index: 999999;
	animation: floatDown 2s infinite ease-out;
	opacity: 0.6;
}

/* 定义向下浮动的动画 */
@keyframes floatDown {
	0% {
		transform: translateY(0);
		opacity: 0.6;
	}

	15% {
		transform: translateY(10px);
		opacity: 0.4;
	}

	30% {
		transform: translateY(0px);
		opacity: 0.6;
	}

	45% {
		transform: translateY(10px);
		opacity: 0.4;
	}

	60% {
		transform: translateY(0px);
		opacity: 0.6;
	}

	100% {
		transform: translateY(0px);
		opacity: 0.6;
	}
}



.font12 {
	font-size: 12px !important;
}

.font14 {
	font-size: 14px !important;
}

.font16 {
	font-size: 16px !important;
}

img {
	border: none;
}

.moveimg {
	width: 100%;
	overflow: hidden;
}

.moveimg img:hover {
	transform: scale(1.05);
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	display: inline;
}

@keyframes leftmove {
	from {
		filter: alpha(opacity=0);
		opacity: 0;
		-webkit-transform: translateY(0) translateX(-30px);
		-moz-transform: translateY(0) translateX(-30px);
		transform: translateY(0) translateX(-30px);
		-webkit-transition-timing-function: ease-in-out;
		transition-timing-function: ease-in-out;
	}

	to {
		filter: alpha(opacity=100);
		opacity: 1;
		-webkit-transform: translateY(0px) translateX(0);
		-moz-transform: translateY(0px) translateX(0);
		transform: translateY(0px) translateX(0);
	}
}

@-webkit-keyframes leftmove {
	from {
		filter: alpha(opacity=0);
		opacity: 0;
		-webkit-transform: translateY(0) translateX(-30px);
		-moz-transform: translateY(0) translateX(-30px);
		transform: translateY(0) translateX(-30px);
		-webkit-transition-timing-function: ease-in-out;
		transition-timing-function: ease-in-out;
	}

	to {
		filter: alpha(opacity=100);
		opacity: 1;
		-webkit-transform: translateY(0px) translateX(0);
		-moz-transform: translateY(0px) translateX(0);
		transform: translateY(0px) translateX(0);
	}
}

.flex-align-center {
	display: flex;
	align-items: center;
}

.flex {
	display: flex;
	display: -webkit-flex;
}

.flex-v-c {
	align-items: center;
}

.flex-h-sb {
	justify-content: space-between;
}

.oh {
	overflow: hidden;
}

.wrap {
	width: 100%;
}

h1 {
	font-weight: bold;
	/* font-size: 36px; */
	font-size: 32px;
	color: #1D1D1D;
	letter-spacing: 0;
}

h2 {
	font-weight: bold;
	font-size: 42px;
	color: #1D1D1D;
	letter-spacing: 0;
	line-height: 63px;
}

h3 {
	font-weight: normal;
	font-size: 22px;
	color: #1D1D1D;
	letter-spacing: 0;
	line-height: 36px;
}

h4 {
	font-weight: bold;
	font-size: 24px;
	color: #1D1D1D;
	letter-spacing: 0;
	line-height: 36px;
}

.l {
	float: left
}

.bg_white {
	background: #fff;
	color: #000;
}

.bg_l_g {
	background: #f7f7ed;
	color: #000;
}

.bg_gray {
	background: url(../../images/clayer/bbg.jpg) repeat center;
	color: #000;
}

.bg_darkblue {
	background: #0f2758;
	color: #fff;
}

.bg_darkblue2 {
	background: #112a56;
	color: #fff;
}

.bg_black {
	background: url(../../images/clayer/foot_bg.jpg) repeat center;
	color: #EAE3D8;
	height: 180px;
}

.bg_d_purple {
	background: #2C2A3F;
}

.bg_foot_bg {
	background: url(../../images/clayer/foot-bg.png) no-repeat center;
	background-size: cover;
}

.bg_top1 {}

.bg_top2 {
	background: url(../../images/clayer/bg_top2.png) no-repeat center #112a56;
	background-size: 100%;
}

.bg_top3 {
	background: url(../../images/clayer/bg_top3.jpg) no-repeat center bottom;
	background-size: 100% 100%;
}

.w_1200 {
	width: 1200px;
	margin: 0 auto;
}

.w_1400 {
	width: 1400px;
	margin: 0 auto;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mt60 {
	margin-top: 60px;
}

.mt70 {
	margin-top: 70px;
}

.mt80 {
	margin-top: 80px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.pd10 {
	padding: 10px 0;
}

.pd20 {
	padding: 20px 0;
}

.pd30 {
	padding: 30px 0;
}

.pd40 {
	padding: 40px 0;
}

.pd50 {
	padding: 50px 0;
}

.pd60 {
	padding: 60px 0;
}

.pd80 {
	padding: 80px 0;
}

.ptd20 {
	padding-top: 20px;
}

.ptd60 {
	padding-top: 60px;
}

.pbd20 {
	padding-bottom: 20px;
}

.ptd30 {
	padding-top: 30px;
}

.pbd30 {
	padding-bottom: 30px;
}

.pbd60 {
	padding-bottom: 60px;
}

.ptd60 {
	padding-top: 60px;
}

.pbd80 {
	padding-bottom: 80px;
}

.ptd80 {
	padding-top: 80px;
}

.pbd100 {
	padding-bottom: 100px;
}

.ptd100 {
	padding-top: 100px;
}

.pbd120 {
	padding-bottom: 120px;
}

.ptd120 {
	padding-top: 120px;
}

.gy2 {
	width: 1400px;
	font-family: fubiao;
	margin: 0 auto;
	overflow: hidden
}


#headdiv {
	height: 124px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 1000;
	background: none;
}

.blc-title {
	width: 100%;
	line-height: 56px;
	font-size: 32px;
	color: #333;
	text-align: center;
	padding-top: 40px;
	font-weight: normal;
}

.wht-title {
	width: 100%;
	line-height: 56px;
	font-size: 32px;
	color: #fff;
	text-align: center;
	padding-top: 40px;
	font-weight: normal;
}

.fubiao {
	width: 1400px;
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	line-height: 27px;
	color: #777;
	text-align: center;
}

/*顶部bar*/
.top01 {
	width: 100%;
	height: 38px;
	line-height: 38px;
	color: #fff;
	overflow: hidden;
}

.top01 .l {
	font-size: 14px;
}

.top01_center {
	text-align: left;
	float: right;
	font-size: 14px
}

.top01_center img {
	vertical-align: sub;
	display: inline-block;
	margin-right: 8px
}

/*logo和导航*/
.top02 {
	width: 100%;
	min-width: 1400px;
	height: 86px;
}

.top02 .top02_center {
	width: 1400px;
	margin: 0 auto
}

.logo {
	width: 200px;
	float: left;
	padding-top: 0px
}

.logo img {
	float: left;
	width: 180px;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.selogo {
	display: none;
}

.bailogo {
	display: block;
}

.nav {
	float: right
}

.nav li {
	position: relative;
	font-family: nav;
}

.nav li.m {
	font-family: nav;
	display: inline-block;
	padding-right: 25px;
	padding-left: 5px;
	margin: 0 15px 0 0;
	float: left;
	text-align: center;
	background: url(../../images/clayer/top_bg1.png) right 23px no-repeat
}

.nav li.m:last-child {
	background: none;
	padding-right: 0;
	margin: 0;
}

.nav .m.on a.mmm {
	color: #fff;
	font-weight: bold;
	font-family: nav;
}

.nav a.mmm {
	height: 45px;
	font-family: nav;
	padding-top: 22px;
	display: block;
	font-size: 18px;
	color: #ddd
}

/*二级导航*/
.nav .sub {
	display: none;
	width: 100%;
	padding: 0;
	position: fixed;
	top: 106px;
	overflow: hidden;
	text-align: left;
	z-index: 110;
	left: 0;
	background-color: #f5f5f5
}

.nav .sub .nav_xiao {
	width: 1400px;
	overflow: hidden;
	margin: 0 auto
}

.nav .sub .nav_xiao.max1100 {
	max-width: 1100px
}

/*二级导航-新闻动态*/
.nav .sub .nav_xiao .xiao_three {
	overflow: hidden;
	margin-top: 60px;
	margin-bottom: 60px
}

.nav .sub .nav_xiao .xiao_three ul li {
	float: left;
	display: inline;
	width: 18%;
	height: 218px;
	overflow: hidden;
	margin-right: 2.5%;
	text-align: center;
	position: inherit;
	line-height: 56px;
	background-color: #fff
}

.nav .sub .nav_xiao .xiao_three ul li:last-child {
	margin-right: 0
}

.nav .sub .nav_xiao .xiao_three ul li img {
	width: 77px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	transition: all .3s
}

.nav .sub .nav_xiao .xiao_three ul li a {
	color: #000;
	width: 100%;
	font-size: 18px;
	height: 100%;
	display: block
}

.nav .sub .nav_xiao .xiao_three ul li a:hover {
	color: #0f2758;
}

.view-all-btn {
	width: 80px;
	height: 40px;
	background: #0f2758;
	position: relative;
}

.view-all-btn::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url(../../images/clayer/arrow-r-w.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: calc(50% - 8px);
	right: calc(50% - 8px);
	-webkit-transition: right ease .4s;
	-moz-transition: right ease .4s;
	-ms-transition: right ease .4s;
	-o-transition: right ease .4s;
	transition: right ease .4s;
}

.view-all-btn:hover::after {
	right: calc(50% - 14px);
}

.view-all-btn:hover {
	background: #113D99;
}

.view-more {
	font-size: 14px;
	color: #000;
	letter-spacing: 1.2px;
	line-height: 24px;
	padding-right: 25px;
	position: relative;
	display: inline-block;
}

.view-more::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url(../../images/clayer/arrow-r.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 6px;
	right: 6px;
	-webkit-transition: right ease .4s;
	-moz-transition: right ease .4s;
	-ms-transition: right ease .4s;
	-o-transition: right ease .4s;
	transition: right ease .4s;
}

.news-l-half .view-more::after {
	background-image: url(../../images/clayer/arrow-r-w.svg);
}

.view-more:hover::after {
	right: 0;
}

.about-clayer h1 {
	text-align: center;
	font-family: mc;
	font-weight: normal;
}

.about-clayer-des {
	width: 420px;
	font-family: nav;
	text-align: center;
	margin: 10px auto 0px;
	padding-bottom: 30px;
	font-size: 18px;
	line-height: 27px;
	color: #666;
}

.number-box {
	z-index: 1;
	margin: 40px auto;
	color: #fff;
	display: flex;
	gap: 40px;
	/* 格子中间间距20px */
}

.number-li {
	flex: 1;
	padding: 35px 40px;
	overflow: visible;
	/* 允许装饰图超出容器，不隐藏 */
	font-family: mc2;
	background: url(../../images/clayer/bg_num.png) no-repeat center;
}

.number-box span {
	font-weight: bold;
	font-size: 32px;
	line-height: 42px;
	color: #FFFFFF;
	margin-bottom: 5px;
	margin-right: 5px;
	font-family: mc2;
}

.number-box p {
	opacity: 0.8;
	font-size: 16px;
	color: #ffffff;
	line-height: 24px;
	margin-bottom: 10px;
	font-family: nav;
}

.number-box p:last-child {
	margin-bottom: 0;
}

.sect1-about-clayer {
	position: relative;
}

.global-map {
	width: 800px;
	position: absolute;
	bottom: 48px;
	right: 0px;
}

.global-map img {
	width: 800px;
}

.map-txt {
	position: absolute;
	bottom: -31px;
	right: -66px;
	width: 100px;
}

.since-time {
	position: absolute;
	top: 0px;
	right: 0px;
	font-weight: bold;
	font-size: 14px;
	color: #1D1D1D;
}

.since-time span {
	font-size: 60px;
	color: #0f2758;
	line-height: 185px;
	margin-left: 4px;
	display: inline-block;
	transform: translateY(2px);
	width: 280px;
}

.country-dot {
	position: absolute;
	font-size: 14px;
	color: #666666;
	letter-spacing: 1px;
	text-align: center;
	line-height: 21px;
	cursor: pointer;
}

.country-dot.china {
	top: 155px;
	left: 270px;
}

.country-dot.german {
	top: 76px;
	left: 99px;
}

.country-dot.japan {
	top: 144px;
	left: 353px;
}

.country-dot .dot {
	display: block;
	width: 30px;
	height: 30px;
	background: rgba(0, 36, 110, 0.1);
	border-radius: 50%;
	position: relative;
	margin-bottom: 1px;
}

.country-dot .dot::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #0f2758;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.plus {
	display: block;
	border-radius: 40px;
	height: 40px;
	width: 40px;
	position: absolute;
	-webkit-animation: pluse 2s linear;
	animation: pluse 2s linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	opacity: 0;
	border-width: 4px;
	border-style: solid;
	border-color: #0f2758;
	position: absolute;
	left: -9px;
	top: -9px;
}

.america .plus {
	animation-delay: 0.5s;
}

.index-news-con {
	display: flex;
	display: -webkit-flex;
}

@keyframes pluse {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		opacity: 0.0;
	}

	60% {
		-webkit-transform: scale(0.1, 0.1);
		opacity: 0.0;
	}

	65% {
		opacity: 0.6;
	}

	100% {
		-webkit-transform: scale(1.2, 1.2);
		opacity: 0.0;
	}
}

.hv-scale {
	overflow: hidden;
	cursor: pointer;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}

.hv-scale img {
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.hv-scale:hover img {
	transform: scale(1.05);
}

.index-clayer-case {
	padding: 100px 0;
}

.sect2-case-clayer {
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.consult-case-flex {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.case-flex-r {
	width: 720px;
	margin-left: 60px;
}

.case-flex-l {
	flex: 1;
}

.case-title {
	margin-bottom: 55px;
	margin-top: 10px;
}

.case-title h1 {
	font-family: mc;
	font-weight: normal;
}

.main-case-list {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.main-case-item {
	width: 125px;
	margin-right: 6px;
}

.main-case-item:last-child {
	margin-right: 0;
}

.main-case-no {
	font-size: 12px;
	color: #1D1D1D;
	letter-spacing: 0.8px;
	line-height: 18px;
	position: relative;
	margin-top: 8px;
	font-family: nav;
	text-align: center;
}

.main-case-thumb {
	width: 125px;
	height: 97px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.main-case-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-case-item:hover .main-case-no {
	color: #0f2758;
}

.case-m-kv {
	width: 100%;
	height: 560px;
}

.case-m-kv img {
	width: 100%;
	height: 100%;
}

.div-line {
	color: #B6B6B6;
	margin: 40px 0;
}

#c-title {
	font-family: nav;
}

.case-clayer-des {
	margin: 24px 0;
	overflow: hidden;
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-height: 27px;
	color: #666;
}

.logo-list-con {
	padding: 0 100px;
	margin-top: 24px;
}

.logos-list {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}

.c-logo {
	width: 12.4%;
	margin-right: 5%;
	margin-top: 46px;
	cursor: pointer;
	/* filter: grayscale(1); */
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.5;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

.c-logo:hover {
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	opacity: 1;
}

.c-logo:nth-child(6n) {
	margin-right: 0;
}

.index-clayer-insight {
	padding: 100px;
}

.sect3-insight-clayer {
	background-image: url(/images/bg3.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.color-w {
	color: #ffffff !important;
}

.color-c {
	color: #cccccc !important;
}

.color-c:hover {
	color: #cccccc !important;
}


/* 瓷道主营 */
.grid {
	position: relative;
	margin: 20px auto 40px;
	overflow: hidden;
	width: 1400px;
	display: flex;
	gap: 0;
	list-style: none;
	text-align: center;
}


.grid figure {
	flex: 1;
	position: relative;
	overflow: hidden;
	height: 440px;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 0 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.grid figure h2 {
	font-size: 24px;
	line-height: 24px;
	padding-bottom: 5px;
	font-weight: normal;
	color: #fff;
	font-family: mc;
}

.grid figure h2 span {
	font-size: 16px
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	font-family: nav;
	font-size: 16px;
}



figure.baby-li img {
	max-width: none;
	width: -webkit-calc(100% + 50px);
	width: calc(100% + 50px);
	opacity: 0.9;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-40px, 0, 0);
	transform: translate3d(-40px, 0, 0);
}

figure.baby-li figcaption {
	text-align: left;
}

figure.baby-li figcaption>div {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 30px;
	width: 100%;
	height: 110px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

figure.baby-li h2,
figure.baby-li p {
	-webkit-transform: translate3d(0, 40px, 0);
	transform: translate3d(0, 40px, 0);
}

figure.baby-li h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.baby-li p {
	color: rgba(255, 255, 255, 0.8);
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
	transition: opacity 0.2s, transform 0.35s;
}

figure.baby-li:hover img,
figure.baby-li:hover p {
	opacity: 1;
}

figure.baby-li:hover img,
figure.baby-li:hover h2,
figure.baby-li:hover p {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0.8);
}

figure.baby-li:hover p {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
}

/* 故事 */

.story {
	display: flex;
	padding: 30px 0;
	align-items: center;
}

.story_left,
.story_right {
	width: 700px;
	overflow: hidden;
	padding: 0 50px;
}

.story video {
	width: 100%;
	/* mix-blend-mode: multiply; */
	margin: 0 auto;
	display: block;
}

.story_left img,
.story_right img {
	width: 100%;
}

.story_right h3,
.story_left h3 {
	font-size: 24px;
	font-weight: bold;
	display: block;
	color: #555;
	padding-bottom: 20px;
}


.story_right p,
.story_left p {
	font-size: 16px;
	display: block;
	color: #777;
	line-height: 27px;
}

.story_right p strong,
.story_left p strong {
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	display: block;
	margin-top: 15px;
}

.lsbs {
	height: 600px;
	margin-bottom: 80px
}

.lsbs-container>div:first-child,
.lsbs-container>div:first-child .lsb {
	border-radius: 4px 0 0 4px
}

.lsbs-container>div:last-child,
.lsbs-container>div:last-child {
	border-radius: 0 4px 4px 0
}

.lsb-background {
	width: 466px;
	height: 600px;
	float: left
}

.lsb-background:nth-child(1) {
	background: url(../../images/clayer/bg1.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.lsb-background:nth-child(2) {
	background: url(../../images/clayer/bg2.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.lsb-background:nth-child(3) {
	background: url(../../images/clayer/bg3.jpg) center center no-repeat rgb(244, 245, 250);
	background-size: 100% 100%;
}

.lsb {
	width: 466px;
	height: 600px;
	padding: 0 60px;
	background: rgba(0, 0, 0, .5);
	text-align: center;
	position: relative;
	transition: all .7s;
	display: block;
	overflow: hidden
}

.lsb:hover {
	cursor: pointer;
	background: rgba(0, 17, 42, .8)
}

.lsb:hover .lsb-icon {
	margin-top: -60px
}

.lsb:hover .lsb-name {
	margin-top: 106px
}

.lsb:hover .lsb-span {
	margin-top: 28px
}

.lsb:hover .lsb-introduce {
	margin-top: 16px
}

.lsb-icon {
	width: 60px;
	height: 60px;
	margin: auto;
	margin-top: 205px;
	transition: all .5s
}

.lsb-icon img {
	width: 100%;
	height: 100%
}

.lsb-name {
	font-size: 24px;
	color: #fff;
	margin-top: 24px;
	line-height: 33px;
	transition: all .5s
}

.lsb-span {
	width: 24px;
	height: 4px;
	background: #fff;
	transition: all .5s;
	margin: auto;
	margin-top: 24px
}

.lsb-introduce {
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	display: -webkit-box;
	transition: all .5s;
	margin-top: 400px
}



/* 72道工序 */
.number-li {
	flex: 1;
	padding: 35px 40px;
	overflow: visible;
	/* 允许装饰图超出容器，不隐藏 */
	font-family: mc2;
	background: url(../../images/clayer/bg_num.png) no-repeat center;
}

.i-foot {
	display: flex;
	gap: 40px;
}

.i-foot li {
	flex: 1;
	overflow: hidden;
	padding: 0 30px;
	float: left;
}

.i-foot li img {
	display: block;
	width: 240px;
	height: 240px;
	margin: 50px auto 30px;
}

.i-foot li h3 {
	text-align: center;
	font-size: 24px;
	height: 30px;
	line-height: 30px;
	color: #222132;
	font-family: mc;
	font-weight: normal;
	margin-bottom: 10px;
}

.i-foot li p {
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	height: 60px;
	color: #666;
	font-family: nav;
	margin-bottom: 15px;
}

.i-foot li a {
	display: block;
	width: 120px;
	margin: 0 auto;
	height: 45px;
	line-height: 45px;
	padding: 0px 20px;
	background: #EBF3FF;
	color: #0f2758;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
}

.i-foot li a:hover {
	background: #0f2758;
	color: #fff;
}

.i-foot-left {
	display: block;
	width: 200px;
	height: 200px;
	float: left;
	margin-right: 30px;
}

.i-foot-right {
	width: 800px;
	float: left;
}

.i-foot-right ul {
	display: flex;
	height: 30px;
}

.i-foot-right ul li {
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #fff;
	font-weight: 200;
}

.i-foot-right ul li a {
	color: #fff;
}

.i-foot-tel {
	display: flex;
	align-items: center;
	margin-top: 140px;
	font-size: 18px;
	font-weight: 200;
}

.i-foot-tel img {
	margin-right: 10px;
	margin-left: 15px;
}

/* 首页布局结束 */
/* 底部 */
.replay h3 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
}

.replay p {
	color: #ccc;
	text-align: center;
	font-size: 16px;
	height: 16px;
	line-height: 16px;
}

.replay a {
	display: block;
	width: 160px;
	height: 40px;
	line-height: 40px;
	border-radius: 10px;
	background: #3C71F6;
	color: #fff;
	text-align: center;
	margin: 30px auto 0;
	font-size: 16px;
}

.ouyang {
	text-align: center;
	position: relative;
	font-size: 30px;
	font-weight: bold;
	color: #FAC8AB;
	height: 90px;
	line-height: 90px;
}

.ouyang img {
	display: block;
	width: 150px;
	position: absolute;
	left: -15px;
	bottom: 0;
}

.ouyang strong {
	display: inline-block;
}

.ouyang span {
	float: right;
	margin-top: 23px;
	height: 44px;
	line-height: 44px;
	font-size: 18px;
	display: block;
	width: 160px;
	border-radius: 30px;
	background: linear-gradient(180deg, #FACCAF 0%, #F9A86E 100%);
	color: #4B1C00;
	font-weight: normal;
	text-align: center;
}

.ouyang b {
	display: inline-block;
	width: 80px;
}

.foot-top-bg {
	clear: both;
	width: 100%;
	height: 51px;
	background: url(../../images/clayer/foot_top_bg.jpg) repeat center;
	box-shadow:
		0 -10px 10px rgba(0, 0, 0, 0.2),
		0 -4px 5px rgba(0, 0, 0, 0.1);
}

.foot-left {
	width: 260px;
	float: left;
	font-size: 16px;
	padding-bottom: 20px;
}

.foot-left .foot-logo {
	display: block;
	width: 166px;
}

.foot-left h4 {
	font-size: 16px;
	color: #EAE3D8;
	margin: 10px 0;
	font-weight: normal;
}

.contact-foot {
	display: flex;
	align-items: center;
}

.contact-foot img {
	display: block;
	height: 30px;
}

.contact-foot .foot-tel {
	padding: 0 15px;
}

.contact-foot .foot-tel h5 {
	font-weight: normal;
	font-size: 14px;
}

.contact-foot .foot-tel p {
	font-weight: bold;
	font-size: 16px;
}

.foot-center {
	width: 540px;
	font-size: 14px;
	margin: 0 0 0px 150px;
	float: left;
}

.foot-center ul {
	margin-top: 5px;
	margin-bottom: 40px;
}

.foot-center li {
	display: inline-flex;
	align-items: center;
	padding-right: 20px;
	font-size: 12px;
	line-height: 16px;
}

.foot-center li a {
	font-size: 14px;
	padding-right: 20px;
	color: #EAE3D8;
}

.foot-center li:last-child span {
	display: none;
}

.foot-center p {
	height: 28px;
	line-height: 28px;
}

.foot-center p span {
	font-size: 24px;
	font-weight: bold;
	padding: 0 20px;
}

.foot-center p a {
	color: #EAE3D8;
}

.foot-right {
	width: 350px;
	float: right;
	position: relative;
}

.foot-right-text {
	text-align: right;
	padding-top: 5px;
	color: #EAE3D8;
	font-size: 14px;
}

.icon {
	display: inline-block;
	vertical-align: text-bottom;
	background-image: url(../../images/clayer/icon.png);
	cursor: pointer;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.icon-footer {
	position: relative;
	width: 40px;
	height: 40px;
}

.icon-footer-wx {
	background-position: -49px -105px;
}

.icon-footer-ios {
	background-position: -111px -105px;
}

.icon-footer-android {
	background-position: 12px -185px;
}

.icon-footer-inter {
	background-position: -48px -184px;
}

.icon-footer-rss {
	background-position: -109px -185px;
}

.icon-footer-wx:hover {
	background-position: -50px -145px;
}

.icon-footer-ios:hover {
	background-position: -112px -145px;
}

.icon-footer-android:hover {
	background-position: 12px -226px;
}

.icon-footer-inter:hover {
	background-position: -48px -225px;
}

.icon-footer-rss:hover {
	background-position: -109px -226px;
}

.footer-icon-list {
	position: absolute;
	top: 95px;
	z-index: 99999;
	right: 0;
}

.footer-icon-list ul li {
	position: relative;
	float: left;
	width: 40px;
	height: 40px;
	background: url(../../images/clayer/link_bg.png) no-repeat center;
	/* background-color: rgba(234, 227, 216, 0.2);
	backdrop-filter: blur(3px);
	/* 模糊强度 0~20px */
	/* -webkit-backdrop-filter: blur(3px); */
	/* 兼容Safari */
	text-align: center;
	border-radius: 20px;
	margin-left: 20px;
}

.footer-icon-list ul li:before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: .5s cubic-bezier(.3, 0, 0, 1.3);
	-moz-transition: .5s cubic-bezier(.3, 0, 0, 1.3);
	-ms-transition: .5s cubic-bezier(.3, 0, 0, 1.3);
	-o-transition: .5s cubic-bezier(.3, 0, 0, 1.3);
	transition: .5s cubic-bezier(.3, 0, 0, 1.3);
	-webkit-transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
}

.footer-icon-list ul a:nth-child(3) li:before {
	background-color: #170b1a;
}

.footer-icon-list .app-qrcode {
	display: none;
	position: absolute;
	z-index: 99999 !important;
	width: 130px;
	height: 130px;
	margin-top: -150px;
	box-shadow: 0 0 6px rgba(14, 22, 30, .3);
	/* 关键：开启自身3D堆叠，脱离普通层级 */
	transform: translateZ(10px);
	margin-left: -45px;
}

.footer-icon-list .app-qrcode img {
	width: 130px;
	height: 130px;
}

.footer-bull {
	position: relative;
	font-size: 20px;
	top: 2px;
	margin: 0 15px;
}

.bull-em {
	font-style: normal;
	margin-left: 15px;
}

.footer-icon-list .app-qrcode:before {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 10px solid rgba(0, 0, 0, .3);
	top: 130px;
	left: 56px;
}

.footer-icon-list .app-qrcode:after {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top: 10px solid #fff;
	top: 129px;
	left: 57px;
}

.footer-icon-list ul li:hover:before {
	opacity: 1;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.footer-icon-list ul a:nth-child(1) li:before {
	background-color: #28c445;
}

.footer-icon-list ul a:nth-child(2) li:before {
	background-color: #fa2c19;
}

/* 栏目banner */
.top-banner {
	padding-top: 200px;
	height: 600px;
}

.top-banner h3 {
	font-size: 40px;
	font-family: mc;
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
	color: #fff;
	font-weight: normal;
}

.top-banner p {
	font-family: nav;
	font-size: 20px;
	text-transform: uppercase;
	color: #b5c0c6;
}

.top-banner .bread_menu p {
	display: inline-block;
	float: left;
	color: #98B7F7;
}

.top-banner .bread_menu span {
	display: inline-block;
	float: right;
	color: #98B7F7;
}

.top-banner .bread_menu span a {
	color: #98B7F7;
}

.ny_bg {
	width: 100%;
	height: 350px;
	background: url(../../images/clayer/ny_bg.jpg) no-repeat top center;
	background-size: cover;
}

/* 首页新闻 */
.news_main {
	width: 1400px;
	margin: 0 auto;
}

.news_main .title {
	margin-bottom: 40px;
	text-align: center;
}

.news_main .title h4 {
	font-size: 28px;
	position: relative;
	font-weight: 700;
	padding-bottom: 5px;
}

.news_main .title h4:before {
	left: 38%;
	content: " ";
	display: block;
	border-bottom: 1px solid #797979;
	width: 68px;
	position: absolute;
	margin-left: -.8rem;
	top: 50%;
	margin-top: -1px;
}

.news_main .title h4:after {
	content: " ";
	display: block;
	border-bottom: 1px solid #797979;
	width: 68px;
	position: absolute;
	margin-left: -.8rem;
	top: 50%;
	margin-top: -1px;
	right: 38%;
}

.news_main .title p {
	font-size: 16px;
	color: #999;
}

.news_main ul li {
	float: left;
}

.news_main ul li.one {
	width: 500px;
	margin-right: 10px;
}

.news_main ul li.one a {
	width: 500px;
	height: 530px;
	overflow: hidden;
	display: block;
	position: relative;
}

.news_main ul li.one a img {
	transform: scale(1);
	transition: all .4s;
	width: 100%;
	display: block;
}

.news_main ul li.one .news-title {
	bottom: 0px;
	left: 35px;
	width: calc(100% - 35px);
	border-left: 1px solid #fff;
	padding-left: 20px;
	color: #fff;
	position: absolute;
}

.news_main ul li.one .news-title h5 {
	font-size: 28px;
	font-weight: normal;
	font-family: mc;
}

.news_main ul li.one .news-title p {
	font-size: 16px;
	letter-spacing: 2px;
	font-family: mc;
}

.icon-news {
	background: url(../../images/clayer/arrow-r-w.svg) no-repeat center;
	width: 15px;
	height: 15px;
	display: inline-block;
	opacity: 1;
	filter: alpha(opacity=100);
	position: absolute;
	right: 45px;
	-webkit-transition: right ease 1s;
	-moz-transition: right ease 1s;
	-ms-transition: right ease 1s;
	-o-transition: right ease 1s;
	transition: right ease 1s;
	bottom: 2px;
}

.news_main ul li.one a:hover img {
	transform: scale(1.05);
}

.news_main ul li.one a:hover .icon-news {
	right: 35px;
}

.news_main ul li.news_two {
	float: left;
	width: 440px;
	margin-right: 10px;
}

.news_main ul li.news_two a {
	width: 440px;
	height: 260px;
	padding: 38px 44px;
	margin-bottom: 10px;
	display: block;
	overflow: hidden;
	position: relative;
	background: url(../../images/clayer/bbg.jpg) center center;
}

.news_main ul li.news_two a:last-child {
	margin-bottom: 0px;
}

.news_main ul li.news_two .top {
	width: 100%;
	float: initial;
	padding-left: 0;
}

.news_main ul li.news_two .top h5 {
	font-size: 18px;
	color: #000;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-weight: 400;
}

.news_main ul li.news_two .top div.p {
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 24px;
}

.news_main ul li.news_two .top div.p p {
	height: 52px;
	padding-top: 10px;
	font-size: 14px;
	line-height: 20px;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_main ul li.news_two .top img {
	position: absolute;
	top: 50%;
	width: 16px;
	right: 67px;
	margin-top: 62px;
	opacity: 0.4;
	-webkit-transition: right ease .4s;
	-moz-transition: right ease .4s;
	-ms-transition: right ease .4s;
	-o-transition: right ease .4s;
	transition: right ease .4s;
}

.news_main ul li.news_two .bottom {
	width: 100%;
	float: initial;
	border-right: none;
}

.news_main ul li.news_two .bottom h3 {
	padding-top: 20px;
	font-size: 32px;
	font-weight: 700;
	font-family: 微软雅黑;
	color: #999;
}

.news_main ul li.news_two .bottom h3:after {
	content: " ";
	display: block;
	border-bottom: none;
	width: 0;
	margin: 0;
}

.news_main ul li.news_two .bottom span {
	font-size: 14px;
	display: block;
	color: #999;
}

.news_main ul li.news_three {
	float: left;
}

.news_main ul li.news_three a {
	width: 440px;
	height: 170px;
	padding: 38px 44px;
	margin-bottom: 10px;
	display: block;
	background: url(../../images/clayer/bbg.jpg) center center;
	overflow: hidden;
}

.news_main ul li.news_three a:last-child {
	margin-bottom: 0px;
}

.news_main ul li.news_three a .left {
	width: 26%;
	border-right: 1px solid #eeeeee;
	float: left;
}

.news_main ul li.news_three a .left h3 {
	font-size: 32px;
	font-family: 微软雅黑;
	color: #999;
	font-weight: 700;
}

.news_main ul li.news_three a .left h3:after {
	content: " ";
	display: block;
	border-bottom: 1px solid #ccc;
	width: 20px;
	margin: 10px 0;
}

.news_main ul li.news_three a .left span {
	font-size: 14px;
	display: block;
	color: #999;
}

.news_main ul li.news_three a .right {
	width: 73%;
	padding-left: 25px;
	float: left;
}

.news_main ul li.news_three a .right h5 {
	font-size: 18px;
	color: #000;
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news_main ul li.news_three a .right img {
	padding-top: 12px;
	width: 14px;
	-webkit-transition: transform ease .4s;
	-moz-transition: transform ease .4s;
	-ms-transition: transform ease .4s;
	-o-transition: transform ease .4s;
	transition: transform ease .4s;
	/* 2. 开启GPU硬件加速，丝滑不卡顿 */
	transform: translateZ(0);
	/* 可选：禁止文字抖动 */
	will-change: transform;
	opacity: 0.4;
}

.news_main ul li.news_two a:hover,
.news_main ul li.news_three a:hover {
	/* box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1); */
}

.news_main ul li.news_two a:hover img {
	right: 55px;
}

.news_main ul li.news_three a:hover img {
	margin-left: 10px;
	transform: translateX(5px);
}

/* 栏目图文介绍 */
.cate-info {
	width: 1400px;
	margin: 0px auto;
}

.cate-info img {
	margin-top: -80px;
}

.cate-info h3 {
	font-size: 30px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	margin: 30px 0 10px;
}

.cate-info p {
	font-size: 16px;
	font-weight: normal;
	line-height: 27px;
}

/* 有数字的列表 */
.num-list li {
	width: 400px;
	height: 270px;
	float: left;
}

.num-list li a {
	display: block;
	width: 340px;
	padding: 30px;
	height: 210px;
}

.num-list li strong {
	color: #3C71F6;
	display: block;
	font-size: 50px;
	font-weight: bold;
	height: 50px;
	line-height: 50px;
	margin-bottom: 20px;
}

.num-list li h3 {
	font-size: 20px;
	font-weight: bold;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 27px;
	margin-bottom: 25px;
	color: #152C5B;
}

.num-list li p {
	font-size: 16px;
	font-weight: normal;
	color: #80899C;
	line-height: 24px;
	margin-bottom: 25px;
}

.num-list li span {
	display: block;
}

.num-list li span img {
	width: 25px;
}

.num-list li a:hover {
	background: #F5F8FF;
}

.num-list li a:hover h3,
.num-list li a:hover strong,
.num-list li a:hover p {
	animation: leftmove 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 0s;
}

.num-list li a:hover span img {
	animation: leftmove 1s;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	animation-delay: 0s;
}

.index-clayer-news {}

.index-mrs-clayer {
	padding: 110px 100px 106px;
}

.sect4-mrs-clayer {
	height: 400px;
	background-image: url(/images/bg-clayer.png);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.mrs-clayer-des {
	margin-top: 24px;
	margin-bottom: 64px;
}

.index-news-con {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.news-title {
	margin-bottom: 55px;
}

.news-col6 {
	width: calc(50% - 10px);
}

.news-l-half {
	position: relative;
	background: #000;
}

.news-l-half .news-cover {
	height: 100%;
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.news-l-half .news-cover img {
	height: 100%;
	width: auto;
}

.float-end {
	position: absolute;
	bottom: 0;
	right: 0;
}

.row-lr {
	display: flex;
	display: -webkit-flex;
}

.row-lr>div {
	width: calc(50% - 60px);
	max-height: 328px;
}

.row-lr .news-cover {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.row-lr .news-cover img {
	height: 100%;
	width: auto;
}

.news-index-des {
	padding: 32px 30px;
	background: #fff;
}

.news-index-des.float-end {
	width: calc(50% - 60px);
	height: 240px;
	background: rgba(0, 0, 0, 0.75);
}

.news-cover {
	position: relative;
}

.news-cover::after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 8px;
	background-color: #0f2758;
	position: absolute;
	top: 0;
	left: 0;
}

.news-index-des .news-category {
	font-weight: bold;
	font-size: 16px;
	color: #0f2758;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 4px;
	display: inline-block;
}

.news-index-des .news-d {
	font-size: 12px;
	color: #999999;
	letter-spacing: 0.8px;
	line-height: 18px;
	margin-bottom: 24px;
	display: block;
}

.news-t {
	font-size: 16px;
	color: #666666;
	letter-spacing: 1.2px;
	line-height: 24px;
	display: block;
	margin-bottom: 50px;
	height: 72px;
	overflow: hidden;
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* 两个图片的列表1 */
.two-list li {
	width: 380px;
	margin: 0px 30px 30px 0;
}

.two-list li {
	float: left;
}

.two-list li:nth-child(3n) {
	margin-right: 0;
}

.two-list li img {
	display: block;
	width: 380px;
	height: 220px;
}

.two-list li .two-pic {
	position: relative;
}

.two-list li .logo_label {
	position: absolute;
	width: 136px;
	height: 33px;
	padding: 15px;
	background: #fff;
	top: 20px;
	left: 20px;
}

.two-list li .logo_label img {
	width: 136px;
	height: 33px;
}

.two-list li .two-pic-text {
	padding: 15px 15px 0;
}

.two-list li .two-pic-text h3 {
	font-size: 20px;
	margin: 10px 0;
	color: #152C5B;
	white-space: nowrap;
	/* 不换行 */
	overflow: hidden;
	/* 隐藏溢出部分 */
	text-overflow: ellipsis;
	/* 显示省略号 */
}

.two-list li .two-pic-text p {
	font-size: 16px;
	line-height: 24px;
	color: #666;
	height: 48px;
}

.two-list li a .two-pic-text .more-btn {
	font-size: 14px;
	margin-top: 20px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
}

.two-list li a:hover .two-pic-text .more-btn {
	padding: 0 25px;
	background: #0f2758;
	animation: leftmove 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	color: #fff;
}

/* 栏目二级菜单 */
.cat-r-menu {
	width: 600px;
	float: right;
	text-align: right;
}

.cat-r-menu a {
	padding-left: 20px;
}

.cat-r-menu a.on {
	color: #0f2758;
	font-weight: bold;
}

/* 奇左偶右的列表 */
.l-r-list li {
	width: calc(100% / 1 - 0px);
	padding-bottom: 50px;
	margin-bottom: 70px;
	border-bottom: 1px solid #eee;
	overflow: hidden;
}

.l-r-list li:last-child {
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}

.l-r-list li:last-child {
	margin-bottom: 80px;
}

.l-r-list li a {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
}

.l-r-list li a .l-r-pic {
	width: 240px;
	float: right;
	overflow: hidden;
}

.l-r-list li:nth-child(even) a .l-r-pic {
	float: left;
}

.l-r-list li a .l-r-pic img {
	display: block;
	width: 240px;
}

.l-r-list li a:hover .l-r-pic img {
	transform: scale(1.05);
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	display: inline;
}

.l-r-list li a .l-r-text {
	float: right;
	padding: 0px 100px 20px 20px;
	width: calc(100% - 400px);
	box-sizing: border-box;
}

.l-r-list li:nth-child(even) a .l-r-text {
	float: right;
	padding: 0px 180px 20px 80px;
	width: calc(100% - 240px);
	box-sizing: border-box;
}

.l-r-list li a .l-r-text h3 {
	margin-bottom: 20px;
}

.l-r-list li a .l-r-text p {
	color: #888;
	line-height: 24px;
}

.l-r-list li a .list_index {
	display: block;
	font-size: 40px;
	font-family: mc;
	height: 40px;
	line-height: 40px;
	letter-spacing: -5px;
	font-weight: normal;
	color: rgba(0, 0, 0, .1);
	position: absolute;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	top: 0;
}

.l-r-list li a .list_index_line {
	content: '';
	position: absolute;
	width: 2px;
	height: 70px;
	background-color: rgba(0, 0, 0, .1);
	top: 60px;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.l-r-list li a:hover .list_index {
	font-size: 46px;
	height: 46px;
	line-height: 46px;
	color: #0f2758;
}

.l-r-list li a:hover .list_index_line {
	height: 40px;
	top: 70px;
}

.l-r-list li:nth-child(odd) a .list_index {
	left: 0;
	right: auto;
}

.l-r-list li:nth-child(odd) a .list_index_line {
	left: 38px;
	right: auto;
}

.l-r-list li:nth-child(odd) a:hover .list_index_line {
	left: 45px;
	background-color: #0f2758;
}

.l-r-list li:nth-child(even) a .list_index {
	right: 10px;
	left: auto;
}

.l-r-list li:nth-child(even) a .list_index_line {
	right: 38px;
	left: auto;
}

.l-r-list li:nth-child(even) a:hover .list_index_line {
	right: 45px;
	left: auto;
	background-color: #0f2758;
}

.l-r-list li a p.more-btn {
	color: #000;
	font-size: 16px;
	font-family: nav;
	margin-top: 20px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
}

.l-r-list li a:hover p.more-btn {
	padding: 0 25px;
	background: url(../../images/clayer/bg_num.png) center center / 100% 100% no-repeat;
	animation: leftmove 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	color: #fff;
}

/* 分页样式 */
#pages {
	padding: 0px 0 120px;
	display: flex;
	justify-content: center;
}

#pages::after {
	content: "";
	display: block;
	clear: both;
}

#pages a {
	float: left;
	height: 36px;
	line-height: 36px;
	padding: 0 20px;
	font-size: 16px;
	font-family: nav;
	margin: 0 5px;
	text-align: center;
	color: #fff;
	background: url(../../images/clayer/bg_num.png) no-repeat center;
	background-size: 100% 100%;
	border: none;
	filter: grayscale();
}

#pages a:hover,
#pages a.page-num-current {
	filter: none;
}

#pages a.a1 {
	width: 100px;
}

#pages span {
	float: left;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	margin: 0 5px;
	text-align: center;
	background-color: transparent;
	border-color: #0f2758;
	color: #fff;
	background-color: #0f2758;
}

/* 详情页样式 */
.show_box {
	padding: 0 0 80px;
	position: relative !important;
	overflow: hidden;

}

.show_box .show_box_l {
	width: 900px;
	float: left;
	line-height: 27px;
}

.show_box .show_box_l video {
	width: 700px;
	margin-bottom: 40px;
}

.show_box .show_box_l .intro {
	color: #80899C;
}

.show_box .show_box_l img {
	display: block;
	max-width: 900px !important;
	height: auto !important;
	margin: 10px auto;
}

.show_box .show_box_r {
	width: 400px;
	position: absolute;
	top: 0;
	right: 0;
	will-change: top, position, right;
}

.ny_next {
	display: inline-block;
	float: left;
	width: 400px;
	height: 30px;
	line-height: 30px;
	margin-right: 50px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

}

/* 固定状态类 */
.show_box .show_box_r.is-fixed {
	width: 400px;
	position: fixed;
	top: 150px;
	z-index: 99;
	right: 0px;
}

.show_title {
	overflow: hidden;
	margin-bottom: 40px;
}

.show_title h1 {
	font-size: 24px;
	margin-bottom: 20px;
}

.show_box_r_title {
	display: block;
	font-size: 20px;
	height: 20px;
	line-height: 20px;
	margin-bottom: 40px;
	font-weight: bold;
	color: #0f2758;
}

.show_box_r_title span {
	float: right;
}

.show_box_r li {
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}

.show_box_r li:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}

.show_box_r li a {
	display: flex;
	align-items: center;
}

.show_box_r li .l-pic {
	width: 145px;
	margin-right: 30px;
}

.show_box_r li .l-pic img {
	width: 145px;
}

.show_box_r li strong {
	width: 90px;
	height: 90px;
	line-height: 90px;
	background: #EDF2FE;
	font-size: 50px;
	color: #3C71F6;
	text-align: center;
	border-radius: 20px;
	margin-right: 30px;
}

.show_box_r li .r-text {
	width: 225px;
}

.show_box_r li .r-text h3 {
	font-size: 16px;
	height: 16px;
	line-height: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #152C5B;
}

.show_box_r li .r-text p {
	font-size: 16px;
	height: 36px;
	line-height: 18px;
	overflow: hidden;
	color: #80899C;
	margin-top: 10px;
	text-overflow: ellipsis;
}

/* 白皮书的样式 */
.three-li-menu {
	margin-top: 40px;
}

.three-li-menu li {
	width: 216px;
	padding: 30px;
	margin-right: 30px;
	margin-bottom: 30px;
	background: #fff;
	float: left;
	text-align: center;
	height: 270px;
}

.three-li-menu li:nth-child(4n) {
	margin-right: 0px;
}

.three-li-menu li img {
	display: block;
	width: 77px;
	margin: 0 auto 15px;
}

.three-li-menu li h3 {
	font-size: 20px;
	line-height: 20px;
	height: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.three-li-menu li p {
	font-size: 16px;
	line-height: 24px;
	color: #888;
}

.three-list li {
	width: 380px;
	overflow: hidden;
	padding-top: 115px;
	margin-right: 30px;
	margin-bottom: 30px;
	float: left;
	text-align: left;
}

.three-list li .three-pic {
	width: 380px;
	height: 305px;
	background: #E6E8ED;
	position: relative;
}

.three-list li .three-pic img {
	display: block;
	position: absolute;
	width: 280px;
	height: 380px;
	background: #E6E8ED;
	bottom: 50px;
	left: 50px;
}

.three-list li:nth-child(3n) {
	margin-right: 0px;
}

.three-pic-text {
	padding: 30px 0px 10px;
}

.three-pic-text h3 {
	font-size: 18px;
	line-height: 18px;
	height: 18px;
	overflow: hidden;
	font-weight: bold;
	margin-bottom: 15px;
}

.three-pic-text p {
	font-size: 16px;
	line-height: 24px;
	color: #888;
}

.three-pic-text .more-btn {
	margin-top: 20px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
}

.three-list li a:hover p.more-btn {
	padding: 0 25px;
	background: #0f2758;
	animation: leftmove 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	color: #fff;
}

.show_three-pic {
	margin: 240px auto 40px;
	width: 380px;
	height: 305px;
	background: #E6E8ED;
	position: relative;
}

.show_three-pic img {
	display: block;
	position: absolute;
	width: 280px;
	height: 380px;
	background: #E6E8ED;
	bottom: 50px;
	left: 50px;
}

.tongji {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tongji .tongji-item {
	margin: 0 60px;
}

.tongji .tongji-item h3 {
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 15px;
	font-weight: bold;
	color: #000;
}

.tongji .tongji-item p {
	font-size: 16px;
	line-height: 16px;
	color: #777e90;
}

.tongji .m-line {
	width: 1px;
	height: 20px;
	background: #777e90;
}

.down_btn a {
	text-align: center;
	width: 200px;
	border-radius: 50px;
	height: 50px;
	line-height: 50px;
	margin: 50px auto 80px;
	background: #0d2c65;
	color: #fff;
	font-size: 16px;
	display: block;
}

.bp_info {
	width: 600px;
	margin: 0 auto;
	color: #666;
	font-size: 16px;
	line-height: 30px;
}

/* 关于我们 */
.detail-img {
	margin-bottom: 60px;
}

.detail-img img {
	width: 100%;
}

.xuzhanhai h3 {
	font-size: 30px;
	font-weight: bold;
	height: 30px;
	line-height: 30px;
	color: #0f2758;
	margin-bottom: 20px;
}

.xuzhanhai h4 {
	font-size: 16px;
	font-weight: normal;
	height: 16px;
	line-height: 16px;
	color: #666;
	margin-bottom: 20px;
}

.xuzhanhai p {
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	color: #000;
	margin-bottom: 20px;
	text-indent: 2em;
}

.xuzhanhai .xzh-jieshao {
	margin-top: 30px;
}

.xuzhanhai .xzh-jieshao li {
	width: 50%;
	float: left;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
}

.xuzhanhai .xzh-jieshao li span {
	color: #999;
	margin-right: 20px;
}

/* 留言板 */
.link_ly .ly-li {
	width: 320px;
	margin-right: 20px;
	height: 72px;
	float: left;
	margin-bottom: 20px;
}

.link_ly .ly-li .ly-li-li {
	display: block;
	height: 30px;
	line-height: 30px;
}

.link_ly .ly-li span .input-text,
.link_ly .ly-li span select {
	width: 288px;
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	background: none;
	border: 1px solid #e9e9e9;
	font-size: 16px;
}

.link_ly .ly-li span select {
	width: 320px;
}

.link_ly .submit input {
	width: 320px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}