@import url("pagebar.css");
/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/
html { font-size: 62.5% !important;}
body {
	font-size: 1.8rem;
	line-height: 150%;
	color: #333333 ;
	font-family: "Microsoft YaHei";
}

@font-face {
	font-family: "MyFont";
	src: url('../fonts/SC-Heavy.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
ul li{
	list-style: none;
}

a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.img-100{width:100%;}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1400px;
	}
}
/*scroll-to-top*/
.scroll-to-top {
	display: inline-block;
	width: 5rem;
	height: 5rem;
	background: linear-gradient(45deg, #a50505, #920303) !important;
	border-radius: 50%;
	position: fixed;
	bottom: 4rem;
	right: 4rem;
	z-index: 990;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
}



.scroll-to-top i {
	font-size: 1rem;
	line-height: 5rem;
	color: #fff;
	position: relative;
	z-index: 10;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}



/*images size */
.aspect-box {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.aspect-box > * /* This targets .aspect-box__content */ {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}

.aspect-box:before /* This pseudo element uses the padding trick to set the height. */ {
	position: relative;
	display: block;
	content: "";
	box-sizing: border-box;
}
.square {
	aspect-ratio: '1:1';
}
.square:before {
	aspect-ratio: '1:1';
	padding-top: 100%;
}
.rectangle3-1{
	aspect-ratio: '3:1';
}
.rectangle3-1:before {
	padding-top: 31%;
}


.rectangle4-3{
	aspect-ratio: '4:3';
}
.rectangle4-3:before {
	padding-top: 75%;
}


.rectangle16-9{
	aspect-ratio: '16:9';
}
.rectangle16-9:before {
	padding-top: 58.25%;
}
.rectangle16-10{
	aspect-ratio: '16:10';
}
.rectangle16-10:before {
	padding-top: 62.5%;
}
.rectangle10-16{
	aspect-ratio: '10:16';
}
.rectangle10-16:before {
	padding-top: 136%;
}
.rectangle3-4{
	aspect-ratio: '3:4';
}
.rectangle3-4:before {
	padding-top: 120%;
}

/*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%;
	transform: translateY(-50%);
}
.thumbnail .img-fluid{
	width:100%;
}
.thumbnail:hover img{
	transform: scale(1.1) translateY(-50%);
	position: absolute;
	top: 50%;
}
.thumbnail .badge,
.thumbnail:hover .badge{
	position: absolute;
	top:0;
	right:0;
	z-index: 10;
	font-weight: 100;
	border-radius: 0 0 0 10px;
}
.sm-gutters{margin-right:5px;margin-left:5px}
.sm-gutters>.col,
.sm-gutters>[class*=col-]{padding-right:5px;padding-left:5px}

/*ellipsis*/
.ellipsis{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ellipsis-1row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.ellipsis-2row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.ellipsis-3row{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
/*image-hover*/
.image-hover {
	overflow: hidden;
	position: relative;
}

.image-hover::after {
	content: "";
	width: 150%;
	height: 200%;
	position: absolute;
	top: -100%;
	left: -180%;
	z-index: 11;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform: rotate(30deg) scale(1.2);
	transform: rotate(30deg) scale(1.2);
	background: -webkit-gradient(linear,
	left top, right top,
	color-stop(50%, rgba(255, 255, 255, 0)),
	to(rgba(255, 255, 255, 0.7)));
	background: linear-gradient(90deg,
	rgba(255, 255, 255, 0) 50%,
	rgba(255, 255, 255, 0.7) 100%);
}

.item:hover .image-hover::after {
	top: 100%;
	left: 100%;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.main-nav {
	border-bottom:1px solid rgba(255,255,255,0.1);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;

}
.main-nav.sub{
	background: #920303;
}
.main-nav .inner-container {
    padding:3rem 2.5rem 0 2.5rem;
	height:10rem;
}

.main-nav .top-box{
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	justify-content: space-between;
	position: relative;

}
.main-nav .logo-box {
	width:100%;
}
.main-nav .logo-box img{
	width: 46rem;
}

.main-nav .side-menu__toggler {
	display: none;
	width:36px;
}
.main-nav .side-search{
	display: none;
	width:36px;
	margin-right:0;
}
.search-box {
	position: relative;

}
.search-box .ft-search {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 18px;
	cursor: pointer;
	font-size: 20px;
	display: inline-block;
	color:#FCE7C2;
}
.search-box .ft-search:hover {
	color:#FCE7C2;
}
.input_box {
	width: 236px;
	height: 42px;
	background: rgba(255,255,255,0.1);
	border-radius: 21px;
	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 {
	position: relative;
	border-bottom:1px solid rgba(255,255,255,0.2);
	z-index: 100;
	height:60px;
}
.main-nav.sub .main-navigation {
	border-bottom:1px solid rgba(255,255,255,0.2);
	background: #FFFFFF;
}
.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;
}

.main-nav .navigation-box>li+li {

}

.main-nav .navigation-box>li>a {
	height:60px;
	padding:15px 0 ;
	font-size: 20px;
	color:#FCE7C2;
	display: block;
	text-align: center;
	position: relative;
	z-index: 2;
	transition: 500ms;
}

.main-nav.sub .navigation-box>li>a {
	color:#333333;
	transition: 500ms;
}
.main-nav .navigation-box>li:hover >a {
	border-bottom:2px solid #FCE7C2;
	transition: 500ms;
}
.main-nav.sub .navigation-box>li:hover >a {
	border-bottom:2px solid #920303;
	color:#920303;
	font-weight: bold;
	transition: 500ms;
}
.main-nav .navigation-box>li.current a{
	border-bottom:2px solid #FCE7C2;
	transition: 500ms;
}
.main-nav.sub .navigation-box>li.current a{
	border-bottom:2px solid #920303;
	color:#920303;
	font-weight: bold;
	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: 100%;
	left:0;
	padding:10px 8px ;
	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;
	transform-origin: top;
	-webkit-transform: perspective(30rem) scaleY(0) translateZ(3rem);
	transform: perspective(30rem) scaleY(0) translateZ(3rem);
	visibility: hidden;
	opacity: 0;
	transition: transform 500ms ease, visibility 500ms ease; /* 平滑过渡效果 */
	z-index: 991;
}

.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;
}

.main-navigation .navigation-box>li ul>li {
	position: relative;
	text-align: center;

}

.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 {
	border-top: 1px solid rgba(0,0,0, 0);
}

.main-navigation .navigation-box>li ul>li>a {
	position: relative;
	display: block;
	width:100%;
	color: #333333;
	font-size: 18px;
	line-height: 150%;
	word-break: break-all;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0;
	padding-right: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	overflow: hidden;
}


.main-navigation .navigation-box>li ul>li>a:before {
	content: "";
	font-family: "";
	font-size: 12px;
	font-weight: 900;
	position: absolute;
	right:10px;
	opacity: 0;
	transition: right 0.7s; /* 平滑过渡效果 */
}
.main-navigation .navigation-box>li ul>li:hover>a:before {
	right:0;
	opacity: 1;
}
.main-navigation .navigation-box>li ul>li:hover>a {
	color: #920303;
}




/* stricked menu */
.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #920303;
	opacity: 0;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
	-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: 100vw;
	margin-left: auto;
	height: 100vh;
	background-color:#ffffff;
	background-image: url(../images/mo_navbg.jpg);
	background-repeat: no-repeat;
	background-position: bottom center;
	z-index: 999999;
	overflow-y: auto;
	padding:0;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-content: space-between;
}
.side-menu__block-inner {
.search-box-mo {
	position: relative;
	padding:10px;

}
.search-box-mo .ft-search {
	position: absolute;
	right: 20px;
	top: 15px;
	width: 28px;
	cursor: pointer;
	font-size: 28px;
	display: inline-block;
	color:#920303 ;
}
.search-box-mo .ft-search:hover {
	color:#920303;
}
.search-box-mo .input_box {
	background: rgba(255, 255, 255, 1);
	padding: 5px 40px 5px 10px;
	font-size: 13px;
	border-radius: 20px;
	border: 1px solid #920303;
	color:#333333;
	width:100%;
}
}
.side-menu__block-inner .mCustomScrollBox {
	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:8rem;
	display: block;
	background:#920303;
	padding: 20px;
}
.side-menu__logo img{
	width:30rem;
	position: relative;
	z-index: 10;
}
.mobile-nav__container .mCustomScrollBox {
	width: 100%;
}

/* mobile-nav menu */
.mobile-nav__container {
	margin: 0 0;
	border-top: 1px solid rgba(0,0,0,0.08);
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.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: 3.5rem;
	height: 3.5rem;
	background-color: transparent;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 2rem;
	color: #b4b4b4;
	position: absolute;
	top: 1rem;
	right: 0;
	-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 {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-nav__container li+li {
	border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-nav__container li>ul {
	background: rgba(0,0,0,0.2);
	border-top: 1px solid rgba(0,0,0,0.08);
	padding:0 18px;
}
.mobile-nav__container li>ul li{
	border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-nav__container li a {
	text-transform: uppercase;
	color: #333333;
	font-size: 1.6rem;
	display: block;
	padding: 1.5rem 0;
	padding-left: 1.5rem;
	padding-right: 1rem;
	border-left: 0.3rem solid transparent;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
}

.mobile-nav__container li a:hover {
	border-left: 0.3rem solid #920303 ;
	color: #000000;
}

.mobile-nav__container li.current>a {
	color:#B40101 ;
	font-weight: bold;
	border-left: 3px solid #920303 ;
}


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner-section {
	position: relative;
}

.banner-carousel {
	position: relative;

}

.banner-carousel .slide-item {
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height:100vh;
	width: 100vw;
	overflow: hidden;
}
.banner-carousel .slide-item:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #000000;
	opacity: 0;
	content: "";
	z-index: 1;
}
.banner-carousel .lazy-bg{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	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:150px;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	-webkit-background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.banner-section .owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
}

.banner-section .owl-theme .owl-nav .owl-prev {
	position: absolute;
	left: 5rem;
	top: 0;
	background: rgba(255, 255, 255, 0.15);
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	color: rgba(0, 0, 0, 0);
	line-height: 5rem;
	font-size: 0px;
	opacity: 1;
	margin-top: -3rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}

.banner-section .owl-theme .owl-nav .owl-prev:after {
	font-family: "feather";
	content: "\e928";
	font-weight: 900;
	position: absolute;
	top: 0;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	left: 0;
	color: #ffffff;
	font-size: 2.4rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover:after {
	color: #920303;
}

.banner-section .owl-theme .owl-nav .owl-next {
	position: absolute;
	right: 50px;
	top: 0;
	background: rgba(255, 255, 255, 0.15);
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	border: none!important;
	text-align: center;
	line-height: 5rem;
	color: rgba(0, 0, 0, 0);
	font-size: 0px;
	opacity: 1;
	margin-top: -3rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	outline: none;
}

.banner-section .owl-theme .owl-nav .owl-next:after {
	font-family: "feather";
	font-weight: 900;
	content: "\e929";
	position: absolute;
	top: 0;
	width: 5rem;
	height: 5rem;
	line-height: 5rem;
	right: 0;
	color: #ffffff;
	font-size: 2.4rem;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.banner-section .owl-theme .owl-nav .owl-next:hover:after {
	color: #920303;
}

.banner-section .owl-theme .owl-nav .owl-prev:hover,
.banner-section .owl-theme .owl-nav .owl-next:hover {
	opacity: 1;
	background-color: #fff;
	color: #920303;
}

.banner-section .owl-theme .owl-dots{
	position: absolute;
	width:100%;
	text-align:center;
	bottom:3rem;
	z-index: 10;
}
.banner-section .owl-theme .owl-dots .owl-dot{
	display:inline-block;
	zoom:1;
	cursor: pointer;
	outline: none;
}
.banner-section .owl-theme .owl-dots .owl-dot:focus{
	outline: none;
}
.banner-section .owl-theme .owl-dots .owl-dot span{
	width:10px;
	height:10px;
	margin:5px 7px;
	background: rgba(255,255,255,0.6);
	display:block;
	-webkit-backface-visibility:visible;
	transition:opacity .2s ease;
	border-radius:30px;
}
.banner-section .owl-theme .owl-dots .owl-dot.active span,
.banner-section .owl-theme .owl-dots .owl-dot:hover span{
	background: rgba(255,255,255,0);
	border:2px solid #ffffff;
}

/*--------------------------------------------------------------
# Banner2
--------------------------------------------------------------*/

.carousel-control-next,
.carousel-control-prev{
	background-color: rgba(0,0,0,0.5);
	font-size: 1.8rem;
	height: 4rem;
	width: 4rem;
	border-radius: 30px;
	opacity: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;

}
.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-control-next {
	right: 2rem;
}
.carousel-control-prev {
	left: 2rem;
}
.carousel-control-next:hover, .carousel-control-prev:hover{
	background-color:rgba(255,255,255,0.8);
	color: #A00603;
}

/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.footer{
	background-color: #920303;
	background-image: url(../images/footer_bg.jpg);
	background-repeat: no-repeat;
	color:#FCE7C2;
}

.footer p{
	margin:0;
	font-size: 1.6rem;
	line-height: 200%;
}
.footer .logo{
	width:100%;
}

.footer .footer-link{
	padding:0 0 2rem 0;
}

.footer .link {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	color: #FCE7C2;
	padding: 0;
}
.footer .link a{
	color: rgba(252, 231, 194, 0.7);
	font-size: 1.6rem;
	padding-left:1.8rem;
	background-image:url(../images/footer_link_icon.png) ;
	background-repeat: no-repeat;
	background-size: 1.2rem 1.2rem;
	background-position: 0 0.6rem;
}
.footer .link a:hover{
	background-image:url(../images/footer_link_icon_hover.png) ;
}

.footer .link h6 {
	width: 20rem;
	height: 2.8rem;
	font-family: "MyFont";
	font-size: 28px;
	color: #FCE7C2;
	line-height: 3rem;
}
.footer .link h6 span{
	font-size: 2rem;
	color: #CB7E5D;
	padding-left:1rem;
}
.footer-top .line:before{
	content: "";
	width:0.1rem;
	height:100%;
	background: rgba(252,231,194,0.21);
	position: absolute;
	left:0;
	top:0;
}
.footer .contact img{
    width:3.4rem;
}
.footer .footer-top{
	padding:3rem 0;
}
.footer .footer-top img{
	margin-right:5px;
}
.footer .footer-bottom{
	background: rgba(128,4,4,0.72);
	color: rgba(252, 231, 194, 0.7);
	padding:1.5rem 0;
	text-align: center;
	font-size: 1.6rem;
}
.footer .footer-bottom a{
	color: rgba(252, 231, 194, 0.7);
}
.footer .footer-bottom a:hover{
	color: rgba(252, 231, 194, 0.9);
}
.footer .erweima{
	width: 20rem;
	height:9.4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(252,235,205,0.12);
}
.footer .erweima img{
	height:9.4rem;
}
.footer .erweima p{
	text-align: center;
	font-size: 1.6rem;
	padding:0 1.3rem 0 0;
}


/*--------------------------------------------------------------
# Sub-container
--------------------------------------------------------------*/
.sub-container{
	position: relative;
	background-image: url("../images/ny/ny_bg.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-color:#ffffff;
	padding-bottom:3rem;

}
.sub-banner{
	padding-top:16rem;
}
.sub-banner img{
	width:100%;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    width:100%;
}

/*side-nav*/
.side-nav{
	border:1px solid #DFCAA4;
}
.side-nav .nav-item{
	width:100%;
	padding: 2rem 0 2rem 1rem;
	position: relative;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	border-bottom:1px solid #DFCAA4;
}
.side-nav .nav-item:last-child{
	border-bottom:1px solid transparent;
}
.side-nav .nav-item a{
	display: block;
	width:100%;
	color:#333333;
	font-size:2rem;
	text-align: left;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.side-nav .nav-item:hover a{
	color:#920303;
	-webkit-transition: all 0.5s ease;
	transition: all .5s ease;
}

.side-nav .nav-item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 0.2rem;
	background: #920303;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

.side-nav .nav-item:hover::after {
	width: 100%;
}

.side-nav .nav-item.active:after {
	content: "";
	width:100%;
	height:2px;
	background:#920303;
	position: absolute;
	bottom:0;
	left:0;
}
.side-nav .nav-item.active a{
	color:#920303;
}

.sidebar-title{
	width:100%;
	height: 7.6rem;
	background: #920303;
	margin-top:-9.1rem;
	padding:2rem ;
}
.sidebar-title h3{
	width:100%;
	font-weight: bold;
	font-size: 2.6rem;
	color: #FCE7C2;
}

.sidebar-title2{
	margin-top:0;
	border-radius: 0;
	padding:1rem 2rem;
	font-size: 1.6rem;
	color:#ffffff;
	background-color:#066abc;
}
.sidebar-title2 h3{
	font-size:1.6rem;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-title2 h3:after{
	content: "\e927";
	font-family: "feather";
	font-weight: 900;
	position: absolute;
	right: 0.5rem;
	top:0;
}


/*sub-nav*/
.sub-nav .nav-item{
	color:#888888;
	background: transparent;
}
.sub-nav .nav-item h2{
	margin:0 30px 10px 0;
	font-size: 18px;
	line-height: 30px;
	position: relative;
	text-align: center;
	transition: .5s
}
.sub-nav .nav-item:hover h2 {
	font-size: 20px;

}
.sub-nav .nav-item.active h2 {
	font-size: 20px;
	font-weight: bold;
	background: transparent;
	color:#0450b0;
	transition: .5s;
	position: relative;
}
.sub-nav .nav-item.active h2:after{
	content: "";
	position: absolute;
	height:3px;
	background: #0450b0;
	width:100%;
	bottom: -12px;
	right: 0;
}

/*address-bar*/
.address-bar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0 2.5rem 0;
	border-bottom:1px solid #DFCAA4;
	width:100%;
	margin-bottom:0;
}
.address-bar .lm-title {
	font-size: 2rem;
	gap: 9vw;
	color: #333333;
	position: relative;
	padding-left:1rem
}
.address-bar .lm-title:before {
	content: "";
	width: 0.3rem;
	height: 2.1rem;
	background: #920303;
	position: absolute;
	left:0;
	top:0.3rem;
}

/*breadcrumb*/
.breadcrumb {
	background-color: transparent;
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
}
.breadcrumb li{
	cursor: pointer;
	padding:0 1.5rem;
	position: relative;
}
.breadcrumb li.active{
	color:#333333;
	cursor: default;
}
.breadcrumb li:first-child{
	padding-left:2rem;
}
.breadcrumb li:first-child span{
	display:none;
}
.breadcrumb li:first-child:before{
	content: "";
	background-image: url(../images/ny/icon_breadcrumb_home.png);
	background-size: 100%;
	width:2.2rem;
	height:2.2rem;
	margin-right: 1rem;
	color:#C7B28D;
	position: absolute;
	left:0;
	top:0;
}
.breadcrumb li:first-child:hover:before{
	background: url(../images/ny/icon_breadcrumb_home_hover.png);
	color:#B70602;
}
.breadcrumb li a{
	color:#C7B28D;
}
.breadcrumb li:hover a,
.breadcrumb li a:hover{
	color:#B70602;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">";
	width:1.2rem;
	height:1.2rem;
	color:#C7B28D;
	position: absolute;
	left: -1rem;
	top:0;
}



/*article*/
.article-box{
	padding-top:3rem;
}
.article .title{
	margin-bottom:2rem;
	text-align: center;
	border-bottom: 1px solid rgba(217,217,217,0.78);
	padding:2rem 0;
}
.article .title h2{
	font-size: 2.8rem;
	font-weight: bold;
	color: #333333;
	margin-bottom:2rem;
}

.article .publish-info{
	font-size: 1.6rem;
	color: #9F9E9E;
}


.article .more-article{
	padding:1.5rem 0;
	border-top: 1px solid rgba(217,217,217,0.78);
}

.article .more-article .item{
	padding:0.5rem 0;
	color:#333333;
	-webkit-transition: 500ms;
	transition: 500ms;
	font-size: 1.8rem;
}

.article .more-article .item:hover{
	color:#a00503;
	-webkit-transition: 500ms;
	transition: 500ms;
}



.back-btn a{
	width:16rem;
	height:5.5rem;
	background: #ffffff;
	border: 1px solid #920303;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #333333;
	margin:1rem auto;
}
.back-btn .img{
	margin-right:0.5rem;
	width:2.2rem;
	height: 2.2rem;
	background-image: url(../images/ny/icon_xq_back.png);
}
.back-btn a:hover{
	color: #FCE7C2;
	background: #920303;
}
.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: flex-end;
	gap: 2rem;
	margin-bottom: 1rem;
}

.block-title .title {
	position: relative;
	font-size: 3.6rem;
	color: #D61508;
	line-height: 3rem;
}
.block-title .title img{
	width:20.9rem;
}
.block-title .title_font {
	position: absolute;
	left: 2.2rem;
	top: 0.2rem;
	font-family: MyFont;
	font-weight: 900;
	background: #920303;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.3;
}
.block-title .more {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.3rem;
	cursor: pointer;
	color: #ADA59B;
	font-size: 1.6rem;
}
.block-title .more img {
	width:1.2rem;
}



/*list-text*/
.list-text{
	position: relative;
	text-align: left;

}
.list-text li,
.list-text .item{
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	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.icon1 .media .icon{
	background-image: url(../images/index/list_icon1.png);
}
.list-text.icon1 .media:hover .icon{
	background-image: url(../images/index/list_icon1_hover.png);
}
.list-text.icon2 .media .icon{
	background-image: url(../images/index/list_icon2.png);
}
.list-text.icon2 .media:hover .icon{
	background-image: url(../images/index/list_icon2_hover.png);
}
.list-text.icon3 .media .icon{
	background-image: url(../images/index/list_icon3.png);
}
.list-text.icon3 .media:hover .icon{
	background-image: url(../images/index/list_icon3_hover.png);
}

.list-text.icon4 .media .icon{
	background-image: url(../images/index/list_icon4.png);
}
.list-text.icon4 .media:hover .icon{
	background-image: url(../images/index/list_icon4_hover.png);
}

.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;
}

.list1 .item{
	border-bottom: 1px solid #EBE8E4;
	padding-bottom:1.8rem;
	margin-bottom:1.8rem;
	transition: 0.5s;
	position: relative;
}

.list1 .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 0.2rem;
	background: #920303;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}
.list1 .item:hover::after {
	width: 100%;
}


.list1 .item .title{
	font-size: 2rem;
	color:#333333;
	margin-bottom:0.5rem;
	transition: 0.5s;
}
.list1 .item:hover .title{
	color: #920303;
	transition: 0.5s;
	font-weight: bold;
	transition: 0.5s;
}
.list1 .item .summary{
	font-size: 1.8rem;
	color:#979797;
	margin-bottom:0.5rem;
}
.list1 .item .time{
	font-size: 1.6rem;
	color:#979797;
	background-image: url(../images/index/index_icon_time.png);
	background-repeat: no-repeat;
	background-position: 0 0.7rem;
	padding-left:1.8rem;
	transition: 0.5s;
}
.list1 .item:hover .time{
	color: #920303;
	background-image: url(../images/index/index_icon_time_hover.png);
	transition: 0.5s;
}
.news-slide .carousel-caption{
	display: flex;
	justify-content:flex-start ;
	align-items: flex-end;
	gap:1.5rem;

}
.news-slide .numb{
	font-size: 2rem;
	color:rgba(255,255,255,0.6);
	font-family: MyFont;
	padding-bottom:0.4rem;
}
.news-slide .numb span{
	font-size: 3.6rem;
	color:#ffffff;
}




.list-text2 a{
	color:#333333;
	display: inline-block;
}
.list-text2 .item a:hover .title{
	color:#A00603 ;
}
.list-text2 .item {
	cursor: pointer;
	border-bottom: 1px dashed #cacaca;
	padding: 2.1rem 0;
	height:95px;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.list-text2 .title {
	color: #333;
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.list-text2 .time {
	color: #8f8f93;
	line-height: 3rem;
	display: flex;
	align-items: center;
}
.list-text2 .time img{
	width:1.6rem;
	margin-right:0.3rem;
}




.list-text3{
	padding-top:1rem;
}
.list-text3 .title {
	color: #333;
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 0.5rem;
	width:calc(100% - 16rem);
}
.list-text3 .item {
	cursor: pointer;
	-webkit-transition: 500ms;
	transition: 500ms;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height:7rem;
}
.list-text3 .item:hover .title{
	color: #A00603;
	font-weight: bold;
}
.list-text3 .time {
	color: #A00603;
	width:15rem;
	height:6rem;
	text-align: center;
	font-family: MyFont;
	display: flex;
	align-items: center;
	gap:0.5rem;
}
.list-text3 .time .day{
	display:inline-block;
	font-size: 2.6rem;
	padding-top:1.5rem;
	background-image: url(../images/index/list_time_bg.png);
	background-size: 100%;
	width:9.3rem;
	height:5.4rem;color: #A00603;
	margin-bottom:1rem;
}
.list-text3 .time .year{
	font-size: 1.6rem;
	color: #A00603;
}


.list-text4 .item {
	cursor: pointer;
	padding: 1.6rem 1.rem;
	height:5.8rem;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.list-text4 .item:nth-child(even){
	background: #ffffff;
}
.list-text4 .title {
	color: #333;
	font-size: 1.8rem;
	font-weight: 400;
}
.list-text4 .item:hover {
	color:#ffffff;
	background:#A00603 ;
}
.list-text4 .item:hover{
	color:#ffffff;
	background:#A00603 ;
}
.list-text4 .item:hover .title{
	color:#ffffff;
}


/*--------------------------------------------------------------
# Home style
--------------------------------------------------------------*/
.bg-01{
	background-color:#ffffff;
	background-image: url(../images/index/index_s1_bg.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.section1{
	padding:40px 0 0 0;

}

.section1 .block-title{padding:10px 0;}

/*news-slide*/
.news-slide{
	position: relative;
}
.news-slide .carousel-inner{

}
.news-slide .carousel-item{
	position: relative;
	z-index: 1;
}
.news-slide .carousel-item img{
	width:100%;
}
.news-slide .carousel-indicators{
	position:absolute;
	right:0;
	bottom:15px;
	left:0;
	z-index:20;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-pack:end;
	justify-content: flex-end;
	padding-left:0;
	margin-right:10px;
	margin-left:0;
	list-style:none;

}
.news-slide .carousel-indicators li{
	border:none;
	background:rgba(255,255,255,0.4);
	width:10px;
	height:10px;
	border-radius: 15px;
	opacity: 1;
	margin-right:6px;
	margin-left:6px;
}
.news-slide .carousel-indicators li.active{
	background:#ffffff;
	width:6px;
	height:6px;
	border-radius: 15px;
	opacity: 1;
	margin-top:2px;
	margin-right:10px;
	margin-left:10px;
	position: relative;
}
.news-slide .carousel-indicators li.active:after{
	content: "";
	width:20px;
	height:20px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	position: absolute;
	top:-7px;
	left:-7px;
}

.news-slide .carousel-caption{
	background-image: linear-gradient(to top, rgb(0, 0, 0, 0.6),transparent);
	height:70px;
	width:100%;
	left:0;
	bottom:0;
	z-index:100;
	padding-left:15px;
	text-align: left;
}
.news-slide .carousel-caption h5{
	font-size:18px;
	text-align: left;
	color:#ffffff;
	width:75%;
	line-height: 150%;
}
.news-slide .carousel-caption .time{
	font-size: 14px;
	color:#ffffff;
}

/*news-list*/


.section2{
	padding:4rem 0;
}

.section3{
	padding:4rem 0 2rem 0;
	background-color:#FEFDFA;
	background-image: url(../images/index/index_s3_bg.jpg);
	background-position:bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.section4{
	padding:4rem 0 6rem 0;
	background-color:#FFFFFF;
	background-image: url(../images/index/index_s4_bg.jpg);
	background-position:bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.section4 .card{
	border: 0;
	position: relative;
	background: red;
}
.section4 .card .time{
	width:7rem;
	height:7rem;
	background-image:url(../images/index/card_time_bg.png) ;
	background-size: 100%;
	color:#DFCAA4;
    font-family: Myfont;
	text-align: center;
	font-size: 2rem;
	padding-top:0.8rem;
	position: absolute;
	top:1rem;
	left:1.6rem;
}
.section4 .card .time .year{
	font-size: 1.6rem;
}
.section4 .card-body{
	padding:5px 0;
	font-size: 2rem;
	line-height: 140%;
}
/*zt-slide*/
.zt-slide{
	position: relative;
}

.zt-slide .carousel-item{
	position: relative;
	z-index: 1;
}
.zt-slide .carousel-item img{
	width:100%;
}
.zt-slide .carousel-indicators{
	position:absolute;
	right:0;
	bottom:2rem;
	left:0;
	z-index:1;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-pack:center;
	justify-content:center;

	list-style:none;

}
.zt-slide .carousel-indicators li{
	border:none;
	background:#CDC5BB;
	width:0.9rem;
	height:0.9rem;
	border-radius: 50%;
	opacity: 1;
	margin-right:1rem;
	margin-left:1rem;
}
.zt-slide .carousel-indicators li.active{
	background:#A00603 ;
	width: 0.8rem;
	height:0.8rem;
	border-radius: 50%;
	opacity: 1;
	margin-right:1rem;
	margin-left:1rem;
	position: relative;
}
.zt-slide .carousel-indicators li.active:after{
	content: "";
	width:12px;
	height:12px;
	border: 2px solid #ffffff;
	border-radius: 10px;
	position: absolute;
	top:-2px;
	left:-2px;
}

/*--------------------------------------------------------------
# sub content style
--------------------------------------------------------------*/

.content-box{
	margin-bottom:3rem;

}
/*sub-list-text*/
.sub-list-text .item{
	padding:2.2rem 0;
	border-bottom:1px solid rgba(223,202,164,0.6);
	cursor: pointer;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-text .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 0.2rem;
	background: #920303;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}
.sub-list-text .item:hover::after {
	width: 100%;
}

.sub-list-text .item .title{
	width:calc(100% - 1.6rem);
	height:2.4rem;
	color:#333333;
	margin:0;
	padding: 0;
	font-size:2rem;
}
.sub-list-text .item:hover .title{
	color:#920303;
	font-weight: bold;
}

.sub-list-text .item .time{
	color:#979797;
	width:14rem;
}
.sub-list-text .item:hover .time{
	color:#333333;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-text .item .time-icon{
	width:1.4rem;
	height: 1.4rem;
	background-image: url(../images/ny/icon_list_more.png);
	background-size: 100%;
	display: inline-block;
	margin-left:0.5rem;
}
.sub-list-text .item:hover .time-icon{
	background-image: url(../images/ny/icon_list_more_hover.png);
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-text.style1 .item .title{
    padding-left:3rem;
	position: relative;
}
.sub-list-text.style1 .item .title:before{
	content: "";
	width:2.4rem;
	height:2.4rem;
	position: absolute;
	left:0;
	top:0;
}
.sub-list-text.ziliao .item .title:before{
	background: url(../images/ny/icon_list_ziliao.png);
}
.sub-list-text.ziliao .item:hover .title:before{
	background: url(../images/ny/icon_list_ziliao_hover.png);
}
.sub-list-text.xiazai .item .title:before{
	background: url(../images/ny/icon_list_down.png);
}
.sub-list-text.xiazai .item:hover .title:before{
	background: url(../images/ny/icon_list_down_hover.png);
}


.sub-list-text.xiazai .item .time{
	position: relative;
}
.sub-list-text.xiazai .item .time:after{
	content: "";
	width:2.4rem;
	height:2.4rem;
	background-image: url(../images/ny/icon_list_down2.png);
	background-size: 100%;
	position: absolute;
	right:0;
	top:0;
}
.sub-list-text.xiazai .item:hover .time:after{
	content: "";
	width:2.4rem;
	height:2.4rem;
	background-image: url(../images/ny/icon_list_down2_hover.png);
	background-size: 100%;
	position: absolute;
	right:0;
	top:0;
}

/*sub-list-keshi*/
.sub-list-keshi .item{
	padding:2.2rem 0;
	min-height: 8rem;
	background: #FFFFFF;
	box-shadow: 0px 2px 8px 0px rgba(229,225,216,0.6);
	border: 1px solid #F0ECE4;
	margin-top:2rem;
	cursor: pointer;
	position: relative;
	font-size:1.8rem;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-keshi .item:hover::after{
	content: "";
	height:2px;
	width:100%;
	background-color: #920303;
	position: absolute;
	bottom:0;
	left:0;
	-webkit-transition: 500ms;
	transition: 500ms;
}

.sub-list-keshi .item .title{
	width:11rem;
	text-align: center;
	color:#333333;
	margin:0;
	padding: 0;
	font-size:1.8rem;
	position: relative;
}
.sub-list-keshi .item .title:after{
	content: "";
	height:2rem;
	width:0.1rem;
	background: #E5E1D8;
	position: absolute;
	right:0;
	top:0.2rem;
}
.sub-list-keshi .item:hover .title{
	color:#920303;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-keshi .item .intro{
	width:calc(100% - 11rem);
	text-align:left;
	color:#333333;
	padding:0 2.2rem;
}


/*sub-list-tongzhi */
.sub-list-tongzhi{
	padding-top:1rem;
}
.sub-list-tongzhi .item {
	 cursor: pointer;
	 -webkit-transition: 500ms;
	 transition: 500ms;
	 display: flex;
	 justify-content: space-between;
	 align-items: flex-start;
	 min-height:7rem;
	 padding:2rem 0;
	 border-bottom: 1px solid #DFCAA4;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
 }


.sub-list-tongzhi .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 0.2rem;
	background: #920303;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width 300ms ease; /* 更快更丝滑 */
	transition: width 300ms ease;
}

/* 鼠标滑过：宽度变100%，从左到右展开 */
.sub-list-tongzhi .item:hover::after {
	width: 100%;
}

.sub-list-tongzhi .item .item-body{
	width:calc(100% - 11rem);
	position: relative;
	padding-left:3rem;
}
.sub-list-tongzhi .item .item-body:before{
	content: "";
	height:100%;
	width:0.1rem;
	background: rgba(223,202,164,0.5);
	position: absolute;
	left:0;
	top:0;
}
.sub-list-tongzhi .title {
	color: #333;
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 0.5rem;
}

.sub-list-tongzhi .item:hover .title{
	color: #A00603;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-tongzhi .summary {
	font-weight: 400;
	font-size: 1.6rem;
	color: #979797;
	line-height: 2.8rem;
}
.sub-list-tongzhi .time {
	width:10.5rem;
	height:6rem;
	text-align: left;
}
.sub-list-tongzhi .time .day{
	font-size: 2.8rem;
	color: #333333;
	line-height: 36px;
	display: block;
}
.sub-list-tongzhi .time .year{
	font-size: 1.6rem;
	color: #9E9D9D;
	display: block;
}
.sub-list-tongzhi .item:hover .day,
.sub-list-tongzhi .item:hover .year{
	color: #920303;
	font-weight: bold;
	-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;
	min-height:20rem;
	padding:4rem 0;
	border-bottom: 1px solid #DFCAA4;
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	backface-visibility: hidden;
}


.sub-list-tuwen .item::after {
	content: "";
	width: 0; /* 关键：默认隐藏 */
	height: 0.2rem;
	background: #920303;
	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% - 11rem);
	position: relative;
	padding-left:2rem;
}

.sub-list-tuwen .title {
	color: #333;
	font-size: 2rem;
	line-height: 3rem;
	margin-bottom: 0.5rem;
}

.sub-list-tuwen .item:hover .title{
	color: #A00603;
	font-weight: bold;
	-webkit-transition: 500ms;
	transition: 500ms;
}
.sub-list-tuwen .summary {
	font-weight: 400;
	font-size: 1.6rem;
	color: #979797;
	line-height: 2.8rem;
}

.sub-list-tuwen .item-img {
	width:30rem;
}
.sub-list-tuwen .item-img img{
	width:100%;
}
.sub-list-tuwen .time{
	font-size: 1.6rem;
	color: #979797;
}
.sub-list-tuwen .more{
	margin-left:0.5rem;
	width:1.7rem;
	height:1.7rem;
	background-image: url(../images/ny/icon_list_more.png);
	background-size:1.7rem 1.7rem;
	display: block;
}
.sub-list-tuwen .item:hover .more{
	background-image: url(../images/ny/icon_list_more_hover.png);
}

