﻿@charset "utf-8";

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select {
	margin: 0;
	padding: 0;
}

body,
input,
textarea,
select,
button,
table {
	font-size: 16px;
	line-height: 1.25em;
	font-family: Arial, 'microsoft yahei', Verdana, Helvetica, sans-serif;
}

/*取消按钮点击的时候有阴影*/
a,
img,
button,
input,
textarea {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-ms-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-tap-highlight-color: rgba(255, 255, 255, 0);
	-o-tap-highlight-color: rgba(255, 255, 255, 0);
}

button,
input,
textarea,
select {
	border: medium none;
	outline: medium none;
	/*取消chrome下input和textarea的聚焦边框*/
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
}

body {
	min-width: 320px;
	height: 100vh;
	font-size: 1em;
	-webkit-text-size-adjust: none;
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: normal;
}

header,
footer,
section,
nav,
menu,
details,
hgroup,
figure,
figcaption,
article,
aside {
	margin: 0;
	padding: 0;
	display: block;
}

img,
fieldset {
	border: 0;
}

img {
	vertical-align: middle;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

a {
	text-decoration: none;
}

.cl::after,
.cl::before {
	clear: both;
	content: " ";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}

.cl {
	zoom: 1
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

body {
	background-color: #fff;
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-x-center {
	display: flex;
	justify-content: center;
}

.flex-y-center {
	display: flex;
	align-items: center;
}

.flex-y-start {
	display: flex;
	align-items: flex-start;
}

.flex-y-end {
	display: flex;
	align-items: flex-end;
}

.flex-x-between {
	display: flex;
	justify-content: space-between;
}

.flex-x-start {
	display: flex;
	justify-content: flex-start;
}

.flex-x-end {
	display: flex;
	justify-content: flex-end;
}

.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

.rel {
	position: relative;
}

.abs {
	position: absolute;
}

.dis {
	display: block;
}

.hide {
	display: none;
}

/* 2026/03/04 首页1 */
.page {
	width: 100%;
}

.full_width_header {
	position: relative;
	z-index: 9999;
}

.full_width_header.sticky {
	background: #F5F9FC;
	border-bottom: 1px solid #E8F0F5;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	animation-delay: 0.5s;
	animation-duration: 0.5s;
	animation-name: sticky-animation;
	animation-timing-function: ease-out;
	animation-fill-mode: both;
}

@keyframes sticky-animation {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


.rs_header_top {
	width: 100%;
	height: 70px;
	background-color: #ffffff;
	padding: 0 25px;
}

.rs_header_top .logo_area img {
	width: 38px;
	display: block;
}

.rs_header_top .logo_area .title {
	color: #213447;
	font-weight: 600;
	margin-left: 12px;
	font-size: 18px
}

.rs_header_top .menu>li {
	margin-right: 40px;
	position: relative;
}

.rs_header_top .menu>li:last-child {
	margin-right: 0;
}

.rs_header_top .menu>li>a {
	font-size: 13px;
	color: #213447;
	line-height: 70px;
	position: relative;
}

.rs_header_top .menu>li.active>a {
	color: #4ecdc4;
	font-weight: bold;
}

.rs_header_top .menu>li:hover>a {
	color: #4ecdc4;
	font-weight: bold;
}

.rs_header_top .menu>li.active>a::after {
	content: '';
	display: block;
	width: 14px;
	height: 4px;
	background-color: #4ecdc4;
	border-radius: 5px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
}

.rs_header_top .menu>li>a img {
	width: 8px;
	display: block;
	margin-left: 6px;
}

.rs_header_top .sub_menu {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	box-shadow: 0px 4px 13px -3px #232323;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}

.rs_header_top .sub_menu li .sub_menu {
	left: 100%;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}

.menu ul {
	transition: all .3s ease-in-out;
}

.rs_header_top .menu li:hover>ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.rs_header_top .sub_menu li a {
	padding: 13px 15px;
	width: 250px;
	display: block;
	color: #2C3E50;
	font-size: 13px;
	transition: all 0.3s ease;
}

.rs_header_top .sub_menu li {
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
	position: relative;
}

.rs_header_top .sub_menu>li:last-child {
	border-bottom: none;
}

.rs_header_top .sub_menu li:hover>a {
	color: #4ECDC4;
}

.rs_header_top .sub_menu li .trc {
	padding-right: 20px;
}

.rs_header_top .sub_menu li .trc img {
	width: 4.5px;
	display: block;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.rs_header_top .rightBtn {
	margin-left: 100px;
}

.rs_header_top .rightBtn .loginBtn {
	cursor: pointer;
	font-size: 13px;
	line-height: 40px;
	padding: 0 15px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

.rs_header_top .rightBtn .loginBtn:hover {
	color: #4ecdc4;
	background-color: rgba(78, 205, 196, 0.1);
}

.rs_header_top .rightBtn .wxLoginBtn {
	cursor: pointer;
	height: 40px;
	padding: 0 12px;
	transition: all 0.3s ease;
	border-radius: 5px;
	background-color: #4ecdc4;
}

.rs_header_top .rightBtn .wxLoginBtn img {
	width: 16px;
	display: block;
}

.video_hero_section {
	position: relative;
	z-index: 999;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video_hero_section .video_background_wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.video_hero_section .video_background_wrapper .video-background {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 1;
}

.video_hero_section .video_background_wrapper .video_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.35) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.35) 100%);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.35) 100%);
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.35) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.35) 100%);
	z-index: 2;
}

.video_hero_section .video_hero_brand {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 15;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: padding 0.9s ease-in-out, align-items 0.9s ease-in-out, justify-content 0.9s ease-in-out;
}

.video_hero_section .video_hero_brand .video_hero_brand_text {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
	letter-spacing: 4px;
	transform-origin: center center;
	transform: scale(1);
	transition: transform 0.9s ease-in-out;
	will-change: transform;
}

.video_hero_section .video_hero_brand.scrolled {
	align-items: flex-start;
	justify-content: flex-start;
	padding: 32px 20px 32px 50px;
}

.video_hero_section .video_hero_brand.scrolled .video_hero_brand_text {
	transform: scale(0.5);
	transform-origin: 0 0;
}

.containerWidth {
	width: 1200px;
	margin: 0 auto;
}

.latest_news {
	padding: 75px 0 70px;
}


.containerWidth .title {
	text-align: center;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 50px;
}

.containerWidth .title .t1 {
	font-size: 30px;
	line-height: 24px;
	margin-bottom: 15px;
	color: #2c3e50;
	font-family: 'zihunjingdianlihei_trial';
}

.containerWidth .title .t2 {
	font-size: 16px;
}

.containerWidth .title:after {
	content: "";
	position: absolute;
	height: 3px;
	width: 100px;
	background: #4ECDC4;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.latest_news .news {
	width: calc(50% - 20px);
	position: relative;
	border-radius: 8px 8px 0 8px;
	overflow: hidden;
	margin-right: 20px;
}

.latest_news .news img {
	width: 100%;
	display: block;
}

.latest_news .news .text {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 5px 20px;
	width: 100%;
	background-color: rgba(34, 34, 34, 0.6);
	transition: 0.3s ease all;
}

.latest_news .news .text .new_name {
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.latest_news .news .text .news_subtitle {
	font-size: 14px;
	color: #ffffff;
}

.latest_news .news .news_content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 10%;
	left: 0;
	text-align: center;
	z-index: 11;
	padding: 30px;
	opacity: 0;
	transition: 0.3s all ease-out;
	background: rgba(0, 0, 0, 0.6);
}

.latest_news .news .news_content .new_name {
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 1.4;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #fff;
	font-weight: 700;
	position: relative;
	z-index: 111;
}

.latest_news .news .news_content .news_desc {
	color: #fff;
	font-size: 14px;
	padding-top: 12px;
	margin-top: 15px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.latest_news .news_list {
	width: calc(50% - 20px);
	margin-left: 20px;
}

.latest_news .news .readon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	z-index: 111;
	display: inline-block;
	padding: 10px 20px;
	background: #ff3115;
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(255, 49, 21, 0.3);
	cursor: pointer;
	opacity: 0;
}

.latest_news .news:hover .news_content {
	opacity: 1;
	top: 0;
}

.latest_news .news:hover .text {
	opacity: 0;
}

.latest_news .news:hover .readon {
	opacity: 1;
}

.latest_news .news .more {
	width: 55px;
	height: 25px;
	position: absolute;
	right: -1px;
	bottom: 0px;
	z-index: 150;
}

.latest_news .news .more .morebg {
	width: 100%;
	display: block;
}

.latest_news .news .more .moreBtn {
	width: 100%;
	height: 100%;
	font-size: 12px;
	color: #4e84cd;
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: pointer;
	padding-right: 5px;
	padding-top: 5px;
}

.latest_news .news .more .moreBtn img {
	width: 4px;
	display: block;
	margin-left: 5px;
}

.latest_news .news_list .item {
	width: 100%;
	height: 150px;
	padding: 15px;
	background-color: #ffffff;
	box-shadow: 0 0 20px rgba(242, 242, 242, 1);
	transition: all 0.3s ease;
	margin-bottom: 20px;
	border-radius: 5px;
}

.latest_news .news_list .item:last-child {
	margin-bottom: 0;
}

.latest_news .news_list .item:hover {
	transform: translateY(-2px);
}

.latest_news .news_list .item .tit {
	margin-bottom: 7px;
}

.latest_news .news_list .item .tit a {
	font-size: 14px;
	color: #2c3e50;
	font-weight: bold;
	transition: color 0.3s ease;
}

.latest_news .news_list .item .tit a:hover {
	color: #4ECDC4;
}

.latest_news .news_list .item .date {
	font-size: 12px;
	color: #414141;
	margin-bottom: 10px;
}

.latest_news .news_list .item .date img {
	width: 15px;
	display: block;
	margin-right: 8px;
}

.latest_news .news_list .item .desc {
	font-size: 13px;
	color: #666666;
	line-height: 1.6;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.secspacer {
	padding: 75px 0 115px;
}

.bg1 {
	background-size: cover;
	background-attachment: fixed;
	background-position: center top;
}

.carousel {
	width: 100%;
	height: 240px;
}

.swiper-container,
.swiper-wrapper {
	width: 100%;
	height: 100%;
}

.carousel .item {
	position: relative;
}

.carousel .item .testi_img {
	width: 80px;
	height: 80px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 5;
	border: 6px solid #ffffff;
	background-color: #ffffff;
	border-radius: 50%;
	overflow: hidden;
}

.carousel .item .testi_img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.carousel .item .testi_desc {
	width: 100%;
	height: 200px;
	margin-top: 40px;
	background-color: #ffffff;
	position: relative;
	z-index: 1;
	padding: 31px 25px;
}

.carousel .item .testi_desc .d1 {
	width: 20px;
	display: block;
	margin-bottom: 10px;
}

.carousel .item .testi_desc .d2 {
	width: 20px;
	display: block;
	margin-top: 10px;
}

.carousel .item .testi_desc .name {
	font-size: 16px;
	color: #2c3e50;
	font-weight: bold;
	margin-bottom: 5px;
}

.carousel .item .testi_desc p {
	font-size: 13px;
	color: #666666;
	line-height: 1.5;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.categories {
	padding: 55px 0 85px;
}

.catList .catitem {
	width: calc((100% - 25px * 4) / 5);
	height: 300px;
	margin-right: 25px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.catList .catitem:last-child {
	margin-right: 0;
}

.catList .catitem .box {
	width: 100%;
	height: 150px;
	position: relative;
	z-index: 1;
}

.catList .catitem .box.text {
	font-size: 13px;
	color: #ffffff;
	text-align: center;
	line-height: 1.4;
	padding: 55px 5px 40px;
	background: linear-gradient(to right bottom, #74d2cc, #51616f);
	background: -webkit-linear-gradient(left top, #74d2cc, #51616f);
	background: -moz-linear-gradient(left top, #74d2cc, #51616f);
	background: -ms-linear-gradient(left top, #74d2cc, #51616f);
	background: -o-linear-gradient(left top, #74d2cc, #51616f);
}

.catList .catitem .box.text p {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.catList .catitem .box.img img {
	width: 100%;
	height: 100%;
	display: block;
}

.catList .catitem .btmbg {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
}

.catList .catitem .main_box {
	width: 100%;
	height: 155px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	padding: 10px;
}

.catList .catitem .main_box .name {
	font-size: 15px;
	color: #2c3e50;
	font-weight: bold;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 13px;
	line-height: 1.5;
	cursor: pointer;
	transition: all .3s linear;
}

.catList .catitem .main_box .name:hover {
	color: #4ecdc4;
}

.catList .catitem .main_box .tips {
	display: inline-block;
	font-size: 12px;
	color: #4ecdc4;
	background-color: rgba(78, 205, 196, .2);
	height: 20px;
	line-height: 20px;
	padding: 0 10px;
	border-radius: 10px;
	margin-bottom: 13px;
}

.catList .catitem .main_box .view {
	font-size: 12px;
	color: #bbbbbb;
	transition: all .3s linear;
}

.catList .catitem .main_box .view img {
	width: 5px;
	display: block;
	margin-left: 5px;
}

.catList .catitem .main_box .view:hover {
	color: #4ECDC4;
}

.footer {
	background-color: #2c3e50;
	padding: 30px 0 65px;
}

.footer .f1 {
	margin-bottom: 35px;
}

.footer .f1 .t1 {
	font-size: 13px;
	line-height: 25px;
	font-weight: bold;
	color: #ffffff;
	margin-right: 20px;
}

.footer .f1 .t2 {
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
}

.footer .f1 .t2 img {
	width: 10px;
	display: block;
	margin-right: 8px;
	margin-bottom: 2px;
}

.footer .f2 .t1 {
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
}

.footer .f2 .t2 {
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
}

.footer .f2 .t2:hover {
	color: #4ECDC4;
}

.backtotop {
	width: 65px;
	height: 65px;
	cursor: pointer;
	border-radius: 50%;
	position: fixed;
	right: 70px;
	bottom: 190px;
	z-index: 900;
	background-color: #ffffff;
	box-shadow: 0 0 18px rgba(242, 242, 242, 1);
	display: none;
}

.backtotop img {
	width: 100%;
	height: 100%;
	display: block;
}

.menuMain {
	display: none;
	position: relative;
}

.menuBtn {
	height: 40px;
	font-size: 13px;
	color: #4ecdc4;
	padding: 0 15px;
	cursor: pointer;
	border-radius: 5px;
	display: none;
}

.menuBtn img {
	width: 17px;
	display: block;
	margin-right: 5px;
}

.menuBtn:hover {
	background-color: rgba(78, 205, 196, 0.1);
}

.menuMain .menusty2 {
	position: absolute;
	right: 0;
	top: 100%;
	background-color: #ffffff;
	box-shadow: 0px 4px 13px -3px #232323;
}

.menuMain .menusty2>li {
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
	position: relative;
}

.menuMain .menusty2>li>a {
	padding: 13px 15px;
	width: 250px;
	display: block;
	color: #2C3E50;
	font-size: 13px;
	transition: all 0.3s ease;
}

/* 媒体查询 */
@media screen and (max-width: 1200px) {
	.rs_header_top .menu {
		display: none;
	}

	.menuMain {
		display: block;
	}

	.menuBtn {
		display: flex;
	}

	.rs_header_top .rightBtn {
		margin-left: 0;
	}
}

@media screen and (max-width: 1024px) {}

/* 2026/03/05 首页2 */
.pagebg {
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 70px;
	z-index: 1;
}

.pagezdx {
	position: relative;
	z-index: 5;
}

.myCourses {
	width: 100%;
	padding: 75px 0 25px;
}

.myCourses .news {
	margin: 0 0 0 20px;
}

.myCourses .news_list {
	margin: 0 20px 0 0;
}

.coursesList {
	padding: 10px 0;
}

.coursesList .coursesItem {
	width: 100%;
	height: calc((100% - 15px *2) / 3);
	display: block;
	background-color: #ffffff;
	margin-bottom: 15px;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(242, 242, 242, 1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.coursesList .coursesItem:last-child {
	margin-bottom: 0;
}

.coursesList .coursesItem:hover {
	transform: translateY(-2px);
}

.coursesList .coursesItem .line {
	width: 4px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.coursesList .coursesItem .box {
	width: 100%;
	height: 100%;
	padding: 0 25px 0 40px;
}

.coursesList .coursesItem .box .name {
	font-size: 15px;
	color: #2c3e50;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.coursesList .coursesItem .name:hover {
	color: #4ECDC4;
}

.coursesList .coursesItem .box .tips {
	height: 20px;
	line-height: 20px;
	border-radius: 5px;
	font-size: 12px;
	padding: 0 10px;
}

.coursesList .coursesItem .box .date img {
	width: 15px;
	display: block;
}

.coursesList .coursesItem .box .date span {
	font-size: 12px;
	color: #414141;
	margin-left: 5px;
}

.coursesList .coursesItem.lsty1 .line {
	background-color: #5d99f4;
}

.coursesList .coursesItem.lsty1 .tips {
	background-color: #dfebfd;
	color: #5d99f4;
}

.coursesList .coursesItem.lsty2 .line {
	background-color: #f4cb5d;
}

.coursesList .coursesItem.lsty2 .tips {
	background-color: #fdf5df;
	color: #f4cb5d;
}

.coursesList .coursesItem.lsty3 .line {
	background-color: #5d68f4;
}

.coursesList .coursesItem.lsty3 .tips {
	background-color: #dfe1fd;
	color: #5d68f4;
}

/* 2026/03/05 详情页 */
.banner {
	display: block;
	margin-bottom: 20px;
}

.banner a {
	width: 100%;
	display: block;
}

.banner img {
	width: 100%;
	border-radius: 5px;
}

.detailsMain {
	padding-bottom: 30px;
}

.detailsList {
	width: 100%;
}

.detailsList .item {
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #eaeaea;
}

.detailsList .item .pic {
	width: 205px;
	height: 120px;
	border-radius: 5px;
	overflow: hidden;
}

.detailsList .item .pic img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.detailsList .item .val {
	width: calc(100% - 205px);
	padding: 5px 0 5px 25px;
}

.detailsList .item .val .name {
	font-size: 14px;
	color: #2c3e50;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 10px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s ease;
}

.detailsList .item .val .text {
	font-size: 13px;
	color: #666666;
	line-height: 1.5;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.detailsList .item:hover .name {
	color: #4ECDC4;
}

.pagination {
	width: 100%;
	padding: 20px 0;
}

.pagination .left {
	font-size: 13px;
	color: #626675;
}

.pagination .left>div {
	margin-right: 15px;
}

.pagination .left .total {
	position: relative;
}

.pagination .left .total_val {
	min-width: 70px;
	height: 25px;
	background-color: #f4f4f4;
	border-radius: 5px;
	padding: 0 23px 0 7px;
	color: #000000;
	font-size: 13px;
	cursor: pointer;
	position: relative;
	z-index: 5;
}

.pagination .left .total_ul {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 4px 13px -3px #232323;
	padding: 5px;
	max-height: 125px;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .3s ease-in-out;
}

.pagination .left .total:hover .total_ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.pagination .left .total_ul::-webkit-scrollbar {
	display: none;
}

.pagination .left .total_ul li {
	text-align: center;
	font-size: 13px;
	color: #626765;
	cursor: pointer;
	margin-bottom: 5px;
	border-radius: 5px;
	line-height: 25px;
	transition: all .3s linear;
}

.pagination .left .total_ul li:last-child {
	margin-bottom: 0;
}

.pagination .left .total_ul li:hover {
	color: #4ecdc4;
	background-color: rgba(78, 205, 196, 0.1);
}

.pagination .left .total::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid #8c8c8c;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 7px;
	z-index: 10;
}

.pagination .left .total:hover::before {
	border-bottom: 6px solid #8c8c8c;
	border-top: none;
}

.pagination .right .prev,
.pagination .right .next {
	width: 26px;
	height: 26px;
	cursor: pointer;
}

.pagination .right .prev {
	margin-right: 15px;
}

.pagination .right .next {
	margin-left: 15px;
}

.pagination .right .prev img,
.pagination .right .next img {
	width: 8px;
	display: block;
}

.pagination .right .prev.disabled,
.pagination .right .next.disabled {
	cursor: not-allowed !important;
	opacity: .5;
}

.pagination .right .datapage li {
	height: 26px;
	min-width: 26px;
	padding: 0 5px;
	text-align: center;
	line-height: 27px;
	font-size: 13px;
	color: #626675;
	margin-left: 10px;
	cursor: pointer;
	border-radius: 50%;
}

.pagination .right .datapage li.changicon {
	background-color: #4ecdc4;
	font-weight: bold;
	color: #ffffff !important;
}

.pagination .right .datapage li:first-child {
	margin-left: 0;
}

.pagination .right .datapage li:hover {
	color: #4ecdc4;
}

/* 视频播放弹窗 */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1060;
	width: 100%;
	height: 100%;
	background-color: #000000;
	overflow-x: hidden;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity .15s linear;
	padding-top: 70px;
}

.modal.show {
	opacity: 1;
	visibility: visible;
}

.modal .modal_content {
	width: 700px;
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	transform: translate(0, -50px);
	transition: transform .3s ease-out;
}

.modal.show .modal_content {
	transform: none;
}

.modal .modal_header {
	width: 100%;
	padding: 15px;
	background: linear-gradient(to right bottom, #4ECDC4 0%, #3DB5AD 100%);
	background: -webkit-linear-gradient(left top, #4ECDC4 0%, #3DB5AD 100%);
	background: -moz-linear-gradient(left top, #4ECDC4 0%, #3DB5AD 100%);
	background: -ms-linear-gradient(left top, #4ECDC4 0%, #3DB5AD 100%);
	background: -o-linear-gradient(left top, #4ECDC4 0%, #3DB5AD 100%);
}

.modal .modal_header .title {
	width: 100%;
	color: #fff;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	padding-right: 25px;
}

.modal .modal_header .close {
	width: 24px;
	display: block;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}

.modal .modal_body {
	width: 100%;
}

.modal .modal_body video {
	width: 100%;
	display: block;
	object-fit: contain;
}

/* 微信登录弹窗 */
.wxLogin .modal_content {
	background-color: #ffffff;
	padding: 40px 20px;
}

.wxLogin .modal_content .title {
	color: #000000;
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
}

.wxLogin .modal_content .text {
	margin-bottom: 30px;
	color: #666;
	font-size: 14px;
	text-align: center;
}

.wxLogin .modal_content .qrcode {
	width: 200px;
	height: 200px;
	margin: 0 auto 20px;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
}

.wxLogin .modal_content .qrcode img {
	width: 100%;
	height: 100%;
	display: block;
}

.wxLogin .modal_content .tips {
	color: #999;
	font-size: 12px;
	margin-top: 20px;
	text-align: center;
}

/* 专题内容 */
.cl::before {
	clear: both;
	content: " ";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
.w{
	width: 1200px;
	margin: 0 auto;
}
.content_left{
	width: 817px;
	float: left;
	position: relative;
}
.content_right{
	width: 324px;
	float: right;
}
.lai_rar{
	width: 100%;
}
.lai_rar ul{
	width: 100%;
}
.lai_rar ul li{
	width: 258px;
	height: 205px;
	float: left;
	margin-right: 21px;
	margin-top: 21px;
}
.lai_rar ul li:nth-child(3n){
	margin-right: 0;
}
.lai_rar ul li:nth-child(-n + 3){
	margin-top: 0;
}
.lai_rar ul li a{
	width: 100%;
	height: 100%;
	display: inline-block;
	overflow: hidden;
	background-color: #ffffff;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
}
.lai_rar ul li a:hover{
	box-shadow: 0 0 15px rgba(188, 173, 173, 1);
}
.lai_rar ul li a:hover .item_txt{
	border-bottom: 3px solid #de0000;
}
.lai_rar ul li a .item_top{
	width: 100%;
	height: 145px;
	overflow: hidden;
}
.lai_rar ul li a .item_top img{
	width: 100%;
	height: 100%;
}
.lai_rar ul li a .item_txt{
	width: 100%;
	height: 58px;
	color: #333333;
	font-size: 14px;
	position: relative;
}
.lai_rar ul li a .item_txt p{
	width: 100%;
	height: 100%;
	padding: 10px;
	text-align: justify;
	line-height: 1.4;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.content_left .pages{
	width: 100%;
	position: relative;
	height: 24px;
	margin: 20px 0 40px;
}
.pages .limeat{
	text-align: center;
}
.pages .limeat .meat{
	width: 25px;
	height: 25px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 25px;
	margin-right: 5px;
	color: #005a8a;
	font-size: 14px;
}
.pages .limeat .meat.active_meat{
	background-color: #005a8a;
	color: #ffffff;
}
.pages .limeat .meat01,
.pages .limeat .meat02{
	width: 25px;
	height: 25px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 25px;
	margin-right: 5px;
	color: #005a8a;
	font-size: 14px;
	background-color: #f1f2f7;
}
.pages .limeat .meat span{
	font-size: 14px;
}
.pages .limeat .aimit{
	height: 25px;
	width: 56px;
	display: inline-block;
	background-color: #005a8a;
	border-radius: 13px;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	line-height: 25px;
}
.pages .limeat .aimit span{
	font-size: 16px;
	margin-left: 4px;
}
.pages p{
	font-size: 14px;
	color: #005a8a;
	line-height: 25px;
	text-align: right;
	position: absolute;
	right: 0;
	top: 0;
}

/* GYF 党建知识库-新闻详情页 2-6 开始 */
.newsDetail{
	width: 100%;
	padding: 0 22px;
}
.newsDetail .hotnews .news_text img{
	width: 1080px;
	border-radius: 16px;
	margin: 20px auto;
	display: block;
}
.btn_left{
	float: left;
}
.btn_left .enclosure{
	color: #0f5f9f;
	font-size: 19px;
	text-align: left;
}
.btn_left .document{
	margin-top: 14px;
}
.btn_left .document img{
	width: 21px;
	height: 21px;
	vertical-align: middle;
}
.btn_left .document span{
	color: #999999;
	font-size: 12px;
	line-height: 21px;
	vertical-align: text-top;
}
.btn_left .document .documentname{
	font-size: 18px;
	color: #333333;
	line-height: 21px;
	margin: 0 5px;
	vertical-align: middle;
	color: blue;
}
.btn_right{
	width: 294px;
	height: 46px;
	float: right;
	position: relative;
}
.newsDetail .news_btn{
	height: auto;
}

/* GYF 12-23 开始 */
/* 公司热点 直击一线 */
.tab_feriot{
	width: 100%;
	margin-bottom: 22px;
}
.tab_feriot .deuo{
	width: 100%;
	height: 50px;
	display: inline-block;
	line-height: 50px;
	background-color: #ffffff;
	border-left: 10px solid #feefed;
	box-shadow: 0 4px 16px rgba(193, 103, 75, 0.08);
	margin-top: 10px;
	color: #de0000;
	font-size: 13px;
	padding-left: 24px;
}
.tab_feriot .deuo:first-child{
	margin-top: 0;
}
.tab_feriot .deuo.red_box{
	background-color: #de0000;
	border-color: #fe4e3c;
	color: #ffffff;
}
.tab_feriot .deuo img{
	width: 29px;
	height: 29px;
	display: inline-block;
	margin-right: 13px;
}
.hotnews{
	width: 100%;
	margin-bottom: 40px;
}
.hotnews h1{
	font-weight: bold;
	text-align: center;
	font-size: 30px;
	line-height: 1.4;
	margin-bottom: 13px;
	color: #000;
}
.hotnews .news_date{
	font-size: 18px;
	color: #acacac;
	text-align: center;
}
.hotnews .news_date span{
	margin: 0 6px;
}
.hotnews .news_text{
	width: 100%;
	margin-top: 25px;
}
.hotnews .news_text p{
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	text-indent: 2em;
}
.content_left .hotnews .news_text img{
	display: block;
	width: 496px;
	margin: 20px auto;
}
.news_btn{
	width: 100%;
	height: 46px;
	font-size: 14px;
	margin-top: 60px;
	position: relative;
	text-align: center;
}
.news_btn .up_news{
	width: 132px;
	height: 100%;
	display: inline-block;
	border: 1px solid #0f5f9f;
	text-align: center;
	line-height: 44px;
	color: #0f5f9f;
	border-radius: 8px;
	position: absolute;
	left: 0;
	top: 0;
}
.news_btn .down_news{
	width: 132px;
	height: 100%;
	display: inline-block;
	background-color: #0f5f9f;
	text-align: center;
	line-height: 44px;
	color: #ffffff;
	border-radius: 8px;
	position: absolute;
	right: 0;
	top: 0;
}
.news_btn .back_news{
	color: #0f5f9f;
	line-height: 46px;
}
.news_btn .back_news img{
	width: 16px;
}

.downAnimation{
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	z-index: 20;
	animation: bounce 1s infinite;
}
.downAnimation img{
	width: 35px;
	display: block;
	opacity: .5;
}
@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}



