.newsContainer h1 {
	font-size: 22px;
	color: #333;
}

.newsArea {
	position: relative;
}

.newsList h5 {
	font-size: 15px;
	font-weight: normal;
}

.newsSwiper {
	height: 180px;
}

.newsSwiper .swiper-slide {
	position: relative;
	transform: scale(0.9) translateY(10px);
	transition: 0.3s;
	opacity: 0.7;
}

.newsSwiper .swiper-slide:hover {
	box-shadow: 0 2px 20px 0 rgb(0 0 0 / 20%);
}

.newsSwiper .swiper-slide:hover > h5 {
	background: linear-gradient(to top, var(--primary), rgba(0, 0, 0, 0.3), transparent);
}

.newsSwiper .swiper-slide.swiper-slide-active {
	transform: scale(1);
	opacity: 1;
}

.newsSwiper .swiper-slide.swiper-slide-prev {
	/* transform: rotateY(90deg) scale(.9); */
}

.newsSwiper .swiper-slide > img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 3px;
}

.newsSwiper .swiper-slide > h5 {
	position: absolute;
	bottom: -8px;
	overflow: hidden;
	left: 0;
	width: 100%;
	font-size: 13px;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
	color: #fff;
	height: 60px;
	line-height: 40px;
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	transition: 0.3s;
}

.newsList {
	display: flex;
	flex-wrap: wrap;
}

.newsList > div {
	min-width: calc(50% - 15px);
	flex: 1;
	overflow: hidden;
	margin-top: 15px;
	position: relative;
	padding: 15px;
	padding-left: 130px;
	border-radius: 5px;
	transition: 0.3s;
}

.newsList > div:nth-child(odd) {
	margin-right: 15px;
}

.newsList > div > img {
	width: 100px;
	height: 68px;
	object-fit: cover;
	flex-shrink: 0;
	margin-right: 15px;
	border-radius: 2px;
	position: absolute;
	left: 15px;
	top: 15px;
	opacity: 0.9;
	transition: 0.3s;
}

.newsList > div > div {
	flex-grow: 1;
}

.newsList a {
	font-weight: bold;
	color: #333;
	font-size: 16px;
	line-height: 1em;
	padding-bottom: 5px;
	display: block;
	transition: 0.3s;
}

.newsList a:hover {
	text-decoration: none;
}

.newsList > div:hover {
	transform: scale(1.05);
	box-shadow: 0 2px 20px 0 rgb(0 0 0 / 12%);
}

.newsList > div:hover a {
	color: var(--primary);
}

.newsList > div:hover > img {
	opacity: 1;
}

.newsList > div > div > div {
	color: #777;
	font-size: 12px;
	transition: 0.3s;
}

.newsList > div:hover > div > div {
	color: var(--primary);
	opacity: 0.7;
}

.hotTab {
	position: sticky;
	top: 62px;
	background: #fff;
	padding: 1em;
}

.hotTab {
	display: flex;
}

.hotTab > div {
	color: #999;
	margin-right: 20px;
	cursor: pointer;
	text-align: center;
}

.hotTab > div.active {
	color: var(--primary);
	border-bottom: 2px solid var(--primary);
	font-weight: bold;
}

.hotList {
	padding-bottom: 10px;
}

.hotList > div {
	margin: 18px;
}

.hotList > div > h5 {
	font-size: 16px;
	color: #333;
}

.hotList > div > span {
	color: #aaa;
	font-size: 12px;
}

.hotList > div > div {
	color: #777;
	font-size: 12px;
}

.cateLink {
	padding-bottom: 20px;
	display: flex;
}

.cateLink > a {
	background: #f5f6f7;
	margin-right: 10px;
	height: 40px;
	line-height: 40px;
	border-radius: 3px;
	color: #777 !important;
	text-decoration: none;
	text-align: center;
	padding: 0 20px;
}

.cateLink > a:hover {
	color: #555 !important;
	background: #e5e6e7;
}

.cateLink > a.active,
.cateLink > a.active:hover {
	background: var(--primary);
	color: #fff !important;
}

.newsItem {
	display: flex;
	transition: 0.3s;
	position: relative;
}

.newsItem > img {
	width: 160px;
	height: 110px;
	flex-shrink: 0;
	object-fit: cover;
	border-radius: 3px;
	margin-right: 15px;
	opacity: 0.8;
}

.newsItem:hover img {
	opacity: 1;
}

.newsItem > div > div {
	color: #777;
}

.newsItem > div > h5 {
	transition: 0.3s;
}

.newsItem > div > span {
	color: #aaa;
	font-size: 12px;
	margin-bottom: 8px;
	display: block;
}

.newsItem > div > span > i {
	font-size: 12px;
	margin-left: 20px;
}

.newsItem > div > span > i:first-child {
	margin-left: 0;
}

.newsItem:hover {
	box-shadow: 0 2px 20px 0 rgb(0 0 0 / 17%);
	transform: translateY(-3px);
}

.newsItem:hover h5 {
	color: var(--primary);
}

/* .newsItem:hover>div>div {
    color: var(--primary);
    opacity: .7;
} */

.hotItem > img {
	width: 100%;
	height: 150px;
	opacity: 0.8;
	transition: 0.3s;
}

.hotItem:hover > img {
	opacity: 1;
}

.hotItem {
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.hotItem > h5 {
	padding: 0px 10px;
	padding-top: 15px;
	line-height: 1em;
	margin-bottom: 0;
	transition: 0.3s;
}

.hotItem:hover > h5 {
	color: var(--primary);
}

.hotItem > span {
	padding: 0 10px;
	display: block;
}

.hotItem:hover {
	background: #f1f2f3;
}

.newsSwiper .swiper-button-prev,
.newsSwiper .swiper-button-next {
	color: #aaa;
	background: rgba(0, 0, 0, 0.2);
	width: 35px;
	height: 70px;
	font-size: 20px;
	border-radius: 3px;
	display: none;
	margin: 0 20px;
	margin-top: -20px;
}

.newsSwiper .swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 22px;
	color: #fff;
}

.newsSwiper:hover .swiper-button-next,
.newsSwiper:hover .swiper-button-prev {
	display: flex;
}

.newsSwiper .swiper-button-next:hover,
.newsSwiper .swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
}

.pages {
	display: flex;
	justify-content: center;
}

.pages > * {
	background: linear-gradient(to bottom, #fff, #f5f6f7);
	border: 1px solid #e2e3e3;
	margin-right: 8px;
	padding: 0 10px;
	border-radius: 3px;
	text-decoration: none !important;
	color: #555;
	overflow: hidden;
	min-width: 40px;
	text-align: center;
}

.pages > *:last-child {
	margin-right: 0;
}

.pages > a.disabled {
	background: #efefef;
	cursor: not-allowed;
	color: #aaa;
	pointer-events: none;
}

.pages > a:hover {
	background: linear-gradient(to bottom, #fff, #e1e2e3);
	border-color: #e2e3e3;
	color: inherit;
}

.pages > .current {
	background: var(--primary) !important;
	color: #fff !important;
	border-color: var(--primary) !important;
	pointer-events: none;
}

.hotDesc > i {
	margin-left: 10px;
	font-size: 13px;
	margin-right: 5px;
}

.hotDesc > i:first-child {
	margin-left: 0;
}

.exampleItem2 {
	width: 100%;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s;
	top: 0;
	box-shadow: 0 2px 20px 0 rgb(0 0 0 / 5%);
	margin-top: 20px;
}

.exampleItem2:before {
	background: var(--red);
}

.exampleItem2:hover {
	box-shadow: 0 2px 20px 0 rgb(0 0 0 / 18%);
	top: -5px;
}

.exampleItem2:hover > .title > h6 {
	color: var(--red);
}

.exampleItem2 > .pic {
	width: 100%;
	padding-bottom: 60%;
	background-size: cover;
	background-position: center;
}

.exampleItem2 > .title {
	padding: 15px 20px;
	padding-top: 20px;
}

.exampleItem2 > .title > h6 {
	color: #444;
	font-size: 15px;
}

.exampleItem2 > .logo {
	position: absolute;
	bottom: 35px;
	left: 15px;
	background: #fff;
	height: 50px;
	width: 100px;
	/*box-shadow:0 2px 20px 0 rgb(0 0 0 / 10%);*/
	border-radius: 4px;
	padding: 10px;
}

.exampleItem2 > .logo > div {
	background-size: contain;
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 600px) {
	.cateLink > a {
		padding: 0 !important;
		flex: 1 !important;
	}
}
