.index-product {
	background-image: url(/wp-content/themes/oukai/images/index-product.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.index-product h4 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding-bottom: 25px;
	color: #1a1a1a;
	position: relative;
	margin-bottom: 40px;
}

.index-product h4:after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 4px;
	background-color: red;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-product h4+p {
	font-size: 18px;
}

.index-product .index-product-list {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	padding-top: 50px;
}

.index-product .index-product-list .list {
	width: calc(25% - (90px / 4));
	background-color: #eeeeee;
	position: relative;
	border: 1px solid #cecece;
	overflow: hidden;
}

.index-product .index-product-list .list:last-child {
	display: none;
}

.index-product .index-product-list .list .img img {
	width: 100%;
	mix-blend-mode: multiply;
}

.index-product .index-product-list .list .text {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(100%);
	opacity: 0;
	transition: all .3s;
}

.index-product .index-product-list .list:hover .text {
	transform: translateY(0%);
	opacity: 1;
}

.index-product .index-product-list .list .text img {
	width: 80px;
	height: 80px;
	padding: 15px;
	border: 3px solid #ffffff;
	border-radius: 50px;
	opacity: 0.75;
}

.index-product .index-product-list .list .text img:hover {
	opacity: 0.95;
}

@media (max-width:1200px) {
	.index-product .index-product-list .list {
		width: calc(33.33% - (60px / 3));
	}
	.index-product .index-product-list .list:last-child {
		display: block;
	}
}

@media (max-width:768px) {
	.index-product h4 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.index-product h4:after {
		width: 50px;
	}
	.index-product .index-product-list {
		padding-top: 10px;
		gap: 15px;
	}
	.index-product .index-product-list .list {
		width: calc(50% - 7.5px);
	}
	.index-product .index-product-list .list:last-child {
		display: none;
	}
}

.banner .swiper-slide {
	width: 100%;
	height: 650px;
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.banner .swiper-slide .list {
	display: flex;
	flex-flow: wrap;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding-left: 60%;
}

.banner .swiper-slide h3 {
	font-size: 52px;
	color: #ffffff;
	font-weight: 600;
	padding-bottom: 15px;
	transform: translateX(2000px);
	opacity: 0;
	transition: all .3s;
}

.banner .swiper-slide.swiper-slide-active .list h3 {
	transform: translateX(0);
	opacity: 1;
}

.banner .swiper-slide p {
	font-size: 20px;
	color: #ffffff;
	transform: translateX(2000px);
	opacity: 0;
	transition: all .4s;
}

.banner .swiper-slide.swiper-slide-active .list p {
	transform: translateX(0);
	opacity: 1;
}

.banner .swiper-slide .more {
	margin-top: 70px;
	transform: translateX(2000px);
	opacity: 0;
	transition: all .5s;
}

.banner .swiper-slide.swiper-slide-active .list .more {
	transform: translateX(0);
	opacity: 1;
}

.banner .swiper-slide .more a {
	font-size: 18px;
	color: yellow;
	border-top: 1px solid yellow;
	border-bottom: 1px solid yellow;
	padding: 12px 0;
	padding-right: 50px;
}

.swiper-button-prev,
.swiper-button-next {
	background-color: #ffffff;
	border-radius: 50px;
	line-height: 1;
	width: 44px;
	height: 44px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2)
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	background-color: #dddddd;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}

.swiper-pagination-bullet {
	background-color: #ffffff;
	height: 8px;
	width: 16px;
	border-radius: 50px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

@media (max-width:1200px) {
	.banner .swiper-slide {
		height: 550px;
	}
}

@media (max-width:980px) {
	.banner .swiper-slide {
		height: 450px;
	}
	.banner .swiper-slide .more {
		margin-top: 40px;
	}
}

@media (max-width:768px) {
	.banner .swiper-slide {
		height: 200px;
	}
	.banner .swiper-slide .more {
		margin-top: 0px;
	}
	.banner .swiper-slide .list {
		padding-left: 40%;
	}
	.banner .swiper-slide h3 {
		font-size: 24px;
		padding-bottom: 0;
		margin-top: 0;
	}
	.banner .swiper-slide p {
		font-size: 16px;
	}
	.banner .swiper-slide .more a {
		font-size: 16px;
		padding: 8px 0;
		padding-right: 30px;
	}
	.swiper-button-prev,
	.swiper-button-next {
		width: 25px;
		height: 25px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 12px;
	}
}


/*为什么*/

.index-why .index-why-list {
	display: flex;
	flex-flow: wrap;
}

.index-why .index-why-list .list {
	width: 33.33%;
	color: #ffffff;
	padding: 50px;
	display: flex;
	flex-flow: wrap;
	transform: translateY(0);
	transition: all .3s;
}

.index-why .index-why-list .list:hover {
	transform: translateY(-20px);
}

.index-why .index-why-list .list .list-L {
	width: 130px;
}

.index-why .index-why-list .list .list-R {
	width: calc( 100% - 130px);
}

.index-why .index-why-list .list:nth-of-type(1) {
	background-color: #305CC4;
}

.index-why .index-why-list .list:nth-of-type(2) {
	background-color: #2B57B6;
}

.index-why .index-why-list .list:nth-of-type(3) {
	background-color: #013281;
}

.index-why .index-why-list .list .list-L .date {
	font-size: 72px;
	line-height: 1;
	font-family: "FRABK";
}

.index-why .index-why-list .list .list-L .date span {
	font-size: 20px;
	font-weight: 600;
	padding-left: 5px;
}

.index-why .index-why-list .list .list-R h4 {
	font-size: 20px;
	font-weight: 500;
}

.index-why .index-why-list .list .list-R h6 {
	font-size: 13px;
	opacity: 0.5;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.index-why .index-why-list .list .list-R .img {
	padding-top: 30px;
}

.index-why .index-why-list .list .list-R .img img {
	height: 80px;
}

@media (max-width:1200px) {
	.index-why .index-why-list .list {
		padding: 40px 25px;
	}
}

@media (max-width:980px) {
	.index-why .index-why-list .list {
		width: 50%;
		padding: 50px;
	}
}

@media (max-width:768px) {
	.index-why .index-why-list .list {
		width: 100%;
		padding: 30px;
	}
	.index-why .index-why-list .list .list-L {
		width: 110px;
	}
	.index-why .index-why-list .list .list-R {
		width: calc(100% - 110px);
	}
	.index-why .index-why-list .list .list-L .date {
		font-size: 52px;
	}
	.index-why .index-why-list .list .list-R .img img {
		height: 60px;
	}
	.index-why .index-why-list .list .list-R .img {
		padding-top: 10px;
	}
}


/*首页简介*/

.index-about {
	background-image: url(/wp-content/themes/oukai/images/index-about.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
	width: 100%;
	min-height: 200px;
	display: flex;
	flex-flow: wrap;
}

.index-about .index-about-L,
.index-about .index-about-R {}

.index-about .index-about-L {
	background-color: rgb(0 110 189 / 90%);
	width: 50%;
	padding-left: 15%;
	padding-right: 5%;
}

.index-about .index-about-L h4 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding-bottom: 25px;
	color: #ffffff;
	position: relative;
	margin-bottom: 40px;
}

.index-about .index-about-L h4:after {
	content: '';
	display: inline-block;
	width: 65px;
	height: 4px;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-about .index-about-L p {
	font-size: 16px;
	color: #ffffff;
	line-height: 2;
}

.index-about .index-about-L p+p {
	padding-top: 20px;
}

.index-about .index-about-L .more {
	margin-top: 50px;
}

.index-about .index-about-L .more a {
	font-size: 16px;
	color: #ffffff;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	padding: 12px 0;
	padding-right: 50px;
}

@media (max-width:1400px) {
	.index-about .index-about-L {
		padding-left: 10%;
	}
}

@media (max-width:1200px) {
	.index-about .index-about-L {
		width: 60%;
	}
}

@media (max-width:980px) {
	.index-about .index-about-L {
		padding-left: 5%;
	}
}

@media (max-width:768px) {
	.index-about .index-about-L {
		width: 100%;
	}
	.index-about .index-about-L h4 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.index-about .index-about-L h4:after {
		width: 50px;
	}
	.index-about .index-about-L p {
		line-height: 1.68;
	}
	.index-about .index-about-L p+p {
		padding-top: 5px;
	}
	.index-about .index-about-L .more {
		margin-top: 10px;
	}
	.index-about .index-about-L .more a {
		font-size: 14px;
		padding: 8px 0;
		padding-right: 30px;
	}
}


/*首页产品*/

.index-product {
	background-image: url(/wp-content/themes/oukai/images/index-product.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
}

.index-product h4 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding-bottom: 25px;
	color: #1a1a1a;
	position: relative;
	margin-bottom: 40px;
}

.index-product h4:after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 4px;
	background-color: red;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-product h4+p {
	font-size: 18px;
}

.index-product .index-product-list {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	padding-top: 50px;
}

.index-product .index-product-list .list {
	width: calc(25% - (90px / 4));
	background-color: #eeeeee;
	position: relative;
	border: 1px solid #cecece;
	overflow: hidden;
}

.index-product .index-product-list .list:last-child {
	display: none;
}

.index-product .index-product-list .list .img img {
	width: 100%;
	mix-blend-mode: multiply;
}

.index-product .index-product-list .list .text {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(100%);
	opacity: 0;
	transition: all .3s;
}

.index-product .index-product-list .list:hover .text {
	transform: translateY(0%);
	opacity: 1;
}

.index-product .index-product-list .list .text img {
	width: 80px;
	height: 80px;
	padding: 15px;
	border: 3px solid #ffffff;
	border-radius: 50px;
	opacity: 0.75;
}

.index-product .index-product-list .list .text img:hover {
	opacity: 0.95;
}

@media (max-width:1200px) {
	.index-product .index-product-list .list {
		width: calc(33.33% - (60px / 3));
	}
	.index-product .index-product-list .list:last-child {
		display: block;
	}
}

@media (max-width:768px) {
	.index-product h4 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.index-product h4:after {
		width: 50px;
	}
	.index-product .index-product-list {
		padding-top: 10px;
		gap: 15px;
	}
	.index-product .index-product-list .list {
		width: calc(50% - 7.5px);
	}
	.index-product .index-product-list .list:last-child {
		display: none;
	}
}


/*首页服务*/

.index-service {
	display: flex;
	flex-flow: wrap;
	color: #ffffff;
}

.index-service .index-service-L {
	background-image: url(/wp-content/themes/oukai/images/index-service.jpg);
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
	width: 50%;
	min-height: 300px;
}

.index-service .index-service-R {
	width: 50%;
	background-color: #006ebd;
	padding-right: 15%;
	padding-left: 5%;
	padding-top: 120px;
	padding-bottom: 80px;
}

.index-service .list {
	display: flex;
}

.index-service .list .list-L {
	width: 140px;
}

.index-service .list .list-R {
	width: calc(100% - 140px);
}

.index-service .list .list-L h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	position: relative;
}

.index-service .list .list-L h4:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 3px;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	bottom: -50px;
}

.index-service .list .list-R .number {
	font-size: 18px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 10px;
}

.index-service .list .list-R .number span {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: #ffffff;
	margin-left: 10px;
}

.index-service .list+.list .number {
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	padding-top: 40px;
}

.index-service .list .list-R p {
	font-size: 15px;
	line-height: 2;
	text-align: justify;
	margin: 0;
	margin-bottom: 40px;
}

.index-service .index-service-L .text {
	display: flex;
	justify-content: flex-end;
}

.index-service .index-service-L .text h4 {
	font-size: 32px;
	writing-mode: vertical-rl;
	text-align: start;
	word-wrap: break-word;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 10px;
	display: inline-block;
	position: relative;
	top: 120px;
	right: -120px;
}

.index-service .index-service-L .text h4:after {
	content: '';
	display: inline-block;
	width: 3px;
	height: 115px;
	background-color: #ffffff;
	position: absolute;
	top: -130px;
	left: 50%;
}

.index-service .index-service-L .text h6 {
	font-size: 32px;
	writing-mode: vertical-rl;
	;
	position: relative;
	top: 120px;
}

@media (max-width:1400px) {
	.index-service .index-service-R {
		padding-right: 10%;
	}
}

@media (max-width:980px) {
	.index-service .index-service-R {
		padding-right: 5%;
	}
	.index-service .index-service-L {
		width: 100%;
		min-height: 500px;
	}
	.index-service .index-service-R {
		width: 100%;
		padding-top: 80px;
		padding-bottom: 40px;
	}
	.index-service .index-service-L .text h4 {
		top: 50px;
	}
	.index-service .index-service-L .text h4:after {
		top: -60px;
		height: 45px;
	}
	.index-service .index-service-L .text h6 {
		top: 50px;
	}
}

@media (max-width:768px) {
	.index-service .index-service-L {
		min-height: 200px;
	}
	.index-service .index-service-L .text h4 {
		writing-mode: initial;
		width: 100%;
		left: 50px;
		top: 20px;
		right: auto;
		font-size: 24px;
		line-height: 1;
	}
	.index-service .index-service-L .text h6 {
		writing-mode: initial;
		width: 100%;
		left: 50px;
		top: 10px;
		font-size: 18px;
	}
	.index-service .index-service-L .text {
		justify-content: normal;
		width: 100%;
		flex-flow: wrap;
		overflow: hidden;
	}
	.index-service .index-service-L .text h4:after {
		width: 40px;
		height: 3px;
		top: 9px;
		left: -50px;
	}
	.index-service .index-service-R {
		padding-top: 30px;
		padding-bottom: 15px;
	}
	.index-service .list {
		flex-flow: wrap;
	}
	.index-service .list .list-L {
		width: 100%;
	}
	.index-service .list .list-R {
		width: 100%;
	}
	.index-service .list .list-L h4 br:first-child {
		display: none;
	}
	.index-service .list .list-R .number {
		justify-content: flex-start
	}
	.index-service .list .list-R p {
		padding-top: 20px;
		line-height: 1.68;
		margin-bottom: 15px;
	}
	.index-service .list+.list .number {
		padding-top: 0;
		border-top: 0;
	}
	.index-service .list .list-R {
		border-bottom: 1px solid rgba(255, 255, 255, 0.35);
		margin-bottom: 15px;
	}
}

.index-sale {
	display: flex;
	flex-flow: wrap;
	align-items: center;
}

.index-sale .index-sale-L {
	width: 65%;
}

.index-sale .index-sale-R {
	width: 35%;
	padding-left: 10%;
}

.index-sale .index-sale-R h4 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding-bottom: 25px;
	color: #1a1a1a;
	position: relative;
	margin-bottom: 40px;
}

.index-sale .index-sale-R h4:after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 4px;
	background-color: red;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-sale .index-sale-R h4+p {
	font-size: 15px;
	line-height: 2;
	margin: 0;
}

@media (max-width:980px) {
	.index-sale .index-sale-L {
		width: 100%;
	}
	.index-sale .index-sale-R {
		width: 100%;
		padding-left: 0;
		padding-bottom: 50px;
	}
	.index-sale {
		flex-direction: column-reverse;
	}
}

@media (max-width:768px) {
	.index-sale .index-sale-R h4 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.index-sale .index-sale-R h4:after {
		width: 50px;
	}
	.index-sale .index-sale-R h4+p {
		line-height: 1.68;
	}
	.index-sale .index-sale-R {
		padding-bottom: 20px;
	}
}

.index-new {
	background-color: #f1f1f1;
}

.index-new h4 {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
	padding-bottom: 25px;
	color: #1a1a1a;
	position: relative;
	margin-bottom: 40px;
}

.index-new h4:after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 4px;
	background-color: red;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-new .index-new-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-new .index-new-list .list-L {
	width: 46%;
	padding: 50px;
	background-color: #dddddd;
	min-height: 600px;
}

.index-new .index-new-list .list-R {
	width: 46%;
}

.index-new .index-new-list .list-L .time {
	font-size: 32px;
	color: #999999;
	padding-bottom: 30px;
	line-height: 1;
}

.index-new .index-new-list .list-L .img img {
	width: 100%;
}

.index-new .index-new-list .list-L h6 {
	margin: 0;
	padding-bottom: 30px;
}

.index-new .index-new-list .list-L h6 a {
	font-size: 22px;
	color: #1a1a1a;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index-new .index-new-list .list-L h6:hover a{
	color: #006ebd;
}
.index-new .index-new-list .list-L p {
	font-size: 15px;
	color: #555555;
	line-height: 2;
	padding-left: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	position: relative;
	margin-bottom: 0;
}

.index-new .index-new-list .list-L p:after {
	content: '';
	display: inline-block;
	width: 3px;
	height: calc(100% - 16px);
	background-color: #888;
	position: absolute;
	left: 0;
	top: 8px;
}

.index-new .index-new-list .list-L .img {
	margin-top: 30px;
	margin-bottom: 30px;
	background-repeat: no-repeat;
	background-size: cover, cover;
	background-position: center;
	width: 100%;
	height: 200px;
}

.index-new .index-new-list .list-L .more {}

.index-new .index-new-list .list-L .more a {
	font-size: 16px;
	color: #1a1a1a;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
	padding: 12px 0;
	padding-right: 50px;
}
.index-new .index-new-list .list-L .more:hover a{
	color: #006ebd;
	border-top: 1px solid #006ebd;
	border-bottom: 1px solid #006ebd;
}
.index-new .index-new-list .list-R ul li {
	padding-left: 50px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.35);
	min-height: 200px;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	transition:all 0.3s ease 0s;
}
.index-new .index-new-list .list-R ul li:hover{
	padding-left: 25px;
}
.index-new .index-new-list .list-R ul li:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.35);
}

.index-new .index-new-list .list-R ul li .li-L {
	width: calc(100% - 150px);
}

.index-new .index-new-list .list-R ul li .li-R {
	width: 150px;
}

.index-new .index-new-list .list-R ul li h6 {
	margin: 0;
	font-size: 18px;
	padding-bottom: 20px;
}

.index-new .index-new-list .list-R ul li h6 a {
	font-size: 20px;
	color: #1a1a1a;
	display: inline-block;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.index-new .index-new-list .list-R ul li:hover h6 a {
	color: #006ebd;
}
.index-new .index-new-list .list-R ul li p {
	font-size: 15px;
	line-height: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 0;
}
.index-new .index-new-list .list-R ul li:hover p {
	color: #000000;
}
.index-new .index-new-list .list-R ul li .time {
	font-size: 28px;
	color: #999999;
	line-height: 1;
}
.index-new .index-new-list .list-R ul li:hover .time{
	color: #006ebd;
}

.index-new .index-new-list .list-R ul li .more {
	margin-top: 20px;
}

.index-new .index-new-list .list-R ul li .more a {
	color: #999999;
	font-size: 32px;
}

.index-new .index-new-list .list-R ul li .more a img {
	height: 30px;
}

.index-new .index-new-list .list-R ul li .li-R {
	text-align: right;
}

@media (max-width:768px) {
	.index-new h4 {
		font-size: 24px;
		padding-bottom: 15px;
		margin-bottom: 20px;
	}
	.index-new h4:after {
		width: 50px;
	}
	.index-new .index-new-list .list-L {
		width: 100%;
		padding: 30px 15px;
		min-height: auto;
	}
	.index-new .index-new-list .list-R {
		width: 100%;
	}
	.index-new .index-new-list .list-L .time {
		font-size: 18px;
		padding-bottom: 10px;
	}
	.index-new .index-new-list .list-L h6 a {
		font-size: 18px;
	}
	.index-new .index-new-list .list-L h6 {
		padding-bottom: 5px;
	}
	.index-new .index-new-list .list-L p {
		font-size: 14px;
		line-height: 1.68;
		padding-left: 15px;
	}
	.index-new .index-new-list .list-L p:after {
		height: calc(100% - 8px);
		top: 4px;
	}
	.index-new .index-new-list .list-L .img {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.index-new .index-new-list .list-L .more a {
		font-size: 14px;
		padding: 8px 0;
		padding-right: 30px;
	}
	.index-new .index-new-list .list-R ul li {
		padding-left: 0;
		min-height: auto;
		padding: 20px 0;
		flex-direction: column-reverse;
	}
	.index-new .index-new-list .list-R ul li .li-L {
		width: 100%;
	}
	.index-new .index-new-list .list-R ul li .li-R {
		width: 100%;
		display: flex;
		flex-flow: wrap;
	}
	.index-new .index-new-list .list-R ul li h6 {
		padding-bottom: 5px;
	}
	.index-new .index-new-list .list-R ul li h6 a {
		font-size: 16px;
		font-weight: 600;
	}
	.index-new .index-new-list .list-R ul li p {
		font-size: 14px;
		line-height: 1.68;
	}
	.index-new .index-new-list .list-R ul li .more {
		line-height: 1;
		margin-top: 0;
		display: none
	}
	.index-new .index-new-list .list-R ul li .more a {
		font-size: 0;
		padding-left: 10px;
	}
	.index-new .index-new-list .list-R ul li .time {
		font-size: 16px;
		margin: 0;
		padding: 0;
		padding-bottom: 10px;
	}
	.index-new .index-new-list .list-R ul li .more a img {
		height: 16px;
		line-height: 1;
	}
}