@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/

body {
	font-size: 16px;
	line-height: 1.5;
	color: #333333 ;
}

@font-face {
	font-family: "MyFont";
	src: url('../fonts/SC-Heavy.woff2') format('woff2'),
	url('../fonts/SC-Heavy.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "MyFont-time";
	src:url('../fonts/roboto-latin-400-normal.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
ul li{
	list-style: none;
	padding:0;
	margin:0;
}
a {
	color:#666666;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a:hover {
	color:#333333;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1500px;
	}
}

.scroll-to-top {
	display: inline-block;
	width: 3.125rem;
	height: 3.125rem;
	background: linear-gradient(45deg, #600064, #600064) !important;
	border-radius: 50%;
	position: fixed;
	bottom: 2.5rem;
	right: 2.5rem;
	z-index: 990;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
}

@media (max-width: 480px) {
	.scroll-to-top {
		width: 2.5rem;
		height: 2.5rem;
	}
}

.scroll-to-top i {
	font-size: 18px;
	line-height: 3.125rem;
	color: #fff;
	position: relative;
	z-index: 10;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.scroll-to-top:hover i {
	color: #fff;
}
@media (max-width: 480px) {
	.scroll-to-top i {
		font-size: 14px;
		line-height: 2.5rem;
	}
}

.w-120{width:150%!important;}

.ratio-box {
	position: relative;
	overflow: hidden;
	width:100%;
}

.ratio-box > img {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.ratio1-1 {
	aspect-ratio:1/1;
}
.ratio3-1{
	aspect-ratio: 3/1;
}

.ratio-3{
	aspect-ratio: 4/3;
}
.ratio16-9{
	aspect-ratio: 16/9;
}
.ratio16-10{
	aspect-ratio: 16/10;
}
.ratio10-16{
	aspect-ratio: 10/16;
}
.ratio3-4{
	aspect-ratio: 3/4;
}



/*bootstrap thumbnail特效1207*/
.thumbnail{
	overflow: hidden;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.thumbnail:hover{
	text-decoration: none;
}
.thumbnail img{
	cursor: pointer;
	transition: all 0.6s;
	position: absolute;
	top: 50%;
	left:0!important;
	transform: translateY(-50%);
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.05) translateY(-50%);
	position: absolute;
	top: 50%;
}


/*text-truncate*/
.text-truncate-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.text-truncate-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.text-truncate-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
	background-color: #ffffff;
	z-index: 91;
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.main-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;

}

.main-nav .inner-container {
	padding:1rem 0;
}

.main-nav .top-box{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;

}
.main-nav .nav-right{
	width:calc(100% - 540px);

}
.main-nav .logo-box {
	width:490px;
}
.main-nav .logo-box img{
	width:100%;
}

.main-nav .side-menu__toggler {
	display: none;
	width:36px;
}
.main-nav .side-search{
	display: none;
	width:36px;
	margin-right:0;
}
.search-box {
	position: relative;
	width: 12.5rem;

}
.search-box .search-icon {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 24px;
	height:24px;
	cursor: pointer;
	display: block;
	background-image:url(../images/icon_search.png);
	background-size: 100%;
}
.search-box .search-icon:hover {
}
.input_box {
	width: 12.5rem;
	height: 2.125rem;
	background: rgba(255,255,255,0.1);
	border-radius: 2rem;
	border: 1px solid rgba(255,255,255,0.2);
	padding-left:15px;
	color:#ffffff;
}

.input_box:focus {
	outline: none;
}
.input_box::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* Firefox 19+ */
.input_box::-moz-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* IE 10-11 */
.input_box:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* 标准写法 - 放在最后 */
.input_box::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.main-nav .main-navigation {
	width:100%;
	position: relative;
	z-index: 100;
	height:60px;
}

.main-nav .main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-navigation .dropdown-btn {
	display: none;
}

.main-nav .main-navigation .navigation-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav .navigation-box>li {
	width:100%;
	text-align: center;
	position: relative;
	margin:0 5px;
}

.main-nav .navigation-box>li+li a{

}

.main-nav .navigation-box>li>a {
	padding:15px 0 ;
	font-size: 1.25rem;
	font-weight: bold;
	color:#ffffff;
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: 500ms;
	word-break: keep-all;
}


.main-nav .navigation-box>li:hover >a:after {
	content: "";
	height:3px;
	width:80%;
	background: #ffffff;
	position: absolute;
	bottom:0;
	left:10%;
	transition: 500ms;
}

.main-nav .navigation-box>li.active >a:after{
	content: "";
	height:3px;
	width:80%;
	background: #ffffff;
	position: absolute;
	bottom:0;
	left:10%;
	transition: 500ms;
}

.main-nav .navigation-box .dropdown>a::after {
	content: "";
	font-family: "";
	font-size: 12px;
	font-weight: 900;
	margin-left: 0;
}


/* Second level menu */

.main-navigation .navigation-box > li > ul {
	position: absolute;
	width: 250px;
	left: 10%;
	padding: 0 5px;
	background-color: rgba(255,255,255,0.95);
	border-radius: 0;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: perspective(300px) scaleY(0) translateZ(0);
	transform: perspective(300px) scaleY(0) translateZ(0);
	visibility: hidden;
	opacity: 0;
	transition: transform 500ms ease, opacity 500ms ease, visibility 0s 500ms;
	z-index: 991;
}
.main-navigation .navigation-box > li:last-child > ul,
.main-navigation .navigation-box > li:nth-last-of-type(2) > ul{
	position: absolute;
	width: 250px;
	right: 10%!important;
	left:auto;
}
.main-navigation .navigation-box > li:hover > ul {
	-webkit-transform: perspective(300px) scaleY(1) translateZ(0);
	transform: perspective(300px) scaleY(1) translateZ(0);
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}

.main-navigation .navigation-box>li ul>li {
	position: relative;
	text-align: left;
	padding-top: 0.9357rem;
	padding-bottom: 0.9357rem;
	padding-left: 0.625rem;
	padding-right:0.625rem;
}
.main-navigation .navigation-box>li ul>li:after {
	content: "";
	height:1px;
	width:100%;
	background:rgba(0,0,0, 0.1) ;
	position: absolute;
	left:0;
	bottom:0;
}
.main-navigation .navigation-box>li ul>li:hover::after {
	height:2px;
	background:#600064;
}
.main-navigation .navigation-box>li ul .dropdown>a {
	position: relative;
}

.main-navigation .navigation-box>li ul .dropdown>a::after {
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}

.main-navigation .navigation-box>li ul>li+li {

}

.main-navigation .navigation-box>li ul>li>a {
	position: relative;
	display: block;
	color: #333333;
	font-size: 1.125rem;
	line-height:1.5;
	word-break: break-all;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	overflow: hidden;
}

/* stricked menu */
.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color:rgba(96,0,100,0.8);
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.stricked-menu.stricky-fixed {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}


/*-------------------------------------------------------------- 
 # SideMenu 
 --------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: right center;
	-webkit-transition: -webkit-transform 0.7s ease;
	transition: -webkit-transform 0.7s ease;
	transition: transform 0.7s ease;
	transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.side-menu__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.side-menu__block-overlay {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.7;
}

.side-menu__block-inner {
	position: relative;
	width: 19rem;
	margin-left: auto;
	height: 100vh;
	background-color:#ffffff;
	z-index: 999999;
	overflow-y: auto;
	padding:0;
}
.side-menu__block-inner {
.search-box-mo {
	position: relative;
	padding:1.25rem;

}
.search-box-mo img,
.search-box-mo .search-icon {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	width: 3rem;
	cursor: pointer;
	font-size: 1.75rem;
	display: inline-block;
	color:#600064 ;
}
.search-box-mo .search-icon:hover {
	color:#600064;
}
.search-box-mo .input_box {
	background: rgba(255, 255, 255, 1);
	height:3rem;
	padding: 0.3125rem 2.5rem 0.3125rem 0.625rem;
	font-size: 1rem;
	border-radius: 2.25rem;
	border: 1px solid #600064;
	color:#333333;
	width:100%;
}
}

.side-menu__close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 9999999;
	font-size: 24px;
	color: #fff;
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__logo {
	height:4.8rem;
	display:flex;
	background:#600064;
	align-items: center;
	padding:1.25rem;
}
.side-menu__logo img{
	width:80%;
	position: relative;
	z-index: 10;
}


/* mobile-nav menu */
.mobile-nav__container {
	margin: 0 0;
	border-bottom: 1px solid #DBDCE0;
}

.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


.mobile-nav__container ul>li .nav-icon{
	background:#600064;
	border-radius: 50%;
	display: inline-block;
	width:2rem;
	height:2rem;
	text-align: center;
}
.mobile-nav__container ul>li .nav-icon img{
	width:60%;
}

.mobile-nav__container li.dropdown ul {
	display: none;
}

.mobile-nav__container li.dropdown {
	position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
	border: none;
	outline: none;
	width: 1.75rem;
	height: 1.75rem;
	font-size: 1.75rem;
	color: #b4b4b4;
	background-color: transparent;
	position: absolute;
	top: 1.25rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
	right: 1rem;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-nav__container li+li {
	border-top: 1px solid #DBDCE0;
}

.mobile-nav__container li>ul {
	background: #ffffff;
	border-top: 1px solid #DBDCE0;
	padding:0 36px;
}
.mobile-nav__container li>ul li{
	border-top: 1px solid #DBDCE0;
}
.mobile-nav__container li a {
	text-transform: uppercase;
	color: #333333;
	font-size: 1.75rem;
	display: block;
	padding: 1.5rem 0;
	padding-left: 1rem;
	padding-right: 1rem;
	transition: all 500ms ease;
	position: relative;
}

.mobile-nav__container li a:hover {
	background: rgba(96,0,100,0.06);
}

.mobile-nav__container li.active>a {
	color:#600064;
	font-weight: bold;
	background: rgba(96,0,100,0.06);
}
.mobile-nav__container li.active >a:after{
	content: "";
	width: 3.375rem;
	height: 3.375rem;
	font-size: 3.375rem;
	color: #b4b4b4;
	background-color: transparent;
	background-image: url(../images/mo_index/mo_icon_nav01_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.15rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}
.mobile-nav__container li.active .dropdown-btn {
	border: none;
	outline: none;
	width: 3.375rem;
	height: 3.375rem;
	font-size: 3.375rem;
	color: #b4b4b4;
	background-color: transparent;
	background-image: url(../images/mo_index/mo_icon_nav01_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.15rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}
.mobile-nav__container li.active .dropdown-btn i{
	display: none;
}
/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner-section {
	height:100vh;
	width: 100vw;
}

.banner-carousel {
	position: relative;

}

.banner-carousel .slide-item {
	position: relative;
	height:100vh;
	width: 100vw;
}

.banner-carousel .lazy-bg{
	width: 100%;
	height: 100%;
	background-color: #f0f0f0; /* 占位灰色 */
}
.banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.banner-carousel .active .slide-item .image-layer {
	-webkit-animation-name: slideBgImage;
	animation-name: slideBgImage;
	-webkit-animation-duration: 7000ms;
	animation-duration: 7000ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}


.banner-carousel .bg_gradual{
	position: relative;

}
.banner-carousel .bg_gradual::before{
	height:100%;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0,0));
	-webkit-background-image:linear-gradient(100deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

/*owl-nav*/
.banner-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
}
.banner-carousel .owl-nav .owl-prev,
.banner-carousel .owl-nav .owl-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}
.banner-carousel:hover .owl-nav .owl-prev,
.banner-carousel:hover .owl-nav .owl-next {
	opacity: 1;
}
.banner-carousel .owl-nav .owl-prev {
	left: 2rem;
	top: 0;
}
.banner-carousel .owl-nav .owl-next {
	right: 2rem;
	top: 0;
}

.banner-carousel .owl-nav .owl-prev:after,
.banner-carousel .owl-nav .owl-next:after{
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	top: 0;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	color: #ffffff;
	font-size: 1.8rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-carousel .owl-nav .owl-prev:after {
	content: "\e928";
	left: 0;
}

.banner-carousel .owl-nav .owl-next:after {
	content: "\e929";
	right: 0;
}
.banner-carousel .owl-nav .owl-prev:hover:after,
.banner-carousel .owl-nav .owl-next:hover:after {
	color: #600064;
}

.banner-carousel .owl-nav .owl-prev:hover,
.banner-carousel .owl-nav .owl-next:hover {
	opacity: 0.8;
	background-color: #fff;
}

/*.owl-dots*/
.banner-carousel .owl-dots{
	position: absolute;
	width:100%;
	text-align:center;
	bottom:3rem;
	z-index: 10;
}
.banner-carousel .owl-dots .owl-dot{
	display:inline-block;
	zoom:1;
	cursor: pointer;
	outline: none;
}
.banner-carousel .owl-dots .owl-dot:focus{
	outline: none;
}
.banner-carousel .owl-dots .owl-dot span{
	width:0.625rem;
	height:0.625rem;
	margin-left:0.5rem;
	margin-right:0.5rem;
	background: rgba(255,255,255,0.6);
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	border-radius:30px;
}
.banner-carousel .owl-dots .owl-dot.active span{
	background:#ffffff;
	width:0.375rem;
	height:0.375rem;
	border-radius: 0.375rem;
	opacity: 1;
	margin-top:-0.5rem;
	margin-right:0.625rem;
	margin-left:0.625rem;
	position: relative;
}
.banner-carousel .owl-dots .owl-dot.active span:after{
	content: "";
	width:1.25rem;
	height:1.25rem;
	border: 1px solid #ffffff;
	border-radius: 1.25rem;
	position: absolute;
	top:-0.4375rem;
	left:-0.4375rem;
}


/*--------------------------------------------------------------
# carousel-control
--------------------------------------------------------------*/

.carousel-control-next,
.carousel-control-prev{
	font-size: 1rem;
	height: 2.5rem;
	width: 2.5rem;
	opacity: 0;
	top: calc(50% - 2.5rem);
}
.carousel-control-prev{
	background-image:url(../images/index/button_prev.png);
}
.carousel-control-next{
	background-image:url(../images/index/button_next.png);
}
.carousel-control-prev:hover{
	background-image:url(../images/index/button_prev_hover.png);
}
.carousel-control-next:hover{
	background-image:url(../images/index/button_next_hover.png);
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right:1rem;
}
.carousel-control-prev {
	left: 1rem;
}




/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.footer{
	background-image: url(../images/footer_bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size:cover;
	color: rgba(255,255, 255, 0.8);
	font-size: 1rem;
	position: relative;
}

.footer p{
	margin:0;
	line-height:1.5;
}

.footer .footer-link{
	width:100%;
	padding:0 0 2rem 0;
	position: relative;
}
.footer .footer-link h6 {
	width: 20rem;
	height: 2.8rem;
	font-family: "MyFont";
	font-size: 1.5rem;
	color: #ffffff;
	line-height:1.5;
}
.footer .footer-link h6 span {
	color: rgba(255,255,255,0.15);
}
.footer .link {
}
.footer .link a{
	color: rgba(255,255, 255, 0.7);
	display:block;
	line-height: 2;
}
.footer .link a:hover{
	color: rgba(255,255, 255, 1);
}
.footer-top .line:before{
	content: "";
	width:1px;
	height:100%;
	background: rgba(252,231,194,0.21);
	position: absolute;
	left:0;
	top:0;
}
.footer .contact p{
	margin-bottom:0.625rem;
}
.footer .contact img{
	width:2.5rem;
	margin-right:0.625rem;
}
.footer .footer-top{

}

.footer .footer-bottom{
	border-top:1px solid  rgba(255,255,255,0.2);
	color: rgba(255, 255, 255, 0.6);
	padding:0.9375rem 0;
	text-align: center;
	font-size: 1rem;
}


/*--------------------------------------------------------------
# Sub-container
--------------------------------------------------------------*/
.sub-container{
	position: relative;
	background-color:#ffffff;
	padding-bottom:3.125rem;
}

.banner-sub {
	height:31.25rem;
}
.left-box{
	width: 300px;
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
	width:100%;
	border-left:3px solid #600064;
	box-shadow: 4px 2px 10px 0px #F6F3F8;
}
.sidebar-title{
	width:100%;
	height: 5rem;
	background-color: #600064;
	background-image: url(../images/ny/ny_left_bg.jpg);
	display: flex;
	align-items: center;
	position: relative;
}
.sidebar-title h3{
	font-weight: bold;
	font-size: 1.875rem;
	color: #ffffff;
	text-align: left;
	padding-left:1.25rem;
	margin:0;
}
.title-toggle-icon{
	width:2rem;
	height:2rem;
	background-image: url(../images/mo_index/mo_ny_nav01_hover.png);
	opacity: 0.5;
	background-size: 100%;
	position: absolute;
	right:1rem;
	top:1.5rem;
}

.sidebar.mo .sidebar-title{
	height: 4.625rem;
	justify-content: flex-start;
	padding-left:2.25rem;
}
.sidebar.mo .sidebar-title .title-toggle-icon{
	width:1.875rem;
	height:1.875rem;
	background-image: url(../images/mo_index/mo_ny_nav01_hover.png);
	opacity: 0.5;
	background-size: 100%;
	position: absolute;
	right:1rem;
	top:1.25rem;
}

.sidebar.mo .nav-link:hover,
.sidebar.mo .nav-item.active .nav-link,
.sidebar.mo .nav-item:focus-within .nav-link{
	font-size:1.5rem;
}
.side-nav {
	width:100%;
}

.sidebar.mo .side-nav .nav-item{
	border-bottom:1px solid #E4E2E6;;
}
.side-nav .nav-item {
	width:100%;
	position: relative;
	transition: all 0.5s ease;
}

.side-nav .nav-link {
	width:100%;
	min-height:4.375rem;
	display: flex;
	align-items: center;
	text-align: left;
	color:#333333;
	font-size:1.25rem;
	padding-left:1.25rem;
	transition: all 0.5s ease;
	border-bottom:1px solid #E4E2E6;
}

.side-nav .nav-link:hover,
.side-nav .nav-item.active .nav-link,
.side-nav .nav-item:focus-within .nav-link{
	font-weight: 900;
	color:#600064;
	transition: all .5s ease;
	border-bottom:1px solid #600064;
}

.side-nav .nav-item.active > .nav-link::after,
.side-nav .nav-item:hover > .nav-link::after,
.side-nav .nav-item:focus-within .nav-link::after{
	content: "";
	height:1.5rem;
	width:1.5rem;
	background-image: url(../images/ny/ny_left_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.3125rem;
	right: 1.25rem;
	transition: width 300ms ease;
}


.side-nav .collapse {
	transition: all 0.2s ease;
}
.side-nav .toggle-icon {
	position: absolute;
	font-size: 18px;
	transition: transform 0.25s;
	color: #6c757d;
	right:1.25rem;
	top:1.625rem;
}
.side-nav .nav-item.active .toggle-icon,
.side-nav .nav-item:hover .toggle-icon,
.side-nav .nav-item:focus-within .toggle-icon{
	color:#ffffff

}
.side-nav .nav-link.no-children .toggle-icon {
	display: none;
}
.side-nav .nav-link[aria-expanded="true"] .toggle-icon {
	transform: rotate(90deg);
}

.side-nav .submenu {
	list-style: none;
	margin: 0;
	padding-left:5.5rem;
}

.sidebar.mo .side-nav .submenu {
	list-style: none;
	margin: 0;
	padding:0.625rem 0 0.625rem 4rem ;
}
.sidebar.mo .side-nav .subnav-item{
	width:33.3%;
	float:left;
}
.sidebar.mo .side-nav .submenu .submenu-link{
	height:3.125rem;
	line-height: 3.125rem;
}
.side-nav .submenu-link {
	display: block;
	height:2.5rem;
	line-height: 2.5rem;
	text-align:left;
	color:#666666;
	font-size: 1.125rem;
	transition: background 0.2s;
}
.side-nav .submenu-link:hover,
.side-nav .submenu-link:focus,
.side-nav .submenu-link.active{
	color:#192E78;
}


/*address-bar*/
.address-bar{
	height:5rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom:1px solid #EFF0EF;
	width:100%;
}
.address-bar .lm-title {
	font-size: 1.5rem;
	gap: 9vw;
	color: #333333;
	position: relative;
	padding-left:0.625rem
}
.address-bar .lm-title:before {
	content: "";
	width: 0.3rem;
	height: 1.5rem;
	background: #192E78;
	position: absolute;
	left:0;
	top:0.4rem;
}

/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	font-size: 1rem;
}
.breadcrumb li{
	cursor: pointer;
	padding:0 0.9375rem;
	position: relative;
}
.breadcrumb li.active{
	color:#600064;
	font-weight: bold;
	cursor: default;
}
.breadcrumb li:first-child{
	padding-left:2.25rem;
}
.breadcrumb li:first-child span{
}
.breadcrumb li:first-child:before{
	content: "";
	background-image: url(../images/ny/ny_home.png);
	background-size: 100%;
	width:2.125rem;
	height:2.125rem;
	margin-right: 0.9375rem;
	color:#979797;
	position: absolute;
	left:0;
	top:-0.3125rem;
}
.breadcrumb li:first-child:hover:before{
	background: url(../images/ny/ny_home.png);
	color:#600064;
}
.breadcrumb li a{
	color:#979797;
}
.breadcrumb li:hover a,
.breadcrumb li a:hover{
	color:#600064;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	width:0.75rem;
	height:0.75rem;
	color:#979797;
	position: absolute;
	left: -0.625rem;
	top:0;
}

/*article*/
.article-box{
}
.article .title{
	margin-bottom:1.25rem;
	text-align: center;
	border-bottom: 1px solid rgba(217,217,217,0.78);
	padding:1.25rem 0;
}
.article .title h2{
	font-size: 2.125rem;
	font-weight: bold;
	color: #333333;
	line-height: 1.5;
	margin-bottom:1.25rem;
}
.article .title-2{
	margin-bottom:1.25rem;
	text-align:left;
}
.article .title-2 h2{
	font-size: 2.125rem;
	font-weight: bold;
	color: #333333;
	line-height: 1.5;
}
.article .publish-info{
	font-size: 1rem;
	color: #9F9E9E;
}

.teacher-intro{
	cursor: pointer;
	position: relative;
}

.teacher-intro:after {
	content: "";
	width: 100%;
	height:100%;
	background-image: url(../images/ny/ny_tu10.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top:0;
	left:0;
	z-index: 1;
}

.teacher-intro > * {
	position: relative;
	z-index: 2;
}
.teacher-intro .item-img {
	margin:0 auto;
	width:12rem;
	flex-shrink: 0;
}
.teacher-intro .item-img:before {
	content: "";
	width: 100%;
	height:100%;
	background:#600064;
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	z-index: 0;
}

.teacher-intro .item-img img{
	width:100%;
}
.teacher-intro .item-body{
	position: relative;
	padding-left:1.875rem;
	padding-top:0;
}

.teacher-intro .title {
	color: #600064;
	font-weight: 900;
	text-align: left;
	font-size: 1.5rem;
	margin-bottom: 1.75rem;
	position: relative;
}
.teacher-intro .title:after{
	content: "";
	height:2px;
	width:100%;
	background: linear-gradient(90deg, #600064, rgba(96,0,100,0));
	position: absolute;
	bottom:0;
	left:0;
}
.teacher-intro .title span{
	font-size: 1.125rem;
	margin-left:1.25rem;
	font-weight: normal;
}
.teacher-intro .summary {
	font-size: 1.125rem;
	color: #333333;
	padding: 0;
}
.teacher-intro .summary p{
	margin:0;
}


.article .more-article{
	padding:1.25rem 0;
	border-top: 1px solid rgba(217,217,217,0.78);
}

.article .more-article .item{
	display: block;
	padding:0.5rem 0;
	color:#333333;
	transition: all 500ms ease 0s;
	font-size: 1rem;
}

.article .more-article .item:hover{
	color:#600064;
	transition: all 500ms ease 0s;
}

.back-btn a{
	width:10rem;
	height:3.125rem;
	background: #ffffff;
	border: 1px solid #600064;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: #333333;
	margin:0.625rem auto;
}
.back-btn .img{
	margin-right:0.3125rem;
	width:1.375rem;
	height: 1.375rem;
	background-image: url(../images/ny/icon_xq_back.png);
}
.back-btn a:hover{
	color: #ffffff;
	background: #600064;
}
.back-btn a:hover .img{
	background-image: url(../images/ny/icon_xq_back_hover.png);
}

/*
block-title styles
*/

.block-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.25rem;
}

.block-title .title {
	position: relative;
	font-size: 2.5rem;
	color: #600064;
	font-weight: bold;
}
.block-title .title img{
	width:12rem;
}
.block-title .title_font {

}
.block-title .more {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.3rem;
	cursor: pointer;
	color: #666972;
	font-size: 1rem;
}
.block-title .more img {
	width:1.125rem;
}

.block-title .more:hover {
	color: #600064;
}

/*list-text*/
.list-text{
	position: relative;
	text-align: left;

}
.list-text li,
.list-text .item{
	cursor: pointer;
	transition: all 500ms ease 0s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding:1.8rem 0 1.4rem 0;
	border-bottom:1px solid #EDE8E3;
}

.list-text .title{
	font-size:2rem ;
	position: relative;
	width:calc(100% - 10rem);
	color:#333333 ;
}


.list-text li:hover .title,
.list-text .item:hover .title{
	color:#920303;
}
.list-text .time{
	width:10rem;
	display: block;
	color:#979797;
	font-size: 1.6rem;
	text-align: right;
}


/*list-text .media*/
.list-text .media{
	padding:1.4rem 0;
	border-bottom:1px solid #EDE8E3;
	cursor: pointer;
	position: relative;

}

.list-text .media .icon{
	width:3.8rem;
	height:3.8rem;
	background-size: 100%;
	margin-right:1.5rem;
}


.list-text .media .title{
	font-size:2rem ;
	font-weight: 400;
	margin:0;
	padding:0;
	position: relative;
	width:calc(100% - 10rem);
	color:#333333 ;
}
.list-text .media:hover .title{
	color:#920303;
}

.list-text .media .media-body{
	position: relative;
}

.list-text .media .time{
	color:#979797;
	font-size: 1.6rem;
	width:100px;
	position: absolute;
	right:0;
	top:0;
}

/*.list-text1*/

.list-text1{
}
.list-text1 .list-text1-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 500ms ease 0s;
	width:100%;
	text-align: left;
	position: relative;
	z-index: 1;
	padding:1.125rem;
}
.list-text1 .list-text1-item:after{
	content: "";
	height:1px;
	width:calc(100% - 2.5rem);
	background:#E4E2E6 ;
	position: absolute;
	bottom:0;
	left:1.25rem;
	right:1.25rem;

}
.list-text1 .list-text1-item:hover,
.list-text1 .list-text1-item.active {
	transition: all 500ms ease 0s;
	background-color: #600064;
	color:#ffffff;
}
.list-text1 .list-text1-item:hover::after,
.list-text1 .list-text1-item.active::after {
	background:transparent;
}
.list-text1 .title{
	width:calc(100% - 11rem)
}
.list-text1 .title h5{
	color: #333333;
	font-size: 1.25rem;
	line-height: 1.5;
}
.list-text1 .time {
	color:#908A90;
	height:2.075rem;
	padding-top:0.1rem;
	margin-top:0.8725rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.list-text1 .list-text1-item:hover h5,
.list-text1 .list-text1-item.active h5,
.list-text1 .list-text1-item:hover .time,
.list-text1 .list-text1-item.active .time{
	color:#ffffff;
}
.list-text1 .list-text1-item .img{
	width:10rem;
}

/*.list-text2*/
.list-text2{
}

.list-text2 .item {
	cursor: pointer;
	transition: all 500ms ease 0s;
	width:100%;
	text-align: left;
	padding:1.5rem;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0,0,0,0.02);
	position: relative;
	border: 1px solid transparent;
	z-index: 1;
	margin-bottom:1.25rem;
}

.list-text2 .item:hover {
}

.list-text2 .title {
	color: #333;
	font-size: 1.125rem;
	line-height: 1.5;
	transition: all 500ms ease 0s;
}
.list-text2 .item:hover .title{
	color: #600064;
	transition: all 500ms ease 0s;
}

.list-text2 .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}


/*.list-text3*/
.list-text3{
}

.list-text3 .item {
	display: block;
	cursor: pointer;
	padding:1.625rem 0;
	background: #ffffff;
	position: relative;
	border-bottom: 1px solid #E4E2E6;
	z-index: 1;
}

.list-text3 .title {
	transition: all 500ms ease 0s;
	position: relative;
	padding-left:1.25rem;
}
.list-text3 .title h5{
	font-size: 1.125rem;
	line-height: 1.5;
	color: #333333;
}
.list-text3 .item:hover .title{
	color: #600064;
	transition: all 500ms ease 0s;
}
.list-text3 .title:before {
	content: "";
	width:1rem;
	height:1rem;
	background:url(../images/index/icon_list1.png);
	position: absolute;
	top: 0.3125rem;
	left:0;
	transition: all 500ms ease 0s;
}
.list-text3 .item:hover .title:before {
	background:url(../images/index/icon_list1_hover.png);
	transition: all 500ms ease 0s;
}
.list-text3 .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}

.card-dj{
	border-radius: 0;
	border:0;
	background: #F7F8FD;
}
.card-dj .card-body{
	padding:1.5rem;
}
.card-dj .card-img{
	border-radius: 0;
}
.card-dj .title-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.card-dj .card-title{
	font-size: 1.125rem;
	line-height: 1.8;
	color:#333333;
	width:calc(100% - 6.75rem)
}
.card-dj .card-text{
	color:#787878;
	font-size: 1rem;
	line-height: 1.625;
}
.card-dj .time{
	width:6rem;
	margin-top:-0.3125rem;
	color:#600064;
	font-family: "MyFont-time";
}
.card-dj .time .year{
	font-size: 1rem;
	line-height: 1.5;
	font-family: "MyFont-time";
}
.card-dj .time .day{
	font-size: 2.125rem;
	line-height: 1;
}

/*.list-xsfc*/
.list-xsfc{
	background: #600064;
}

.list-xsfc .item {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding:1.0751rem 1rem;
	position: relative;
	color:#ffffff;
}
.list-xsfc .item:after{
	content: "";
	width:calc(100% - 2rem);
	height:1px;
	background: rgba(255,255,255,0.2);
	position: absolute;
	bottom:0;
	left:1rem;
	right:1rem;
}
.list-xsfc .item:hover{
	background: rgba(0,0,0,0.2);
}
.list-xsfc .item .icon{
	width:3.125rem;
	height:3.125rem;
}
.list-xsfc .title {
	position: relative;
	padding-left:1.25rem;
}
.list-xsfc .title h5{
	font-size: 1.125rem;
	line-height: 1.6;
	margin:0;
	padding:0;
}


/*--------------------------------------------------------------
# Home style
--------------------------------------------------------------*/
.bg-01{
	background-image: url(../images/index/index_bg1.jpg);
	background-position:bottom center;
	background-repeat: no-repeat;
}

.bg-03{
	background-image: url(../images/index/index_bg3.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	padding-bottom:6.25rem;
}
.section1{
	padding:2.5rem 0;
}




/*news-slide*/

.news-slide .carousel-inner{
	padding-bottom:9rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.news-slide .carousel-item{
	position: relative;
	z-index: 1;

}
.news-slide .carousel-item .time{
	position: absolute;
	z-index: 1;
	top:1rem;
	left:0;
	width:5rem;
	height:5rem;
	color:#ffffff;
	font-size: 1.375rem;
	background: #600064;
	line-height: 1;
	padding: 1.125rem 0.625rem;
	font-family: "MyFont-time";
}
.news-slide .carousel-item .year{
	font-size: 1rem;
}
.news-slide .carousel-caption{
	border: 1px solid #D5D9E5;
	background: #ffffff;
	border-top:none;
	height:9rem;
	width:100%;
	border-radius: 0;
	padding:1.25rem;
	text-align: left;
	position: absolute;
	left:0;
	bottom:-9rem;
}
.news-slide .carousel-caption h5{
	font-size:1.375rem;
	text-align: left;
	color:#600064;
	line-height: 1.5;
}
.news-slide .carousel-caption p{
	margin-top:1rem;
	font-size: 1rem;
	color:#333333;
}

.news-slide .carousel-control-next,
.news-slide .carousel-control-prev{
	background-color: rgba(0,0,0,0.3);
	font-size: 1rem;
	height: 4rem;
	width: 2rem;
	border-radius:0;
	opacity: 0;
	top: calc(50% - 2.5rem);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;

}

.news-slide .carousel-control-next {
	right:0;
}
.news-slide .carousel-control-prev {
	left: 0;
}
.news-slide .carousel-control-next:hover,
.news-slide .carousel-control-prev:hover{
	background-color:rgba(255,255,255,0.5);
	color: #368599;
}

.section2{
}

.section-tj{
	background-image: url(../images/index/index_bg2.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color:#600064 ;
	padding:5rem 0;
}
.section-tj .tj-logo{
	width:100%;
}
.section-tj .icon{
	margin:0 auto;
	width:9.25rem;
	height:9.25rem;
	background-image: url(../images/index/index_tj_icon_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-tj .icon img{
	width:60%;
}
.section-tj .text{
	color:#ffffff;
	font-size: 1.375rem;
	text-align: center;

}
.section-tj .text .number{
	color: #ffffff;
	font-size: 2.5rem;
	font-family: "MyFont" !important;
	padding-left:0.3125rem;
	font-variant-numeric: tabular-nums;
}
.section-tj .text .number:after{
	content: "+";
}



.section-tj2{
	padding:1.875rem 0;
	background:#ffffff;
}
.section-tj2 .tj-logo{
	width:100%;
}
.section-tj2 .icon{
	margin:0 auto;
	width:9.25rem;
	height:9.25rem;
	background-image: url(../images/index/index_tj_icon_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-tj2 .icon img{
	width:60%;
}
.section-tj2 .text{
	color:#240053;
	font-size: 1.375rem;
	text-align: center;

}


.section3{
}

.section4{
	background-image:url(../images/index/index_bg3.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #F7F8FD;
	position: relative;
}





.jlhz-carousel {


.single {
	padding:0;
}
.single .card{
	border-radius: 0;
}

.single .card{
	border-radius: 0;
	border:0;
	background: #F7F8FD;
}
.single .card .card-body{
	padding:1.5rem 0;
}
.single .card .card-img{
	border-radius: 0;
	position: relative;
}

.single .card .card-title{
	font-size: 1.125rem;
	line-height: 1.8;
	color:#333333;
}

.single .card .card-text{
	color:#787878;
	font-size: 1rem;
	line-height: 1.625;
}
.single .card .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.single .card:hover .card-title,
.single .card:hover .time{
	color:#600064;
}

}/*jlhz-carousel */

/*owl-nav*/
.jlhz-carousel .owl-nav {
	position: absolute;
	top:25%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.jlhz-carousel .owl-nav .owl-prev,
.jlhz-carousel .owl-nav .owl-next {
	position: absolute;
	height: 4rem;
	width: 2rem;
	border: none!important;
	text-align: center;
	opacity: 1;
	color:transparent;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}
.jlhz-carousel:hover .owl-nav .owl-prev,
.jlhz-carousel:hover .owl-nav .owl-next {
	opacity: 1;
}
.jlhz-carousel .owl-nav .owl-prev {

	left: 0;
	top: 0;
}
.jlhz-carousel .owl-nav .owl-next {
	right: 0;
	top: 0;
}

.jlhz-carousel .owl-nav .owl-prev:after,
.jlhz-carousel .owl-nav .owl-next:after{
	content: "";
	position: absolute;
	top: 0;
	height: 4rem;
	width: 2rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.jlhz-carousel .owl-nav .owl-prev:after {
	background-image:url(../images/index/button_prev.png);
	background-size: 100%;
	background-position: left;
	left: 0;
}

.jlhz-carousel .owl-nav .owl-next:after {
	background-image:url(../images/index/button_next.png);
	background-size: 100%;
	background-position: left;
	right: 0;
}

.jlhz-carousel .owl-nav .owl-next:hover:after {
	background-image:url(../images/index/button_next_hover.png);
	background-size: 100%;
	background-position: right;

}
.jlhz-carousel .owl-nav .owl-prev:hover:after {
	background-image:url(../images/index/button_prev_hover.png);
	background-size: 100%;
	background-position: right;
}
/*.jlhz-carousel .owl-nav .owl-prev:hover,*/
/*.jlhz-carousel .owl-nav .owl-next:hover {*/
/*opacity: 0.8;*/
/*background-color: #fff;*/
/*}*/


/*.owl-dots*/
.jlhz-carousel .owl-dots {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jlhz-carousel .owl-dots .owl-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: 0 10px;
	display: inline-block;
	text-align: center;
	background: rgba(25,46,120,0.5);
	position: relative;
}

.jlhz-carousel .owl-dots .owl-dot.active {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #192E78;
}
.jlhz-carousel .owl-dots .owl-dot.active:after{
	content: "";
	width: 21px;
	height: 1px;
	background: #192E78;
	position: absolute;
	left:10px;
	top:5px;
}
.jlhz-carousel .owl-dots .owl-dot:last-child.active:after{
	content: "";
	width: 21px;
	height: 1px;
	background: none;
	position: absolute;
	left:10px;
	top:5px;
}




.section5{

.fc-pic .card{
	border-radius: 0;
	padding:0;
	border: none;
	background: transparent;
	position: relative;
	overflow: hidden;
}
.fc-pic .card .caption{
	height:3.75rem;
	width:100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	color:#ffffff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0 1rem;
}
.fc-pic .card .caption h5{
	font-size: 1.125rem;
}
.ratio-pic1{
	aspect-ratio: '16:9';
}
.ratio-pic1:before{
	padding-top: 56.25%;
}
.ratio-pic2{
	aspect-ratio: '16:10';
}
.ratio-pic2:before{
	padding-top: 62.5%;
}

.fc-pic .card.yj-rt{
	margin-top:-92px;
}
.fc-pic .card.yj-rb{
	border-radius:0 0 100px 0
}
}/*end sction5*/



/* 右侧悬浮触发按钮：校园服务 */
.links-float-1 {
	position: fixed;
	top: 40%;
	right: 0;
	transform: translateY(-50%);
	z-index: 999;
	width: 3.5rem;
	height: 11rem;
	background-image:url(../images/index/index_right_bg.png);
	background-position: top center;
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 6px 0 0 6px;
}
.links-float-1 a {
	display: block;
	padding-top:2.25rem;
	color: #fff;
	font-size: 1rem;
}

.links-float-1 a span {
	display: block;
	text-align: center;
}

.links-float {
	position: fixed;
	top: 50%;
	right: -10rem;
	width:8.75rem;
	height:37.5rem;
	background-image:url(../images/index/index_right_bg.png);
	transform: translateY(-50%);
	z-index: 999;
	padding:9.25rem 0.625rem 0.625rem 0.625rem;
	transition: all 0.5s ease;
}
.links-float.show {
	right: 0;
	transition: all 0.5s ease;
}
.links-float .item {
	display:block ;
	background:rgba(255,255,255,0.1);
	margin-bottom:1px;
	color:#ffffff;
	text-align: center;
	padding:0.45rem 0;
}
.links-float .item img{
	margin-bottom:0.3125rem;
}
/*--------------------------------------------------------------
# sub content style
--------------------------------------------------------------*/
.content-main{
	background: #ffffff;
}

/*list-leader*/
.list-leader .item{
	background: #F3F6FB;
	padding:1rem 1.25rem;
}
.list-leader .title{
	font-weight: bold;
	font-size: 1.25rem;
	color: #192E78;
	border-bottom:1px solid #ebebeb;
	padding-bottom:1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:0.625rem;
}
.list-leader .intro{
	padding:1rem 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 1.125rem;
	min-height:5.5rem;
}
.list-leader .intro .zw{
	width:10rem;
}
.list-leader .intro .zw span{
	display: block;
}
.list-leader .intro .zw{
	flex-shrink:0;
}
/*list-zzjgt*/
.list-zzjg{
	background: #F7F8FD;
	padding:1.25rem;
	margin-bottom: 1.25rem;
}
.list-zzjg .title{
	background-image: url(../images/ny/ny_tu1.png);
	height:3.125rem;
	display: flex;
	align-items: center;
	padding-left:1.25rem;
	font-weight: bold;
	font-size: 1.25rem;
	color: #ffffff;
}
.list-zzjg .item{
	display: block;
	background: #ffffff;
	padding:1.25rem 1rem;
	font-size: 1.125rem;
}
.list-zzjg .item:hover{
	color:#600064;
}
/*sub-list-title*/
.sub-list-title .item{
	padding:1.5rem 1rem;
	cursor: pointer;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	z-index: 0;
}
.sub-list-title .item:nth-child(odd){
	background: #F7F8FD;
}
.sub-list-title .item:after {
	content: "";
	width:100%;
	height:100%;
	background: #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 300ms ease; /* 更快更丝滑 */
	transition: all 300ms ease;
	z-index: 1;
}
.sub-list-title .item:hover::after {
	opacity: 1;
	-webkit-transition: all 300ms ease; /* 更快更丝滑 */
	transition: all 300ms ease;
}
.sub-list-title .item .title{
	color:#333333;
	margin:0;
	padding: 0;
	font-size:1.25rem;
	position: relative;
	z-index: 2;
}
.sub-list-title .item:hover .title{
	color:#ffffff;
}

.sub-list-title .item .time{
	color:#979797;
	width:7rem;
	font-family: "MyFont-time";
	position: relative;
	z-index: 2;
	text-align: right;
	display: flex;
	align-items: center;
}
.sub-list-title .item:hover .time{
	color:#ffffff;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-title .item .time span{
	display: inline-block;
}
.sub-list-title .item .time-icon{
	width:1.2rem;
	height: 1rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	margin-left:0.5rem;
}
.sub-list-title .item:hover .time-icon{
	background-image: url(../images/ny/icon_list_right_hover_white.png);
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-title.download .item .title{
	padding-left:2rem;
	background-image: url(../images/ny/icon_list_files.png);
	background-repeat: no-repeat;
	background-size: 1.5rem 1.5rem;
	background-position: left;

}
.sub-list-title.download .item:hover .title{
	background-image: url(../images/ny/icon_list_files_hover.png);
}
.sub-list-title.download .item .download-icon{
	width:1.5rem;
	height: 1.5rem;
	background-image: url(../images/ny/icon_list_download.png);
	background-size: 100%;
	display: inline-block;
	margin-left:0.5rem;
}
.sub-list-title.download .item:hover .download-icon{
	background-image: url(../images/ny/icon_list_download_hover.png);
	-webkit-transition: 500ms;
	transition: 500ms;
}
/*sub-list-media */
.sub-list-media{
}
.sub-list-media .item {
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height:4.375rem;
	padding:2rem 0;
	border-bottom: 1px solid #E4E2E6;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
}


.sub-list-media .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 2px;
	border-bottom: 2px solid #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

/* 鼠标滑过：宽度变100%，从左到右展开 */
.sub-list-media .item:hover::after {
	width: 100%;
}

.sub-list-media .item .item-body{
	position: relative;
	padding-left:1.875rem;
	padding-right:6rem;
}
.sub-list-media .item .item-body:before{
	content: "";
	height:100%;
	width:1px;
	background: #E1E3EB;
	position: absolute;
	left:0;
	top:0;
}
.sub-list-media .item .item-body{
	background-image: url(../images/ny/icon_list_right.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 1.625rem;
}
.sub-list-media .item:hover .item-body{
	background-image: url(../images/ny/icon_list_right_hover.png);
}
.sub-list-media .title {
	color: #333;
	font-size: 1.25rem;
	line-height:1.8;
	margin-bottom: 0.5rem;
}

.sub-list-media .item:hover .title{
	color: #600064;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-media .summary {
	font-size: 1rem;
	color: #979797;
	line-height: 1.8;
}
.sub-list-media .time {
	width:6.875rem;
	flex-shrink:0;
	height:3.75rem;
	text-align: left;
	font-family: "MyFont-time";
}
.sub-list-media .time .day{
	font-size: 2.125rem;
	color: #600064;
	line-height: 36px;
	display: block;
}
.sub-list-media .time .year{
	font-size: 1.125rem;
	color: #787878;
	display: block;
}

.sub-list-media .item:hover .year{
	color: #600064;
	-webkit-transition: 500ms;
	transition: 500ms;
}
/*sub-list-tuwen */
.sub-list-tuwen{

}
.sub-list-tuwen .item {
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding:2.5rem 0;
	border-bottom: 1px solid #E7E9EC;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
}


.sub-list-tuwen .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 2px;
	background: #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-tuwen .item:hover::after {
	width: 100%;
}

.sub-list-tuwen .item .item-body{
	width:calc(100% - 19rem);
	position: relative;
	padding-left:1.25rem;
}

.sub-list-tuwen .title {
	color: #333;
	font-size: 1.25rem;
	line-height: 1.8rem;
	margin-bottom: 0.5rem;
}

.sub-list-tuwen .item:hover .title{
	color: #600064;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-tuwen .summary {
	font-size: 1rem;
	color: #979797;
	line-height: 1.8;
}

.sub-list-tuwen .item-img {
	width:19rem;
}
.sub-list-tuwen .item-img img{
	width:100%;
}
.sub-list-tuwen .time{
	color:#600064;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.sub-list-tuwen .item:hover .time{
	color: #600064;
}


.sub-list-tuwen .more{
	width:5.75rem;
	height:1rem;
	font-size: 1rem;
	position: relative;
}
.sub-list-tuwen .more:after{
	content: "";
	width:1rem;
	height:1rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	position: absolute;
	right:0;
	top:0.3125rem

}
.sub-list-tuwen .item:hover .more:after{
	background-image: url(../images/ny/icon_list_right_hover.png);
}


/*list-card-ty*/
.list-card-ty{

}
.list-card-ty .item{
	display: block;
	background: #ffffff;
	border-bottom:1px solid #D5DADF;
	margin-bottom:1.25rem;
}
.list-card-ty .item .caption{
	background: #ffffff;
	padding:0.625rem 0;
	text-align:left;
	transition: all 500ms ease 0s;
}
.list-card-ty .item:hover .caption{
	background: #600064;
	padding:0.625rem 1rem;
	transition: all 500ms ease 0s;
}
.list-card-ty .item .title{
	font-size: 1.125rem;
	line-height: 1.6;
	text-align: left;
	color:#333333;
}
.list-card-ty .item:hover .title{
	color:#ffffff;
}
.list-card-ty .item .title.small{
	height:1.5rem;
}
.list-card-ty .item .time{
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";

}
.list-card-ty .item:hover .time{
	color:#ffffff;
}

.list-card-ty .item .icon-right{
	width:1.25rem;
	height:1.25rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
}

.list-card-ty .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover.png);
}

/*sub-list-video*/
.sub-list-video .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.25rem;
	cursor: pointer;
	position: relative;
}

.sub-list-video .item img{
	filter: brightness(0.5);
}
.sub-list-video .item:hover img{
	filter: brightness(0.8);
}
.sub-list-video .icon-play{
	width:2.5rem;
	height:2.5rem;
	background-image: url(../images/index/index_tu15.png);
	background-size: 100%;
	position: absolute;
	top:calc(50% - 2.75rem);
	left:calc(50% - 1.125rem);
}

.sub-list-video .item .caption{
	background: #F3F6FB;
	height:3.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color:#333333;
	transition: all 500ms ease 0s;
}

.sub-list-video .item .caption .title{
	position: relative;
	color:#333333;
	font-size: 1.125rem;
	z-index: 10;
}
.sub-list-video .item .caption::after {
	content: "";
	width: 0;
	height:3.5rem;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-video .item:hover .caption::after {
	width: 100%;
}
.sub-list-video .item:hover .caption .title{
	color:#ffffff;
}


.sub-block-title{
	height: 3.125rem;
	background: #E6EFFE;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	font-weight: bold;
	font-size: 1.5rem;
	color: #384987;
	padding-left:2rem;
	position: relative;
}
.sub-block-title:before{
	content: "";
	width: 0.5rem;
	height:0.5rem;
	background: #192E78;
	border-radius: 50%;
	position: absolute;
	left:0.9375rem;
	top:1.375rem;
}

.sub-block-title-s{
	height:2.8125rem;
	background: #E6EFFE;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	font-weight: bold;
	font-size: 1.25rem;
	color: #384987;
	padding-left:1.75rem;
	position: relative;
}
.sub-block-title-s:before{
	content: "";
	width: 0.5rem;
	height:0.5rem;
	background: #192E78;
	border-radius: 50%;
	position: absolute;
	left:0.75rem;
	top:1.2rem;
}
/*sub-list-keyan*/
.sub-list-keyan .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.25rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.sub-list-keyan .item .caption{
	background: #F3F6FB;
	padding:0 1.25rem 1.25rem 1.25rem;
	color:#333333;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-keyan .item .caption .title{
	height: 5.625rem;
	color:#192E78;
	font-size: 1.375rem;
	font-weight: 900;
	border-bottom:1px solid #CFD4E7;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.sub-list-keyan .item .caption .summary{
	margin-top:0.9375rem;
	height: 6rem;
	color:#333333;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}
.sub-list-keyan .item .caption::after {
	content: "";
	width: 0;
	height:100%;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-keyan .item:hover .caption::after {
	width: 100%;
}
.sub-list-keyan .item:hover .title{
	color:#ffffff;
}
.sub-list-keyan .item:hover .summary{
	color:rgba(255,255,255,0.6);
}
/*sub-list-keyan-ty*/
.sub-list-keyan-td .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.875rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.sub-list-keyan-td .item .caption{
	background: #ffffff;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-keyan-td .item .title{
	height: 2.8125rem;
	color:#192E78;
	font-size: 1.25rem;
	border-bottom:1px solid #192E78;
	display: flex;
	align-items: center;
	justify-content:space-between;
}
.sub-list-keyan-td .item .title strong{
	font-weight: normal;
}
.sub-list-keyan-td .item:hover .title strong{
	font-weight: 900;
}
.sub-list-keyan-td .item .title span{
	font-size: 1rem;
}
.sub-list-keyan-td .item .summary{
	margin-top:0.9375rem;
	height: 5.5rem;
	color:#787878;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}
.sub-list-keyan-td .item .more{
	height: 2.8125rem;
	padding:0 1.125rem;
	font-size: 0.875rem;
	background: #F3F6FB;
	margin-top:1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 0;
}
.sub-list-keyan-td .item .more span{
	color:#9D9C9C;
}
.sub-list-keyan-td .item .icon-right{
	width:1.25rem;
	height:1.25rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	position: relative;
	z-index: 2;
}

.sub-list-keyan-td .item .more:after {
	content: "";
	width: 0;
	height:100%;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-keyan-td .item:hover .more:after {
	width: 100%;
}
.sub-list-keyan-td .item:hover .more span{
	color:#ffffff;
	position: relative;
	z-index: 2;
}
.sub-list-keyan-td .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover_bai.png);
}
.sub-list-keyan-td .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover_bai.png);
}

/*sub-list-shizi*/
.sub-list-shizi .item{
	display: block;
	margin-bottom:1.25rem;
	padding:1.25rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border: 1px solid transparent;
}
.sub-list-shizi .item:after{
	content: "";
	height:1px;
	width:calc(100% - 1.25rem);
	background: #DAD6DE;
	position: absolute;
	left:1.25rem;
	bottom:0;
}
.sub-list-shizi .item:hover:after{
	content: "";
	height:2px;
	width:100%;
	background: #600064;
	position: absolute;
	left:0;
	bottom:0;
}
.sub-list-shizi .item:hover{
	background: #F7F8FD;
	border: 1px solid #E8E9F3;
	border-bottom: 1px solid transparent;
}
.sub-list-shizi .item .caption{
	color:#333333;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-shizi .item .caption .title{
	margin-top:-3.75rem;
	height:3.75rem;
	padding-bottom:0.3125rem;
	background: linear-gradient(to top, rgba(96, 0, 100, 1), rgba(96, 0, 100, 0));
	color:#ffffff;
	font-size: 1.125rem;
	font-weight: 900;
	display: flex;
	align-items: flex-end;
	justify-content:center;
	position: relative;
	z-index: 2;
}
.sub-list-shizi .item .caption .summary{
	margin-top:0.9375rem;
	color:#333333;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

/*sub-list-ld*/
.sub-list-ld .item{
	padding:0.625rem 1.25rem;
	margin:0.875rem 0;
	min-height:7.15rem;
	background: #F7F8FD;
	cursor: pointer;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	color:#333333;
	font-size:1.125rem;
}


.sub-list-ld .item .name{
	width:9rem;
	flex-shrink:0;
	font-size:1.25rem;
	text-align: left;
	color: #600064;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap:0.625rem;
}
.sub-list-ld .item div{
	position: relative;
}
.sub-list-ld .item .zw,
.sub-list-ld .item .fggz{
	padding-left:6%;
}
.sub-list-ld .item .zw:after,
.sub-list-ld .item .fggz:after{
	content: "";
	width:1px;
	height:1rem;
	background-color: #C0C7D2;
	position: absolute;
	left:0;
	top:calc(50% - 0.5rem);
}@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/

body {
	font-size: 16px;
	line-height: 1.5;
	color: #333333 ;
}

@font-face {
	font-family: "MyFont";
	src: url('../fonts/SC-Heavy.woff2') format('woff2'),
	url('../fonts/SC-Heavy.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "MyFont-time";
	src:url('../fonts/roboto-latin-400-normal.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
ul li{
	list-style: none;
	padding:0;
	margin:0;
}
a {
	color:#666666;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a:hover {
	color:#333333;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1500px;
	}
}

.scroll-to-top {
	display: inline-block;
	width: 3.125rem;
	height: 3.125rem;
	background: linear-gradient(45deg, #600064, #600064) !important;
	border-radius: 50%;
	position: fixed;
	bottom: 2.5rem;
	right: 2.5rem;
	z-index: 990;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
}

@media (max-width: 480px) {
	.scroll-to-top {
		width: 2.5rem;
		height: 2.5rem;
	}
}

.scroll-to-top i {
	font-size: 18px;
	line-height: 3.125rem;
	color: #fff;
	position: relative;
	z-index: 10;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.scroll-to-top:hover i {
	color: #fff;
}
@media (max-width: 480px) {
	.scroll-to-top i {
		font-size: 14px;
		line-height: 2.5rem;
	}
}

.w-120{width:150%!important;}

.ratio-box {
	position: relative;
	overflow: hidden;
	width:100%;
}

.ratio-box > img {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.ratio1-1 {
	aspect-ratio:1/1;
}
.ratio3-1{
	aspect-ratio: 3/1;
}

.ratio-3{
	aspect-ratio: 4/3;
}
.ratio16-9{
	aspect-ratio: 16/9;
}
.ratio16-10{
	aspect-ratio: 16/10;
}
.ratio10-16{
	aspect-ratio: 10/16;
}
.ratio3-4{
	aspect-ratio: 3/4;
}



/*bootstrap thumbnail特效1207*/
.thumbnail{
	overflow: hidden;
	padding: 0;
	position: relative;
	cursor: pointer;
}
.thumbnail:hover{
	text-decoration: none;
}
.thumbnail img{
	cursor: pointer;
	transition: all 0.6s;
	position: absolute;
	top: 50%;
	left:0!important;
	transform: translateY(-50%);
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.05) translateY(-50%);
	position: absolute;
	top: 50%;
}


/*text-truncate*/
.text-truncate-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.text-truncate-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.text-truncate-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
	background-color: #ffffff;
	z-index: 91;
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.main-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;

}

.main-nav .inner-container {
	padding:1rem 0;
}

.main-nav .top-box{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: flex-end;
	justify-content: space-between;
	position: relative;

}
.main-nav .nav-right{
	width:calc(100% - 540px);

}
.main-nav .logo-box {
	width:490px;
}
.main-nav .logo-box img{
	width:100%;
}

.main-nav .side-menu__toggler {
	display: none;
	width:36px;
}
.main-nav .side-search{
	display: none;
	width:36px;
	margin-right:0;
}
.search-box {
	position: relative;
	width: 12.5rem;

}
.search-box .search-icon {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 24px;
	height:24px;
	cursor: pointer;
	display: block;
	background-image:url(../images/icon_search.png);
	background-size: 100%;
}
.search-box .search-icon:hover {
}
.input_box {
	width: 12.5rem;
	height: 2.125rem;
	background: rgba(255,255,255,0.1);
	border-radius: 2rem;
	border: 1px solid rgba(255,255,255,0.2);
	padding-left:15px;
	color:#ffffff;
}

.input_box:focus {
	outline: none;
}
.input_box::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* Firefox 19+ */
.input_box::-moz-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* IE 10-11 */
.input_box:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* 标准写法 - 放在最后 */
.input_box::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.main-nav .main-navigation {
	width:100%;
	position: relative;
	z-index: 100;
	height:60px;
}

.main-nav .main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-navigation .dropdown-btn {
	display: none;
}

.main-nav .main-navigation .navigation-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav .navigation-box>li {
	width:100%;
	text-align: center;
	position: relative;
	margin:0 5px;
}

.main-nav .navigation-box>li+li a{

}

.main-nav .navigation-box>li>a {
	padding:15px 0 ;
	font-size: 1.25rem;
	font-weight: bold;
	color:#ffffff;
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: 500ms;
	word-break: keep-all;
}


.main-nav .navigation-box>li:hover >a:after {
	content: "";
	height:3px;
	width:80%;
	background: #ffffff;
	position: absolute;
	bottom:0;
	left:10%;
	transition: 500ms;
}

.main-nav .navigation-box>li.active >a:after{
	content: "";
	height:3px;
	width:80%;
	background: #ffffff;
	position: absolute;
	bottom:0;
	left:10%;
	transition: 500ms;
}

.main-nav .navigation-box .dropdown>a::after {
	content: "";
	font-family: "";
	font-size: 12px;
	font-weight: 900;
	margin-left: 0;
}


/* Second level menu */

.main-navigation .navigation-box > li > ul {
	position: absolute;
	width: 250px;
	left: 10%;
	padding: 0 5px;
	background-color: rgba(255,255,255,0.95);
	border-radius: 0;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: perspective(300px) scaleY(0) translateZ(0);
	transform: perspective(300px) scaleY(0) translateZ(0);
	visibility: hidden;
	opacity: 0;
	transition: transform 500ms ease, opacity 500ms ease, visibility 0s 500ms;
	z-index: 991;
}
.main-navigation .navigation-box > li:last-child > ul,
.main-navigation .navigation-box > li:nth-last-of-type(2) > ul{
	position: absolute;
	width: 250px;
	right: 10%!important;
	left:auto;
}
.main-navigation .navigation-box > li:hover > ul {
	-webkit-transform: perspective(300px) scaleY(1) translateZ(0);
	transform: perspective(300px) scaleY(1) translateZ(0);
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}

.main-navigation .navigation-box>li ul>li {
	position: relative;
	text-align: left;
	padding-top: 0.9357rem;
	padding-bottom: 0.9357rem;
	padding-left: 0.625rem;
	padding-right:0.625rem;
}
.main-navigation .navigation-box>li ul>li:after {
	content: "";
	height:1px;
	width:100%;
	background:rgba(0,0,0, 0.1) ;
	position: absolute;
	left:0;
	bottom:0;
}
.main-navigation .navigation-box>li ul>li:hover::after {
	height:2px;
	background:#600064;
}
.main-navigation .navigation-box>li ul .dropdown>a {
	position: relative;
}

.main-navigation .navigation-box>li ul .dropdown>a::after {
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-90deg);
	transform: translateY(-50%) rotate(-90deg);
}

.main-navigation .navigation-box>li ul>li+li {

}

.main-navigation .navigation-box>li ul>li>a {
	position: relative;
	display: block;
	color: #333333;
	font-size: 1.125rem;
	line-height:1.5;
	word-break: break-all;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	overflow: hidden;
}

/* stricked menu */
.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color:rgba(96,0,100,0.8);
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.stricked-menu.stricky-fixed {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}


/*-------------------------------------------------------------- 
 # SideMenu 
 --------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: right center;
	-webkit-transition: -webkit-transform 0.7s ease;
	transition: -webkit-transform 0.7s ease;
	transition: transform 0.7s ease;
	transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.side-menu__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.side-menu__block-overlay {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.7;
}

.side-menu__block-inner {
	position: relative;
	width: 19rem;
	margin-left: auto;
	height: 100vh;
	background-color:#ffffff;
	z-index: 999999;
	overflow-y: auto;
	padding:0;
}
.side-menu__block-inner {
.search-box-mo {
	position: relative;
	padding:1.25rem;

}
.search-box-mo img,
.search-box-mo .search-icon {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	width: 3rem;
	cursor: pointer;
	font-size: 1.75rem;
	display: inline-block;
	color:#600064 ;
}
.search-box-mo .search-icon:hover {
	color:#600064;
}
.search-box-mo .input_box {
	background: rgba(255, 255, 255, 1);
	height:3rem;
	padding: 0.3125rem 2.5rem 0.3125rem 0.625rem;
	font-size: 1rem;
	border-radius: 2.25rem;
	border: 1px solid #600064;
	color:#333333;
	width:100%;
}
}

.side-menu__close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 9999999;
	font-size: 24px;
	color: #fff;
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__logo {
	height:4.8rem;
	display:flex;
	background:#600064;
	align-items: center;
	padding:1.25rem;
}
.side-menu__logo img{
	width:80%;
	position: relative;
	z-index: 10;
}


/* mobile-nav menu */
.mobile-nav__container {
	margin: 0 0;
	border-bottom: 1px solid #DBDCE0;
}

.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


.mobile-nav__container ul>li .nav-icon{
	background:#600064;
	border-radius: 50%;
	display: inline-block;
	width:2rem;
	height:2rem;
	text-align: center;
}
.mobile-nav__container ul>li .nav-icon img{
	width:60%;
}

.mobile-nav__container li.dropdown ul {
	display: none;
}

.mobile-nav__container li.dropdown {
	position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
	border: none;
	outline: none;
	width: 1.75rem;
	height: 1.75rem;
	font-size: 1.75rem;
	color: #b4b4b4;
	background-color: transparent;
	position: absolute;
	top: 1.25rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
	right: 1rem;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-nav__container li+li {
	border-top: 1px solid #DBDCE0;
}

.mobile-nav__container li>ul {
	background: #ffffff;
	border-top: 1px solid #DBDCE0;
	padding:0 36px;
}
.mobile-nav__container li>ul li{
	border-top: 1px solid #DBDCE0;
}
.mobile-nav__container li a {
	text-transform: uppercase;
	color: #333333;
	font-size: 1.75rem;
	display: block;
	padding: 1.5rem 0;
	padding-left: 1rem;
	padding-right: 1rem;
	transition: all 500ms ease;
	position: relative;
}

.mobile-nav__container li a:hover {
	background: rgba(96,0,100,0.06);
}

.mobile-nav__container li.active>a {
	color:#600064;
	font-weight: bold;
	background: rgba(96,0,100,0.06);
}
.mobile-nav__container li.active >a:after{
	content: "";
	width: 3.375rem;
	height: 3.375rem;
	font-size: 3.375rem;
	color: #b4b4b4;
	background-color: transparent;
	background-image: url(../images/mo_index/mo_icon_nav01_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.15rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}
.mobile-nav__container li.active .dropdown-btn {
	border: none;
	outline: none;
	width: 3.375rem;
	height: 3.375rem;
	font-size: 3.375rem;
	color: #b4b4b4;
	background-color: transparent;
	background-image: url(../images/mo_index/mo_icon_nav01_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.15rem;
	right: 1rem;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
	transition: transfrom 500ms ease, color 500ms ease, background-color 500ms ease;
}
.mobile-nav__container li.active .dropdown-btn i{
	display: none;
}
/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner-section {
	height:100vh;
	width: 100vw;
}

.banner-carousel {
	position: relative;

}

.banner-carousel .slide-item {
	position: relative;
	height:100vh;
	width: 100vw;
}

.banner-carousel .lazy-bg{
	width: 100%;
	height: 100%;
	background-color: #f0f0f0; /* 占位灰色 */
}
.banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.banner-carousel .active .slide-item .image-layer {
	-webkit-animation-name: slideBgImage;
	animation-name: slideBgImage;
	-webkit-animation-duration: 7000ms;
	animation-duration: 7000ms;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}


.banner-carousel .bg_gradual{
	position: relative;

}
.banner-carousel .bg_gradual::before{
	height:100%;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0,0));
	-webkit-background-image:linear-gradient(100deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

/*owl-nav*/
.banner-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
}
.banner-carousel .owl-nav .owl-prev,
.banner-carousel .owl-nav .owl-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}
.banner-carousel:hover .owl-nav .owl-prev,
.banner-carousel:hover .owl-nav .owl-next {
	opacity: 1;
}
.banner-carousel .owl-nav .owl-prev {
	left: 2rem;
	top: 0;
}
.banner-carousel .owl-nav .owl-next {
	right: 2rem;
	top: 0;
}

.banner-carousel .owl-nav .owl-prev:after,
.banner-carousel .owl-nav .owl-next:after{
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	top: 0;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	color: #ffffff;
	font-size: 1.8rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-carousel .owl-nav .owl-prev:after {
	content: "\e928";
	left: 0;
}

.banner-carousel .owl-nav .owl-next:after {
	content: "\e929";
	right: 0;
}
.banner-carousel .owl-nav .owl-prev:hover:after,
.banner-carousel .owl-nav .owl-next:hover:after {
	color: #600064;
}

.banner-carousel .owl-nav .owl-prev:hover,
.banner-carousel .owl-nav .owl-next:hover {
	opacity: 0.8;
	background-color: #fff;
}

/*.owl-dots*/
.banner-carousel .owl-dots{
	position: absolute;
	width:100%;
	text-align:center;
	bottom:3rem;
	z-index: 10;
}
.banner-carousel .owl-dots .owl-dot{
	display:inline-block;
	zoom:1;
	cursor: pointer;
	outline: none;
}
.banner-carousel .owl-dots .owl-dot:focus{
	outline: none;
}
.banner-carousel .owl-dots .owl-dot span{
	width:0.625rem;
	height:0.625rem;
	margin-left:0.5rem;
	margin-right:0.5rem;
	background: rgba(255,255,255,0.6);
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	border-radius:30px;
}
.banner-carousel .owl-dots .owl-dot.active span{
	background:#ffffff;
	width:0.375rem;
	height:0.375rem;
	border-radius: 0.375rem;
	opacity: 1;
	margin-top:-0.5rem;
	margin-right:0.625rem;
	margin-left:0.625rem;
	position: relative;
}
.banner-carousel .owl-dots .owl-dot.active span:after{
	content: "";
	width:1.25rem;
	height:1.25rem;
	border: 1px solid #ffffff;
	border-radius: 1.25rem;
	position: absolute;
	top:-0.4375rem;
	left:-0.4375rem;
}


/*--------------------------------------------------------------
# carousel-control
--------------------------------------------------------------*/

.carousel-control-next,
.carousel-control-prev{
	font-size: 1rem;
	height: 2.5rem;
	width: 2.5rem;
	opacity: 0;
	top: calc(50% - 2.5rem);
}
.carousel-control-prev{
	background-image:url(../images/index/button_prev.png);
}
.carousel-control-next{
	background-image:url(../images/index/button_next.png);
}
.carousel-control-prev:hover{
	background-image:url(../images/index/button_prev_hover.png);
}
.carousel-control-next:hover{
	background-image:url(../images/index/button_next_hover.png);
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	opacity: 0;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
	opacity: 1;
}
.carousel-control-next {
	right:1rem;
}
.carousel-control-prev {
	left: 1rem;
}




/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.footer{
	background-image: url(../images/footer_bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size:cover;
	color: rgba(255,255, 255, 0.8);
	font-size: 1rem;
	position: relative;
}

.footer p{
	margin:0;
	line-height:1.5;
}

.footer .footer-link{
	width:100%;
	padding:0 0 2rem 0;
	position: relative;
}
.footer .footer-link h6 {
	width: 20rem;
	height: 2.8rem;
	font-family: "MyFont";
	font-size: 1.5rem;
	color: #ffffff;
	line-height:1.5;
}
.footer .footer-link h6 span {
	color: rgba(255,255,255,0.15);
}
.footer .link {
}
.footer .link a{
	color: rgba(255,255, 255, 0.7);
	display:block;
	line-height: 2;
}
.footer .link a:hover{
	color: rgba(255,255, 255, 1);
}
.footer-top .line:before{
	content: "";
	width:1px;
	height:100%;
	background: rgba(252,231,194,0.21);
	position: absolute;
	left:0;
	top:0;
}
.footer .contact p{
	margin-bottom:0.625rem;
}
.footer .contact img{
	width:2.5rem;
	margin-right:0.625rem;
}
.footer .footer-top{

}

.footer .footer-bottom{
	border-top:1px solid  rgba(255,255,255,0.2);
	color: rgba(255, 255, 255, 0.6);
	padding:0.9375rem 0;
	text-align: center;
	font-size: 1rem;
}


/*--------------------------------------------------------------
# Sub-container
--------------------------------------------------------------*/
.sub-container{
	position: relative;
	background-color:#ffffff;
	padding-bottom:3.125rem;
}

.banner-sub {
	height:31.25rem;
}
.left-box{
	width: 300px;
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
	width:100%;
	border-left:3px solid #600064;
	box-shadow: 4px 2px 10px 0px #F6F3F8;
}
.sidebar-title{
	width:100%;
	height: 5rem;
	background-color: #600064;
	background-image: url(../images/ny/ny_left_bg.jpg);
	display: flex;
	align-items: center;
	position: relative;
}
.sidebar-title h3{
	font-weight: bold;
	font-size: 1.875rem;
	color: #ffffff;
	text-align: left;
	padding-left:1.25rem;
	margin:0;
}
.title-toggle-icon{
	width:2rem;
	height:2rem;
	background-image: url(../images/mo_index/mo_ny_nav01_hover.png);
	opacity: 0.5;
	background-size: 100%;
	position: absolute;
	right:1rem;
	top:1.5rem;
}

.sidebar.mo .sidebar-title{
	height: 4.625rem;
	justify-content: flex-start;
	padding-left:2.25rem;
}
.sidebar.mo .sidebar-title .title-toggle-icon{
	width:1.875rem;
	height:1.875rem;
	background-image: url(../images/mo_index/mo_ny_nav01_hover.png);
	opacity: 0.5;
	background-size: 100%;
	position: absolute;
	right:1rem;
	top:1.25rem;
}

.sidebar.mo .nav-link:hover,
.sidebar.mo .nav-item.active .nav-link,
.sidebar.mo .nav-item:focus-within .nav-link{
	font-size:1.5rem;
}
.side-nav {
	width:100%;
}

.sidebar.mo .side-nav .nav-item{
	border-bottom:1px solid #E4E2E6;;
}
.side-nav .nav-item {
	width:100%;
	position: relative;
	transition: all 0.5s ease;
}

.side-nav .nav-link {
	width:100%;
	min-height:4.375rem;
	display: flex;
	align-items: center;
	text-align: left;
	color:#333333;
	font-size:1.25rem;
	padding-left:1.25rem;
	transition: all 0.5s ease;
	border-bottom:1px solid #E4E2E6;
}

.side-nav .nav-link:hover,
.side-nav .nav-item.active .nav-link,
.side-nav .nav-item:focus-within .nav-link{
	font-weight: 900;
	color:#600064;
	transition: all .5s ease;
	border-bottom:1px solid #600064;
}

.side-nav .nav-item.active > .nav-link::after,
.side-nav .nav-item:hover > .nav-link::after,
.side-nav .nav-item:focus-within .nav-link::after{
	content: "";
	height:1.5rem;
	width:1.5rem;
	background-image: url(../images/ny/ny_left_hover.png);
	background-size: 100%;
	position: absolute;
	top: 1.3125rem;
	right: 1.25rem;
	transition: width 300ms ease;
}


.side-nav .collapse {
	transition: all 0.2s ease;
}
.side-nav .toggle-icon {
	position: absolute;
	font-size: 18px;
	transition: transform 0.25s;
	color: #6c757d;
	right:1.25rem;
	top:1.625rem;
}
.side-nav .nav-item.active .toggle-icon,
.side-nav .nav-item:hover .toggle-icon,
.side-nav .nav-item:focus-within .toggle-icon{
	color:#ffffff

}
.side-nav .nav-link.no-children .toggle-icon {
	display: none;
}
.side-nav .nav-link[aria-expanded="true"] .toggle-icon {
	transform: rotate(90deg);
}

.side-nav .submenu {
	list-style: none;
	margin: 0;
	padding-left:5.5rem;
}

.sidebar.mo .side-nav .submenu {
	list-style: none;
	margin: 0;
	padding:0.625rem 0 0.625rem 4rem ;
}
.sidebar.mo .side-nav .subnav-item{
	width:33.3%;
	float:left;
}
.sidebar.mo .side-nav .submenu .submenu-link{
	height:3.125rem;
	line-height: 3.125rem;
}
.side-nav .submenu-link {
	display: block;
	height:2.5rem;
	line-height: 2.5rem;
	text-align:left;
	color:#666666;
	font-size: 1.125rem;
	transition: background 0.2s;
}
.side-nav .submenu-link:hover,
.side-nav .submenu-link:focus,
.side-nav .submenu-link.active{
	color:#192E78;
}


/*address-bar*/
.address-bar{
	height:5rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom:1px solid #EFF0EF;
	width:100%;
}
.address-bar .lm-title {
	font-size: 1.5rem;
	gap: 9vw;
	color: #333333;
	position: relative;
	padding-left:0.625rem
}
.address-bar .lm-title:before {
	content: "";
	width: 0.3rem;
	height: 1.5rem;
	background: #192E78;
	position: absolute;
	left:0;
	top:0.4rem;
}

/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	font-size: 1rem;
}
.breadcrumb li{
	cursor: pointer;
	padding:0 0.9375rem;
	position: relative;
}
.breadcrumb li.active{
	color:#600064;
	font-weight: bold;
	cursor: default;
}
.breadcrumb li:first-child{
	padding-left:2.25rem;
}
.breadcrumb li:first-child span{
}
.breadcrumb li:first-child:before{
	content: "";
	background-image: url(../images/ny/ny_home.png);
	background-size: 100%;
	width:2.125rem;
	height:2.125rem;
	margin-right: 0.9375rem;
	color:#979797;
	position: absolute;
	left:0;
	top:-0.3125rem;
}
.breadcrumb li:first-child:hover:before{
	background: url(../images/ny/ny_home.png);
	color:#600064;
}
.breadcrumb li a{
	color:#979797;
}
.breadcrumb li:hover a,
.breadcrumb li a:hover{
	color:#600064;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	width:0.75rem;
	height:0.75rem;
	color:#979797;
	position: absolute;
	left: -0.625rem;
	top:0;
}

/*article*/
.article-box{
}
.article .title{
	margin-bottom:1.25rem;
	text-align: center;
	border-bottom: 1px solid rgba(217,217,217,0.78);
	padding:1.25rem 0;
}
.article .title h2{
	font-size: 2.125rem;
	font-weight: bold;
	color: #333333;
	line-height: 1.5;
	margin-bottom:1.25rem;
}
.article .title-2{
	margin-bottom:1.25rem;
	text-align:left;
}
.article .title-2 h2{
	font-size: 2.125rem;
	font-weight: bold;
	color: #333333;
	line-height: 1.5;
}
.article .publish-info{
	font-size: 1rem;
	color: #9F9E9E;
}

.teacher-intro{
	cursor: pointer;
	position: relative;
}

.teacher-intro:after {
	content: "";
	width: 100%;
	height:100%;
	background-image: url(../images/ny/ny_tu10.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top:0;
	left:0;
	z-index: 1;
}

.teacher-intro > * {
	position: relative;
	z-index: 2;
}
.teacher-intro .item-img {
	margin:0 auto;
	width:12rem;
	flex-shrink: 0;
}
.teacher-intro .item-img:before {
	content: "";
	width: 100%;
	height:100%;
	background:#600064;
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	z-index: 0;
}

.teacher-intro .item-img img{
	width:100%;
}
.teacher-intro .item-body{
	position: relative;
	padding-left:1.875rem;
	padding-top:0;
}

.teacher-intro .title {
	color: #600064;
	font-weight: 900;
	text-align: left;
	font-size: 1.5rem;
	margin-bottom: 1.75rem;
	position: relative;
}
.teacher-intro .title:after{
	content: "";
	height:2px;
	width:100%;
	background: linear-gradient(90deg, #600064, rgba(96,0,100,0));
	position: absolute;
	bottom:0;
	left:0;
}
.teacher-intro .title span{
	font-size: 1.125rem;
	margin-left:1.25rem;
	font-weight: normal;
}
.teacher-intro .summary {
	font-size: 1.125rem;
	color: #333333;
	padding: 0;
}
.teacher-intro .summary p{
	margin:0;
}


.article .more-article{
	padding:1.25rem 0;
	border-top: 1px solid rgba(217,217,217,0.78);
}

.article .more-article .item{
	display: block;
	padding:0.5rem 0;
	color:#333333;
	transition: all 500ms ease 0s;
	font-size: 1rem;
}

.article .more-article .item:hover{
	color:#600064;
	transition: all 500ms ease 0s;
}

.back-btn a{
	width:10rem;
	height:3.125rem;
	background: #ffffff;
	border: 1px solid #600064;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: #333333;
	margin:0.625rem auto;
}
.back-btn .img{
	margin-right:0.3125rem;
	width:1.375rem;
	height: 1.375rem;
	background-image: url(../images/ny/icon_xq_back.png);
}
.back-btn a:hover{
	color: #ffffff;
	background: #600064;
}
.back-btn a:hover .img{
	background-image: url(../images/ny/icon_xq_back_hover.png);
}

/*
block-title styles
*/

.block-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.25rem;
}

.block-title .title {
	position: relative;
	font-size: 2.5rem;
	color: #600064;
	font-weight: bold;
}
.block-title .title img{
	width:12rem;
}
.block-title .title_font {

}
.block-title .more {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.3rem;
	cursor: pointer;
	color: #666972;
	font-size: 1rem;
}
.block-title .more img {
	width:1.125rem;
}

.block-title .more:hover {
	color: #600064;
}

/*list-text*/
.list-text{
	position: relative;
	text-align: left;

}
.list-text li,
.list-text .item{
	cursor: pointer;
	transition: all 500ms ease 0s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding:1.8rem 0 1.4rem 0;
	border-bottom:1px solid #EDE8E3;
}

.list-text .title{
	font-size:2rem ;
	position: relative;
	width:calc(100% - 10rem);
	color:#333333 ;
}


.list-text li:hover .title,
.list-text .item:hover .title{
	color:#920303;
}
.list-text .time{
	width:10rem;
	display: block;
	color:#979797;
	font-size: 1.6rem;
	text-align: right;
}


/*list-text .media*/
.list-text .media{
	padding:1.4rem 0;
	border-bottom:1px solid #EDE8E3;
	cursor: pointer;
	position: relative;

}

.list-text .media .icon{
	width:3.8rem;
	height:3.8rem;
	background-size: 100%;
	margin-right:1.5rem;
}


.list-text .media .title{
	font-size:2rem ;
	font-weight: 400;
	margin:0;
	padding:0;
	position: relative;
	width:calc(100% - 10rem);
	color:#333333 ;
}
.list-text .media:hover .title{
	color:#920303;
}

.list-text .media .media-body{
	position: relative;
}

.list-text .media .time{
	color:#979797;
	font-size: 1.6rem;
	width:100px;
	position: absolute;
	right:0;
	top:0;
}

/*.list-text1*/

.list-text1{
}
.list-text1 .list-text1-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 500ms ease 0s;
	width:100%;
	text-align: left;
	position: relative;
	z-index: 1;
	padding:1.125rem;
}
.list-text1 .list-text1-item:after{
	content: "";
	height:1px;
	width:calc(100% - 2.5rem);
	background:#E4E2E6 ;
	position: absolute;
	bottom:0;
	left:1.25rem;
	right:1.25rem;

}
.list-text1 .list-text1-item:hover,
.list-text1 .list-text1-item.active {
	transition: all 500ms ease 0s;
	background-color: #600064;
	color:#ffffff;
}
.list-text1 .list-text1-item:hover::after,
.list-text1 .list-text1-item.active::after {
	background:transparent;
}
.list-text1 .title{
	width:calc(100% - 11rem)
}
.list-text1 .title h5{
	color: #333333;
	font-size: 1.25rem;
	line-height: 1.5;
}
.list-text1 .time {
	color:#908A90;
	height:2.075rem;
	padding-top:0.1rem;
	margin-top:0.8725rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.list-text1 .list-text1-item:hover h5,
.list-text1 .list-text1-item.active h5,
.list-text1 .list-text1-item:hover .time,
.list-text1 .list-text1-item.active .time{
	color:#ffffff;
}
.list-text1 .list-text1-item .img{
	width:10rem;
}

/*.list-text2*/
.list-text2{
}

.list-text2 .item {
	cursor: pointer;
	transition: all 500ms ease 0s;
	width:100%;
	text-align: left;
	padding:1.5rem;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0,0,0,0.02);
	position: relative;
	border: 1px solid transparent;
	z-index: 1;
	margin-bottom:1.25rem;
}

.list-text2 .item:hover {
}

.list-text2 .title {
	color: #333;
	font-size: 1.125rem;
	line-height: 1.5;
	transition: all 500ms ease 0s;
}
.list-text2 .item:hover .title{
	color: #600064;
	transition: all 500ms ease 0s;
}

.list-text2 .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}


/*.list-text3*/
.list-text3{
}

.list-text3 .item {
	display: block;
	cursor: pointer;
	padding:1.625rem 0;
	background: #ffffff;
	position: relative;
	border-bottom: 1px solid #E4E2E6;
	z-index: 1;
}

.list-text3 .title {
	transition: all 500ms ease 0s;
	position: relative;
	padding-left:1.25rem;
}
.list-text3 .title h5{
	font-size: 1.125rem;
	line-height: 1.5;
	color: #333333;
}
.list-text3 .item:hover .title{
	color: #600064;
	transition: all 500ms ease 0s;
}
.list-text3 .title:before {
	content: "";
	width:1rem;
	height:1rem;
	background:url(../images/index/icon_list1.png);
	position: absolute;
	top: 0.3125rem;
	left:0;
	transition: all 500ms ease 0s;
}
.list-text3 .item:hover .title:before {
	background:url(../images/index/icon_list1_hover.png);
	transition: all 500ms ease 0s;
}
.list-text3 .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}

.card-dj{
	border-radius: 0;
	border:0;
	background: #F7F8FD;
}
.card-dj .card-body{
	padding:1.5rem;
}
.card-dj .card-img{
	border-radius: 0;
}
.card-dj .title-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.card-dj .card-title{
	font-size: 1.125rem;
	line-height: 1.8;
	color:#333333;
	width:calc(100% - 6.75rem)
}
.card-dj .card-text{
	color:#787878;
	font-size: 1rem;
	line-height: 1.625;
}
.card-dj .time{
	width:6rem;
	margin-top:-0.3125rem;
	color:#600064;
	font-family: "MyFont-time";
}
.card-dj .time .year{
	font-size: 1rem;
	line-height: 1.5;
	font-family: "MyFont-time";
}
.card-dj .time .day{
	font-size: 2.125rem;
	line-height: 1;
}

/*.list-xsfc*/
.list-xsfc{
	background: #600064;
}

.list-xsfc .item {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding:1.0751rem 1rem;
	position: relative;
	color:#ffffff;
}
.list-xsfc .item:after{
	content: "";
	width:calc(100% - 2rem);
	height:1px;
	background: rgba(255,255,255,0.2);
	position: absolute;
	bottom:0;
	left:1rem;
	right:1rem;
}
.list-xsfc .item:hover{
	background: rgba(0,0,0,0.2);
}
.list-xsfc .item .icon{
	width:3.125rem;
	height:3.125rem;
}
.list-xsfc .title {
	position: relative;
	padding-left:1.25rem;
}
.list-xsfc .title h5{
	font-size: 1.125rem;
	line-height: 1.6;
	margin:0;
	padding:0;
}


/*--------------------------------------------------------------
# Home style
--------------------------------------------------------------*/
.bg-01{
	background-image: url(../images/index/index_bg1.jpg);
	background-position:bottom center;
	background-repeat: no-repeat;
}

.bg-03{
	background-image: url(../images/index/index_bg3.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	padding-bottom:6.25rem;
}
.section1{
	padding:2.5rem 0;
}




/*news-slide*/

.news-slide .carousel-inner{
	padding-bottom:9rem;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.news-slide .carousel-item{
	position: relative;
	z-index: 1;

}
.news-slide .carousel-item .time{
	position: absolute;
	z-index: 1;
	top:1rem;
	left:0;
	width:5rem;
	height:5rem;
	color:#ffffff;
	font-size: 1.375rem;
	background: #600064;
	line-height: 1;
	padding: 1.125rem 0.625rem;
	font-family: "MyFont-time";
}
.news-slide .carousel-item .year{
	font-size: 1rem;
}
.news-slide .carousel-caption{
	border: 1px solid #D5D9E5;
	background: #ffffff;
	border-top:none;
	height:9rem;
	width:100%;
	border-radius: 0;
	padding:1.25rem;
	text-align: left;
	position: absolute;
	left:0;
	bottom:-9rem;
}
.news-slide .carousel-caption h5{
	font-size:1.375rem;
	text-align: left;
	color:#600064;
	line-height: 1.5;
}
.news-slide .carousel-caption p{
	margin-top:1rem;
	font-size: 1rem;
	color:#333333;
}

.news-slide .carousel-control-next,
.news-slide .carousel-control-prev{
	background-color: rgba(0,0,0,0.3);
	font-size: 1rem;
	height: 4rem;
	width: 2rem;
	border-radius:0;
	opacity: 0;
	top: calc(50% - 2.5rem);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;

}

.news-slide .carousel-control-next {
	right:0;
}
.news-slide .carousel-control-prev {
	left: 0;
}
.news-slide .carousel-control-next:hover,
.news-slide .carousel-control-prev:hover{
	background-color:rgba(255,255,255,0.5);
	color: #368599;
}

.section2{
}

.section-tj{
	background-image: url(../images/index/index_bg2.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color:#600064 ;
	padding:5rem 0;
}
.section-tj .tj-logo{
	width:100%;
}
.section-tj .icon{
	margin:0 auto;
	width:9.25rem;
	height:9.25rem;
	background-image: url(../images/index/index_tj_icon_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-tj .icon img{
	width:60%;
}
.section-tj .text{
	color:#ffffff;
	font-size: 1.375rem;
	text-align: center;

}
.section-tj .text .number{
	color: #ffffff;
	font-size: 2.5rem;
	font-family: "MyFont" !important;
	padding-left:0.3125rem;
	font-variant-numeric: tabular-nums;
}
.section-tj .text .number:after{
	content: "+";
}



.section-tj2{
	padding:1.875rem 0;
	background:#ffffff;
}
.section-tj2 .tj-logo{
	width:100%;
}
.section-tj2 .icon{
	margin:0 auto;
	width:9.25rem;
	height:9.25rem;
	background-image: url(../images/index/index_tj_icon_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-tj2 .icon img{
	width:60%;
}
.section-tj2 .text{
	color:#240053;
	font-size: 1.375rem;
	text-align: center;

}


.section3{
}

.section4{
	background-image:url(../images/index/index_bg3.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #F7F8FD;
	position: relative;
}





.jlhz-carousel {


.single {
	padding:0;
}
.single .card{
	border-radius: 0;
}

.single .card{
	border-radius: 0;
	border:0;
	background: #F7F8FD;
}
.single .card .card-body{
	padding:1.5rem 0;
}
.single .card .card-img{
	border-radius: 0;
	position: relative;
}

.single .card .card-title{
	font-size: 1.125rem;
	line-height: 1.8;
	color:#333333;
}

.single .card .card-text{
	color:#787878;
	font-size: 1rem;
	line-height: 1.625;
}
.single .card .time {
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.single .card:hover .card-title,
.single .card:hover .time{
	color:#600064;
}

}/*jlhz-carousel */

/*owl-nav*/
.jlhz-carousel .owl-nav {
	position: absolute;
	top:25%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.jlhz-carousel .owl-nav .owl-prev,
.jlhz-carousel .owl-nav .owl-next {
	position: absolute;
	height: 4rem;
	width: 2rem;
	border: none!important;
	text-align: center;
	opacity: 1;
	color:transparent;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}
.jlhz-carousel:hover .owl-nav .owl-prev,
.jlhz-carousel:hover .owl-nav .owl-next {
	opacity: 1;
}
.jlhz-carousel .owl-nav .owl-prev {

	left: 0;
	top: 0;
}
.jlhz-carousel .owl-nav .owl-next {
	right: 0;
	top: 0;
}

.jlhz-carousel .owl-nav .owl-prev:after,
.jlhz-carousel .owl-nav .owl-next:after{
	content: "";
	position: absolute;
	top: 0;
	height: 4rem;
	width: 2rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.jlhz-carousel .owl-nav .owl-prev:after {
	background-image:url(../images/index/button_prev.png);
	background-size: 100%;
	background-position: left;
	left: 0;
}

.jlhz-carousel .owl-nav .owl-next:after {
	background-image:url(../images/index/button_next.png);
	background-size: 100%;
	background-position: left;
	right: 0;
}

.jlhz-carousel .owl-nav .owl-next:hover:after {
	background-image:url(../images/index/button_next_hover.png);
	background-size: 100%;
	background-position: right;

}
.jlhz-carousel .owl-nav .owl-prev:hover:after {
	background-image:url(../images/index/button_prev_hover.png);
	background-size: 100%;
	background-position: right;
}
/*.jlhz-carousel .owl-nav .owl-prev:hover,*/
/*.jlhz-carousel .owl-nav .owl-next:hover {*/
/*opacity: 0.8;*/
/*background-color: #fff;*/
/*}*/


/*.owl-dots*/
.jlhz-carousel .owl-dots {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jlhz-carousel .owl-dots .owl-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: 0 10px;
	display: inline-block;
	text-align: center;
	background: rgba(25,46,120,0.5);
	position: relative;
}

.jlhz-carousel .owl-dots .owl-dot.active {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #192E78;
}
.jlhz-carousel .owl-dots .owl-dot.active:after{
	content: "";
	width: 21px;
	height: 1px;
	background: #192E78;
	position: absolute;
	left:10px;
	top:5px;
}
.jlhz-carousel .owl-dots .owl-dot:last-child.active:after{
	content: "";
	width: 21px;
	height: 1px;
	background: none;
	position: absolute;
	left:10px;
	top:5px;
}




.section5{

.fc-pic .card{
	border-radius: 0;
	padding:0;
	border: none;
	background: transparent;
	position: relative;
	overflow: hidden;
}
.fc-pic .card .caption{
	height:3.75rem;
	width:100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	color:#ffffff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0 1rem;
}
.fc-pic .card .caption h5{
	font-size: 1.125rem;
}
.ratio-pic1{
	aspect-ratio: '16:9';
}
.ratio-pic1:before{
	padding-top: 56.25%;
}
.ratio-pic2{
	aspect-ratio: '16:10';
}
.ratio-pic2:before{
	padding-top: 62.5%;
}

.fc-pic .card.yj-rt{
	margin-top:-92px;
}
.fc-pic .card.yj-rb{
	border-radius:0 0 100px 0
}
}/*end sction5*/



/* 右侧悬浮触发按钮：校园服务 */
.links-float-1 {
	position: fixed;
	top: 40%;
	right: 0;
	transform: translateY(-50%);
	z-index: 999;
	width: 3.5rem;
	height: 11rem;
	background-image:url(../images/index/index_right_bg.png);
	background-position: top center;
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 6px 0 0 6px;
}
.links-float-1 a {
	display: block;
	padding-top:2.25rem;
	color: #fff;
	font-size: 1rem;
}

.links-float-1 a span {
	display: block;
	text-align: center;
}

.links-float {
	position: fixed;
	top: 50%;
	right: -10rem;
	width:8.75rem;
	height:37.5rem;
	background-image:url(../images/index/index_right_bg.png);
	transform: translateY(-50%);
	z-index: 999;
	padding:9.25rem 0.625rem 0.625rem 0.625rem;
	transition: all 0.5s ease;
}
.links-float.show {
	right: 0;
	transition: all 0.5s ease;
}
.links-float .item {
	display:block ;
	background:rgba(255,255,255,0.1);
	margin-bottom:1px;
	color:#ffffff;
	text-align: center;
	padding:0.45rem 0;
}
.links-float .item img{
	margin-bottom:0.3125rem;
}
/*--------------------------------------------------------------
# sub content style
--------------------------------------------------------------*/
.content-main{
	background: #ffffff;
}

/*list-leader*/
.list-leader .item{
	background: #F3F6FB;
	padding:1rem 1.25rem;
}
.list-leader .title{
	font-weight: bold;
	font-size: 1.25rem;
	color: #192E78;
	border-bottom:1px solid #ebebeb;
	padding-bottom:1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:0.625rem;
}
.list-leader .intro{
	padding:1rem 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 1.125rem;
	min-height:5.5rem;
}
.list-leader .intro .zw{
	width:10rem;
}
.list-leader .intro .zw span{
	display: block;
}
.list-leader .intro .zw{
	flex-shrink:0;
}
/*list-zzjgt*/
.list-zzjg{
	background: #F7F8FD;
	padding:1.25rem;
	margin-bottom: 1.25rem;
}
.list-zzjg .title{
	background-image: url(../images/ny/ny_tu1.png);
	height:3.125rem;
	display: flex;
	align-items: center;
	padding-left:1.25rem;
	font-weight: bold;
	font-size: 1.25rem;
	color: #ffffff;
}
.list-zzjg .item{
	display: block;
	background: #ffffff;
	padding:1.25rem 1rem;
	font-size: 1.125rem;
}
.list-zzjg .item:hover{
	color:#600064;
}
/*sub-list-title*/
.sub-list-title .item{
	padding:1.5rem 1rem;
	cursor: pointer;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	z-index: 0;
}
.sub-list-title .item:nth-child(odd){
	background: #F7F8FD;
}
.sub-list-title .item:after {
	content: "";
	width:100%;
	height:100%;
	background: #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 300ms ease; /* 更快更丝滑 */
	transition: all 300ms ease;
	z-index: 1;
}
.sub-list-title .item:hover::after {
	opacity: 1;
	-webkit-transition: all 300ms ease; /* 更快更丝滑 */
	transition: all 300ms ease;
}
.sub-list-title .item .title{
	color:#333333;
	margin:0;
	padding: 0;
	font-size:1.25rem;
	position: relative;
	z-index: 2;
}
.sub-list-title .item:hover .title{
	color:#ffffff;
}

.sub-list-title .item .time{
	color:#979797;
	width:7rem;
	font-family: "MyFont-time";
	position: relative;
	z-index: 2;
	text-align: right;
	display: flex;
	align-items: center;
}
.sub-list-title .item:hover .time{
	color:#ffffff;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-title .item .time span{
	display: inline-block;
}
.sub-list-title .item .time-icon{
	width:1.2rem;
	height: 1rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	margin-left:0.5rem;
}
.sub-list-title .item:hover .time-icon{
	background-image: url(../images/ny/icon_list_right_hover_white.png);
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-title.download .item .title{
	padding-left:2rem;
	background-image: url(../images/ny/icon_list_files.png);
	background-repeat: no-repeat;
	background-size: 1.5rem 1.5rem;
	background-position: left;

}
.sub-list-title.download .item:hover .title{
	background-image: url(../images/ny/icon_list_files_hover.png);
}
.sub-list-title.download .item .download-icon{
	width:1.5rem;
	height: 1.5rem;
	background-image: url(../images/ny/icon_list_download.png);
	background-size: 100%;
	display: inline-block;
	margin-left:0.5rem;
}
.sub-list-title.download .item:hover .download-icon{
	background-image: url(../images/ny/icon_list_download_hover.png);
	-webkit-transition: 500ms;
	transition: 500ms;
}
/*sub-list-media */
.sub-list-media{
}
.sub-list-media .item {
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height:4.375rem;
	padding:2rem 0;
	border-bottom: 1px solid #E4E2E6;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
}


.sub-list-media .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 2px;
	border-bottom: 2px solid #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

/* 鼠标滑过：宽度变100%，从左到右展开 */
.sub-list-media .item:hover::after {
	width: 100%;
}

.sub-list-media .item .item-body{
	position: relative;
	padding-left:1.875rem;
	padding-right:6rem;
}
.sub-list-media .item .item-body:before{
	content: "";
	height:100%;
	width:1px;
	background: #E1E3EB;
	position: absolute;
	left:0;
	top:0;
}
.sub-list-media .item .item-body{
	background-image: url(../images/ny/icon_list_right.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 1.625rem;
}
.sub-list-media .item:hover .item-body{
	background-image: url(../images/ny/icon_list_right_hover.png);
}
.sub-list-media .title {
	color: #333;
	font-size: 1.25rem;
	line-height:1.8;
	margin-bottom: 0.5rem;
}

.sub-list-media .item:hover .title{
	color: #600064;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-media .summary {
	font-size: 1rem;
	color: #979797;
	line-height: 1.8;
}
.sub-list-media .time {
	width:6.875rem;
	flex-shrink:0;
	height:3.75rem;
	text-align: left;
	font-family: "MyFont-time";
}
.sub-list-media .time .day{
	font-size: 2.125rem;
	color: #600064;
	line-height: 36px;
	display: block;
}
.sub-list-media .time .year{
	font-size: 1.125rem;
	color: #787878;
	display: block;
}

.sub-list-media .item:hover .year{
	color: #600064;
	-webkit-transition: 500ms;
	transition: 500ms;
}
/*sub-list-tuwen */
.sub-list-tuwen{

}
.sub-list-tuwen .item {
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding:2.5rem 0;
	border-bottom: 1px solid #E7E9EC;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
}


.sub-list-tuwen .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 2px;
	background: #600064;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-tuwen .item:hover::after {
	width: 100%;
}

.sub-list-tuwen .item .item-body{
	width:calc(100% - 19rem);
	position: relative;
	padding-left:1.25rem;
}

.sub-list-tuwen .title {
	color: #333;
	font-size: 1.25rem;
	line-height: 1.8rem;
	margin-bottom: 0.5rem;
}

.sub-list-tuwen .item:hover .title{
	color: #600064;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-tuwen .summary {
	font-size: 1rem;
	color: #979797;
	line-height: 1.8;
}

.sub-list-tuwen .item-img {
	width:19rem;
}
.sub-list-tuwen .item-img img{
	width:100%;
}
.sub-list-tuwen .time{
	color:#600064;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";
}
.sub-list-tuwen .item:hover .time{
	color: #600064;
}


.sub-list-tuwen .more{
	width:5.75rem;
	height:1rem;
	font-size: 1rem;
	position: relative;
}
.sub-list-tuwen .more:after{
	content: "";
	width:1rem;
	height:1rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	position: absolute;
	right:0;
	top:0.3125rem

}
.sub-list-tuwen .item:hover .more:after{
	background-image: url(../images/ny/icon_list_right_hover.png);
}


/*list-card-ty*/
.list-card-ty{

}
.list-card-ty .item{
	display: block;
	background: #ffffff;
	border-bottom:1px solid #D5DADF;
	margin-bottom:1.25rem;
}
.list-card-ty .item .caption{
	background: #ffffff;
	padding:0.625rem 0;
	text-align:left;
	transition: all 500ms ease 0s;
}
.list-card-ty .item:hover .caption{
	background: #600064;
	padding:0.625rem 1rem;
	transition: all 500ms ease 0s;
}
.list-card-ty .item .title{
	font-size: 1.125rem;
	line-height: 1.6;
	text-align: left;
	color:#333333;
}
.list-card-ty .item:hover .title{
	color:#ffffff;
}
.list-card-ty .item .title.small{
	height:1.5rem;
}
.list-card-ty .item .time{
	color: #908A90;
	font-size: 1.125rem;
	transition: all 500ms ease 0s;
	font-family: "MyFont-time";

}
.list-card-ty .item:hover .time{
	color:#ffffff;
}

.list-card-ty .item .icon-right{
	width:1.25rem;
	height:1.25rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
}

.list-card-ty .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover.png);
}

/*sub-list-video*/
.sub-list-video .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.25rem;
	cursor: pointer;
	position: relative;
}

.sub-list-video .item img{
	filter: brightness(0.5);
}
.sub-list-video .item:hover img{
	filter: brightness(0.8);
}
.sub-list-video .icon-play{
	width:2.5rem;
	height:2.5rem;
	background-image: url(../images/index/index_tu15.png);
	background-size: 100%;
	position: absolute;
	top:calc(50% - 2.75rem);
	left:calc(50% - 1.125rem);
}

.sub-list-video .item .caption{
	background: #F3F6FB;
	height:3.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color:#333333;
	transition: all 500ms ease 0s;
}

.sub-list-video .item .caption .title{
	position: relative;
	color:#333333;
	font-size: 1.125rem;
	z-index: 10;
}
.sub-list-video .item .caption::after {
	content: "";
	width: 0;
	height:3.5rem;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-video .item:hover .caption::after {
	width: 100%;
}
.sub-list-video .item:hover .caption .title{
	color:#ffffff;
}


.sub-block-title{
	height: 3.125rem;
	background: #E6EFFE;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	font-weight: bold;
	font-size: 1.5rem;
	color: #384987;
	padding-left:2rem;
	position: relative;
}
.sub-block-title:before{
	content: "";
	width: 0.5rem;
	height:0.5rem;
	background: #192E78;
	border-radius: 50%;
	position: absolute;
	left:0.9375rem;
	top:1.375rem;
}

.sub-block-title-s{
	height:2.8125rem;
	background: #E6EFFE;
	display: flex;
	align-items: center;
	justify-content:flex-start;
	font-weight: bold;
	font-size: 1.25rem;
	color: #384987;
	padding-left:1.75rem;
	position: relative;
}
.sub-block-title-s:before{
	content: "";
	width: 0.5rem;
	height:0.5rem;
	background: #192E78;
	border-radius: 50%;
	position: absolute;
	left:0.75rem;
	top:1.2rem;
}
/*sub-list-keyan*/
.sub-list-keyan .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.25rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.sub-list-keyan .item .caption{
	background: #F3F6FB;
	padding:0 1.25rem 1.25rem 1.25rem;
	color:#333333;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-keyan .item .caption .title{
	height: 5.625rem;
	color:#192E78;
	font-size: 1.375rem;
	font-weight: 900;
	border-bottom:1px solid #CFD4E7;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.sub-list-keyan .item .caption .summary{
	margin-top:0.9375rem;
	height: 6rem;
	color:#333333;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}
.sub-list-keyan .item .caption::after {
	content: "";
	width: 0;
	height:100%;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-keyan .item:hover .caption::after {
	width: 100%;
}
.sub-list-keyan .item:hover .title{
	color:#ffffff;
}
.sub-list-keyan .item:hover .summary{
	color:rgba(255,255,255,0.6);
}
/*sub-list-keyan-ty*/
.sub-list-keyan-td .item{
	display: block;
	background: #ffffff;
	margin-bottom:1.875rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
}

.sub-list-keyan-td .item .caption{
	background: #ffffff;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-keyan-td .item .title{
	height: 2.8125rem;
	color:#192E78;
	font-size: 1.25rem;
	border-bottom:1px solid #192E78;
	display: flex;
	align-items: center;
	justify-content:space-between;
}
.sub-list-keyan-td .item .title strong{
	font-weight: normal;
}
.sub-list-keyan-td .item:hover .title strong{
	font-weight: 900;
}
.sub-list-keyan-td .item .title span{
	font-size: 1rem;
}
.sub-list-keyan-td .item .summary{
	margin-top:0.9375rem;
	height: 5.5rem;
	color:#787878;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}
.sub-list-keyan-td .item .more{
	height: 2.8125rem;
	padding:0 1.125rem;
	font-size: 0.875rem;
	background: #F3F6FB;
	margin-top:1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 0;
}
.sub-list-keyan-td .item .more span{
	color:#9D9C9C;
}
.sub-list-keyan-td .item .icon-right{
	width:1.25rem;
	height:1.25rem;
	background-image: url(../images/ny/icon_list_right.png);
	background-size: 100%;
	position: relative;
	z-index: 2;
}

.sub-list-keyan-td .item .more:after {
	content: "";
	width: 0;
	height:100%;
	background: linear-gradient(90deg, #248D43, #0149B9);
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.sub-list-keyan-td .item:hover .more:after {
	width: 100%;
}
.sub-list-keyan-td .item:hover .more span{
	color:#ffffff;
	position: relative;
	z-index: 2;
}
.sub-list-keyan-td .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover_bai.png);
}
.sub-list-keyan-td .item:hover .icon-right{
	background-image: url(../images/ny/icon_list_right_hover_bai.png);
}

/*sub-list-shizi*/
.sub-list-shizi .item{
	display: block;
	margin-bottom:1.25rem;
	padding:1.25rem;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border: 1px solid transparent;
}
.sub-list-shizi .item:after{
	content: "";
	height:1px;
	width:calc(100% - 1.25rem);
	background: #DAD6DE;
	position: absolute;
	left:1.25rem;
	bottom:0;
}
.sub-list-shizi .item:hover:after{
	content: "";
	height:2px;
	width:100%;
	background: #600064;
	position: absolute;
	left:0;
	bottom:0;
}
.sub-list-shizi .item:hover{
	background: #F7F8FD;
	border: 1px solid #E8E9F3;
	border-bottom: 1px solid transparent;
}
.sub-list-shizi .item .caption{
	color:#333333;
	transition: all 500ms ease 0s;
	position: relative;
	z-index: 0;
}

.sub-list-shizi .item .caption .title{
	margin-top:-3.75rem;
	height:3.75rem;
	padding-bottom:0.3125rem;
	background: linear-gradient(to top, rgba(96, 0, 100, 1), rgba(96, 0, 100, 0));
	color:#ffffff;
	font-size: 1.125rem;
	font-weight: 900;
	display: flex;
	align-items: flex-end;
	justify-content:center;
	position: relative;
	z-index: 2;
}
.sub-list-shizi .item .caption .summary{
	margin-top:0.9375rem;
	color:#333333;
	font-size: 1rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

/*sub-list-ld*/
.sub-list-ld .item{
	padding:0.625rem 1.25rem;
	margin:0.875rem 0;
	min-height:7.15rem;
	background: #F7F8FD;
	cursor: pointer;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	color:#333333;
	font-size:1.125rem;
}


.sub-list-ld .item .name{
	width:9rem;
	flex-shrink:0;
	font-size:1.25rem;
	text-align: left;
	color: #600064;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap:0.625rem;
}
.sub-list-ld .item div{
	position: relative;
}
.sub-list-ld .item .zw,
.sub-list-ld .item .fggz{
	padding-left:6%;
}
.sub-list-ld .item .zw:after,
.sub-list-ld .item .fggz:after{
	content: "";
	width:1px;
	height:1rem;
	background-color: #C0C7D2;
	position: absolute;
	left:0;
	top:calc(50% - 0.5rem);
}