@charset "utf-8";

*,
::before,
::after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

sup {
	vertical-align: super;
	font-size: smaller;
	line-height: 0;
}

sub {
	vertical-align: sub;
	font-size: smaller;
	line-height: normal;
}

ul,
li {
	list-style: none;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #333333;
}

.sub-banner {
	height: auto;
	position: relative;
	overflow: hidden;
	width: 100%;
	will-change: transform;
}

.sub-banner .text-cols {
	width: 85%;
	height: auto;
	position: absolute;
	top: 50%;
	color: #ffffff;
	font-size: 4vw;
	left: 7.5%;
}

.sub-banner .txt.en {
	font-size: 1.6rem;
	font-family: figtree;
	text-transform: uppercase;
	margin-top: 0.25vw;
}


::selection {
	background: #231815;
	color: #fff;
}

input {
	-webkit-appearance: none;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	outline: none;
	border: none;
}

.bgcover {
	background: center center no-repeat;
	background-size: cover;
}

/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
	cursor: pointer;
	-webkit-appearance: none;
}

/* 通用外层 */
.boxes {
	position: relative;
	padding: 6vw 0px;
	background-color: #fff;
	z-index: 2;
}

.boxes.pd3 {
	padding-top: 3vw;
}

.boxes.f {
	background: #f9f9f9;
}

/* 通用宽度 */
.w1400 {
	width: 84%;
	margin: 0px auto;
	position: relative;

}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

/* 通用弹出层样式 */
.lightBox {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
	opacity: 0;
	visibility: hidden;
	position: fixed;
}

.lightBox.active {
	opacity: 1;
	visibility: visible
}

/* 通用视频弹出层样式 */
.videoBox {
	width: 70%;
	max-width: 1000px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	background: #fff;
	padding: 35px 0px;
	border-radius: 10px;

}

.videoBox video {
	display: block;
	position: relative;
	width: 100%;
}

.videoCloseBtn {
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0px;
	top: 0px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .5s;
}

.videoCloseBtn:hover {
	-webkit-transform: rotate(180deg);
}

/* 通用半透明背景代码 */
.transBg {
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .0) 100%);
}

/* 通用处理单行文字溢出代码 */
.singe-line {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 通用处理多行文字溢出代码 */
.mul-line {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.7;
}


/* 通用字体字号行距样式 */
.singePage {
	width: 100%;
	line-height: 2;
}

.singePage.w {
	color: #fff;
}

.singePage p {
	margin-bottom: 10px;
}

.singePage.c {
	text-align: center;
}

/* 通用分页样式 */
#page {
	display: flex;
	text-align: center;
	width: 100%;
}

#page ul {
	display: flex;
	width: 100%;

}

#page li.xl-prevPage,
#page li.xl-nextPage {
	display: none;
}

#page ul {
	display: flex;
	gap: 1vw;
}

#page li {
	display: block;
	width: 40px;
	height: auto;
	cursor: pointer;
	color: rgba(0, 0, 0, .4);
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	-webkit-appearance: none;
	border-radius: 3px;
	transition: all 0.4s;
	background: rgba(0, 0, 0, .05);
	font-family: teachers;
}

.xl-nextPage,
.xl-prevPage {
	width: 60px;
	color: #2a2a32;
	height: 28px;
}

#page li.xl-disabled {
	opacity: .5;
	cursor: no-drop;
}

#page li.xl-disabled:hover {
	background-color: #f9f9f9;

	color: #666;
}

#page li.xl-active,
#page li:hover {
	color: #FFF;
	background: #de2525;
}


#page li.xl-jumpText {
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
	opacity: 1;
}

#page li.xl-jumpText:hover {
	background-color: rgba(0, 0, 0, 0) !important;

}

#page li.xl-jumpButton {
	padding: 0 5px;
}

#xlJumpNum {
	width: 35px;
	margin: 0 3px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* 通用详情页样式 */
.detail_page {
	width: 100%;
	background: #f4f4f4;
	position: relative;
	padding: 3vw;
}


.detail_box .singePage {
	min-height: 500px;
}


/* 通用回到顶部代码 */
.backTop {
	position: fixed;
	right: 50px;
	display: block;
	bottom: -100px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, .6);
	backdrop-filter: blur(5px);
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
	z-index: 50;
	color: rgba(0, 0, 0, .4);
	-webkit-transition: all .5s;
	border-radius: 5px;
}

.backTop.active {
	bottom: 50px
}

.backTop:hover {
	background-color: #de2525;
	color: #fff
}

.fade-up {
	transform: translateY(25px);
	opacity: 0;
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}

.fade-up.is-inview {
	transform: translateY(0px);
	opacity: 1;
}

.img-clip {
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow: hidden;
}

.img-clip img {
	transform: scale(1.1);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-inview .img-clip {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.is-inview .img-clip img {
	transform: scale(1);
}

/* 通用上一条下一条样式 */
.ndc_npnews {
	width: 100%;
	height: auto;
	display: flex;
	border: 1px solid rgba(0, 0, 0, .05);
	margin-top: 50px;
}

.ndc_npnews .post_next,
.ndc_npnews .post_prev {
	line-height: 25px;
}

.ndc_npnews .post_next p,
.ndc_npnews .post_prev p {
	opacity: 0.5;
	font-size: 14px;
	margin-bottom: 5px;
}

.ndc_back {
	width: 20%;
	height: 55px;
	line-height: 25px;
	position: relative;
	text-align: center;
	font-size: 16px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}


.ndc_back span {
	width: 25px;
	height: auto;
	display: block;
	padding: 3px;
	opacity: 0.7;
	margin-bottom: 5px;
}

.ndc_back p {
	display: block;
	width: 100%;
	opacity: 0.5;
	font-size: 14px;
}

.ndc_npnews a:hover p {
	opacity: 1;
}

.ndc_npnews .post_next:hover .icon:after,
.ndc_npnews .post_prev:hover .icon:after {
	background: rgba(255, 255, 255, .2)
}

.ndc_npnews .post_next {
	direction: rtl;
}

.ndc_npnews .post_next .icon,
.ndc_npnews .post_prev .icon {
	width: 20px;
	position: relative
}

.ndc_npnews .post_next .icon:before,
.ndc_npnews .post_prev .icon:before {
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 3px;
	background: url(../../images/common/udIcon.png) no-repeat;
	background-size: cover;
	content: '';
	opacity: .5
}

.ndc_npnews .post_next .icon:before {
	left: auto;
	right: 0;
	-webkit-transform: rotate(-180deg)
}

.ndc_npnews .post_next .name,
.ndc_npnews .post_prev .name {
	width: calc(100% - 20px);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.ndc_npnews .post_next .name {
	direction: initial;
}


.vlightBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 2000;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(15px);
	padding: 0px 0%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	visibility: hidden;
	opacity: 0;
}

.inner-player video {
	display: block;
	width: 70%;
	height: auto;
	border: 5px solid #fff;
	border-radius: 5px;
}

.pro_close {
	width: 50px;
	height: auto;
	line-height: 60px;
	text-align: center;
	padding: 17px;
	position: absolute;
	right: 5%;
	top: 5%;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .35s;
	background: #de2525;
}

.pro_close:hover {
	-webkit-transform: rotate(45deg);
}

.pro_close img {
	opacity: 1;
}

.vlightBox.active {
	opacity: 1;
	visibility: visible;
}

.inner-player {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}


/* 通用自动滚动样式 */
.dowebok {
	width: 100%
}

.dowebok .img {
	margin-left: 5px;
	display: inline-block;
	width: 250px;
	height: auto;
	background: center center no-repeat;
	background-size: cover;
}

.str_wrap {
	overflow: hidden;
	width: 100%;
	font-size: 12px;
	line-height: 16px;
	position: absolute;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	left: 0px;
	bottom: 0px;
	white-space: nowrap
}

.str_move {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	cursor: move
}

.str_move_clone {
	display: inline-block;
	vertical-align: top;
	position: absolute;
	left: 100%;
	top: 0
}

.str_vertical .str_move_clone {
	left: 0;
	top: 100%
}

.str_down .str_move_clone {
	left: 0;
	bottom: 100%
}


.str_down .str_move,
.str_vertical .str_move {
	white-space: normal;
	width: 100%
}


/* 通用内页banner样式 */
.sub_banner {
	position: relative;
	overflow: hidden;
}

/* 通用提示样式 */
.toast {
	width: 150px;
	height: auto;
	left: 50%;
	top: 50%;
	-webkit-transform: translateY(-40%) translateX(-50%);
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	font-size: 14px;
	padding: 25px 15px;
	display: flex;
	border-radius: 8px;
	box-shadow: 0px 0px 50px rgba(0, 0, 0, .3);
	text-align: center;
	flex-wrap: wrap;
}

.toast b {
	font-size: 16px;
	display: block;
	width: 100%;
	margin-bottom: 5px;
}

.toast.icon-warning {
	background: #fef0f0;
	border: 1px solid #fde2e2;
	color: #f56c6c;
}

.toast i {
	width: 35px;
	height: 35px;
	display: block;
	position: relative;
	background: url(../../images/common/noti_icon.png);
	background-size: cover;
	margin: 0px auto;
	margin-bottom: 15px;
}

.toast.icon-warning i {
	background-position: -35px 0px;
}

.toast.active {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.toast div {
	width: 100%;
}

.toast p {
	display: block;
	color: #000;
}

.toast.icon-warning p {
	color: #f56c6c;
}

.toast.icon-success {
	background: #f0f9eb;
}

.toast.icon-success p,
.toast.icon-success b {
	color: #67c23a;
}

.toast .close_icon {
	width: 25px;
	height: 25px;
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
	background: url(../../images/common/noti-close.png) no-repeat;
	background-size: cover;
	cursor: pointer;
}

.thum {
	position: relative;
	overflow: hidden;
}

.pic {
	background: center center no-repeat;
	background-size: cover;
	-webkit-transition: all 1s;
}

.inner {
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}

.inner img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all 1s;
}


#nav-icon2 {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 3%;
	top: 20px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 5;
}


/* Icon 2 */

#nav-icon2 {
	display: none;
}

#nav-icon2 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 50%;
	background: #fff;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
	left: 50%;
	border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
	left: 0px;
	border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
	top: 0px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
	top: 10px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
	top: 20px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
	left: 5px;
	top: 7px;
}

#nav-icon2.open span:nth-child(2) {
	left: calc(50% - 5px);
	top: 7px;
}

#nav-icon2.open span:nth-child(3) {
	left: -50%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
	left: 100%;
	opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
	left: 5px;
	top: 12px;
}

#nav-icon2.open span:nth-child(6) {
	left: calc(50% - 5px);
	top: 12px;
}


.detail_top .title {
	font-size: 2.5vw;
	line-height: 1.5;
	font-weight: bold;
}

.detail_top .info {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 10px;
}


.dpl {
	width: calc(100% - 250px);
	padding: 0px;
	padding-right: 80px;
	border: none;
}

.dpl .singePage img {
	width: 100% !important;
	height: auto !important;
}


.ndc_npnews {
	justify-content: space-between;
	margin-top: 5vw;
	align-items: center;
	border: none;
	border-top: 1px solid rgba(0, 0, 0, .1);
	padding-top: 25px;
}

.ndc_npnews .post_next,
.ndc_npnews .post_prev {
	padding: 0px;
	width: 40%;
	font-size: 16px;
}

.ndc_npnews .post_next .icon,
.ndc_npnews .post_prev .icon {
	width: 64px;
}

.ndc_npnews .post_next .name,
.ndc_npnews .post_prev .name {
	width: calc(100% - 64px);
}

.ndc_npnews .post_next .icon:before,
.ndc_npnews .post_prev .icon:before {
	display: none;
}

.ndc_npnews a:hover {
	color: #e27223;
}

.de_pate {
	background: #fff;
}

.detail_top .w100 {
	width: 1200px;
	margin: 0px auto;
}

.ndc_npnews .post_next {
	direction: initial;
	text-align: right;
}

@keyframes roateOne {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(180deg);
	}
}



.subBanner {
	position: relative;
	overflow: hidden;
}


.nav_bg {
	display: none;
	width: 45px;
	height: 45px;
	overflow: hidden;
	position: fixed;
	right: 10px;
	top: 7.5px;
	background: #fff;
	border-radius: 50%;
	-webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1);
}

.menu_btn {
	position: absolute;
	right: 0px;
	display: none;
	width: 45px;
	height: 45px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: transparent;
	color: transparent;
	border: none;
}

.menu_btn span {
	top: 22px;
	left: 13px;
	width: 20px;
}

.menu_btn span,
.menu_btn span:after,
.menu_btn span:before {
	position: absolute;
	height: 2px;
	background-color: #000;
	border-radius: 1px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.menu_btn span:after,
.menu_btn span:before {
	content: "";
	left: 0;
	-webkit-transform: translateY(0px) rotate(0deg);
}

.menu_btn span:before {
	top: -6px;
	width: 14px;
}

.menu_btn span:after {
	top: 6px;
	width: 12px;
}

.menu_btn.active span {
	background-color: transparent;
}

.menu_btn.active span:before {
	-webkit-transform: translateY(6px) rotate(-45deg);
}

.menu_btn.active span:after {
	-webkit-transform: translateY(-6px) rotate(45deg);
}

.menu_btn.active span:after,
.menu_btn.active span:before {
	width: 20px;
}

.searchLight {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 1000;
	transition: all .5s cubic-bezier(.23, 1, .32, 1);
	opacity: 0;
	visibility: hidden;
	position: fixed;
}

.searchLight.active {
	opacity: 1;
	visibility: visible;
}

.searchGroup {
	width: 600px;
	height: auto;
	position: absolute;
	padding: 75px 100px;
	background: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
}

.searchGroup .name {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	line-height: 2;
	margin-bottom: 25px;
}

.searchGroup input {
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	outline: none;
	margin-bottom: 25px;
}

.searchBtn {
	width: 120px;
	height: 50px;
	line-height: 50px;
	background: rgba(0, 0, 0, .05);
	text-align: center;
	cursor: pointer;
	color: rgba(0, 0, 0, .5);
	-webkit-transition: all .35s;
}

.searchBtn:hover {
	background: #de2525;
	color: #fff;
}


.searchGroup input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .3);
	font-size: 14px;

}

.searchClose {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0px;
	top: 0px;
	cursor: pointer;
	line-height: 50px;
	text-align: center;
	-webkit-transition: all .5s;
	padding: 10px;
}

.searchClose:hover {
	-webkit-transform: rotate(-45deg);
}

.jpage {
	width: 100%;
	display: flex;
	justify-content: center;
}

.jpage a,
.jpage span {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: relative;
	background: #ffffff;
	color: #2a2a32;
	cursor: pointer;
	border-radius: 3px;
	margin: 0px 2px;
	font-size: 12px;
}

.jpage a.jp-current {
	background-image: linear-gradient(90deg, #f6c70c, #e27223);
	color: #fff;
}

.jpage a.jp-previous,
.jpage a.jp-next {
	display: none;
}

.singePage table {
	border-collapse: collapse;
	border-color: #ededed;
	border-top: 1px solid #ededed;
	border-left: 1px solid #ededed;
	width: 100%;
}

.singePage thead tr th {

	padding: 6px;
	border-bottom: 1px solid #ededed;
	border-right: 1px solid #ededed;
}

.singePage tbody tr td {
	padding: 6px;
	border-bottom: 1px solid #ededed;
	border-right: 1px solid #ededed;
}

.singePage tbody tr td p {
	margin-bottom: 0;
}

.news_detail {
	width: 100%;
	height: auto;
	position: relative;
	background: #ffffff;
	padding: 50px 0vw 5vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.pupBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 1000;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(15px);
	padding: 0px 0%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	visibility: hidden;
	opacity: 0;
}

.pupBox.active {
	opacity: 1;
	visibility: visible;
}

.news_detail .w1400 {
	display: flex;
	justify-content: space-between;
	max-width: 1300px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.detail_box {
	width: calc(100% - 400px);
	position: relative;
	background: #fff;
}


.related-news {
	width: 325px;
	background: #f9f9f9;
	padding: 25px;
	border-top: 3px solid #de2525;
	position: sticky;
    top: 100px;
}

.related-news .title {
	font-size: 32px;
	line-height: 1.5;
	margin-bottom: 1vw;
	position: relative;
}

.related-news .list .item {
	width: 100%;
	margin-bottom: 1.5vw;
	display: block;
	padding-bottom: 1.5vw;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.related-news .list .item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.related-news .list .item .inner {
	padding-top: 60%;
}

.related-news .list .item .thum {
	margin-bottom: 10px;
}

.related-news .list .item .name {
	line-height: 1.5;
	margin-bottom: 10px;
	transition: all 0.4s;
}

.related-news .list .item .date {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	gap: 5px;
	opacity: 0.5;
	font-family: teachers;
	font-size: 14px;
}

.related-news .list .item .date .icon {
	width: 16px;
}

.related-news .list .item .date .txt {
	font-size: 0.875rem;
	font-family: Manrope;
	line-height: 16px;
}

.related-news .list .item:hover .name{
	color: #de2525;
}

.detail_same {
	width: 30%;
}

.detail_top .name {
	font-size: 2vw;
	line-height: 1.5;
	margin-bottom: 1.5vw;
}

.detail_top .des {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.detail_top .des p {
	width: auto;
	height: auto;
	line-height: 25px;
	position: relative;
	margin-right: 25px;
	color: rgba(0, 0, 0, .4);
}

.detail_top {
	width: 100%;
	height: auto;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 1.5vw;
	margin-bottom: 1.5vw;
}

.detail_top .title {
	font-size: 2.5vw;
	line-height: 1.5;
	font-weight: bold;
}

.detail_top .info {
	font-size: 16px;
	line-height: 1.5;
}

.detail_name {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 24px;
	font-weight: 500;
	line-height: 35px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 15px;
	margin-bottom: 10px;
}

.detail_name::after {
	width: 95px;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	background: #0c0f7f;
}

.same_news {
	margin-bottom: 5vw;
}

.same_news a {
	width: 100%;
	height: auto;
	position: relative;
	margin-right: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 15px;
	margin-bottom: 15px;
	display: block;
}

.same_news a:before {
	width: 0%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #0c0f7f;
	z-index: 2;
	transition: all 0.35s;
}

.same_news a .name {
	margin-top: 10px;
	height: auto;
	transition: all 0.5s;
	line-height: 30px;
}

.same_news a .des {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.same_news a:hover:before {
	width: 100%;
}

.same_news a .des p {
	width: auto;
	height: auto;
	line-height: 25px;
	position: relative;
	padding-left: 0px;
	color: #c3c3c3;
}

.pn_news {
	margin-top: 3vw;
	padding-top: 1vw;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.pn_news .item {
	width: 100%;
	display: flex;
	position: relative;
	line-height: 25px;
	padding: 5px 0px;
}

.pn_news .item p {
	width: 68px;
}

.pn_news .item a {
	width: calc(100% - 68px);
	transition: all .4s;
}

.pn_news .item a:hover {
	color: #0c0f7f;
}

.form {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.form .row {
	width: 48%;
	margin-bottom: 20px;
	position: relative;
}

.form .row.full {
	width: 100%;
}

.form .row label {
	display: block;
	width: 100%;
	height: 28px;
	position: relative;
	line-height: 28px;
	margin-bottom: 5px;
}

.form .row textarea.error {
	border-color: #EB2524;
}

.form .row label.must {
	padding-left: 15px;
}

.form .row label.must::after {
	width: 10px;
	height: 100%;
	position: absolute;
	left: 0px;
	content: '*';
	color: red;
}

.form .row>input,
.form .row textarea {
	border-width: 1px;
    border-style: solid;
    background-color: rgba(255, 255, 255, .75);
    width: 100%;
    border-color: #f5f5f5;
    padding: 12px;
    display: block;
    outline: none;
    transition: 0.4s;
    font-size: 14px;
    border-radius: 5px;
	backdrop-filter: blur(10px);
}

.form .row textarea {
	min-height: 120px;
	line-height: 24px;
}

.form input::placeholder,
.form textarea::placeholder {
	color: rgba(0, 0, 0, 0.45);
}

.form-submit {
	width: 100%;
	height: auto;
	padding: 12px;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	font-size: 14px;
}

.form-submit.active{
	opacity: 0.5;
	cursor: no-drop;
}

.form-submit p{
	position: relative;
	z-index: 2;
}

.form-submit::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #de2525;
	border-radius: 5px;
}

.form-submit::after{
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	border-radius: 50%;
	content: '';
	background: #fff;
}

.form-submit:hover::after{
	animation: submitAnimate 0.5s ease 1;
}

@-webkit-keyframes submitAnimate{
	0%{
		transform: translate(-50%, -50%) scale(0);
		opacity: 0;
	}
	40%{
		opacity: 0.35;
	}
	100%{
		transform: translate(-50%, -50%) scale(5);
		opacity: 0;
	}
}


.error-tips {
	height: auto;
	font-size: 13px;
	color: #ffffff;
	line-height: 15px;
	position: absolute;
	left: 0;
	background: #EB2524;
	padding: 4px 7px;
	border-radius: 3px;
	z-index: 2;
	bottom: 0;
	transform: translateY(34px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}

.error-tips.active {
	opacity: 1;
	transform: translateY(29px);
}

.form .row input.error {
	border-color: #EB2524 !important;
}

.error-tips::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-bottom-color: #EB2524;
	top: -9px;
	left: 5px;
}

.transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	z-index: 2000;
	pointer-events: none;
}

.transition-row {
	flex: 1;
	display: flex;
}

.transition-row.row-1 .block {
	transform-origin: top;
}

.transition-row.row-2 .block {
	transform-origin: bottom;
}

.block {
	flex: 1;
	background: #00dfb2;
	transform: scaleY(1);
	will-change: transform;
}

.infinite-line {
	width: 4612px;
	height: 200px;
	position: absolute;
	left: 0%;
	display: flex;
	pointer-events: none;
	z-index: 1;
	bottom: 0;
}

.infinite-line img {
	width: 50%;
	bottom: -50px;
	position: relative;
}

.infinite-line.line1 {
	-webkit-animation: moves2 10s linear infinite;

}

.infinite-line.line1 img {
	opacity: 0.45;
}

.infinite-line.line2 {
	opacity: 0.75;
}

.infinite-line.line2 {
	-webkit-animation: moves 8s linear infinite;
}

.infinite-line.line2 img {
	position: relative;
	bottom: -75px;
}

@-webkit-keyframes moves {
	0% {
		transform: translateX(0);
		bottom: 0px;
	}

	50% {
		bottom: -50px;
	}

	100% {
		transform: translateX(-50%);
		bottom: 0px;
	}
}

@-webkit-keyframes moves2 {
	0% {
		transform: translateX(0);
		bottom: 0px;
	}

	50% {
		bottom: -50px;
	}

	100% {
		transform: translateX(-50%);
		bottom: 0px;
	}
}

.scroll-container {
	padding-right: 5px;
}

.scroll-container::-webkit-scrollbar {
	width: 3px;
}

.scroll-container::-webkit-scrollbar-track {
	background: #cccccc;

}

.scroll-container::-webkit-scrollbar-thumb {
	background: #de2525;
	cursor: pointer;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
	opacity: 0.8;
}

.menu-overlay {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: 999;
	background: #2b55f5;
	padding: 2vw 3vw;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.menu-content {
	position: relative;
	width: 100%;
	height: 100%;
	transform-origin: left bottom;
}

.menu-overlay.active {
	height: 100vh;
	transform: translateY(0);
}

.container {
	position: relative;
	transform-origin: right top;
	width: 100%;
}

.sub-banner.detail {
	height: 40vh;
}

.sub-banner .txt {
	font-size: 3vw;
}

.searchContent {
	width: 100%;
	height: auto;

	margin-bottom: 30px;
}

.searchContent .scResult {
	width: 100%;
	height: auto;
	background: #999;
	color: #fff;
	font-weight: 700;
	text-indent: 45px;
	font-size: 20px;
	line-height: 40px;
	position: relative
}

.searchContent .scResult.b {
	background: #0c8bc0;
}

.searchContent .scResult:after {
	width: 25px;
	height: 25px;
	position: absolute;
	left: 10px;
	top: 7.5px;
	background: url(../../images/common/result_icon.png) no-repeat;
	background-size: cover;
	content: ''
}

.resultTips {
	width: 100%;
	height: auto;
	line-height: 40px;
	font-size: 14px
}

.resultTips span {
	color: #e10101;
	padding: 0 3px;
	font-weight: 700
}

.noData {
	width: 200px;
	height: 200px;
	margin: 0px auto;
	font-size: 14px;
	text-align: center;
	display: none;
	position: relative;
}

.noData::after {
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%;
	margin-left: -40px;
	top: 50%;
	transform: translateY(-50%);
	background: url(../../images/common/noData_img.png) no-repeat;
	background-size: cover;
	opacity: .2;
	content: '';
}

.st-fadeUp {
	transform: translateY(20px);
	opacity: 0;
	transition: all 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	will-change: transform;
}

.st-fadeLeft {
	transform: translateX(20px);
	opacity: 0;
	transition: all 1.5s;
	will-change: transform;
}

.st-fadeLeft.is-inview {
	transform: translateX(0px);
	opacity: 1;
}

.st-fadeUp.is-inview {
	transform: translateY(0px);
	opacity: 1;
}

.st-clipImg::after{
	width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: #fff;
    transform-origin: center bottom;
    transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1) 0.5s;
    will-change: transform;
}

.st-clipImg img{
	transform: scale(1.1);
    transition: all 4s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
    will-change: transform;
}

.st-clipImg.is-inview::after{
	transform: scaleY(0);
}

.st-clipImg.is-inview img{
	transform: scale(1);
}

.st-path {
	transition: all 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.st-path img {
	transition: all 1.5s ease;
	transform: scale(1.1);
}

.is-inview .st-path {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.is-inview .st-path .pic {
	transform: scale(1);
}


.noData p {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0px;
	top: 75%;
	color: rgba(0, 0, 0, .2);
	font-size: 12px;
}

.noData.active {
	display: block
}

.cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 5vw;
	height: 5vw;
	line-height: 5vw;
	text-align: center;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.1);
	z-index: 999;
	mix-blend-mode: difference;
	backdrop-filter: blur(0px);
}

.cursor span {
	transition: all 0.5s;
	color: #fff;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-family: teachers;
	opacity: 0;
}

.cursor.blue {
	background: rgba(222, 37, 37, 0.85);
	mix-blend-mode: normal;
	/* backdrop-filter: blur(10px); */
}

.cursor.blue span {
	opacity: 1;
}

.drag-btn {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 999;
	opacity: 0;
	will-change: opacity, transform;
}

.drag-btn .box {
	width: 100%;
	height: 100%;
	position: relative;
	left: 0;
	top: 0;
}

.drag-btn.down .box .circle-bg {
	transform: translate(-50%, -50%) scale(0.2);
}

.drag-btn.down .box .prev {
	margin-left: -30px;
	color: #0071BC;
}

.drag-btn.down .box .next {
	margin-left: 10px;
	color: #0071BC;
}

.drag-btn .box .circle-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	background: #0071BC;
	border-radius: 50%;
	transition: all 0.3s;
	transform: translate(-50%, -50%) scale(1);
	will-change: transform;
}

.drag-btn .box .prev,
.drag-btn .box .next {
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -10px;
	color: #fff;
	margin-left: -10px;
	transition: all 0.3s;
}

.drag-btn .box .prev {
	margin-left: -20px;
}

.drag-btn .box .next {
	margin-left: 0;
}

.n_date{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.5;
}

.n_date .icon{
	width: 20px;
}

.n_date .txt{
	font-family: teachers;
	font-size: 14px;
}

.search-page{
	width: 100%;
	height: auto;
	position: relative;
	background: #3e3e3e;
	padding: 15vw 5vw 10vw;
}

.search-page .box{
	width: 100%;
	display: flex;
	justify-content: center;
	color: #fff;
	gap: 1vw;
    align-items: center;
}

.search-btn{
	width: auto;
    height: auto;
    line-height: 55px;
    position: relative;
    background: #de2525;
    color: #fff;
    padding: 0px 4vw;
    font-size: 1.6rem;
    border-radius: 5px;
    cursor: pointer;
}


.bread-crumb {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 3%;
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	display: none;
	top: 5px;
}


.bread-crumb.active span:nth-child(2) {
	width: 0%;
	left: 50%;
}

.bread-crumb:hover {
	opacity: 0.9;
}

.bread-crumb span {
	display: block;
	width: 60%;
	height: 2px;
	background: #de2525;
	position: absolute;
	left: 20%;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.35s;
}

.bread-crumb span:nth-child(1) {
	margin-top: -9px;
}

.bread-crumb.active span:nth-child(1),
.bread-crumb.active span:nth-child(3) {
	margin-top: 0px;
}

.bread-crumb.active span:nth-child(1) {
	transform: rotate(45deg) scale(0.8);
}

.bread-crumb.active span:nth-child(3) {
	transform: rotate(-45deg) scale(0.8);
}

.bread-crumb span:nth-child(3) {
	margin-top: 9px;
}


@media screen and (max-width: 1024px) {
	.nav_bg {
		display: block;
	}

	.nav_bg.active {
		-webkit-transform: scale(40);
	}

	.menu_btn {
		display: block;
		color: #00479d;
		top: 7.5px;
		border-radius: 5px;
		right: 3%;
		z-index: 20;
	}

	#page li {
		width: 35px;
		line-height: 33px;
		margin: 0px;
		margin-right: 5px;
	}

	.news_detail {
		padding: 10vw 0vw 5vw;
	}

	.detail_box,
	.related-news {
		width: 100%;
	}

	.detail_top .name {
		font-size: 3vw;
	}

	.n_date {
		gap: 5px;
	}

	.detail_top {
		padding-bottom: 3.5vw;
		margin-bottom: 3.5vw;
	}

	.detail_box {
		margin-bottom: 15vw;
	}

	.related-news {
		padding: 0vw;
		background: transparent;
	}

	.related-news .title {
		font-size: 3vw;
		margin-top: 5vw;
		margin-bottom: 3vw;
	}

	.related-news .list .item {
		margin-bottom: 2vw;
		display: block;
		padding-bottom: 2vw;
	}

	.related-news .list .item .name {
		margin-bottom: 5px;
	}

	.inner-player video {
		display: block;
		width: 100%;
		height: auto;
		border: 0px solid #fff;
		border-radius: 0px;
	}
}

@media screen and (max-width: 900px) {
	.detail_top .name,.related-news .title{
        font-size: 6vw;
    }
	.n_date .icon {
		width: 16px;
	}
	.pn_news .item{
		font-size: 14px;
		line-height: 20px;
	}
	.pn_news {
		margin-top: 10vw;
		padding-top: 10vw;
	}
	.detail_box {
        margin-bottom: 10vw;
    }
	.related-news .list .item .name{
		font-size: 14px;
	}
	.news_detail{
		padding-bottom: 15vw;
	}
	.detail_top .name{
		margin-bottom: 3vw;
	}
	.detail_top {
        padding-bottom: 5vw;
        margin-bottom: 5vw;
    }
	.error-tips{
		font-size: 11px;
	}
}