@charset "utf-8";

*,::before,::after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

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 .txt {
    width: 85%;
    height: auto;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    color: #ffffff;
    font-size: 4vw;
    left: 7.5%;
	font-weight: 500;
	text-align: center;
}
::selection {
	background: #231815;
	color: #fff;
}

input {
	-webkit-appearance: none;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}

.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;

}

.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%);
}

/* 通用处理单行文字溢出代码 */
.singleLine {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 通用处理多行文字溢出代码 */
.multiLine {
	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 li {
	display: block;
	width: 40px;
	height: auto;
	cursor: pointer;
	color: rgba(0,0,0,.4);
	font-size: 14px;
	line-height: 38px;
	text-align: center;
	margin: 0 6px;
	-webkit-appearance: none;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, .3);
	
}

.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: #407a58;
}


#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;
	border-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-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	cursor: pointer;
	line-height: 50px;
	font-size: 28px;

	text-align: center;
	z-index: 50;
	color: rgba(0, 0, 0, .4);
	-webkit-transition: all .5s;
}

.backTop.active {
	bottom: 50px
}

.backTop:hover {
	background-color: #2a2a32;
	color: #fff
}


/* 通用上一条下一条样式 */
.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: #AA7043;
}

.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%;
}

.thum 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);
	}
}




.st_fadeUp{
	-webkit-transition: all 1s ease 0.3s;
	-webkit-transform: translateY(50px);
	opacity: 0;
}

.st_blurUp{
	transform: translateY(45px);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
}

.st_blurUp.is-inview{
	transform: translateY(0);
	opacity: 1;
	filter: blur(0px);
}

.st_fadeRight{
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
	-webkit-transform: translateX(100px);
	opacity: 0;
}
.st_fadeRight.is-inview{
	-webkit-transform: translateX(0px);
	opacity: 1;
}
.st_fadeUp.is-inview{
	-webkit-transform: translateY(0px);
	opacity: 1;
}

.st_clipUp{
	overflow: hidden;

}
.st_clipUp p{
	-webkit-transform: translateY(100%);
	-webkit-transition: all 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) .3s;
}

.st_poly{
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
	-webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.st_polyR{
	/* -webkit-clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%); */
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
	-webkit-transition: 1.5s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
}

.swiper-slide-active .st_poly,.swiper-slide-active .st_polyR{
	-webkit-clip-path: polygon(100% 0,0 0,0% 100%,100% 100%);
}

.st_polyL{
	-webkit-clip-path: polygon(100% 0,100% 0,100% 100%,100% 100%);
	-webkit-clip-path: polygon(0% 0,0 0,0% 100%,0% 100%);
}

.delay1{
	-webkit-transition-delay: .1s;
}
.delay2{
	-webkit-transition-delay: .2s;
}
.delay3{
	-webkit-transition-delay: .3s;
}
.delay4{
	-webkit-transition-delay: .4s;
}
.delay5{
	-webkit-transition-delay: .5s;
}
.delay6{
	-webkit-transition-delay: .6s;
}
.delay7{
	-webkit-transition-delay: .7s;
}
.delay8{
	-webkit-transition-delay: .8s;
}
.delay9{
	-webkit-transition-delay: .9s;
}

.delay10{
	-webkit-transition-delay: 1s;
}

.delay11{
	-webkit-transition-delay: 1.1s;
}

.delay12{
	-webkit-transition-delay: 1.2s;
}
.delay13{
	-webkit-transition-delay: 1.3s;
}
.delay14{
	-webkit-transition-delay: 1.4s;
}
.delay15{
	-webkit-transition-delay: 1.5s;
}
.delay16{
	-webkit-transition-delay: 1.6s;
}

.st_clipUp.is-inview p{
	-webkit-transform: translateY(0%);
}

.st_path{
	-webkit-transition: all 1.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	-webkit-clip-path: polygon(0 0,100% 0,100% 0,0 0);
}

.st_path .pic{
	-webkit-transition: all 1.5s ease;
	-webkit-transform: scale(1.1);
}

.st_path.is-inview{
	-webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}

.st_path.is-inview .pic{
	-webkit-transform: scale(1);
}

.subBanner{
	position: relative;
	overflow: hidden;
}


.common_title.is-inview .cn p {
    -webkit-transform: translateY(0%);
}




.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: #ffffff;
    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: #0b3088;
	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;
}
.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;
}


.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;
}

.n_date{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.5;
}

.n_date .icon{
	width: 20px;
}

.n_date .txt{
	font-family: Manrope;
	font-size: 0.875rem;
}

.related-news{
	width: 325px;
	background: #f9f9f9;
    padding: 25px;
	border-top: 3px solid #06572a;
}

.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;
}

.related-news .list .item .date{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	gap: 5px;
	opacity: 0.5;
}

.related-news .list .item .date .icon{
	width: 16px;
}

.related-news .list .item .date .txt{
	font-size: 0.875rem;
    font-family: Manrope;
	line-height: 16px;
}

.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: #f5f5f5;
	width: 100%;
	border-color: #f5f5f5;
	padding: 12px;
	display: block;
    outline: none;
	transition: 0.4s;
}

.form .row textarea{
	min-height: 120px;
	line-height: 24px;
	font-size: 16px;
}

.form input::placeholder,.form textarea::placeholder{
    color: rgba(0, 0, 0, .4);
}

.form-submit{
    width: 100%;
    height: auto;
    padding: 12px;
    background: #000000;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}

.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: #407a58;	
	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;
}


@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: 6vw;
	}
	.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: 6vw;
		margin-top: 2vw;
        margin-bottom: 5vw;
	}
	.related-news .list .item{
		margin-bottom: 5vw;
		display: block;
		padding-bottom: 5vw;
	}
	.related-news .list .item .name{
		margin-bottom: 5px;
	}
	.inner-player video {
		display: block;
		width: 100%;
		height: auto;
		border: 0px solid #fff;
		border-radius: 0px;
	}
}