.news-tittle , 
.txtlength_limit { 
	display: -webkit-box; 
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	/* color: var(--txtcolor_000); */
	transition: all .35s; 
}

.desc p {
	display: -webkit-box;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 14px;
/* 	color: var(--txtcolor_999); */
}


/* 按钮*/
.unison-btn-radio { 
	border: 1px var(--border_color) solid;
	border-radius: 25px;
	outline: none;
	background-color: transparent;
	text-decoration: none;
	text-align: center;
	padding: 12px 25px;
	line-height: 1;
	font-size: 14px;
}

.unison-btn-radio-5 { 
	border: 1px var(--border_color) solid;
	border-radius: 5px;
	outline: none;
	background-color: transparent;
	text-decoration: none;
	text-align: center;
	padding: 12px 25px;
	line-height: 1;
	font-size: 14px;
}

.unison-btn { 
	border: 1px var(--border_color) solid;
	outline: none;
	background-color: transparent;
	text-decoration: none;
	text-align: center;
	padding: 12px 25px;
	line-height: 1;
	font-size: 14px;
	transition: all .3s;
}

.unison-btn-radio:hover, 
.unison-btn-radio-5:hover,
.unison-btn:hover { 
	color: #fff; 
	text-decoration: none; 
	background-color: var(--theme_color);
	border-color: var(--theme_color);  
	transition: all .3s; 
}


/* > 查看更多(带左箭头按钮) */
.btn-more-l {
	display: inline-block  ;
	width: auto;
	height: auto;
	line-height: 1;
	color: var(--txtcolor_666);
	outline: none;
	padding: 0; 
	position: relative;
	z-index: 5;
	overflow: visible;
	/* font-size: .14rem; */
	padding-left: 18px;
	text-decoration: none;
	transition: all .35s;
}

.btn-more-l::after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 3px var(--txtcolor_666) solid;
	border-right: 3px var(--txtcolor_666) solid; 
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .35s;
}


/* > 查看更多(带右箭头按钮) */
.btn-more-r  {
	display: inline-block  ;
	width: auto;
	height: auto;
	line-height: 1;
	color: var(--txtcolor_666);
	outline: none;
	padding: 0; 
	position: relative;
	z-index: 5;
	overflow: visible;
	/* font-size: .14rem; */
	padding-right: 18px;
	text-decoration: none;
	transition: all .35s;
}

.btn-more-r::after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 3px var(--txtcolor_666) solid;
	border-right: 3px var(--txtcolor_666) solid; 
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .35s;
}


.btn-more-r:hover,
.btn-more-r:hover::after ,
.btn-more-l:hover ,
.btn-more-l:hover::after { color: var(--theme_color); border-color: var(--theme_color); transition: all .35s; }


/* 待下划线按钮 */
.btn-more-underline,
.btn-more-underline2 {
	display: inline-block  ;
	width: auto;
	height: auto;
	line-height: 1.5;
	color: var(--txtcolor_666);
	outline: none;
	padding: 0; 
	position: relative;
	z-index: 5;
	overflow: hidden;  
	text-decoration: none;
	transition: all .35s;
}

.btn-more-underline::after {
	content: "";
	width: 100%;
	border-top: 3px var(--txtcolor_666) solid;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transform: translateX(-100%);
	transition: all .35s;
}

.btn-more-underline:hover::after {
	border-color: var(--theme_color); 
	opacity: 1;
	transform: translateX(0);
	transition: all .35s;
}


.btn-more-underline2::after {
	content: "";
	width: 100%;
	border-top: 7px var(--txtcolor_666) solid;
	position: absolute;
	bottom: 2px;
	left: 0;
	opacity: .15;
	z-index: -1; 
	transition: all .35s;
}

.btn-more-underline2:hover::after {
	border-color: red; 
	opacity: .85;
	transform: translateX(0);
	transition: all .35s;
}


/* 查看更多(带右箭头按钮) */
.btn-more-leftline,
.btn-more-rightline {
	display: inline-block  ;
	width: auto;
	height: auto;
	line-height: 1.5;
	color: var(--txtcolor_666);
	outline: none;
	padding: 0; 
	position: relative;
	z-index: 5;
	overflow: hidden;  
	text-decoration: none;
	transition: all .35s;
}

.jt-left-arrow, 
.jt-right-arrow {
	display: inline-block;
	position: relative;
	width: 25px;
	height: 5px;
	transform: translateY(-55%);
	transition: all .3s;
}

.jt-left-arrow::before,
.jt-right-arrow::before {
	content: "";
	display: block;
	width: 20px;
	border-top: 2px var(--border_color) solid;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all .3s;
}


.jt-left-arrow::after {
	content: "";
	width: 0;
	height: 0;
	display: block;
	border: 4px transparent solid;
	border-left: none;
	border-right: 7px var(--border_color) solid;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.jt-right-arrow::after {
	content: "";
	width: 0;
	height: 0;
	display: block;
	border: 4px transparent solid;
	border-right: none;
	border-left: 7px var(--border_color) solid;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.btn-more-rightline:hover ,
.btn-more-rightline:hover .jt-right-arrow::before,
.btn-more-leftline:hover ,
.btn-more-leftline:hover .jt-left-arrow::before { color:var(--theme_color) ; border-color: var(--theme_color); 	transition: all .35s;}

.btn-more-leftline:hover .jt-left-arrow::after { border-right-color: var(--theme_color); 	transition: all .35s; }
.btn-more-rightline:hover .jt-right-arrow::after { border-left-color: var(--theme_color); 	transition: all .35s; }

/* 图片尺寸 */
.imgsize {
	display: block;
	background-color: #eee;
	position: relative;
	overflow: hidden;
	height: 0;
	width: 100%;
	transition: all .3s;
}

.img3_1 { padding-top: 33.3%; }

.img2_1 { padding-top: 50%; }

.img1_1 { padding-top: 100%; }

.img5_4 {  padding-top: 87%;  }

.img4_3 {  padding-top: 67%;  }

.img16_9 {  padding-top: 56.8%;  }


.imgsize img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	transition: all .3s;
}

.imgsize:hover img {
	transform: translate(-50%,-50%) scale(1.03);
	transition: all .3s;
} 




/* 列表行数 */

 /* 2列 */
 .li-line-2 { width: 100%; }
 .li-line-2 ul li { width: calc((100% - 20px) / 2);	margin-bottom: 20px; margin-right: 20px; float: left; transition: all .3s; }
 .li-line-2 ul li:nth-child(2n) { margin-right: 0; } 
 
 /* 3列 */
 .li-line-3 { width: 100%; }
 .li-line-3 ul li { width: calc((100% - 40px) / 3);	margin-bottom: 20px; margin-right: 20px; float: left; transition: all .3s; }
 .li-line-3 ul li:nth-child(3n) { margin-right: 0; } 
 
 /* 4列 */
 .li-line-4 {}
 .li-line-4 ul li { width: calc((100% - 60px) / 4); margin-bottom: 20px; margin-right: 20px; float: left; transition: all .3s; }
 .li-line-4 ul li:nth-child(4n) { margin-right: 0; }
 
 /* 5列 */
 .li-line-5 {}
 .li-line-5 ul li { width: calc((100% - 80px) / 5); margin-bottom: 20px; margin-right: 20px; float: left; transition: all .3s; }
 .li-line-5 ul li:nth-child(5n) { margin-right: 0; }
 
 
 
 
 
 
 
 /* 分页样式 */
 .pages { width: 100%; margin-top: 30px; border-top: 1px #e1e1e1 solid; }
 .pages ul { width: 100%; padding: 25px 0; position: relative; text-align: center; }
 .pages ul a {
 	display: inline-block;
 	width: .5rem;
 	height: .5rem;
 	border: 1px #e1e1e1 solid;
 	color: #333;
 	text-align: center;
 	line-height: .48rem;
 	/* font-size: .18rem; */
 	font-weight: bold;
 	margin: 0 5px;
 	text-decoration: none;
 	transition: all .35s; 
 }
  
 
 .pages ul a.prev,
 .pages ul a.next {	width: 1.15rem;	position: absolute; color: #999;font-weight: normal; }
 
 .pages ul a.next { left: auto; right: 0; padding-right: .2rem; }
 .pages ul a.prev { left: 0; padding-left: .2rem; }
 
 .pages ul a.prev::before {
 	content: "";
 	width: .1rem;
 	height: .1rem;
 	border-top: 1px #e1e1e1 solid ;
 	border-right: 1px #e1e1e1 solid ;
 	position: absolute;
 	left: .2rem;
 	top: 50%;
 	transform: translateY(-50%) rotate(-135deg);
 } 
 .pages ul a.next::before {
 	content: "";
 	width: .12rem;
 	height: .12rem;
 	border-top: 1px #e1e1e1 solid ;
 	border-right: 1px #e1e1e1 solid ;
 	position: absolute;
 	right: .2rem;
 	top: 50%;
 	transform: translateY(-50%) rotate(45deg);
 }
 
 .pages ul a.active, 
 .pages ul a:hover { background-color: #0e6bff; border-color:#0e6bff ; color: #fff; transition: all .35s;  }
 
 .pages ul a.disabled { background-color: #fff; border-color: #e1e1e1 ; color: #e1e1e1; cursor: not-allowed;  }
 
.pages_has_radio a { border-radius: 50%; }
.pages_has_radio a.prev,
.pages_has_radio a.next { border-radius: 25px !important; }
 
 
 .noneline { border-color: transparent;  }
 
 .none-jt ul a.prev,
 .none-jt ul a.next { padding-left: 0; padding-right: 0; }
 .none-jt ul a.prev::before ,
 .none-jt ul a.next::before { display: none; } 
 
 
 .pages_inner { width: 100%;  position: relative; border-top: 1px #e1e1e1 solid; padding-top: 30px; margin: 30px 0; }
 .pages_inner::after {
 	content: "";
 	height: calc(100% - 30px);
 	border-right: 1px #e5e5e5 solid ;
 	position: absolute;
 	left: 50%;
 	bottom: 0;
 }
 .pages_inner a { width: 38%; float: left;}
 .pages_inner a:nth-child(1) { margin-right: 10%; }
 .pages_inner a:nth-child(2) { float: right;  } 
 .pages_inner .txtlength_limit { font-size: .2rem; -webkit-line-clamp: 1; }
 
 
 button.prev,
 button.next { font-size: .16rem; display: block; position: relative; padding: 0 .3rem; margin-bottom: 10px; }
 
 button.prev::before {
 	content: "";
 	width: .08rem;
 	height: .08rem;
 	border-top: 2px #333 solid ;
 	border-right: 2px #333 solid ;
 	position: absolute;
 	left: 0;
 	top: 48%;
 	transform: translateY(-50%) rotate(-135deg);
 } 
 
 button.prev::after {
 	content: "";
 	width: .2rem;
 	border-top: 2px #333 solid ;
 	position: absolute;
 	left: 0;
 	top: 48%;
 	transform: translateY(-50%)  ;
 }
 
 button.next { margin-left: auto; margin-right: 0; }
 
 button.next::before {
 	content: "";
 	width: .08rem;
 	height: .08rem;
 	border-top: 2px #333 solid ;
 	border-right: 2px #333 solid ;
 	position: absolute;
 	right: 0;
 	top:  48%;
 	transform: translateY(-50%) rotate(45deg);
 }
 
 button.next::after {
 	content: "";
 	width: .2rem;
 	border-top: 2px #333 solid ;
 	position: absolute;
 	right: 0;
 	top: 48%;
 	transform: translateY(-50%)  ;
 }
 
 .pages_inner a:hover,
 .pages_inner a:hover button.prev ,
 .pages_inner a:hover button.next { color:  var(--theme_color); text-decoration: none; transition: all .35s; }
 
 .pages_inner a:hover button.prev::before ,
 .pages_inner a:hover button.prev::after ,
 .pages_inner a:hover button.next::before ,
 .pages_inner a:hover button.next::after { border-color: var(--theme_color); color: #fff; transition: all .35s;  }
 

 /* fenye-end */
 
 
 
 
 /* 图文列表 */
.normal_list {  }
.normal_list h3 { margin-bottom: 15px; transition: all .35s; }
.normal_list .desc { margin-bottom: 10px; }
dl dt { font-weight: normal;  }

ul li:hover h3 { color:  var(--theme_color); transition: all .35s; } 

/* 默认 左图右文 */
.item_normal {  display: flex;  }
.item_normal dt { width: 2.6rem;  font-weight: normal;  margin-right: 20px; } 
.item_normal dd { width: calc(100% - 2.6rem - 20px);}
.item_normal dd h3 { margin-bottom: 15px; transition: all .35s; }
.item_normal dd .desc { margin-bottom: 10px; }  
.item_normal dd .desc p { -webkit-line-clamp: 2; } 

ul li:hover .item_normal h3,
.item_normal:hover h3  { color:  var(--theme_color); transition: all .35s; }  



  /* 左文右图 */
.item_with_rightImgs {  display: flex; position: relative; }
.item_with_rightImgs dt { float: right; margin-right: 0 !important; margin-left: calc(100% - 2.6rem ); }
.item_with_rightImgs dd { float: none; position: absolute; left: 0;  }  

ul li:hover .item_with_rightImgs h3,
.item_with_rightImgs:hover h3  { color:  var(--theme_color); transition: all .35s; }  


 
 /* 上图下文 */
.item_with_topImgs { width: 100%; display: block !important; position: relative; }
.item_with_topImgs dt ,
.item_with_topImgs dd { width: 100%; float: none; }

.item_with_topImgs dd { display: block; padding: 15px; border: 1px var(--border_color) solid; border-top: none; }
.item_with_topImgs dd h3 { margin-bottom: 15px; transition: all .35s; }
.item_with_topImgs dd .desc { margin-bottom: 10px; }

ul li:hover .item_with_topImgs h3,
.item_with_topImgs:hover h3  { color:  var(--theme_color); transition: all .35s; } 


 /* 上文下图 */
.item_with_bottomImgs { width: 100%; display: block !important; position: relative; padding-bottom: 56.8%;}
.item_with_bottomImgs dt ,
.item_with_bottomImgs dd { width: 100%; float: none; margin: 0; }

.item_with_bottomImgs dt { position: absolute; bottom: 0;  }
.item_with_bottomImgs dd { font-weight: normal; display: block; padding: 15px; border: 1px var(--border_color) solid; border-bottom: none; }
.item_with_bottomImgs dd h3 { margin-bottom: 15px; transition: all .35s; }
.item_with_bottomImgs dd .desc { margin-bottom: 10px; }  

ul li:hover .item_with_bottomImgs h3,
.item_with_bottomImgs:hover h3  { color:  var(--theme_color); transition: all .35s; } 
 
 
/* 无图 */
.item_none_Imgs dt ,
.item_none_Imgs .imgsize { display: none; }
.item_none_Imgs dd  { width: 100% !important;  padding: 0; }


/* 带日历无图列表 */
.list_has_rl { width: 100%; }
.list_has_rl ul li a { padding: 20px; padding-left:130px; position: relative; }
.list_has_rl ul li .date-rili { position: absolute;	left: 15px; }
.list_has_rl ul li h3 { margin-bottom: 15px; transition: all .35s; }

.date-rili {
	width: 90px;
	border: 1px var(--border_color) solid;
	text-align: center;
	color: #999;
}

.date-rili .years { 
	display: block; 
	line-height: 1; 
	padding: 10px 0; 
	border-bottom: 1px var(--border_color) solid;
	font-size: 24px; 
	background-color: var(--border_color) ;
	font-weight: bold;
}
.date-rili .days { display: block; padding: 15px 0; font-size: 18px; }

 /* 图文列表-end */
 
 
 
 /* 字母筛选 */
 .s-letters {  width: 100%;   margin-bottom: .35rem;}
 .s-letters ul {  width: 100%;  display: flex; justify-content: flex-start; flex-flow: row nowrap; }
 .s-letters a {
     display: inline-block;
     width: 35px;
     height:  35px;
     font-size: 16px;
     background:transparent;
     color: #000;
     text-align: center;
     line-height:  35px;
     border-radius: 50%;
     text-decoration: none;
 	 cursor: pointer;
     /* margin-right: 1%; */
     margin-top: 3px;
     transition: all .5s;
 }
 
.s-letters a:last-child { margin-right: 0; }
 
 .s-letters a:hover,
 a.selected { background-color: var(--theme_color) !important; color: #fff !important; transition: all .35s; }


/* 字母筛选-end */
 
 
 
 
 
 /* form表单 */
 
 /* 下拉菜单 */
 .zj-select-options {
 	padding: 13px 20px; 
 	display: flex;
 	justify-content: flex-start;
 	align-items: center;
	position: relative;
	background-color: #f7f6f6;
 }
 
 .select-tags { display: inline-block; font-size: 14px; color: #666; }
 
 .select_menu {
    width: auto;
    position: absolute;
 	left: 82px;
 	top: 4px;
    margin-left: 20px;  
 	border-radius: 4px;
 	font-size: 14px;
 	overflow: hidden;
 }
 
 .select_menu::after {
 	content: "";
 	display: block;
 	width: 0;
 	height: 0;
 	border: 5px transparent solid ;
 	border-top: 5px #fff solid;
 	border-bottom: none;
 	position: absolute;
 	right: 15px;
 	top: 15px;
 	/* transform: translateY(-50%); */
 }
 
 .select_menu input  {
 	display: block;
 	width: 100%;
 	padding: 10px 15px;
 	outline: none;
 	border: none;
 	font-size: 14px;
 	line-height: 1;
 }
 
 .select_menu input::-webkit-input-placeholder { color: #fff; }
 
 .onfocus input { color: #fff !important; }
 
 .select_menu_child { width: calc(100% - 0px); /* position: absolute; top: calc(100% + 2px);	left: 15px;  z-index: -1; */ display: none; }
 .select_menu_child span {
 	display: block;
 	padding: 10px 15px;
 	line-height: 1;
 	text-align: left;
 	color:#fff ; 
 	cursor: pointer;
 }
 /* 下拉菜单-end */ 
 
 
 /* 搜索 */
 .public_search { width: 100%; height: 40px; line-height: 40px; margin-bottom: 20px; position: relative; overflow: hidden; }
 .public_search input {
 	outline: none;
 	display: block;
 	width: calc(100% - 120px);
 	height: 100%;
 	border: 1px var(--border_color) solid;
 	border-right: none;
 	border-top-left-radius: 4px;
 	border-bottom-left-radius: 4px;
 	padding: 0 15px;
 	font-size: 14px;
 }
 
 .public_search button {
	width: 120px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
 	font-size: 14px;
 	text-align: center;
 	border-top-right-radius: 4px;
 	border-bottom-right-radius: 4px;
 }
 /* 搜索-end */ 
 
 
 
 
 /* 图片预览 */
 .imgs_preViews .imgsize img { width: 100%; }
 
 
 
 /* 弹窗 */
 #v-windows {
 	width: 100%;
 	height: 100vh;
 	background-color: rgba(0,0,0,.85);
 	position: fixed;
 	top: 0;
 	left: 0;
 	z-index: 200;
 	display: none;
 }
 
 #window .container  ,
 #v-windows .container {
 	width: 70%;
 	text-align: center;
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%,-45%);
 }
 
 #v-windows video { object-fit: cover; width: 100%;  max-height: 80vh; margin: auto; }
 
 #photos .swiper-slide { height: auto; flex-flow: column; color: #fff; } 
 
 #window .swiper-slide img ,
 #v-windows .swiper-slide img { max-height: 80vh;   height: auto;}
 
 #window .swiper-button-prev:after,
 #window .swiper-button-next:after ,
 #window .swiper-pagination , 
 #v-windows .swiper-button-prev:after, 
 #v-windows .swiper-button-next:after ,
 #v-windows .swiper-pagination { color: #fff; }
 
 #window iframe ,
 #v-windows iframe {
 	display: block; 
 	width: 100%;
 	height: 73vh;
 	border: none;
 	background-color: #fff; 
 	/* animation: fadeInUp .5s ease forwards; */
 }
 
 
 
.close ,
.close:hover {
	width: 60px; 
	line-height: 60px;
	position: absolute;
	right: 15px;
	top: -60px;
	opacity: 1;
	color: #fff;
	font-size: 18px;
	font-weight: normal;
}

/* .close::before {
	content: "";
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	border-top: 2px #fff solid;
	transform-origin: center center;
	transform: translate(-50% , -50%) rotate(-45deg);
}

.close::after {
	content: "";
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	border-top: 2px #fff solid;
	transform-origin: center center;
	transform: translate(-50% , -50%) rotate(45deg);
} */
 
 /* 弹窗-end */
 
 
 
 /* 图片预览-end */
 
 
 
/* tab切换 */
.tab-head { 
	border-bottom: 1px var(--border_color) solid;
	margin-bottom: 15px; 
	color: var(--theme_txtcolor); 
	position: relative;
	z-index: 1;
}

.tab-head ul { padding: 0; display: flex; justify-content: flex-start; }
.tab-head ul li { 
	position: relative; 
	display: inline-block; 
	padding: 15px 0;  
	margin-right: .2rem; 
	cursor: pointer;  
	transition: all .35s; 
}

.tab-head ul li:last-child { margin-right: 0; }
.tab-head ul li.active {  color: var(--theme_color)!important; transition: all .35s; }

.tab-head ul li.active::after {
	content: "";
	width: 100%;
	border-bottom: 2px var(--theme_color) solid;
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: all .35s;
}

.tab-body { width: 100%; position: relative; padding: 30px 0; }
.tab-body .item { position: absolute; width: 100%; display: none; }

/* tab切换-end */




/* 菜单滑块效果 */ 
.sub_nav { 	 
	height: 100%;  
	background-color: #fff; 
	position:relative; 
	z-index: 3;  
	margin-bottom: 20px;
}
.sub_nav ul { padding: 0; height: 100%;  }
.sub_nav ul li { display: block; float: left; height: 100%; margin-left: 20px;  }
.sub_nav ul li a {
	display:block; 
	padding: .15rem 0 ; 
	line-height: 1; 
	color: var(--theme_color); 	
	/* border-bottom: .15rem transparent solid ; */
	transition: all .35s;
}

.sub_nav ul li.active a { color: var(--theme_color) !important; transition: all .35s; } 
.sub_nav ul li:hover a { color: var(--theme_color) !important; transition: all .35s; }

/* 菜单-滑块 */
.active_line,
.active_stickline {
	outline: none;
	border-top: 2px var(--theme_color) solid;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 4;
	display: none;
}

.active_stickline  { top: auto; bottom: -3px; }

/* 菜单滑块效果-end */

