/* 组件规则 */
.btn_search {
	width: 50px;
	height: 100%;
	background-image: url(../../images/cenet_2023/icons/icon-search.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5;
	border: none;
	outline: none;
	background-color: transparent;}

/* 按钮箭头 */
i.icon-jt { 
	position: relative; 
	display: inline-block; 
	width: 10px;
	height:10px;
	margin: 0 5px;
	border-top: 3px var(--border_color) solid;
	border-right: 3px var(--border_color) solid;
	transform-origin: left -7px;
	transform: translate(5px , -1px) rotate(45deg);}

.icon-search-autoColor {
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border: 2px #8B0012 solid;
	border-radius: 50%;}

.icon-search-autoColor::after {
	content: "";
	width: 0;
	height: 2px;
	border-left: 8px #8B0012 solid;
	position: absolute;
	transform-origin: center center;
	transform: translate(5px,12px) rotate(37deg);
	z-index: 5;}


/* 视频按钮-border */
.btn_video2 {
	display: block;
	width: 68px;
	height: 68px;
	background-color:#2db7b3;
	border: 5px #fff solid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% - 7px),-50%);
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
	opacity: 0;
	transition: all .35s;}

.btn_video2::before {
	content: "";
	display: block;
	margin: auto;
	background-color: transparent;
	width: 0;
	height: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% + 2px),-50%);
	outline: none;
	border: 9px transparent solid;
	border-right: none;
	border-left: 13px #fff solid; 	
	z-index: 5;}
 

/* 视频按钮-outline */
.btn_video { 
	display: block;
	margin: auto;
	background-color: transparent;
	width: 0;
	height: 0;
	padding: 0;
	position: relative;
	outline: none;
	border: 7px transparent solid;
	border-right: none;
	border-left: 11px #fff solid;
	margin-bottom: 83px;
	margin-top: 135px;
	cursor: pointer;}

.btn_video::before {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background-color: rgba(255,255,255,.5);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% - 7px),-50%);
	border-radius: 50%;
	transition: all .35s;}

.btn_video::after {
	content: "";
	display: block;
	width: 78px;
	height: 78px; 
	border: 1px  rgba(255,255,255,.5) solid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% - 7px),-50%);
	border-radius: 50%;}

.btn_video:hover::before {
	transform: translate(calc(-50% - 7px),-50%) scale(.8); 
	transition: all .35s;}


.mousedown {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,-30px);
	z-index: 50;
	animation: scrollDown ease-in-out 2s infinite;}


@-webkit-keyframes scrollDown {
	0{ transform: translate(-50%, -30px) ;}
	50%{ transform: translate(-50%, 0px) ;}
	100%{transform: translate(-50%, -30px) ;}
}

@keyframes scrollDown {
	0{ transform: translate(-50%, -30px) ;}
	50%{ transform: translate(-50%, 0px) ;}
	100%{transform: translate(-50%, -30px) ;}
}

/* -----------------------组件--------------------- */
.blackfull {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: all .35s;}

.blackline_wamp {
	width: 100%;
	height: 100%;	 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) , rgba(0,0,0,0.5));}


.btn_backtop {
	width: 60px;
	background-color:#2db7b3 ;
	color: #fff;
	position: fixed;
	right: 4%;
	bottom: 11vh;
	z-index: 25;
	padding: 15px 0;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	display: none;}

.btn_backtop span.angle {
	display: block;
	margin: auto;
	width: 0;
	height: 0;
	margin-bottom: 5px;
	border: 7px transparent solid;
	border-top: none;
	border-bottom: 9px #fff solid;}


/* 垂直居中 */
.table { display: table; width: 100%; height: 100%;}
.table_cell { display:table-cell; text-align: center; vertical-align: middle;}

.alight-midel {	position: absolute;	top: 50%;transform: translateY(-50%);}


.border-radius50 { border-radius: 50%; overflow: hidden;}

/* 图片大小居中 */
.imgbox {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;}


.imgbox img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) scale(1);
	transition: all .35s;}



li:hover .imgbox img ,
li:hover .img16_9 img ,
.course-items:hover .img16_9 img { transform: translate(-50%,-50%) scale(1.05); transition: all .35s;}




/* 图片16:9 */
.img16_9 {
	display: block;
    height: 0;
    padding-top: 65%;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;}

.img16_9 img ,
.img16_9 video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) scale(1);
	transition: all .35s;}

/* 返回顶部按钮 */
.backtop {
	background-color: var(--theme_green) ; 
	color: #fff;
	width: 60px;
	height: 60px;
	position:fixed;
	right: calc((100vw - 13.8rem) / 2 - 100px);
	bottom: 21vh;
	z-index: 80;	
	text-align: center;	
	cursor: pointer;
	padding: 12px; 
	font-size: 16px;
	display: none;}

.backtop span {
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	margin-bottom: 3px;
	border: 7px transparent solid;
	border-top: none;
	border-bottom: 12px #fff solid;}

/* > 查看更多(带左箭头按钮) */
.btn-more-l ,
.btn-more-l:hover {
	display: inline-block  ;
	width: auto;
	height: auto;
	color: #2db7b3;
	outline: none;
	padding: 0;
	opacity: .85;
	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 #2db7b3 solid;
	border-right: 3px #2db7b3 solid; 
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .35s;}

/* （纯）箭头按钮 */
.btn_jt {
    display: block;
    width: 13px;
    border: none;
    height: 13px;
    transform-origin: left;
    border-top: 2px var(--theme_red) solid;
    border-right: 2px var(--theme_red) solid;
    padding: 0;
    transform: rotate(45deg);
	position: absolute;
	bottom: .35rem;
	transition: all .35s;}

.btn_jt2,
button.btn_jt2 {
    display: block;
    width: 8px;
    border: none;
    height: 8px;
    transform-origin: center center;
    border-top: 2px var(--theme_red) solid;
    border-right: 2px var(--theme_red) solid;
    padding: 0; 
	right: .4rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg); 
	transition: all .35s;}


/* 查看更多> (带右箭头按钮) */
.btn-more-r  {
	display: inline-block  ;
	width: auto;
	height: auto;
	color: #666;
	outline: none;
	padding: 0;
	opacity: .85;
	position: relative;
	z-index: 5;
	overflow: visible;
	font-size: .14rem;
	padding-right: 15px;
	text-decoration: none;
	transition: all .35s;}

.btn-more-r:hover::after,
.btn-more-r:hover { border-color:  #8b0013; color:  #8b0013; text-decoration: none; transition: all .35s;}

.sm_menu ul li::after,
.btn-more-r::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px #666 solid;
	border-right: 2px #666 solid; 
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	transition: all .35s;}


/* 返回上一级 */
.btn-back {  
	color: #bebebe;
	font-size: 14px;
	text-align: center;
	background-image: url(../../images/cenet_2023/icon/btn-back.png);
	background-repeat: no-repeat;
	background-position: left 45%;	
	background-size: auto 17px;
	padding-left: 22px;
	text-decoration: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	margin-right: 20px;}

.btn-back:hover { text-decoration: none; color: #bebebe;}

.btn-back img { width: auto !important;}


/* 带图标按钮 */
.btn-center {
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);}

.icons {
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;}

.icon {
	padding-left: 25px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left 5px;}

.buttom-r-icon {
	padding-right: 25px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right center;}

.morerect {  background-image: url(../../images/cenet_2023/icons/icon-rect.png); background-size: auto;} 

/* .home { background-image: url(../../images/cenet_2023/icons/home.png);   }
.add {  background-image: url(../../images/cenet_2023/icons/icon-add.png); padding-left: 20px; }
.time { background-image: url(../../images/cenet_2023/icons/icon-time.png);    }
.time-grey { background-image: url(../../images/cenet_2023/icons/icon-time-grey.png);    }

.speaker { background-image: url(../../images/cenet_2023/icons/icon-speaker.png);    }
.login { background-image: url(../../images/cenet_2023/icons/icon-login.png);   }
 */

.icon-full { background-image: url(../../images/cenet_2023/icon/icon-full.png);}
.icon-sci-numbs { background-image: url(../../images/cenet_2023/icon/icon-sci-numbs.png); display: inline-block; background-position: left center !important;}
.icon-download { background-image: url(../../images/cenet_2023/icon/icon-doload.png); background-position: left center !important;}

.icon-more {
	display: inline-block;
	position: relative;
	z-index: 1;
	line-height: 1;	 
	padding-right: 15px;
	padding-left: 0;
	/* font-size: .16rem; */
	color: #0c79fd;
	text-decoration: none;
	transition: all .35s;
	border-radius: ;}


.icon-more::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px #0c79fd solid;
	border-right: 2px #0c79fd solid;
	position: absolute;
	top: 50%;
	right: 0; 
	transform: translateY(-50%)  rotate(45deg);
	transition: all .35s;}

.btn_more_bg:hover,
.icon-more:hover { color: #fff; text-decoration: none; transition: all .35s;}

.btn_more_bg:hover::after,
.icon-more:hover::after { border-color:  #fff; transition: all .35s;}


.alight-midel .icon-more::after { right: 15px;}

.icon-more-blue { padding-left: 0;  opacity: 1 !important; transform: translateY(0) !important;}

.icon-more-blue { color:#0c79fd ; text-decoration: none;}

.icon-more-blue::after,
.icon-more-blue:hover::after { border-color: #33ca6b;}




/* 带下滑短线的标题 */
.has_shortline { position: relative; z-index: 1; padding-bottom: 55px;}
.has_shortline::before {
	content: "";
	width: 80px;
	height: auto;
	border-top: 2px #22264d solid;
	position: absolute;
	left: 0;
	bottom: 0;}



/* 时间轴效果 */
.timeline { width: 100%;}
.timeline ul { height: 2rem; list-style: none; position: relative; z-index: 5;}

.timeline ul li {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	float: left;
	margin-right: calc(( 100% - 6rem ) / 2);
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: table;}

.timeline ul li:nth-child(3n) { margin-right: 0;}

.timeline ul::before {
	content: "";
	width: 100%;
	border-top: 2px #cfe1ff dashed;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;}

.timeline ul li::after {
	content: "";
	width: 8px;
	height: 8px;
	border: 2px var(--theme_blue) solid;
	border-radius: 50%;
	position: absolute;
	left: calc(100% + .4rem);
	top: 50%;
	transform: translateY(-50%);}

.timeline ul li:last-child::after { display: none;} 

.timeline ul li a {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	text-decoration: none;
	padding: 15px;}

.sm_icon { width: .55rem; margin: auto;  margin-bottom: 10px;}
.timeline ul li a img { display: block; margin: auto;}
.li-circle ul li {	background-image: url(../../images/cenet_2023/icons/icon-bg.png);}

/* 日历形式 */
.has_left_date { position: relative;}
.has_left_date ul li a { padding-left: 1rem;}

/* 样式一：带背景，上--月份，下--日期 */
.has_left_date .rl_date { 
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: .7rem;
	background-color: #f8f8f8;
	/* transform: translatey(-50%); */
	color: #101010 ;}

.has_left_date .rl_date big { 
	display: block; 
	line-height: 1;
	font-weight: bold; 
	background-color: #8B0012 ;
	padding: .1rem ;
	color: #fff;}

.has_left_date .rl_date small { 
	font-weight: normal;  
	display: block; 
	text-align: center; 
	line-height: 1; 
	font-size: .2rem;
	padding: .1rem 0;}

/* 样式二：无背景色，上--年份，下--月份+日期 */

.has_left_date .rl_date2 { 
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	width: .9rem; 
	/* transform: translatey(-50%); */
	color: #8B0012 ;
	font-weight: bold;}

.has_left_date .rl_date2 big { 
	display: block; 
	line-height: 1;	
	padding: 0;
	font-size: .2rem;
	color: #8B0012;
	padding: 5px 0;}

.has_left_date .rl_date2 small { 	  
	display: block; 
	text-align: center; 
	line-height: 1; 
	font-size: .16rem;}



/* 2列 */
.li-line-2 { width: 100%;}
.li-line-2 ul li { width: calc((100% - 20px) / 2);	margin-bottom: 20px; margin-right: 20px; float: left;}
.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;}
.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;}
.li-line-4 ul li:nth-child(4n) { margin-right: 0;}


/* 左图右文 */
 dl.item_for_imgleft,
.item_for_imgleft { width: 100%; padding-bottom:20px; margin-bottom: 20px; border-bottom: 1px #dcdcdc solid;}

.faculty_for_imgleft  {width: 100%; display: flex;}

.item_for_imgleft a,
.faculty_for_imgleft a { display: block; width: 100%; height: 100%; text-decoration: none; position: relative; overflow: hidden;}

.item_for_imgleft dt,
.item_for_imgleft dd,
.faculty_for_imgleft dt ,
.faculty_for_imgleft dd { display: block; height: 100%; overflow: hidden; position: relative;}

.item_for_imgleft dt { width:2.3rem; float: left; margin-right: 0px;}

.item_for_imgleft dt img,
.faculty_for_imgleft dt img { display: block; width: 100%; height: 100%; object-fit: cover;  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%)  scale(1); transition: all .35s;}

.item_for_imgleft dt a { display: block; width: 100%; height: 100%; position: relative; overflow: hidden;}
.item_for_imgleft dd a ,
.item_for_imgleft dt a { min-height: 1.44rem;}

.item_for_imgleft dd { width: calc(100% - 2.3rem); float: right;  padding-left: .2rem; padding-right: .1rem;}
.item_for_imgleft dd span.news-date { position: absolute; bottom: 0;}

.faculty_for_imgleft dt { width: 5.45rem;   float: left; margin-right: 0px;}
.faculty_for_imgleft dd { display: block;  width: calc(100% - 5.45rem); height: unset;  padding-left: .2rem; padding-right: .1rem;}



.item_for_imgleft:last-child ,
.faculty_for_imgleft:last-child { margin-bottom: 0;}

.item_for_imgleft:hover dt img ,
.faculty_for_imgleft:hover dt img{	transform: translate(-50%,-50%)  scale(1.05);	transition: all .35s;} 



/* 弹窗 */
#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;}
#v-windows .swiper-slide img { max-height: 80vh;   height: auto;}

#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;
	/* border: 50px #fff solid;
	border-top-width: 60px;
	border-right-width: 25px;
	border-top-left-radius:  0px;
	border-top-right-radius: 0px; */
	animation: fadeInUp .5s ease forwards;}



.close {
	width: 38px;
	height:38px;
	position: absolute;
	right: 60px;
	top: 40px;
	opacity: 1;}

.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);}

.close4 {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -80px;
    right: 15px;
    color: #fff;
    line-height: 26px;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
	background-image: url(../../images/cenet_2023/icons/btn-close4.png);
	padding-top: 35px;
	background-repeat: no-repeat;
	background-position: center 21px;}

/* 弹窗-end */


.close3 {
	width: .6rem;
	height: .6rem;
	background-color: var(--blue);
	border-radius: 50%;
	position: absolute;
	top: .8rem;
	right: .8rem;
	z-index: 5;
	cursor: pointer;}

.close3 span {
	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);}

.close3 span:last-child { transform: translate(-50%,-50%) rotate(-45deg);}

/* 通用组件-end */



/* 模拟下来菜单 */
.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;}

.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 {	border-color: var(--theme_red) !important;	background-color: var(--theme_red);}
.onfocus::after { border-top: 5px var(--theme_red) solid !important; } */
.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;}

/* .select_menu_child span:hover{
	background-color: #eaf8f7; transition: all .3s;
} */


/* 验证码输入框 */
.verify-item {	margin: 0;	padding: 0;}

.verify-item::before,
.verify-item::after {	content: ' ';	display: block;	clear: both;}

.verify-item .code-input-item {
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-right: 10px;
	border-radius: 15px;
	overflow: hidden;}

.verify-item .code-input-item:last-child {	margin-right: 0;}

.verify-item .code-input-item input[type="text"] {
	width: 100%;
	height: 100%;
	background-color: #f4fbfb;
	color: #2db7b3;
   /* border: 1px solid #d2d2d2; */
	border-radius: 3.5px;
	outline: 0;
	text-align: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 16px;
	font-weight: 600;}

.qulification { max-width: 580px;	margin: 30px auto;}
.qulification-zs { width: 58%; margin:30px  auto;}
.verify-wrap {	padding-left: 120px; position: relative;}

.verify-wrap ul { width: auto; display: flex;	justify-content:flex-start;}

.verify-wrap ul .code-input-item {}

.control-list {	text-align: center;	margin-top: 25px;}

.control-list button {
	outline: none;
	display: inline-block;
	margin: 8px;
	width: 140px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	background-color: #2db7b3;
	border-radius: 3.5px;
	padding: 16px 27px;
	font-size: 14px;
	cursor: pointer;}

.normal_button {
	display: block;
	width: 150px;
	text-align: center;
	margin: auto;
	font-size: 14px;
	padding: 15px 25px;
	line-height: 1;}
/* 验证码输入框-end */







/* 悬浮菜单组件 */
.has-svgicon { position: relative; padding-left: 25px;}
.svg-left {
	position: absolute;
	left: 0;
	height: 100%;
	top: 50%;
	width: 20px;
	transform: translateY(-56%);
	display: block;}
.svg-left svg { width: 100%; height: 100%;}

.icon-svg { fill: #BEBEBE; fill-rule: evenodd;}

.zj-floatmenu { position: absolute;	z-index: 15;}
.zj-floatmenu ul { padding: 0; position: relative;}
.zj-floatmenu ul li { position: relative; cursor: pointer;}

 
.direction { left: calc(( 100vw - 13.8rem ) / 2  - 150px);  padding-top: 73px;}
.direction ul li {	 padding-left: 30px; margin-bottom: 15px; color: #666; transition: all .34s;}
.direction ul li i.svgicons {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	background-repeat: no-repeat;
	background-position: left center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%); 
	opacity: 0;
	transition: all .34s;}

.direction .oncall { color: #0e6bff; transition: all .34s;}
.direction .oncall i.svgicons { opacity: 1;	transition: all .34s;}


.left-nav { width: 3rem;  top: 50px;}
.left-nav ul { position: relative; padding-left: 25px;}
.left-nav ul::before {
	content: "";
	width: auto;
	height: calc(100% - 25px);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-left: 2px #fff  solid;}

.left-nav ul li {   color: rgba(255,255,255,.5); cursor: pointer; font-size: .2rem; margin: 13px 0; position: relative;z-index: 4;}
.left-nav ul li::before {
	content: "";
	width: 11px;
	height: 11px;
	background-color: #fff ;
	border-radius: 50%;
	position: absolute;
	left: -30px;
	top: 50%;
	transform: translateY(-50%);}

.left-nav .oncall::after {
	content: "";
	width: 27px;
	height: 27px;
	border:2px  #fff  solid;
	border-radius: 50%;
	position: absolute;
	left: -38px;
	top: 50%;
	transform: translateY(-50%);}

.left-nav ul li:hover ,
.left-nav .oncall { color: rgba(255,255,255,1); transition: all .35s;}

.content-right { width: calc(100% - 3rem); margin-left: 3rem;}


.scroll_fix {position: fixed; top: 15vh; z-index: 50;}

.scroll_fix_blue ul::before,
.scroll_fix_blue ul li::before,
.scroll_fix_blue .oncall::after { border-color: #0e6bff ;}
.scroll_fix_blue ul li::before { background-color: #0e6bff  ;}
.scroll_fix_blue .oncall  { color:  #0e6bff ;}
.scroll_fix_blue ul li  { color:  #666 ;}

/* 浮动菜单组件-end */



/* 登录面板 */
.zj_form,
.change_resule ,
.login_panle .login_top { width: 100%;}

.login_panle { width: 100%; position: relative; height: 100vh; overflow: hidden;}
.login_panle .login_top { position: absolute;  padding: 25px 50px;	display: flex; justify-content: space-between;	align-items: center;}
.login_panle .container { 
	padding-left: 8rem; height:100vh ;
	display: flex;	
	justify-content: center;
    flex-flow: column;	
	align-items: center;}

.ft-copy { position: absolute; bottom: 1rem;}
.zj_item {	width: 100%; padding: 1rem 0;}

.zj_login_tittle  { margin-bottom: .73rem;}
.zj_login_tittle span ,
.zj_login_form p span { display: block;}
 

.zj_item p ,
.yz_pswd { 
	border: 1px var(--border_color) solid; 
	border-radius: 5px; 
	position: relative;
	z-index: 1;
	line-height: 40px;
	margin-bottom: 30px; 
	padding: 5px 20px;}

.yz_pswd { padding: 0;}

.yz_pswd { width: 1.4rem; height: 100%; position: absolute; right: 0; top: 50%; transform: translateY(-50%); overflow: hidden;}
.yz_pswd img { width: 100%;}

.form_apply { width: 100%; color: #fff; text-align: center; margin-top: .8rem; padding: 15px; border-radius: 5px;}
.goup_yz p { width: calc(100% - 1.4rem - 15px);}

.zj_form p.icon { padding-left: 50px; background-position: 18px center;}
.icon-login { background-image: url(../../images/cenet_2023/login/icon-login.png);}
.icon-pswd { background-image: url(../../images/cenet_2023/login/icon-pswd.png);}

.change_resule img { margin-bottom: 25px;}
.change_resule h1 ,
.change_resule p { text-align: center; margin: 15px 0;}

/* 登录面板-end */



/* tab切换 */
.tab-head {   
	margin-left: -.2rem;
	margin-right: -.2rem;
	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-left: .2rem; 
	cursor: pointer;  
	transition: all .35s;}

.tab-head ul li:last-child { margin-right: 0;}
.tab-head ul li.active {  color: #8B0012; transition: all .35s;}

.tab-head ul li.active::after {
	content: "";
	width: 100%;
	border-bottom: 2px #8B0012 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 */




/* 筛选分类 */
.option-select { width: 100%; margin-bottom: 40px;  position: relative; z-index: 10;}
.option-select h6 { font-size: 20px; font-weight: normal;}
.option-select h6 span { color: #3ab1ad;}

.option-select ul { position: absolute; right: 0; top: -7px;}
.option-select ul label {}

.shaixuan button,
.shaixuan input { display: block; padding: 0; border: none; width: 100%; height: 100%; margin: 0; text-align: left; cursor: default;}

.shaixuan input::placeholder { color: #fff;}

.childlist,
.rl_panel { width: 100%; display: none; position: absolute; top: 100%; left: 0; z-index: 15;}

.rl_panel { width: 4.4rem; top: calc(100% + 10px); box-shadow: 0 10px 35px rgba(0,0,0,.15);} 

.childlist ul { width: 100%; top: 0;}
.childlist ul li { background-color: #f5f5f5; text-align: center; line-height: 45px; border-bottom: 1px #e5e5e5  solid;}
.childlist ul li:hover a { background-color: #3ab1ad; color: #fff; transition: all .35s;}

.sm_type,
.shaixuan,
select.choose {
	width: 150px;
	height: 54px;
    background-color: #3ab1ad;
    color: #fff;
    font-size: 16px;
	line-height: 1;
    padding: 15px 15px;
    border: none;
    margin-right: 10px;
	outline: none;
	appearance: none;
	position: relative;
	z-index: 1;
	display: block;}

.sm_type::after,
.shaixuan::after,
select.choose::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	position: absolute;
	right: 20px;
	top: 50%;
	transform-origin: center center;
	transform: translateY(-50%) rotate(135deg);
	z-index: 5;}

/* 移动端筛选 */
.sm_shaixuan { width: 100%; margin-bottom: 20px; position: relative;}
.sm_shaixuan label {
	
    font-size: 16px;
    color: #999;
    font-weight: normal;}
.sm_type { width: 100%; height: auto; padding: 10px 15px; text-align: left;}


select.choose option:active { background-color: red;}
/* 筛选分类-end */


/* 社交分享 */
.share { min-width: 20%; position: relative; margin: 0 30px; padding: 0 20px;  border-right: 1px var(--border_color) solid;  border-left: 1px var(--border_color) solid;}
.share label { color: #000;  position: absolute; left: 0; top: 50%;	transform: translateY(-50%);}
.share ul { width: auto; padding: 0; display: flex;}
.share ul li { 
	float: left; 
	/* width: .35rem;
	height: .35rem;
	border-radius: 50%; */
	overflow: hidden;
	position: relative;
	margin: 0 10px;
	cursor: pointer;}

.icon-full { width: .35rem;	height: .35rem;}

/* .share ul li:nth-child(1) { background-color: #3fb137; }
.share ul li:nth-child(2) { background-color: #e04d69; }
.share ul li:nth-child(3) { background-color: #edcf3d; }
.share ul li:nth-child(4) { background-color: #4cafe8; } */

/* .share ul li img {
	width: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
} */



button.icon-zan { width: 100%;} 
.root-svg { display: block; width: 50px;}

.share-area { 
	display: flex;
	justify-content: flex-end;
	flex-flow: row;
	align-content: center;
	align-items: center;}

.share-area .author { width: 52%; cursor: default;}
.share-area .zan_stars { max-width: 22%;}
.zan_stars p { margin-left: 20px;}

.zan_stars { cursor: pointer;}

.star-click { fill:#bebebe;}
.fill_red { color: #8b0013 !important;}
.fill_red .star-click { fill: #8b0013 !important;}


.socialize { width: 100%; text-align: center;}
button.icon-zan {
    width: 1rem;
    height: 1rem;
    border: 1px var(--border_color) solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-flow: column;
    align-items: center;
    justify-content: center;
	margin: auto;
	margin-bottom: 10px;
	color:var(--color_txt);}

/* 社交分享-end */



/* 搜索结果页 */

.innerban .searchbox {
	width: 50%;
	height: 60px;
	border: 1px #dcdcdc solid ;
	border-radius: 150px;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	margin: auto;
	top: 50%; 
	left: 50%;
	transform: translate(-50%,-50%);}

.innerban .searchbox input {
    display: block;
    width: 90%;
    height: 60px;
    border: none;
    padding: 0 20px;
    font-size: 18px;
    line-height: 60px;
	color: #fff;
    outline: none;
    box-shadow: none;
    background-color: transparent;}

.innerban .searchbox input::placeholder { color: #fff;  font-size: 18px;}

.forsearch { margin-top: 50px;}

.search_reult {	width: 100%;}
.search_reult ul { list-style: none; padding: 0; border-top: 1px #e0e0e0 solid;}
.search_reult ul li { width: 100%;  border-bottom: 1px #e0e0e0 solid; overflow: hidden;	padding: 25px 0; 	position: relative;	transition: all .35s;} 
.search_reult ul li a {	width: 100%; color: #333; text-align: left; position: relative;	padding-right: 150px;}

.search_reult ul li .news_date  {
	position: absolute;
	right: 0;
	top: 50%; 
	transform: translateY(-50%);  
	padding: 0;
	vertical-align: middle;}

.search_reult ul li .news_date::before { display: none;} 
.search_reult ul li h3.news_tittle { height: auto; margin-bottom: 0; font-size: .18rem; font-weight: normal;}

.search_reult ul li:hover a { color:#2db7b3 ;}


/* 搜索结果页-end */



@media  screen  and ( max-width: 768px) { 
	
	/* serach */
	.innerban .searchbox { width: 85%; height: 50px; top: 60%;}
	.innerban .searchbox input { height: 50px; font-size: 16px;}
	.search_reult ul li a { padding-right: 0;}
	.search_reult ul li .news_date { position: relative; transform: translateY(0);}
	.search_reult ul li h3.news_tittle { font-size: 18px; margin-bottom: 8px;}
	
	
	/* 子页面分类 */
	.sm_type, .shaixuan, 
	select.choose {  width: 46%; height: 50px;}
	
	#v-windows video { width: 87%;}
	.close { top: 15px; right: 15px;}
	
	button.icon-zan {  width: 100px;   height: 100px;}
	
	.faculty_for_imgleft { display: block;}
	.faculty_for_imgleft dt,
	.faculty_for_imgleft dd { width: 100%; float: none;}
	
	.li-line-2 ul li,
	.li-line-3 ul li,
	.li-line-4 ul li { width: 100%; float: none;}
	
	
	
	/* 详情页分页效果 */
	.share ul { width: auto; padding: 0;  padding-left:75px;}
	.share ul li { float: left; width:30px;height: 30px;}
	
	button.prev { padding-left: 25px;} 
	button.next { padding-right: 25px;} 
	
	button.next::before,
	button.prev::before {  width: 8px;  height: 8px;}
	
	button.prev::after,
	button.next::after { width: 20px;}
	
	/* 详情页分页效果-end */
	
	
	/* 日历 */
	
	.has_left_date ul li a {  position: relative;  padding-left: 70px;}
	.has_left_date .rl_date2 { width: auto; left: 8px;}
	.has_left_date .rl_date2 big { font-size: 20px;}
	.has_left_date .rl_date2 small { font-size: 16px;}
	
	
	
}




