﻿.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; 
}


/* 返回顶部按钮 */
.backtop {
	background-color: transparent; 
	/* background-image: url(../img/icon/icon-top.png); */
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px #888 solid;
	color: #888;
	width: 1rem;
	height: 1rem;
	line-height: 2;
	position:fixed;
	/* right: calc((100vw - 14.6rem) / 2 - 170px); */
	right: 4vw;
	bottom: 25vh;
	z-index: 80;	
	text-align: center;	
	cursor: pointer;
	padding: .26rem 0; 
	font-size: .16rem;
	text-transform: uppercase;
	display: none;
}

.backtop::before {
	content: "";
	height: 15px;
	border-left: 2px #888 solid;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: all .35s;
}
.backtop::after  {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2px #888 solid;
	border-left: 2px #888 solid;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	transition: all .35s;
}

.bai_boder  { position: absolute !important; top: .6rem; border-color: rgba(255,255,255,.35) !important; transition: all .35s; }
.bai_boder:before,
.bai_boder::after { border-color: #fff !important; transition: all .35s;}

.bai_boder:hover { border-color: rgba(255,255,255,.6) !important; transition: all .35s; }

.backtop img { display: block; margin: auto;  }



/* > 查看更多(带左箭头按钮) */
.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 #fff 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 #fff 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 #fff 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;
}

.imgsize img {
	display: block;
	max-width: calc(100% + 2px);
	width: calc(100% + 2px);
	height: 100%;
	/* max-height: 100%; */
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	transition: all .3s;
}

.img3_1 { padding-top: 41%; }
.img3_1 img { max-height: unset !important;  width: 100% !important; height: auto !important; }
  
.img2_1 { padding-top: 50%; }

.img1_1 { padding-top: 100%; }

.img5_4 {  padding-top: 65%;  }

.img4_3 {  padding-top: 67%;  }

.img16_9 {  padding-top: 56.8%;  }

.img9_16 {  padding-top:138%;  }

.mode-life-SZ .img9_16 {  padding-top:115%;  }

dl:hover .imgsize img,
ul li:hover .imgsize img ,
.all-box .box-1 .box-4:hover .imgsize img{	transform: translate(-50%,-50%) scale(1.1);	transition: all .3s;} 




/* 列表行数 */
.li-line-1 ul {   display: grid; grid-template-columns:100%; gap: var(--gap_sapce);  }

.li-line-2 ul,
.li-line-3 ul,
.li-line-4 ul,
.li-line-5 ul { display: grid; /* flex-flow: row wrap; */ gap: var(--gap_sapce); }

 /* 2列 */
 .li-line-2 { width: 100%; }
 .li-line-2 ul { grid-template-columns: repeat(auto-fit, minmax(calc(90% / 2), 1fr)); }

 
 /* 3列 */
 .li-line-3 { width: 100%; }
 .li-line-3 ul { grid-template-columns: repeat(auto-fit, minmax(calc((15rem - 32px*4) / 3), 1fr)); }

 
 /* 4列 */
 .li-line-4 {}
 .li-line-4 ul { grid-template-columns: repeat(auto-fit, minmax( calc((15rem - 32px*3) / 4), 1fr)); }

 
 /* 5列 */
 .li-line-5 {}
 .li-line-5 ul { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

 
 
 
 
 /* 滑动框架 */ 
 .mode-sticky { padding: 70px 0; overflow: visible;  }
 
 .box-sticky { position: relative; overflow: visible;  }
 .box-sticky-left { display: block; width: 3.5rem; margin-right: 6%; /* padding-bottom: 2rem; */float: left; margin-bottom: 25px;}
 .box-sticky-right { display: block; width: calc( 100% - 3.5rem - 6% ); float: right; }
 
 .detail-sticky-left-content { display: block; width: calc( 100% - 3rem - 5% ) ;  float: left;  }
 .detail-sticky-left { display: block; width: 3rem; margin-left: 5%;  float: left; position: sticky;  left: 0;}
 
 .position_fixed_bottom { position: fixed; padding: 15px 0 !important; top: auto; bottom: 0; left: 0; z-index: 35;   }
 .position_sticky { position: sticky !important; top:1rem ; z-index: 35; }
 .position_sticky_right { position: sticky !important; top: 1rem; right: 0; z-index: 35;}
 /* 滑动框架-end */
 
 
 
 /* 分页样式 */
 .pages { width: 100%; margin-top: 30px; border-top: 1px #e1e1e1 solid; }
 .pages ul { width: 100%; padding: 25px 0; gap: 10px; position: relative; text-align: center; }
 .pages ul a {
 	display: inline-flex;
 	width: .4rem;
 	height: .4rem;
	min-width: 40px;
	min-height: 40px;
	border-radius: 5px;
	align-items: center;
	justify-content: center;
 	border: 1px #eee solid;
	background-color: #eee;
 	color: #999;
 	text-align: center;
 	/* line-height: .48rem; */
 	font-size: .16rem;
 	font-weight: bold;
 	margin: 0 5px;
 	text-decoration: none;
 	transition: all .35s; 
 }
  
 
 .pages ul a.prev,
 .pages ul a.next {	width: 1.35rem; min-width: 80px; padding: 0 .2rem;	position: absolute; color: #999;font-weight: normal; }
 
 .pages ul a.next { left: auto; right: 0; justify-content: flex-start; text-align: left; }
 .pages ul a.prev { left: 0; justify-content: flex-end; text-align: right; }
 
 .pages ul a.prev::before {
 	content: "";
 	width: 9px;
 	height: 9px;
 	border-top: 2px #999 solid ;
 	border-right: 2px #999 solid ;
 	position: absolute;
 	left: .2rem;
 	top: 50%;
 	transform: translateY(-50%) rotate(-135deg);
 } 
 .pages ul a.next::before {
 	content: "";
 	width:9px;
 	height: 9px;
 	border-top: 2px #999 solid ;
 	border-right: 2px #999 solid ;
 	position: absolute;
 	right: .2rem;
 	top: 50%;
 	transform: translateY(-50%) rotate(45deg);
 }
 
.pages ul a.active,
.pages ul a:hover { 
	background: -webkit-linear-gradient(315deg, #b80700, #e62f00 );
	color: #fff; 
	transition: all .35s;  
}

.pages ul a.prev:hover ,
.pages ul a.next:hover {
	background: -webkit-linear-gradient(315deg, #580000, #aa0000, #ed8d01);
}
.pages ul a.prev:hover::before,
.pages ul a.next:hover::before { border-color:#fff; }
 
.pages ul a.disabled { filter: opacity(0.5); 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: "";
	display: block;
	height: calc(100% - 30px);
	border-right: 1px #e5e5e5 solid ;
	position: absolute;
	left: 50%;
	bottom: 0;
}
.pages_inner ul {
	display: grid;
	grid-template-columns: 45% 45%;
	gap: 10%;
}
.pages_inner a {  text-decoration: none; }
.pages_inner a span { color: #999; font-size: 85%; margin-bottom: 5px; display: inline-flex; }
.pages_inner a:nth-child(1) { margin-right: 10%; }
.pages_inner a:nth-child(2) ,
.pages_inner a:nth-child(2) p { text-align: right; } 
.pages_inner .txtlength_limit { font-size: .2rem; -webkit-line-clamp: 1; }

.pages_inner a:hover * { color: #8B0012; text-decoration: none;  transition: all .35s; }
 
.noneline { border-color: transparent; }
 
 
 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 */
 
 
 


/* 带日历无图列表 */
.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 */
 
 
 
 /* 字母筛选 */
 .tool_box {
	display: grid;
	grid-template-columns: 68% auto;
	/* gap: 12%; */
	align-items: center;
	justify-content: space-between;
 }
 
 .search-for-web form{
	display: flex;
	justify-content: space-between;
	gap: 10px;
 }
 
 .search-for-web form p {
	display: block;
	border: 1px #eee solid; 
	line-height: 40px;
	font-size: 14px;
	border-radius: 5px;
 }
 .search-for-web form p input { width: 100%; padding: 0 10px;}
 
 
 
.s-letters {  
	width: 100%; 
	/* margin-bottom:35px; */
	border: 1px #eee solid;
	border-radius: 5px;
	overflow: hidden;
	display: flex; 
	gap: 10px;
}

.s-letters h5 ,
.btn-for-search {
	width: .85rem;
	color: #fff;
	border-radius: 5px;
	overflow: hidden;
	display: inline-flex;
	justify-content: center;
	align-items: center; 
}


.s-letters h5 ,
.s-letters a ,
.btn-for-search { font-size: .16rem; }
  

.s-letters ul {  
	width: 100%;  
	display: flex; 
	justify-content: flex-start; 
	flex-flow: row nowrap; 
	align-items: center;
}

 .s-letters a {
     display: inline-flex;
	 align-items: center;  
     background:transparent;
	 padding:0 .1rem;
	 line-height: 40px; 
     color: #999;
     text-align: center; 
     border-radius:5px;
     text-decoration: none;
 	 cursor: pointer; 
	 position: relative;
     transition: all .5s;
 }
 
.s-letters a::after {
	content: "";
	width: 4px;
	height: 4px;
	background-color:var(--theme_red) ;
	border-radius: 50%;
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	opacity: 0;
	transition: all .35s;
}
 
 .s-letters a:hover,
 a.selected { color:  var(--theme_red) !important; transition: all .35s; }
 a.selected::after { opacity: 1; 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; }
 

 /* 下拉菜单-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 */ 
 
 /* btn-video */
 .btn-video {
	 min-width: 40px; min-height: 40px;
	 width: .7rem; height: .7rem;
	 background-color: rgba(178,4,7,.8);
	 border-radius: 50%;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform-origin: center center;
	 transform: translate(-50%,-50%);
	 cursor: pointer;
	 transition: all .35s;
 }
 
 .btn-video::before {
	 content: "";
	 display: block;
	 width: 0;
	 height: 0;
	 border: 9px transparent solid;
	 border-left: 13px  #fff solid;
	 border-right: none;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform-origin: center center;
	 transform: translate(-50%,-50%) scale(1);
	 transition: all .35s;
 }
 
 .btn-video:hover { transform: translate(-50%,-50%) scale(.85);   transition: all .35s;}
 .btn-video:hover::before { transform: translate(-50%,-50%) scale(1.15);transition: all .35s; }
 
 .close3 {
 	width: .6rem;
 	height: .6rem;
 	background-color: var(--blue);
 	border-radius: 50%;
 	position: absolute;
 	top: -0.8rem;
 	right: 0;
 	z-index: 5;
 	cursor: pointer;
	transition: all .35s;
 }
 
 .close3 span {
	min-width: 25px;
 	width: .3rem;
 	height: 5px;
 	background-color: #fff;
 	border-radius: 10px;
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform-origin: center center;
 	transform: translate(-50%,-50%) rotate(45deg);
	transition: all .35s;
 }
 
 .close3 span:last-child { transform: translate(-50%,-50%) rotate(-45deg); transition: all .35s; }
 
 
 
 /* 图片预览 */
 .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-pagination { position: relative; }
 #photos .swiper-slide { background-color: transparent; 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: var(--gap_sapce) ; 
	cursor: pointer;  
	transition: all .35s; 
}

.tab-head ul li:last-child { margin-right: 0; }
.tab-head ul li.active { 
	background-color: var(--theme_red)!important;  
	transition: all .35s; 
}

.tab-head ul li.active h3 { color: rgba(255,255,255,.6) !important; }
.tab-head ul li.active h3 strong { color: rgba(255,255,255,1) !important; }

.tab-head ul li.active::after {
	content: "";
	width: 100%;
	/* border-bottom: 2px var(--theme_red) 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 */



@media  screen  and ( max-width: 1086px) { 
	
	.icon { width: 20px;  height: 20px; }
	.icon-leftCenter  { padding-left: 30px; }
	.icon-rightCenter { padding-right: 30px; }
	
	.pages_inner .txtlength_limit ,
	.w-20 br { display: none; }
	button.prev, button.next  { margin-bottom: 0; }
	
	
	.detail-sticky-left-content,
	.box-sticky-right,
	.box-sticky-left { width: 100%; float: none; }
	.detail-sticky-left { display: none; }
	
	
	
	/* 移动端二级菜单 */
	.sm_sub_nav { position: relative; }
	.sub_nav_opacity h3  {
		background-color: var(--deepblue);
		color: #fff;
		padding: 12px 20px;
		border-radius: 5px;
	}
	.sub_nav_opacity h3 i.btn_jt { 
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		display: block;
		border: 5px transparent solid;
		border-top: 5px #fff solid ;
		border-bottom: none;
	}
	
	.sub_nav_opacity ul {
	    display: none;
	    position: absolute;
		left: 2px;
	    width: calc(100% - 4px);
	    z-index: 1;
	    background-color: #fff;
	    padding: 20px;
		box-shadow: 0 0 15px rgba(0,0,0,.1);
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	
	.sub_nav_opacity ul li a, 
	.sub_nav_opacity ul li a:hover { color: var(--green); }	
	.sub_nav_opacity ul li { width: 100%; margin-right: 0; float: none; font-size: 18px; margin-bottom: 10px; }
	
	
	/* 字母筛选 */
	.s-letters { flex-flow: column; justify-content: flex-start; gap: 10px; border: none; }
	.s-letters h5, .s-letters a { font-size: 16px; width: auto; }
	.s-letters h5 { padding: 10px; }
	.s-letters ul { display: flex;  flex-flow: row wrap; justify-content: space-between; }
	.s-letters a {  
		width: 35px;
		height: 35px; 
		font-size: 15px; 
		text-align: center; 
		justify-content: center; 
	}
	
	.s-letters ul a,
	.pages ul a { width: 35px; height: 35px; line-height: 35px; text-align: center; }	
	.pages ul a.prev, 
	.pages ul a.next {  cursor: pointer; width: 47%; }
	
	/* 分页 */
	.pages ul a { font-size: 14px; margin: 3px;  }
	.pages ul a.prev, 
	.pages ul a.next { 
		width: 80px; 
		height: auto; 
		display: inline-block; 
		position: relative; 
		padding: 0 8px;
	}
	
	.pages ul a.prev::before { left: 8px; }
	.pages ul a.next::before { right: 8px; }
	
	
	/* 列表 calc((100% - 20px) / 2) */
	.li-line-2 ul,
	.li-line-3 ul,
	.li-line-4 ul,
	.li-line-5 ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap_sapce); }
	
	
	
}