@charset "utf-8";
/* CSS Document */
:root{    
	--main_color:#044D9F;        /*主色 */
	--main_color_rgb:2,58,145 ;  /*rgba*/
    --second_color:#F3792C;      /* 副色 */ 
	--hui_color:#BED630;    
}


@font-face {
  font-family: "ali1";font-weight: 600;src: url("//at.alicdn.com/wf/webfont/29EhDWG9FYy2/VWV4YjWKYW2q.woff2") format("woff2"),
  url("//at.alicdn.com/wf/webfont/29EhDWG9FYy2/RsEyDtyzq9G2.woff") format("woff");
  font-display: swap;
}


body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,p,form,img,select,figure{margin:0; padding:0;}
body{ color: #333;  font-size:14px; font-family:Microsoft Yahei,PingFang SC,Arial, sans-serif; overflow-x:hidden;background:#fff; scroll-behavior: smooth;}
body{ -webkit-font-smoothing:antialiased;font-smoothing:antialiased;-webkit-overflow-scrolling:touch;/*安卓和 IOS html5 动画卡顿解决方案*//* overflow-x:hidden; */line-height: 1; }
a{text-decoration:none; color:#333; outline-style:none;}
a:hover{ color:var(--second_color);}
a,input,img,:focus{ -webkit-tap-highlight-color:transparent; mayfish:expression(this.onfocus=this.blur); cursor:handbblr:expression(this.onFocus=this.blur());/*IE使用*/ outline-style:none;/*FF使用*/ }
ul,li{list-style:none;}
.clear{clear:both;}
img{border:0;}
.fl{float:left;}
.fr{float:right;}
.bottom_blank{height:.6rem;}
.mt10{margin-top:10px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mt40{margin-top:40px;}
.mt50{margin-top:50px;}
.mb_50{ padding-bottom:.5rem;}
section{background:#fff; position:relative;}

/*滚动条美化*/
body::-webkit-scrollbar {width: 10px !important;}
body::-webkit-scrollbar-track {background-color: #f3f3f3;}
body::-webkit-scrollbar-track-piece {background-color: #f3f3f3;-webkit-border-radius: 4px;}
body::-webkit-scrollbar-thumb {background-color: #ddd;border: solid 1px #C0C0C0;border-radius: 4px;}
body::-webkit-scrollbar-corner {background-color: #ddd;}
body::-webkit-resizer {background-repeat: no-repeat;background-position: bottom right;}
body::-webkit-scrollbar-thumb:hover {background-color: #F3F3E0;}
::-webkit-scrollbar {width: 15px;}
@media screen and (max-width:768px) {
body::-webkit-scrollbar {width:0px !important;}
::-webkit-scrollbar {width:0px;}
}


/*图片放大*/
.picShow img{transition:0.3s all;}
.picShow img:hover,.picShow a:hover img{transform:scale(1.05);}

/*======================主体宽度======================*/
.only_pc_show{ display:block;}
.only_m_show{display:none;}
img.pic_cover{width:100%; height:100%;object-fit:cover; display:block;}
.main{width:90%; margin: auto; max-width: 1500px;}

@media screen and (max-width:768px) {
	body{font-size:14px; }
	.main{width:100%; padding:0 15px; box-sizing:border-box;}
	.only_pc_show{ display:none;}
	.only_m_show{ display:block;}
}
.flex_space{display:flex;justify-content:space-between; flex-wrap:wrap;}
.flex_start{display:flex;justify-content: flex-start;flex-wrap:wrap;}
.t_center{display:flex; flex-direction:column; justify-content:center;align-items:center;}
.t_left_center{display:flex; flex-direction:column; justify-content:center;}
.t_right_center{display:flex; flex-direction:column; justify-content:center; align-items:flex-end;}
.t_center_nowrap{display:flex; justify-content:center;align-items:center;}

/*文字省略*/
.ellipsis1 {overflow: hidden; text-overflow: ellipsis;white-space: nowrap;}
.ellipsis2 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;}
.ellipsis3 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;text-overflow: ellipsis;}
.ellipsis4 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow: ellipsis;}


/*头部*/
.header{z-index:900;width: 100%; padding:0 2%; box-sizing:border-box; position:fixed;background: url(../images/header_bg.png) repeat-x center bottom;/*backdrop-filter: blur(30px);*/ transition:all .3s;}
.header:before{ content:""; position:absolute; bottom:0; left:0; width:0; height:1px; background:rgba(255,255,255,0.1); transition:1s}
.header.on:before{ width:100%}
.header .logo {height:.9rem; transition:0.5s all;}
.header .logo img{display:block; height:.52rem; filter: grayscale(100%) brightness(6000%); }
.header .wz{margin-left:.15rem;margin-top:.06rem;}
.header .logo h1{color:#fff;font-size:.23rem; letter-spacing:1.25px; font-family:'ali1'; }
.header .logo p{color:rgba(255,255,255,0.8);margin-top:8px; font-size:.15rem; }

.header.header_scroll{background:#fff!important; box-shadow: 0 2px 10px rgba(0,0,0,0.1);}
.bodymouse .header .logo img,.header_scroll .logo img{filter: grayscale(0%) brightness(100%); }
.bodymouse .header .logo h1,.header_scroll .logo h1{color:var(--main_color);}
.bodymouse .header .logo p,.header_scroll .logo p{color:var(--main_color); opacity:0.6;} 



/*下拉菜单*/
.navBox { box-sizing:border-box; position:relative; transition:0.5s all;}
.navBox .nav{display:flex; height:100%;}
.navBox .nav li { position: relative;}
.navBox .nav li>a {padding: 0 .12rem; position: relative; height:100%; display:flex; justify-content:center;align-items:center; }
.navBox .nav li>a .txt {position: relative;z-index: 2;font-size:.16rem;color:#fff;transition:0.5s all;font-family:MiSans;}
.navBox .nav li.active>a .txt{ color:#fff;}
.navBox .nav li>a:hover .txt{ color:var(--second_color);}
.navBox .nav>li.curr>a .bg {background: url(../images/n_nav_hover.png) center no-repeat;position: absolute;left: 50%;  transform: translateX(-50%);bottom:.2rem;width:22px;display: block;height:7px;transition: 0.5s;}
/*.navBox .nav>li>a:after{ content:''; display:block; z-index:-1; width:100%; height:0; position:absolute; left:0; bottom:0; background:var(--main_color); transition:0.5s all;}
.navBox .nav>li:hover>a:after{height:100%; left:0; bottom:0;}*/

.subNavbox{white-space: nowrap; min-width:125%; position:absolute; top:100%;left:50%;background:#fff; -webkit-transform:translate(-50%,10px);-ms-transform:translate(-50%,20px);transform:translate(-50%,20px); border-radius:10px;padding:.1rem 15px;opacity:0; pointer-events:none; transition:all .5s;box-shadow:0 1px 20px rgba(0,0,0,.15);}
.subNavbox:after{content:"";position:absolute;bottom:100%;left:50%;border-style:solid;margin-left:-7px;border-width:7px;border-color:transparent transparent #fff;}
.subNavbox p:not(:last-of-type){border-bottom:1px solid #e8e8e8}
.subNavbox a{display:block;position:relative;font-size:14px;padding:.18rem 0; -webkit-transition:color .3s cubic-bezier(.645,.045,.355,1);-ms-transition:color .3s cubic-bezier(.645,.045,.355,1);transition:color .3s cubic-bezier(.645,.045,.355,1); text-align: center; }
.subNavbox a:before{content:"";position:absolute;top:7px;bottom:7px;left:-15px;width:3px;background:var(--second_color);-webkit-transform:scaleY(0);-ms-transform:scaleY(0);transform:scaleY(0);-webkit-transition:-webkit-transform .3s cubic-bezier(.162,.85,.45,1);transition:transform .3s cubic-bezier(.162,.85,.45,1);}
.subNavbox a.active,.subNavbox a:hover{color:var(--second_color);}
.subNavbox a.active:before,.subNavbox a:hover:before{-ms-transform-origin:top;-webkit-transform-origin:top;transform-origin:top;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}
.subNavbox.active{pointer-events:all;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%);-webkit-transition-delay:.1s;-ms-transition-delay:.1s;transition-delay:.1s;opacity:1; }


/*鼠标经过header*/
.bodymouse .header{ background:#fff;}
.bodymouse .navBox .nav li>a .txt,.header_scroll .navBox .nav li>a .txt{color:#333;}
.bodymouse .navBox .nav li>a:hover .txt,.header_scroll .navBox .nav li>a:hover .txt{color:var(--second_color);}


/*======================搜索======================*/
.header .top_serch{width:.8rem; transition:0.5s all; position:relative; }
.header .top_serch a{height:100%;}
.header .top_serch a svg{width:18px; fill:#181818;  transition:0.5s all;}
.header .top_serch a:hover svg{transform:scale(1.2);}
.header .top_serch:after{ content: ""; width:1px; height:14px; background:rgba(0,0,0,.25); display:block;position: absolute;right: 0;top: 50%;transform: translate(0,-50%);transition: 0.5s all;}

.header .tc{transition:all ease 300ms;position: fixed;width: 100%;height: 100%;top: 0;left: 0;z-index: 99; display:flex; flex-direction:column; justify-content:center;align-items:center;}
.header .tc{ pointer-events: none;  filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; opacity:0;transform:scale(1.1);}
.header .tc.act{ filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1;  pointer-events: auto;transform:scale(1);}
.header .tc-bg {width: 100%;height: 100%;background: rgba(0,0,0,.85);position: absolute;top: 0;left: 0;z-index: 0;}

.header .tc-box {width: 700px;max-width: 90%;margin: 0 auto;box-sizing: border-box;  /* background:#fff; */display: block;position: relative;z-index: 1;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	overflow: hidden;
}
.header .tc.act .tc-box {-webkit-animation-name: anim-open-2;animation-name: anim-open-2;transform: scale(1);}

/*搜索弹窗内容样式*/
.header .tc-box form {position: relative;}
.header .tc-box .tc_fdj {position: absolute;left: 20px;display: block;height:.75rem;width: 25px;background: url(../images/icon-sq2.png) center no-repeat;}
.header .tc-box #keyword {width: 80%;height:.75rem;padding: 0 15px;padding-left:55px;font-size:.18rem;color: #999;box-shadow: none;-webkit-appearance: none;border:0; box-sizing:border-box;outline:none; float:left;}
.header .tc-box .btn_submit {width: 20%; height:.75rem; line-height:.75rem;background:var(--main_color);font-size:.2rem;color: #fff;cursor: pointer;text-transform: uppercase;border:0; outline:none;}

/*======================电话======================*/
.header .tel{ color:#fff; font-size:.2rem; transition:0.5s all; margin-left:.2rem; font-family:MiSans;}
.header .tel svg{width:.25rem; fill:#fff; margin-right:8px; transition:0.5s all;}
.header_scroll .tel,.header_white .tel,.bodymouse .tel{ color:var(--second_color);}
.header_scroll .tel svg,.header_white .tel svg,.bodymouse .tel svg{fill:var(--second_color);}





/*======================手机菜单按钮======================*/
.m_nav_btn{width: 30px;height: 30px;transition: 0.3s;cursor: pointer;border:none;padding: 0;outline: none;background:none; margin-top:15px; display:block;}
.m_nav_btn .line{position: relative;display: block;width: 25px;height: 3px;margin: 0px auto 0;background:var(--main_color);border-radius:3px;}
.m_nav_btn .line:before,.m_nav_btn .line:after{content: '';width: 100%;height: 3px;left: 0;position: absolute;background:var(--main_color);border-radius:3px;transition-duration: 0.3s,0.3s;transition-delay: 0.1s,0s;}
.m_nav_btn .line:before{transition-property: bottom,transform;bottom: 8px;}
.m_nav_btn .line:after{transition-property: top,transform;top: 8px;}
.m_nav_btn_active .line {background: transparent;-webkit-transition-delay: 0s,0s;-moz-transition-delay: 0s,0s;-ms-transition-delay: 0s,0s;-o-transition-delay: 0s,0s;transition-delay: 0s,0s}
.m_nav_btn_active .line:after,.m_nav_btn_active .line:before {-webkit-transition-delay: 0s,.1s;-moz-transition-delay: 0s,.1s; -ms-transition-delay: 0s,.1s; -o-transition-delay: 0s,.1s; transition-delay: 0s,.1s}
.m_nav_btn_active .line:before {bottom: 0px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg)}
.m_nav_btn_active .line:after {top:0px;-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}

/*======================手机搜索图标======================*/
.m_serch{ width:50px; height:62px;}
.m_serch a{height:100%;}
.m_serch a svg{width:18px; fill:#333;}

.top_blank{ display:none;}

@media screen and (max-width:768px) {
.header{ height:60px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); padding:0 12px;}
.header .logo{height:60px;}
.header .logo img{ height:33px; filter: grayscale(0%) brightness(100%);}
.header .wz{margin-left:8px;margin-top:5px;}
.header .logo h1{font-size:16px; letter-spacing:0; color:#000;}
.header .logo p{font-size:10.5px;margin-top:5px; color:#666;}

.header_scroll.header:before{ background:rgba(0,0,0,0);}

.header_right,.navBox{display:none;}
.m_header_right{display:block;}
.top_blank{height:60px; display:block;}



.m_header_scroll{background:#fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.m_header_scroll .top_serch a svg{fill:#999;}
.m_header_scroll .logo img{filter: grayscale(0%) brightness(100%);}
.m_header_scroll .logo .txt h2{color:#000;}
.m_header_scroll .logo .txt p{color:#888; }

	

/*======================手机弹出菜单======================*/
.m_tc_box{position: fixed;top:60px;left: 0;bottom: 0;right: 0;background: #fff;z-index:98; display:none;}
.m_tc_box .wrapper {position: absolute;left: 0;right: 0;height: 100%;padding:15px; box-sizing:border-box;overflow-x: hidden;overflow-y: auto;z-index: 110;}

/*搜索表单*/
.m_search_box {width:100%;  position: relative;border: 1px solid #e1e6f0; overflow:hidden; border-radius:3px; margin-bottom:10px; margin-top:20px;}
.m_search_box .search-btn {position: absolute;top:0px;right:0px;width:50px ;height:100%;}
.m_search_box form {height:46px;}
.m_search_box form input[type="text"] {width: 100%;height: 100%;background:rgba(255,255,255,0.8); box-sizing: border-box;padding: 0 50px 0 15px;border: none; font-size:15px;}
.m_search_box form input[type="submit"]{display: inline-block;width:30px;height:30px; background: url('../images/zoom.png') no-repeat center; border:none; background-size:23px auto;}

/*手机下拉菜单*/
.m_menu{overflow-x: hidden;overflow-y: auto;}
.m_menu .nav1 ul{ padding:0 0 0 30px; display:none; background-color:#fff;}
.m_menu .item{border-bottom: 1px solid #efefef; padding:16px 10px; font-size:16px;}
.m_menu .item i{float:right; color:#ccc; transition:0.3s all;}
.m_menu .item.active> i{ -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.m_menu .item.curr a,.m_menu .item a:hover{color:var(--main_color);}


/*电话*/
.m_tel{text-align:center; margin-top:35px; font-size:20px; font-family:din; color:#fff; background:var(--second_color); padding:15px; border-radius:5px; letter-spacing:1px;} 
.m_tel i{ font-size:18px; margin-right:5px;}
}


/*======================轮播图======================*/
#banner {width:100%;height:100vh; position:relative; z-index:0; overflow:hidden;}
#banner .swiper-slide { overflow: hidden;} 
#banner .slide-inner { position: absolute; left: 0; top: 0; right:0; bottom:0; background-size: cover; background-position: center; background-repeat: no-repeat;}
#banner .swiper-button-prev{ background:url(../images/banner_left.png) center no-repeat; opacity:.8; left:2%;} 
#banner .swiper-button-next{ background:url(../images/banner_right.png) center no-repeat; opacity:.8; right:2%;} 

#banner .txt{ position:absolute;z-index: 999;left:0;top:50%;  width:100%;transition:all 0.5s;transform:translateY(200px);opacity:0;}
#banner .txt:before{content:'';position:absolute;width:1px;height:.5rem;background:rgba(255,255,255,.5);top:-.9rem;left:50%; transform:translateX(-50%);}
#banner .txt:after{content:'';position:absolute;width:1px;height:.5rem;background:rgba(255,255,255,.5);bottom:-.6rem;left:50%; transform:translateX(-50%);}
#banner .txt h4{font-size:18px; color:#fff; font-weight:normal;text-shadow:rgba(0,0,0,0.3) 0px 1px 10px;margin-bottom:.3rem;}
#banner .txt h3{font-size:3.6vw; color:#fff;  text-shadow:rgba(0,0,0,0.3) 0px 1px 10px;font-family:'ali1'; letter-spacing:5px;margin-bottom:.3rem;}
#banner .txt p{ margin-bottom:.5rem; text-shadow:rgba(0,0,0,0.3) 0px 1px 10px;transition:all 0.6s;}

#banner .ban_roll{ position:absolute;z-index: 999;left:50%;bottom:1.2rem; transform:translateX(-50%); }
#banner .swiper-slide-active .txt {transform:translateY(-50%);opacity:1; transition-delay:1s;}

/*左右切换按钮*/	
.draw_h{ width: 67px !important; height: 67px !important; line-height: 67px !important; display:block; border-radius: 50%; box-sizing:border-box;} 
.draw_h:before{ content:""; display:block; width:100%; height:100%; position:absolute; left:0; top:0; border: 2px solid rgba(100%,100%,100%,.5);  box-sizing:border-box;border-radius: 50%;} 
svg.drawcircle{position:absolute;top:0;left:0;overflow: inherit;display: block;pointer-events: none;} 
svg.drawcircle circle {
 fill: none; box-sizing:border-box;
 stroke-width: 2;
 stroke: none;
 stroke-dasharray: 0 , 188.49;
 stroke-dashoffset:188.49;
 transition: all .3s linear 0s;	 
} 
.draw_h:hover svg.drawcircle circle { 
 stroke:#fff;
 stroke-dasharray:188.49 , 0;
 stroke-dashoffset:188.49;
 -webkit-transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1);
 transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1); 
} 
.draw_h .icon { fill: #626262; vertical-align: middle; transition:.3s;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%); 
} 
.draw_h:hover .icon{ fill:#0081cc;} 


/*分页器*/
#banner .swiper-pagination{bottom:.25rem;}
#banner .swiper-pagination-bullet {width: 40px;height: 5px;border-radius:5px;background: rgba(255, 255, 255, .8);opacity: 1;position: relative;margin: 0 5px !important;}
#banner .swiper-pagination-bullet:before{content: "";position: absolute;top: 0;left: 0;background:var(--second_color);width: 0;height: 5px;z-index: 1;transition: 0s; border-radius:5px;}
#banner .swiper-pagination-bullet-active:before{width: 100%;transition: all 5s ease; border-radius:3px;}

@media screen and (max-width:768px) {
#banner {height:230px; position:relative; }

#banner .txt {}
#banner .txt h4{font-size:16px; margin-bottom:12px;}
#banner .txt h3{font-size:20px; letter-spacing:0px;margin-bottom:25px;}
#banner .draw_h{display:none;}
#banner .swiper-pagination{bottom:12px;}
#banner .swiper-pagination-bullet {width:20px;margin: 0 2px !important;height: 3px;border-radius:3px;}
#banner .swiper-pagination-bullet:before{height: 3px;border-radius:3px;}

#banner .txt{transform:translateY(100px);}
#banner .swiper-slide-active .txt {transform:translateY(-50%);}
#banner .txt:before{ display:none;}
#banner .txt:after{display:none;}
#banner .ban_roll{bottom:50px; }
}	


/*==========页面标题=============*/
.main_tit{ margin-bottom: .5rem;text-align:center;}
.main_tit h2{ font-size: .4rem; font-weight: bold; color: #000; position:relative; z-index:2;text-align:center;margin-bottom:.2rem;display:inline-block;}
.main_tit span{ font-size: .2rem; color: #888; text-transform:uppercase;  letter-spacing:3px;display:block;}
.main_tit h2:before { content:'';position:absolute;width: 40px;height: 40px;top: -7px;left: -12px; background: linear-gradient(104.43deg, #65A4F8 0.5%, rgba(255, 255, 255, 0) 75%);border-radius:100%; z-index:1;}
.main_tit h2:after { content:'';position:absolute;width: 30px;height: 30px;bottom: -7px;right: -12px; background: linear-gradient(-22.57deg, var(--second_color) 0.5%, rgba(255, 255, 255, 0) 75%);border-radius:100%; z-index:1;}

@media screen and (max-width:768px) {

}


.main_tit2{ margin-bottom: .5rem;position:relative;padding-top:.8rem; font-family:'MiSans';}
.main_tit2:before{content:'';position:absolute;width:1px;height:50px;background:rgba(204,204,204,.9);top:0;left:50%; transform:translateX(-50%);}
.main_tit2 p{color:#999; text-transform:uppercase;font-size:16px;}
.main_tit2 h2{text-transform:uppercase;font-size:.46rem; font-weight:normal;margin:15px 0;}
.main_tit2 h3{ font-size: .4rem; font-weight:normal; color:#000; }
@media screen and (max-width:768px) {
.main_tit2{ margin-bottom:20px; padding-top:30px;}
.main_tit2:before{height:20px; }
.main_tit2 p{color:#999; font-size:14px;}
.main_tit2 h2{ font-size:20px; margin:10px 0; }
.main_tit2 h3{ font-size:20px;}

}




/*页面标题*/
.page_tit{padding:.8rem 0 .4rem;width:100%;  text-align:center;}
.page_tit h2{ font-size:.4rem; color:#000;}
.page_tit .line {display: block;width:25px;height: 4px; border-radius:10px; background:var(--second_color); margin: 20px auto auto;}
.page_tit p{font-size:16px; color:#666; margin-top:15px; line-height:2;}

@media screen and (max-width:768px) {
.page_tit h2{ font-size:20px;}	
.page_tit .line {width:20px; margin: 12px auto auto auto;}
.page_tit p{font-size:13px; margin-top:10px;line-height:1.6;}
.page_tit p br{display:none;}
.page_tit .more{width:88px; line-height:32px;}
.page_tit .more a{font-size:14px;}
}



/*================通用按钮=====================*/
.lean_more{margin-top:.5rem;}
.lean_more a{width:1.6rem;height:.5rem;border-radius: 50px;background: var(--main_color);transition: background .5s;position: relative;overflow: hidden;display: flex;align-items: center;padding: 0 .2rem;box-sizing:border-box; transition:all .3s;}
.lean_more span{position: absolute;width: 65%;height: 100%;top: 0;left: 0;display: flex;align-items: center;color: #fff;padding: 0 .3rem;line-height: 1;transition: .5s;font-size: .16rem;}
.lean_more span.s{justify-content: flex-end;}
.lean_more span.h{justify-content: flex-start;opacity: 0;margin-left:.15rem;}
.lean_more i{width:.rem;height:.rem;border-radius: 50%;background: #fff;transition: .5s;display: flex;align-items: center;justify-content: center;font-style: normal;font-size:.32rem;color:var(--main_color);position: relative;z-index: 2;line-height: 1;}
.lean_more a:hover{background:var(--second_color);}
.lean_more a:hover i{transform: translateX(calc(1.45rem - .2rem*2 - .1rem));color:var(--second_color);}
.lean_more a:hover span.s{opacity: 0;}
.lean_more a:hover span.h{opacity: 1;}

@media only screen and (max-width: 768px){
.lean_more{margin-top:25px;}
.lean_more a{width:130px;height:40px;border-radius:40px;padding: 0 15px;}
.lean_more span{width:68%;padding: 0 20px;font-size:14px;}
.lean_more i{width:25px;height:25px;font-size:16px;}
.lean_more a:hover i{transform: translateX(calc(105px - 10px*2 - 10px));}
}

.my_tit{ padding:.9rem 0 .5rem;}
.my_tit .t{ font-size:.22rem; color:#aaa; text-transform:uppercase; margin-bottom:.1rem; font-style: italic; display: flex;align-items: center;}
.my_tit .t span{width:.25rem; height:3px; background:var(--second_color); margin-right:5px;}
.my_tit .b{ font-size:.42rem; font-weight:bold; color:#000;}
.my_tit .b span{ color:var(--second_color);}


/*=============学校概况=============*/
.in_box_bg1{ background: url(../images/in_box_bg1.jpg) no-repeat center;background-size:cover; position:relative; padding-bottom:1rem;}

.btn_arr{display: block;margin:.2rem  auto 0;width: 70px;height: 40px; border: 1px solid #e8e8e8; border-radius: 40px;position: relative;overflow: hidden; transition:all  .5s;}
.btn_arr:before {content: "";display: block;width: 100%;height: 100%;background: url(../images/arr2.png) center no-repeat;position: absolute;left: -100%;top: 0;background-size: 27px;transition: .5s;}
.btn_arr:after {content: "";display: block;width: 100%;height: 100%;background: url(../images/arr1.png) center no-repeat;position: absolute;left: 0;top: 0;background-size: 27px;transition: .5s;}
.btn_arr:hover{ border: 1px solid var(--second_color); background: var(--second_color);}
.btn_arr:hover:before {left: 0;}
.btn_arr:hover:after {left: 100%;}


@media only screen and (max-width: 768px){
.btn_arr{width: 70px;height: 30px;  border-radius: 30px;}
}


/*==========首页-学院概括=========*/
.in_box1{}
.in_box1 .left{width: 62.5%; position:relative;}
.in_box1 .left .box1{position: absolute;width: 30%;height: 34.3%;background:var(--second_color); right: 0px;bottom: 35.7%; font-size:.25rem; color:#fff;}
.index_about .pic .ico{position:absolute;}
.in_box1 .left .box1 a{  width: 1rem; height:1rem; position:relative;}
.in_box1 .left .box1 .mask{width:100%; height:100%; cursor: pointer;border-radius: 50%;position: absolute;top:50%;left:50%; transform:translate(-50%,-50%);}
.in_box1 .left .box1 .mask img{width:100%; animation: roll 3s infinite linear;}
@-webkit-keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.in_box1 .left .box1 video{width:100%;}


.in_box1 .left .desc{position: absolute;width:66%;height:35.7%;right: 0;bottom: 0px;background:rgba(255,255,255,0.95);line-height:2; text-align:justify; padding:.1rem .5rem; box-sizing:border-box;}
.in_box1 .left .desc a{ color:var(--second_color);}

.in_box1 .bz img{max-width:66%; }

.in_box1 .right{width: 37.5%; background: url(../images/xuexiao_r.jpg) no-repeat; background-size:cover;}
.in_box1 .right li{width:50%; height:33%; font-size:.25rem; color:#fff; text-align:center;}
.in_box1 span{ font-size:.46rem; font-family:MiSans;}
.in_box1 p{ margin-top:.15rem;}
.in_box1 .right li:nth-child(1),.in_box1 .right li:nth-child(2){height:30%;}
.in_box1 .right li:nth-child(3),.in_box1 .right li:nth-child(4){height:34.3%;}
.in_box1 .right li:nth-child(5),.in_box1 .right li:nth-child(6){height:35.7%;}
.in_box1 .right li:nth-child(2){background: rgba(213, 161, 128, 0.7);}
.in_box1 .right li:nth-child(3){background: rgba(255, 255, 255, 0.8);}
.in_box1 .right li:nth-child(5){background: var(--main_color);}
.in_box1 .right li:nth-child(6){background: var(--second_color);}
.in_box1 .right li:nth-child(1),.in_box1 .right li:nth-child(3){ color:var(--second_color);}
.in_box1 a{ color:#fff;}
@media only screen and (max-width: 768px){
.in_box_bg1{ padding-bottom:0;}
.in_box_bg1 .main{padding:0;}
.in_box1 .left{width:100%; position:relative; order:1;}
.in_box1 .left .m_video{position:absolute;top:20%;left:50%; transform:translate(-50%,-50%);}
.in_box1 .left .m_video .mask .mask{ cursor: pointer;border-radius: 50%;position: absolute;top:50%;left:50%; transform:translate(-50%,-50%);}
.in_box1 .left .m_video .mask img{width: 86px; height:86px;animation: roll 3s infinite linear;}
.in_box1 .left .m_video svg{position: absolute;top:50%;left:50%; transform:translate(-50%,-50%);}
@-webkit-keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.in_box1 .left .m_video  video{width:100%;}

.in_box1 .left .box1{ display:none;}
.in_box1 .left .desc{position:relative;width:95%;height:auto; margin:-50px auto 0; background:rgba(255,255,255,0.95); padding:20px 25px; line-height:1.8; border-radius:10px; margin-bottom:20px;}


.in_box1 .right{width: 100%; background: url(../images/xuexiao_r.jpg) no-repeat; background-size:cover; order:2;}
.in_box1 .right li{font-size:16px;}
.in_box1 span{ font-size:20px; }
.in_box1 p{ margin-top:10px;}
.in_box1 .bz img{max-width:50%; }
.in_box1 .right .ico img{height:30px;}
.in_box1 .right li:nth-child(1),.in_box1 .right li:nth-child(2){height:125px;}
.in_box1 .right li:nth-child(3),.in_box1 .right li:nth-child(4){height:125px;}
.in_box1 .right li:nth-child(5),.in_box1 .right li:nth-child(6){height:125px;}

}

/*==========首页-课程=============*/
.index_kc{background:url(../images/bg4.jpg) no-repeat center; background-size:cover;padding:0 0 1.2rem; position:relative; background-size:cover;}
.index_kc:before{position:absolute;content:'';top:0;left:0;width:100%;height:100%;background:rgba(61,70,99,.7);backdrop-filter:blur(10px);}
.index_kc li{width:48.5%;background:url(../images/news_bg.jpg) no-repeat center top; background-size:cover; padding:.5rem .4rem;box-sizing:border-box;border-radius:10px;position:relative; transition:all .5s;}
.index_kc li .tag{position:absolute;top:40px;right:0;padding:0 .2rem;line-height:.52rem;box-sizing:border-box;background:var(--main_color);color:#fff;font-size:.16rem;border-radius:5px 0 0 5px;}
.index_kc li:last-child .tag{background:var(--second_color);}
.index_kc li .ico{}
.index_kc li .ico img{width:.8rem;}
.index_kc li .txt{width:calc(100% - 1.2rem);}
.index_kc li .txt .con{position:relative;}
.index_kc li .txt h3{font-size:.24rem;color:#000;margin-bottom:.25rem;}
.index_kc li .txt h4{width:.85rem;font-weight:normal;font-size:.16rem; line-height:1.3;} 
.index_kc li .txt dl{width:calc(100% - .85rem); position: relative;top:}
.index_kc li .txt dl p{line-height:1.6;margin-bottom:10px;color:#666;font-size:.15rem; text-align:justify;}
.index_kc li a{margin:.15rem 0 0;}
@media only screen and (max-width: 768px){
.index_kc{padding:0 0 50px;}
.index_kc li{width:100%; padding:25px 20x; margin-bottom:15px;}
.index_kc li .tag{ display:none;}

.index_kc li .tit {margin-bottom:15px;}
.index_kc li .tit img{height:56px; margin-right:10px;}
.index_kc li .m_txt h3{ font-size:18px; margin-bottom:6px;}
.index_kc li .m_txt span{ background:var(--main_color); color:#fff; display:inline-block; padding:5px 10px; border-radius:20px; font-size:13px;}


.index_kc li .ico{ display:none;}
.index_kc li .txt{width:100%;}
.index_kc li .txt h3{ display:none;}
.index_kc li .txt h4{width:75px; font-size:14px; font-weight:bold;} 
.index_kc li .txt dl{width:calc(100% - 75px); position: relative;top:-1px;}
.index_kc li .txt dl p{ margin-bottom:10px; font-size:14px;}

.index_kc li a{margin:0 auto;}
}


/*==========首页-校长介绍=============*/
.in_xzjs{background:url(../images/bg3.jpg) no-repeat center; background-size:cover; position:relative; }
.in_xzjs .my_tit{display:none;}
.in_xzjs .pic{width:50%;overflow:hidden; }
.in_xzjs .txt{width:50%; padding:.6rem .8rem; box-sizing:border-box;}

.in_xzjs .txt .tit{ border-bottom: solid 2px #ccc; width: 90%; }
.in_xzjs .txt .tit h2{ font-size: .33rem; position: relative; padding-bottom: .25rem; margin-right: .1rem; color: #000; display: inline-block;}
.in_xzjs .txt .tit h2:after{content: ''; width: 100%; height: 2px; background: var(--second_color); position: absolute;left: 0; bottom: -2px; }
.in_xzjs .txt h5{ font-size:.18rem; margin:.2rem 0 .25rem; }
.in_xzjs .txt .desc{line-height:2; margin-bottom: .25rem; width: 90%; }
.in_xzjs .txt .info{ line-height: 1.6; font-style: italic; color: #999; margin-bottom: .25rem; width: 90%; text-align: justify; font-size: 13px;}
.in_xzjs .txt .info span{ font-size: .22rem; color: #333; font-weight: lighter; }

.in_xzjs  .btn_arr{ margin:.2rem  0 0; border: 1px solid var(--second_color);}

@media screen and (max-width:768px) {
.in_xzjs{background:none; }
.in_xzjs .pic{width:180px; margin:auto; overflow:hidden;}
.in_xzjs .pic img{width:100%; height:180px; object-fit:cover; border-radius:100%; display:block;}

.in_xzjs .my_tit{display:flex;}
.in_xzjs .txt{width:100%; padding:.6rem 15px;}

.in_xzjs .txt .tit{ width:100%; }
.in_xzjs .txt .tit h2{ font-size:18px;}
.in_xzjs .txt h5{ font-size:14px; margin:12px 0 15px; }
.in_xzjs .txt .desc{line-height:1.8; width:100%; }
.in_xzjs .txt .info{ width:100%; }
}



/*==========首页-团队=============*/
.index_team{padding:0 0 .8rem; background:url(../images/in_news_bg.jpg) no-repeat center top; background-size:cover;}
.team_list1 li{margin-bottom:0;}
.team_list1 li .pic{ border-radius:10px; overflow:hidden;}
.team_list1 li .pic img{width:100%; display:block; transition:0.3s all;}
.team_list1 li:hover .pic img{ transform:scale(1.1);}

.team_list1 li .txt{margin-top:.3rem;  border:solid 1px #888; border-left:0; border-right:0;}
.team_list1 li .txt .tit{padding:15px 0;}
.team_list1 li .txt .tit h3{ font-size:15px;}
.team_list1 li .txt .tit .arr{ color:#999;}
/*按钮切换*/
#index_team{position:relative;overflow:hidden;padding-bottom:.6rem;}
@media screen and (max-width:768px) {
#index_team{ padding-bottom:40px;}
.team_list1 li{ width:100%; margin-bottom:0;}  
.team_list1 li .txt{margin-top:20px; }
}



/*分页器*/
.myarr{bottom:0;width:100%; position: absolute;}
.myarr a{ display: block; position: relative; margin-left: .68rem;}
.myarr a:before{ content: ''; width: .32rem; height: 2px; background:#ccc; position: absolute; left: -.5rem; top: 50%; }
.myarr .swiper-pagination{ position: relative;}
.myarr .swiper-pagination-bullet {width:4px;height:4px; background:var(--main_color);border: solid 2px var(--main_color);opacity: 1;position: relative;margin: 0 6px !important; transition: 0.5s all;}
.myarr .swiper-pagination-bullet-active{ width:10px;height:10px;background:#fff; border: solid 2px var(--second_color);}




/*==========首页-办学优势=============*/
.index_youshi{background:url(../images/bg1.jpg) no-repeat center; background-size:cover;padding:0 0 .8rem;}
.in_ys_box li{width:23.5%;background:#fff;padding:.5rem .35rem;box-sizing:border-box;border-radius:10px;text-align:center; margin-bottom:.25rem;}
.in_ys_box li .ico img{height:.6rem;}
.in_ys_box h3{font-size:.22rem;color:#000;margin-top:.35rem;}
.in_ys_box i{display:block;width:25px;height:4px;background:var(--second_color);border-radius:10px;margin:.2rem auto;}
.in_ys_box p{line-height:1.8;font-size:.16rem; margin-top:.25rem}
@media only screen and (max-width: 768px){
.index_youshi{padding:0 0 50px;}
.in_ys_box li{width:48.5%; padding:.5rem 15px; margin-bottom:12px;}
.in_ys_box li .ico img{height:.6rem;}
.in_ys_box h3{font-size:16px; margin-top:.35rem;}
.in_ys_box i{ width:20px;height:3px; margin:.2rem auto;}
.in_ys_box p{line-height:1.8;font-size:14px;}

}




/*==========首页-新闻=============*/
.index_news_bg{padding:.8rem 0 .8rem;background:url(../images/news_bg.jpg) no-repeat center; background-size:cover;}
.scroll_zutu{position:relative;overflow:hidden;padding:0 0 1rem;}
.scroll_zutu figure{ background:#fff;border-radius:10px;overflow:hidden;box-shadow: 9px 9px 23px 0px rgba(229, 241, 250, 0.5);}
.scroll_zutu figure .pic{overflow:hidden;}
.scroll_zutu figure .pic img{width:100%;display:block; transition:all .5s;}
.scroll_zutu figure .txt{padding:.35rem .35rem;box-sizing:border-box;}
.scroll_zutu figure .txt .time{color:#999;}
.scroll_zutu figure .txt h3{font-weight:normal;font-size:.18rem;line-height:1.6; text-align:justify;color:#000;margin:.15rem 0 .25rem; transition:all .5s;}
.scroll_zutu figure .txt span{font-family: 'dinpro5';font-size:.16rem;color:#333;}
.scroll_zutu figure .txt span i{font-size:14px;margin-left:5px;color:#000;}

.scroll_zutu figure:hover .pic img{ transform:scale(1.1,1.1);}
.scroll_zutu figure:hover .txt h3{color:var(--second_color);}


/*按钮切换*/
.scroll_zutu .swiper-button-prev,.scroll_zutu .swiper-button-next {color:#888; width:50px;height: 50px;background:#fff;border-radius:50%; top:auto;bottom:0; outline:none;  opacity:1; transition:0.3s all;box-shadow: 9px 9px 23px 0px rgba(229, 241, 250, 0.5);}
.scroll_zutu .swiper-button-prev i,.scroll_zutu .swiper-button-next i{font-size:18px;}
.scroll_zutu .swiper-button-prev{left:0;right: auto;}
.scroll_zutu .swiper-button-next{left:65px;right: auto;}
.scroll_zutu .swiper-button-prev:hover,.scroll_zutu .swiper-button-next:hover{background:var(--second_color);color:#fff;}

/*分页器*/
.scroll_zutu .swiper-pagination-progressbar{width:90%!important;right:0!important;left:auto!important;top:auto!important;background:#D1D4D8!important;height:2px!important;}
.scroll_zutu .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--main_color)!important}
.scroll_zutu .swiper-pagination { text-align:center; width:100%; bottom:20px;right:0;}

@media screen and (max-width:768px) {
.scroll_zutu{padding:0 0 50px;}
.scroll_zutu figure .txt{padding:20px 20px 25px;}
.scroll_zutu figure .txt h3{ font-size:16px; margin:10px 0 25px; line-height:1.5;}
.scroll_zutu figure .txt span{font-size:14px;}


/*按钮切换*/
.scroll_zutu .swiper-button-prev,.scroll_zutu .swiper-button-next {width:36px;height: 36px;}
.scroll_zutu .swiper-button-prev i,.scroll_zutu .swiper-button-next i{font-size:14px;}
.scroll_zutu .swiper-button-prev{left:0;}
.scroll_zutu .swiper-button-next{left:40px;}

/*分页器*/
.scroll_zutu .swiper-pagination-progressbar{width:77%!important;height:2px!important;}
.scroll_zutu .swiper-pagination { bottom:15px;right:0;}
}



/*=================底部====================*/
.foot_bg{background:url(../images/foot_bg2.jpg) no-repeat center; background-size:cover; padding:.8rem 0 .5rem;overflow:hidden;}
.foot_lx{width:55%;}
.foot_lx .tit{font-size:.32rem;color:#fff;margin-bottom:.4rem;}
.foot_lx li{width:45%;margin-bottom:.5rem;}
.foot_lx li .bt{border-bottom:1px solid  rgba(255,255,255,.2);margin-bottom:.3rem;}
.foot_lx li h3{font-size:.16rem;color:rgba(255,255,255,1);position:relative;font-weight:normal;display:inline-block;padding-bottom:.15rem;}
.foot_lx li h3:before{content:'';position:absolute;width:100%;height:2px;background:var(--second_color);bottom:-1px;left:0;}
.foot_lx li p{font-size:.16rem;color:rgba(255,255,255,.8);margin-bottom:.1rem; line-height:1.6;}
.foot_lx li a{color:rgba(255,255,255,.8);}
.foot_lx .ewm img{width:.9rem;display:block;border-radius:5px;}
.foot_lx dl{margin-right:.2rem;text-align:center;}
.foot_lx dl:last-child{margin-right:0;}
.foot_lx dd{margin-top:10px;color:rgba(255,255,255,.8);}

.foot_form{width:35%;}
.foot_form li{margin-bottom:.2rem;}
.foot_form li .code{ position:relative;}
.foot_form li .code img{ position:absolute;right:10px;top:50%; transform:translateY(-50%);}
.foot_form input{width:100%;line-height:.42rem; outline:none;border:0;padding:0 15px; border-radius:5px;  box-sizing:border-box;}
.foot_form .tit{font-weight:normal;font-size:14px;color:rgba(255,255,255,.8);margin-bottom:15px;}
.foot_form .tit i{font-style:normal;color:var(--second_color);margin-left:5px;}
.foot_form textarea{font-size:15px; display: block;border: 0;outline: none; width: 100%;padding:15px;box-sizing: border-box;min-height:90px; border-radius:5px;} 
.foot_form input::-webkit-input-placeholder,.foot_form textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#999;}
.foot_form .submit{ border:none;outline: none; font-size:16px; cursor:pointer;color:#fff; background:var(--second_color); font-family:"微软雅黑"; transition:0.3s all; width:100%; line-height:46px; border-radius:5px; margin-top:.1rem;}

.copyright{border-top:1px solid rgba(255,255,255,.1);padding-top:.4rem;margin-top:.4rem;}
.copyright p{color:rgba(255,255,255,.35);}
.copyright p a{color:rgba(255,255,255,.35);}
.copyright p a:hover{color:var(--main_color);}

@media screen and (max-width:768px) {
.foot_bg{padding:30px 0 10px;}
.foot_lx{width:100%;}
.foot_lx .tit{font-size:18px; font-weight:bold; text-align:center; margin-bottom:10px;}
.foot_lx li{width:100%;margin-bottom:15px;}
.foot_lx li .bt{margin-bottom:15px;}
.foot_lx li h3{font-size:15px;}
.foot_lx li p{font-size:14px;margin-bottom:12px;}
.foot_lx .ewm { order:1;}
.foot_lx .ewm img{width:90px; border-radius:3px;}

.foot_form{display:none;}
.foot_form input{width:100%;line-height:.42rem; outline:none;border: 1px solid #d1d8de;padding:0 20px; border-radius:5px;  box-sizing:border-box;margin-bottom:.2rem;}
.foot_form .tit{font-weight:normal;font-size:14px;color:rgba(255,255,255,.5);margin-bottom:15px;}
.foot_form .tit i{font-style:normal;color:var(--main_color);margin-left:5px;}
.foot_form textarea{font-size:15px; display: block;border: 1px solid #d1d8de;outline: none; width: 100%;padding: 20px 20px;box-sizing: border-box;min-height:90px; border-radius:5px;} 
.foot_form input::-webkit-input-placeholder,.foot_form textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#999;}
.foot_form .submit{ border:none;outline: none; font-size:16px; margin:.25rem auto 0; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:100%; line-height:42px; border-radius:5px;}

.copyright{padding-top:10px;margin-top:10px;}
.copyright p{width:100%;text-align:center;line-height:1.6;font-size:13px;}

}


/*--------------------*/

/*二级页面 banner*/
.page_ban{ width:100%; position:relative; overflow:hidden; background:#000; }
.page_ban .pic {animation: o-scale 20s linear infinite; height:77vh;  overflow:hidden;animation: scaleUpDown 10s forwards;}
.page_ban .pic img{width:100%; height:100%;object-fit:cover; display:block;}

.page_ban .txt{position:absolute; left:0; top:0; bottom:0; right:0;  z-index:9; }
.page_ban .txt h2 { font-size:.42rem; font-weight:bold; color:#fff; margin:.3rem 0 .5rem;}
.ban_roll{position:relative}
.ban_roll span{width:.6rem;height: .6rem;border-radius: 100%;border: 1px dashed #fff;animation: roll 4s linear infinite;}
.ban_roll svg{position:absolute;top:50%;left:50%; transform:translate(-50%,-50%);width:.25rem;fill:#fff;}

@-webkit-keyframes scaleUpDown
{from{-webkit-transform:scale(1.2);transform:scale(1.2)}
to{-webkit-transform:scale(1);transform:scale(1)}
}



@keyframes roll
{
	from{transform:rotate(0deg)}
	to{transform:rotate(359deg)}

}



@media screen and (max-width:768px) {
.page_ban .pic{height:168px;}
.page_ban .txt h2 { margin-top:0;}
.page_ban:before {display:none;}
}

	
/*内页导航*/
.page_nav{position:relative;}
.page_nav ul{background:#fff;box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 8%);padding:.4rem .5rem .4rem .3rem;box-sizing:border-box;border-radius:15px;margin-top:-.45rem;}
.page_nav .weizhi{position: relative;  display:flex; align-items:center;}
.page_nav .weizhi a{color:#616161;}
.page_nav .weizhi i.ico { margin-right:10px;}
.page_nav .weizhi i.ico svg {height: 20px;width: 20px; fill:var(--second_color);}
.page_nav .weizhi span{margin:0 5px;}

.page_nav .tab a{padding:0 .25rem;font-size:.18rem;position:relative;}
.page_nav .tab a:before{content:'';position:absolute;bottom:-.2rem;left:50%; transform:translateX(-50%);background: url(../images/n_nav_hover.png) center no-repeat;width:0;height:7px;transition: 0.5s;}
.page_nav .tab a.active{color:var(--second_color);}
.page_nav .tab a.active:before{width:22px;}
.page_nav .tab a:hover:before{width:22px;}
@media screen and (max-width:768px) {
.page_nav ul{padding:20px 15px;}
.page_nav .tab {width:100%; text-align:center;}
.page_nav .tab a{padding:0 5px;font-size:15px;}
.page_nav .tab a:before{background:none;}
}



	
/*位置*/
.sub_weizhi{height:60px; background:#f8f8f8; border-bottom:solid 1px #e8e8e8; position:relative; z-index:9;/*box-shadow: 0 1px 5px rgba(0,0,0,0.1);*/}
.sub_weizhi .weizhi{ color:#333; position: relative;  display:flex; align-items:center;}
.sub_weizhi .weizhi a{color:#333;}
.sub_weizhi .weizhi i.ico { margin-right:10px;}
.sub_weizhi .weizhi i.ico svg {height: 20px;width: 20px; fill:#333;}
.sub_weizhi .weizhi span{margin:0 5px;}

.page_weizhi{line-height:.66rem; font-size:.16rem; border-bottom:solid 1px rgba(0,0,0,0.1); margin-bottom:.5rem;}

@media screen and (max-width:768px) {
.sub_weizhi{height:36px;}
.sub_weizhi .weizhi{margin-left:10px; font-size:13px;}
.sub_weizhi .weizhi i.ico {margin-right:10px;}
.sub_weizhi .weizhi i.ico svg {width: 16px;}

.page_nav .weizhi{ display:none;}

}

/*===================子栏目导航================*/
#n_nav a{position: relative;float: left;display: block; font-size:15px; min-width:125px; padding:0 15px; background: url(../images/line_n_title.jpg) right 1px center no-repeat; text-align: center; }
#n_nav a:last-child{ background: none;}
#n_nav a strong{background: url(../images/bg_n_nav.png) center no-repeat; position: relative; display: block;z-index: 9; height: 60px; line-height:60px; color: #333; font-weight:normal; transition:0.6s all; }
#n_nav a span{position: absolute; left: 0px; top: 0px; z-index: 1; width: 100%; display: inherit; text-align: center;}
#n_nav a i{ display:inline-block; background:var(--main_color); height: 60px; width: 0px; transition:0.6s all; opacity:0;}
#n_nav  a.on i,#n_nav a:hover i{width:100%; opacity:1;}
#n_nav  a.on strong,#n_nav a:hover strong{ color: #fff; }

.m_sub_nav{display:none;}
@media screen and (max-width:768px) {
.sub_weizhi .main{padding:0;}	
#n_nav{display:none; width:100%; background: #fff;box-shadow: 0 2px 10px #ccc;z-index: 9; box-sizing:border-box;}
.m_sub_nav{display:flex; height:36px; margin-right:15px;}
.m_sub_nav svg{width:20px; height:20px;  fill:var(--main_color); transition:0.3s all;}
.m_sub_nav.active svg{ -webkit-transform: rotate(-180deg); transform: rotate(-180deg); }

#n_nav a{width:100%; padding:0 15px;  background:none; text-align:left; border-bottom: 1px solid #e1e6f0; box-sizing:border-box;}
#n_nav a strong{height:46px; line-height:46px; color: #333;}
#n_nav a span{display:none;}
#n_nav a.on strong,#n_nav a:hover strong{ color:var(--main_color); }
}
	

/*================关于哈嘟=================*/	

/*领导寄语*/	
.ldjy_box{padding:1.5rem 0; background:url(../images/bg2.jpg) no-repeat center top; background-size:cover; margin-top:-.6rem;}
.ldjy_box .left{width:20%; position:relative;}
.ldjy_box .left h2{font-size:.4rem; color:#000;}
.ldjy_box .left span{ width:2px; display:inline-block; position:absolute; left:5px;}
.ldjy_box .left span.line1{height:.35rem; background:var(--second_color); top:.7rem;}
.ldjy_box .left span.line2{height:1rem; background:#ccc; top:1.1rem;}
.ldjy_box .left em{ position:absolute; left:16px; top:2.2rem; font-size:16px;color: rgba(0,0,0,0.3); font-weight:500; font-style:normal;text-transform: uppercase;letter-spacing: .03rem;transform: rotate(90deg);
	transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
}	
	
	
.ldjy_box .right{width:78%; }	
.ldjy_box .right li{margin-bottom:.5rem;}
.ldjy_box .right .pic{width:2.8rem;overflow:hidden; border-radius:.1rem;}
.ldjy_box .right .pic img{width:100%;display:block;}
.ldjy_box .right .txt{width:calc(100% - 3.2rem);margin-top:.15rem;padding-right:.2rem;box-sizing:border-box;}
.ldjy_box .right .txt h3{font-size:.32rem;color:#000; font-weight:normal;}
.ldjy_box .right .txt span{display:block;color:var(--second_color);font-size:.22rem;font-weight:bold;margin:.25rem 0 .3rem;}
.ldjy_box .right .txt p{line-height:2; text-align:justify;font-size:.16rem;margin-bottom:.2rem;}
@media screen and (max-width:768px) {
.ldjy_box .left{ display:none;}
.ldjy_box .right{width:100%; }

.ldjy_box .right .pic{width:68%; margin:0 auto 15px;}
.ldjy_box .right .txt{width:100%;margin-top:0;}
.ldjy_box .right .txt h3{font-size:18px; text-align:center;}
.ldjy_box .right .txt span{font-size:17px;font-weight:bold;margin:.25rem 0 .2rem;}
.ldjy_box .right .txt p{line-height:1.8; font-size:14px;}

}

/*学校概述*/	
.n_bg{background: url(../images/bg2.jpg) no-repeat center top #FAFBFD; background-size:100% auto;  padding-bottom:1rem;}
.xxgs_box{ padding:.7rem 0 .2rem;margin-top:-.6rem;}
/*.xxgs_box .page_tit h2{ text-align:left;}*/
/*.xxgs_box .page_tit .line{ margin-left:0; margin-right:0;}*/
/*.xxgs_box .con{width:62%; overflow:hidden;}*/
.xxgs_box .con{width:100%; overflow:hidden;}
.xxgs_box .video{width:60%; margin:0 auto .25rem;}
.xxgs_box .con p{line-height:2; text-align:justify;font-size:.16rem;margin-bottom:.25rem;}
.xxgs_box .pic {width:30%; margin-top:.35rem; border-radius:.8rem 0 .8rem 0; overflow:hidden;position:relative;}
.xxgs_box .pic img{width:100%; }

.xxgs_box .mask{ cursor: pointer;border-radius: 50%;position: absolute;top:50%;left:50%; transform:translate(-50%,-50%);}
.xxgs_box .mask img{width: 1rem; height:1rem;animation: roll 3s infinite linear;}
.xxgs_box svg{position: absolute;top:50%;left:50%; transform:translate(-50%,-50%);}
@-webkit-keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes roll {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.xxgs_box video{width:100%;}



@media screen and (max-width:768px) {
.xxgs_box .con{width:100%;margin:0 auto;}
.xxgs_box .page_tit h2{ text-align:center;}
.xxgs_box .page_tit .line{ margin-left:auto; margin-right:auto;}
.xxgs_box .video{width:100%; margin:0 auto 15px;}
.xxgs_box .con p{ font-size:14px;margin-bottom:10px; line-height:1.8;}
.xxgs_box .con img{ max-width:100%; }
.xxgs_box .pic { display:none;}
}

.page_about_box2{ }
.page_about_box2 h5{ font-size:.16rem; margin-bottom:.25rem;}
.page_about_box2 li{width:48.5%; background:#fff; border-radius:10px; overflow:hidden; margin-bottom:.2rem; box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);}
.page_about_box2 li .ico{width:.66rem; background:var(--main_color);}
.page_about_box2 li .ico svg{ fill:#fff; height:.4rem;}
.page_about_box2 li .txt{width:calc(100% - .66rem); padding:.5rem; box-sizing:border-box;}
.page_about_box2 li .txt h3{font-size:17px; color:var(--main_color); margin-bottom:.15rem;}
.page_about_box2 li .txt p{line-height:1.8; text-align:justify; }

.page_about_box3{ margin:.2rem 0 0;}
.page_about_box3 p{line-height:2; text-align:justify;font-size:.16rem;margin-bottom:.25rem;}
@media screen and (max-width:768px) {
.page_about_box2 h5{ font-size:14px; margin-bottom:15px; line-height:1.6;}
.page_about_box2 li{width:100%; margin-bottom:15px;}
.page_about_box2 li .ico{width:46px; }
.page_about_box2 li .ico svg{ height:30px;}
.page_about_box2 li .txt{width:calc(100% - 46px); padding:15px; }
.page_about_box2 li .txt h3{font-size:16px; margin-bottom:10px;}
.page_about_box2 li .txt p{line-height:1.6; text-align:justify; }

.page_about_box3{ margin:15px 0 30px;}
.page_about_box3 p{line-height:1.8; font-size:14px;margin-bottom:10px;}    
}


/*师资力量*/
.szll_box{padding:.2rem 0 .8rem;}
.szll_box li{width:23.33%;margin-right:2%;overflow:hidden;border-radius:10px;border: 1px solid #e2e3e8; margin-bottom:.35rem;cursor:pointer; box-sizing:border-box;}
.szll_box li:nth-child(4n){margin-right:0;}
.szll_box li .pic{overflow:hidden;position:relative;}
.szll_box li .pic img{width:100%;display:block; transition:all .5s;}
.szll_box li .pic .img2{ position:absolute;bottom:0;left:0;}
.szll_box li .txt{text-align:center;padding:.2rem 0 .4rem;position:relative;background:#fff;}
.szll_box li .txt h3{font-size:.24rem;margin-bottom:.15rem; color:#000;}
.szll_box li .txt span{font-size:.16rem;}
.szll_box li:hover .pic .img1{ transform:scale(1.1,1.1);}
@media screen and (max-width:768px) {
.szll_box li{width:48%;margin-right:4%; margin-bottom:15px;}
.szll_box li:nth-child(2n){margin-right:0;}
.szll_box li .txt h3{font-size:16px;margin-bottom:10px}
.szll_box li .txt span{font-size:14px;}

}
/*师资弹窗*/
.tc_teacher{}
.tc_js_box{background:#fff;border-radius:10px;width:980px;height:68vh;overflow:hidden;position:relative; z-index:99;}
.tc_js_box .pic{width:50%;overflow:hidden;}
.tc_js_box .pic img{width:100%;height:100%;object-fit:cover;display:block;}
.tc_js_box .txt{width:50%;padding:0 .8rem;box-sizing:border-box;}
.tc_js_box .txt h3{font-size:.3rem;margin-bottom:.25rem; color:#000;}
.tc_js_box .txt .desc p{text-align:justify;line-height:2;margin-bottom:.1rem;font-size:.16rem;}
.tc_js_box .close{position:absolute;top:20px;right:20px;width:35px;height:35px;background:#fff;box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 8%);border-radius:100%; cursor:pointer;}
.tc_js_box .close img{width:15px;}
@media screen and (max-width:768px) {
.tc_js_box{ width:95%;height:360px;}
.tc_js_box .txt{width:50%;padding:0 15px;}

.tc_js_box .txt h3{font-size:18px;margin-bottom:15px;}
.tc_js_box .txt .desc p{ line-height:1.6;margin-bottom:10px;font-size:13px;}
.tc_js_box .close{ top:10px;right:10px;}

}

/*师资力量2*/
.szll_box2{background:url(../images/bg2.jpg) no-repeat top center #F7FBFC; background-size:100% auto;padding:0 0 1rem;}
.szll_box2 li{width:48.5%;background:#fff;border-radius:8px; box-sizing:border-box;margin-bottom:.4rem;overflow:hidden;position:relative;transition:all .5s; box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);}
.szll_box2 li:before{position:absolute;content:'';bottom:0;right:0;width:0;height:3px;background:var(--second_color); transition:all .8s;}
.szll_box2 li .pic{width:35%; overflow:hidden}
.szll_box2 li .pic img{width:100%;display:block; transition:all .5s;}
.szll_box2 li .txt{width:65%; padding:.1rem .5rem; box-sizing:border-box;}
.szll_box2 li .txt .tit{border-bottom:solid 1px #e8e8e8; margin-bottom:.2rem;}
.szll_box2 li .txt .tit em{color:var(--second_color);font-size:.18rem; margin-top:.05rem; margin-left:.1rem; }
.szll_box2 li .txt h3{color:#000;font-size:.25rem; padding-bottom:.15rem; position:relative;}
.szll_box2 li .txt h3:after{ content:''; width:100%; height:2px; background:var(--second_color); position:absolute; left:0; bottom:-1px;}
.szll_box2 li .txt .desc{text-align:justify;line-height:1.8;color:#666;}
.szll_box2 li .txt span{display:block;width:120px;line-height:36px;border-radius:36px;background:#f5f6f8; text-align:center;margin-top:.25rem;transition:all .5s;}
.szll_box2 li:hover .txt span{ color:#fff;}
.szll_box2 li:hover{box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);}
.szll_box2 li:hover:before{width:100%;left:0;}
.szll_box2 li:hover .pic img{ transform:scale(1.1,1.1);}
.szll_box2 li:hover .txt span{background:var(--second_color);}

@media screen and (max-width:768px) {

.szll_box2 li{width:100%; margin-bottom:15px;}
.szll_box2 li .pic{  }
.szll_box2 li .txt{padding:15px 15px; }
.szll_box2 li .txt .tit{margin-bottom:15px;}
.szll_box2 li .txt .tit em{font-size:14px; margin-top:.05rem; margin-left:6px; }
.szll_box2 li .txt h3{font-size:18px;}
.szll_box2 li .txt .desc{line-height:1.6;}
.szll_box2 li .txt span{ display:none;}
}


/*=======师资力量内容页=========*/
.team_show{padding:1rem 0;}
.team_side{text-align: center;position: relative; width:420px; }
.team_side .pic{ width:4.2rem; position:relative; margin-bottom:.5rem;}
.team_side .pic img{width:100%; display:block;}
.team_side .pic:after{ content:''; width:100%; height:100%; background:#f2f2f2; position:absolute; left:.15rem; top:.15rem; z-index:-1}

.team_side h1{width:136px; line-height:136px; border-radius:100%; text-align:center;font-size:.3rem; position:absolute; right:-90px; top:35%;  background:#E4C95D; color:#fff;}

.team_side .char a{width: 36px;height: 36px;margin: 0 10px;background-image: url(../images/pic_69.png);background-repeat: no-repeat;display: inline-block;}
.team_side .char a.perv{background-position: 0 0;}
.team_side .char a.next{background-position: -36px 0;}
.team_side .char a.perv:hover{background-position: 0 -36px;}
.team_side .char a.next:hover{background-position: -36px -36px;}

.team_con{width:calc(100% - 5.6rem);}
.team_con h3{ font-size: .22rem;padding: 22px 0 22px 31px;margin-bottom: 34px;background: #f2f2f2;}
.team_con h3 img{margin-right: 18px; vertical-align:middle;}
.team_con h3 span{ margin-left:.18rem; font-size:15px; color:var(--second_color);}
.team_con .article{ color: #666;line-height:2; padding:0 .15rem; font-size:.16rem; text-align:justify;}
.team_con .article p{ margin-bottom:.2rem;}
@media screen and (max-width:768px) {
.team_side{ width: 100%; margin-bottom:25px;}
.team_side .pic{ width:calc(100% - 80px); margin:0 auto 35px;}
.team_side .pic:after{left:15px; top:15px;}
.team_side h1{width:125px; line-height:125px; font-size:20px; right:-50px; top:35%; display:none;}
.team_con{width: 100%;}

.team_con{width:100%;}
.team_con h3{ font-size:18px;padding: 20px 0 20px 25px;margin-bottom:25px; }
.team_con h3 img{margin-right: 18px; vertical-align:middle;}
.team_con h3 span{ margin-left:10px; font-size:18px; } 
.team_con .article{ padding:0 10px; font-size:14px;}
.team_con .article p{ margin-bottom:15px;}
}


/*校长介绍*/	
.xzjs_box{background:url(../images/bg2.jpg) no-repeat top center; background-size:cover;padding:1.35rem 0 1rem;margin-top:-.6rem;}
.xzjs_box .pic{width:460px;overflow:hidden;position:relative; border-radius:50px 0 50px 0;}
.xzjs_box .pic img{width:100%;display:block;}
.xzjs_box .pic .wz{background:var(--main_color);padding:.25rem .25rem;box-sizing:border-box;position:absolute;bottom:0;left:0;}
.xzjs_box .pic .wz h3{font-size:.3rem;color:#fff;margin-bottom:.15rem;}
.xzjs_box .pic .wz span{font-size:.16rem;color:rgba(255,255,255,.8);}
.xzjs_box .txt{width:calc(100% - 540px);padding-right:.5rem;box-sizing:border-box;margin-top:.3rem;}
.xzjs_box .txt h2{font-size:.4rem;color:#000;display:block;padding-bottom:.4rem;border-bottom: 1px solid #cfd8df;margin-bottom:.3rem;}
.xzjs_box .txt .con p{text-align:justify;line-height:2;margin-bottom:.2rem;font-size:.16rem;}
@media screen and (max-width:768px) {
.xzjs_box .txt{width:100%;padding-right:0; margin-top:0;}
.xzjs_box .pic .wz{padding:.25rem .25rem;}
.xzjs_box .pic .wz h3{font-size:20px; margin-bottom:10px;}
.xzjs_box .pic .wz span{font-size:14px;}

.xzjs_box .txt h2{font-size:18px; padding-bottom:15px; margin-bottom:15px;}
.xzjs_box .txt .con p{text-align:justify;line-height:2;margin-bottom:12px;font-size:14px;}

.xzjs_box .pic{width:100%; max-width:500px;}
}

/*作品欣赏*/
.zp_list .page_tit h2{ text-align:left;}
.zp_list .page_tit .line{ margin-left:0; margin-right:0;}

/*==================作品欣赏=================*/
.zutu_list figure{width:15.3%;margin-right:1.5%;margin-bottom:.25rem;overflow:hidden;border-radius:6px;}
.zutu_list figure:nth-child(6n){margin-right:0;}
.zutu_list figure img{width:100%;display:block; transition:all .5s;}
.zutu_list figure:hover img{transform:scale(1.1);}

@media screen and (max-width:768px) {
.zutu_list figure{width:48%;margin-right:10px;margin-bottom:13px;border-radius:4px;}
.zutu_list figure:nth-child(2n){margin-right:0;}
.zutu_list figure:nth-child(4n){margin-right:auto;}
.zutu_list figure img{width:100%;display:block; transition:all .5s;}	
}


/*========================招生简章==============================*/
.zsjz_box{padding:.2rem 0 .5rem; background: url(../images/bg2.jpg) no-repeat center top #F0F5F8; background-size:cover;}
.zsjz_box li{width:49%;background:#fff;padding:.35rem .4rem;box-sizing:border-box;margin-bottom:.3rem;border-radius:10px; position:relative; overflow:hidden; box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);}
.zsjz_box li:before{position:absolute;content:'';bottom:0;right:0;width:0;height:3px;background:var(--second_color); transition:all .8s;}
.zsjz_box li h3{font-size:.2rem;margin-bottom:.25rem;}
.zsjz_box li p{text-align:justify;line-height:2;font-size:.16rem;margin-bottom:.1rem;}
.zsjz_box li p strong{color:var(--second_color);}
.zsjz_box li:hover:before{width:100%;left:0;}
@media screen and (max-width:768px) {
.zsjz_box li{width:100%; padding:25px 20px; margin-bottom:15px;}
.zsjz_box li h3{font-size:16px;margin-bottom:15px;}
.zsjz_box li p{ line-height:1.6;font-size:14px;margin-bottom:10px;}
}
.zsjz_box2{position:relative;}
.zsjz_box2 .box{ background:var(--main_color); height:5.9rem;}
.zsjz_box2 .txt{box-sizing:border-box;padding-left:.35rem; width: 45%;}
.zsjz_box2 .txt h3{font-size:.4rem; color:#fff;margin-bottom:.35rem;}
.zsjz_box2 .txt p{text-align:justify;line-height:2;font-size:.16rem;margin-bottom:.1rem;color:rgba(255,255,255,1);}
.zsjz_box2 .txt p strong{color:var(--second_color);font-size:.18rem;}
.zsjz_box2 .pic{width:50%; height:100%; position:absolute; right:0; top:0; z-index:2;overflow:hidden;}
@media screen and (max-width:768px) {
.zsjz_box2 .pic{width:100%; height:200px; position:static;}
.zsjz_box2 .box{height:auto; padding:30px 10px;}
.zsjz_box2 .txt{ padding-left:0; width: 100%;}
.zsjz_box2 .txt h3{font-size:18px; margin-bottom:15px;}
.zsjz_box2 .txt p strong{font-size:16px;}
.zsjz_box2 .txt p{ line-height:1.6;font-size:14px;margin-bottom:6px; }
}
.zsjz_box3{padding:.2rem 0 .5rem; background: url(../images/s_news_bg.jpg) no-repeat top center; background-size: cover;}
.zsjz_box3 ul{margin-top:.2rem;}
.zsjz_box3 li{width:33.3%;padding:.3rem 0;overflow:hidden;border-right:1px solid #e8e8e8;box-sizing:border-box;}
.zsjz_box3 li:last-child{border-right:none;}
.zsjz_box3 li img{width:1.5rem;}
.zsjz_box3 li p{font-size:.16rem;margin-top:.15rem;}
@media screen and (max-width:768px) {
.zsjz_box3 li{width:calc(100%/3);padding:0 0; margin-bottom:20px; border-right:0;}
.zsjz_box3 li:nth-child(3n){border-right:none;}
.zsjz_box3 li img{width:100px;}
.zsjz_box3 li p{font-size:14px;margin-top:10px;}
}


/*常见问答*/
.wenda_list_bg{background: url(../images/bg2.jpg) no-repeat center top #FAFBFD; background-size:100% auto;margin-top: -.6rem; padding-top:.6rem;}
.wenda_list{max-width:1200px;margin:0 auto .68rem; } 
.wenda_list li{ margin-bottom:.15rem; box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);} 
.wenda_list li .tit{height: 80px;line-height: 80px;  padding: 0 50px 0 30px;  overflow: hidden;font-size:.18rem; background: #fff; border-radius:.1rem; position: relative;cursor: pointer;}
.wenda_list li .tit:after {content: '';position: absolute;right: 50px;top: 50%;width: 35px;height: 35px; transform:translateY(-50%); border-radius: 50%;box-sizing: border-box;border: #eee solid 1px;background: #fff url(../images/jiahao.png) center no-repeat;}
.wenda_list li .tit.active:after {border:var(--main_color) solid 1px;background: #fff url(../images/jianhao.png) center no-repeat;}
.wenda_list li .tit span{color: #fff;display:inline-block;text-transform: uppercase;width: 25px;height: 25px;line-height: 25px;text-align: center;border-radius: 50%;background:var(--main_color); margin-right:20px;}
.wenda_list li .con{padding: .25rem 50px .2rem 30px; display:none;}
.wenda_list li .con .da{background:var(--second_color);width: 25px;height: 25px;border-radius: 50%;text-align: center;line-height: 25px;font-size:.18rem;color: #fff;}
.wenda_list li .con .box{width:calc(100% - 25px); font-size:.16rem; line-height:1.8; padding-left:.18rem; box-sizing:border-box; color:#555; text-align:justify;}
.wenda_list li .con .box p{ margin-bottom:.1rem;}
@media screen and (max-width:768px) {
.wenda_list li{ margin-bottom:10px;} 
.wenda_list li .tit{height: 56px;line-height: 56px;  padding: 0 10px 0 10px; font-size:15px; border-radius:5px;}
.wenda_list li .tit:after {right:10px; width: 30px;height: 30px;}
.wenda_list li .tit span{ width: 25px;height: 25px;line-height: 25px; margin-right:10px;}
.wenda_list li .con{padding:10px 10px 10px 10px; }
.wenda_list li .con .da{ font-size:16px; }
.wenda_list li .con .box{ font-size:14px; padding-left:10px; color:#666;}
.wenda_list li .con .box p{ margin-bottom:10px;}    
}


/* 课程设置 */
/*.kc_bg{ background:url(../images/kc_bg.jpg) no-repeat center; background-size:cover;}*/
.kc_tab{ text-align: center; margin: .68rem 0 .6rem; }
.kc_tab a{ font-size: .4rem; padding: 0 .68rem; border-right: 1px solid #ccc; color:#333;}
.kc_tab a:last-child{border:0;}
.kc_tab a.active{ color: var(--main_color); font-weight:bold;}
.kc_con{ margin-bottom:.8rem;}
.kc_con .item{  overflow-x:scroll;}
.kc_con .item.active{ display: block;}

.kc_con table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:15px; line-height:24px; margin-bottom:15px; min-width:1000px;}
.kc_con table p{margin-bottom:0;}
/*.kc_con table tr:nth-child(1){ font-size:14px; background:#eff3f8; font-weight:bold;}*/
.kc_con table td{padding:5px 10px; border:1px solid #D5DFEC;}

@media screen and (max-width:768px) {
.kc_tab a{ font-size:16px; padding: 0 15px; border-right:0; line-height: 36px; border-radius: 36px; display: inline-block;}
.kc_tab a.active{ background: var(--main_color); color: #fff; font-weight: bold;}
.kc_con{ padding: 0 15px;}
.kc_con table{font-size:14px;}

}




/*========================在线申请==============================*/
.page_sysq{border-radius: 10px;box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%); background:#fff; padding:0 .8rem .3rem;   max-width:1200px; box-sizing:border-box; margin-top:-.68rem; position:relative;}
.page_sysq .tit{ font-size:20px; font-weight:bold; position:relative; padding-left:16px; margin-bottom:.35rem;}
.page_sysq .tit:before{ content:''; display:block; width:6px; height:18px; position:absolute; left:0; top:2px;  background:var(--main_color); border-radius:5px; }
.zsjm_input {margin-bottom:.3rem;}
.zsjm_input li{width:31%;}
.zsjm_input li .code{ position:relative;}
.zsjm_input li .code img{ position:absolute;top:2px;right:5px;}
.zsjm_input h3{font-weight:normal;font-size:.16rem;margin-bottom:.15rem;}
.zsjm_input h3 i{ font-style:normal;color: #e75845;font-size:.16rem;margin-left:5px;}
.zsjm_input input[type=text]{border: 1px solid #d1d8de;outline: none; width: 100%;padding:0 15px;height:.46rem; border-radius:3px;  box-sizing:border-box;}
.zsjm_input select{border: 1px solid #d1d8de;outline: none; width: 100%;padding:0 15px;height:.46rem; border-radius:3px;  box-sizing:border-box;font-family:Microsoft Yahei;color:#999;font-size:15px;}
.zsjm_input input::-webkit-input-placeholder,.zsjm_input textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#999;font-size:15px;}
.zsjm_input input:focus,.zsjm_input textarea:focus {border: 1px solid var(--second_color);}

.el-cascader{width:100%;}
.zsjm_input li textarea{width:100%;height:1.2rem;font-size:13px;padding:15px 15px;box-sizing:border-box;border: 1px solid #d1d8de;border-radius:4px;}
.zsjm_input .checkbox label{ margin-right:.2rem; margin-bottom:.2rem; display:inline-block; font-size:15px;}
.zsjm_input .submit {border: none;outline: none; font-size: 16px;margin: 0 auto 0;cursor: pointer;text-align: center;color: #fff;background: var(--main_color); width: 2.5rem;line-height: .56rem;border-radius: 4px;transition:  all .5s;}
.zsjm_input .submit:hover{background:#1c47c9;}
.page_sysq .sm{font-size:.16rem;margin:.2rem 0 .5rem;}   
.page_sysq .sm i{ font-style:normal;color: #e75845;font-size:.2rem;margin-right:3px;}
    
@media screen and (max-width:768px) {
.page_sysq{border-radius:0px;padding:0 20px .3rem; margin-bottom:0; margin-top:0px; }  
.page_sysq .tit{ font-size:18px; padding-left:16px; margin-bottom:25px; margin-top:25px;}
.page_sysq .tit:before{width:5px; height:16px; top:0px; }

.zsjm_input {margin-bottom:0px;}
.zsjm_input li{width:100%;margin-bottom:15px;}
.zsjm_input h3{margin-bottom:10px;font-size:14px;}
.zsjm_input h3 i{font-size:16px;margin-left:5px;}
.zsjm_input li input[type=text]{height:38px; padding:0 10px;}
.zsjm_input select{height:38px; font-size:14px; padding:0 10px;}

.zsjm_input .checkbox label{ margin-right:10px; margin-bottom:10px; font-size:14px;}
.zsjm_input .submit {width: 100%;line-height: 46px;margin:0px auto 15px;}

.page_sysq .sm{font-size:13px;margin:10px 0 15px; line-height:1.6;}   
.page_sysq .sm i{font-size:13px;}

}



/*====================教学管理====================*/
.fwly_box{margin-bottom:.8rem;}
.fwly_box li{overflow:hidden; margin-bottom:.8rem;}
.fwly_box li .pic{width:46%;max-height:4.8rem;overflow:hidden;border-radius:15px;transition:all .3s;}
.fwly_box li:nth-child(2n) .pic{order:2;}
.fwly_box li .pic img{width:100%;height:100%;object-fit:cover;display:block; transition:all .5s;}

.fwly_box li .txt{width:46%;}
.fwly_box li:nth-child(2n) .txt{order:1;}
.fwly_box li .txt h3{font-size:.32rem;font-weight:normal;border-bottom:1px solid #e8e8e8;padding-bottom:.2rem;position:relative;transition:all .3s;margin-bottom:.3rem;}
.fwly_box li .txt h3:after{content: '';display: block;width:0;height:2px;background:var(--second_color);position: absolute;left:0;bottom:-1px;transition:all .5s;}
.fwly_box li .txt p{line-height:2;text-align:justify; color:#666;margin-bottom:.15rem;}
.fwly_box li .txt a {background:var(--main_color); font-size:.16rem; line-height:.52rem; padding:0 .35rem; display:inline-block; color:#fff; transition:all .3s;}
.fwly_box li .txt a:hover { background:var(--second_color);}

.fwly_box li:hover .pic img{transform:scale(1.05);}
.fwly_box li:hover .txt h3{color:var(--main_color);}
.fwly_box li:hover .txt h3:after{width:100%;}


@media screen and (max-width:768px) {
.fwly_box li{margin-bottom:0;}
.fwly_box li .pic{width:100%; height:200px;}
.fwly_box li:nth-child(2n) .pic{order:1;}
.fwly_box li .txt{width:100%;padding:20px 0;order:2;}
.fwly_box li:nth-child(2n) .txt{order:2;}
.fwly_box li .txt h3{font-size:18px;padding-bottom:12px;margin-bottom:10px; font-weight:bold;}
.fwly_box li .txt p{line-height:1.8;margin:10px 0 20px;font-size:14px;}
.fwly_box li .txt .btn{width:120px;line-height:35px;}
.fwly_box li .txt a{padding:0 25px;font-size:13px; line-height:34px;border-radius:5px;}
}

		
	
/*================人才理念=======================*/
.page_rcln{width:60%;margin:1.3rem auto 0;position:relative;}
.page_rcln img{position: absolute;top: -.6rem;left: -1.3rem;}
.page_rcln .con{font-size:.28rem;line-height:2.8;text-align:justify;font-weight:bold;}
.page_rcln .txt{margin-top:.2rem;font-size:.16rem;color:#666;text-align:justify;line-height:2;}

.page_rcln_bg{background:#f5f5f5;padding:0 0;margin-top:.6rem; transition:all .5s;}
.page_rcln_box li{width:33.3%;padding:.8rem .2rem;box-sizing:border-box;}
.page_rcln_box li .pic{overflow:hidden;}
.page_rcln_box li .pic img{width:60%;display:block;transition:all .5s;}
.page_rcln_box li .txt h3{font-size:.24rem;margin:.4rem 0 .3rem;}
.page_rcln_box li .txt p{text-align:center;line-height:1.8;font-size:.16rem;color:#666;}
.page_rcln_box li:hover{background:rgba(255,255,255,0.9);}
/*.page_rcln_box li:hover .pic img{border-radius:100%;}*/

.job_sm{width:1000px;margin:.3rem auto .8rem;border:var(--second_color) 1px solid;padding:.35rem 0;text-align:center;}
.job_sm h3{font-size:.18rem;font-weight:normal;color:var(--second_color);}
.job_sm p{margin-top:.2rem;color:var(--second_color);font-size:16px;}

@media screen and (max-width:768px) {
.page_rcln{width:100%;margin:45px auto 0;}
.page_rcln img{width:20%;top: -20px;left: 0;}
.page_rcln .con{font-size:16px;line-height:2;}
.page_rcln .txt{margin-top:15px;font-size:14px;line-height:1.8;}

.job_sm{width:100%;margin:0 auto .8rem; padding:25px 0; }
.job_sm h3{font-size:16px;font-weight:normal; }
.job_sm p{margin-top:10px; font-size:15px;}


.page_rcln_bg{margin-top:0; padding-bottom:30px;}
.page_rcln_box li{width:100%;padding:30px 20px 20px;}
.page_rcln_box li .txt h3{font-size:16px;margin:20px 0 15px;}
.page_rcln_box li .txt p{line-height:1.8;font-size:14px;}
.page_rcln_box li .txt p br{display:none;}
}

/* 人才招聘 */
#job_bd{}
#job_bd dl{ background:#fcfcfc; border: #e8eaef 1px solid; position: relative; margin-bottom:.2rem;  padding:30px .5rem 0; border-radius:4px;}
#job_bd dl.active{/*box-shadow: 0 1px 20px rgb(0 0 0 / 4%);*/border: #e8eaef 1px solid;}
#job_bd dt{ box-sizing:border-box;  cursor:pointer; background:#fcfcfc; padding-bottom:30px;}
#job_bd dt .tit{width:80%;}
#job_bd dt .tit h2{ font-size:18px; margin-bottom:.2rem;}
#job_bd dt .tit span{flex:1; color:#888;}


#job_bd dt .btn{width:100px; display: flex;flex-direction: column;justify-content:center; align-items:flex-end; }
#job_bd dt .btn span:nth-child(2){ display:none;}
#job_bd dt.on .btn span:nth-child(1){display:none;}
#job_bd dt.on .btn span:nth-child(2){ display:flex;}
#job_bd dt .btn i{ margin-left:5px;}

#job_bd dd{ display:none; line-height:2; border-top: #e8e8e8 1px solid; position:relative; padding-bottom:50px;}
#job_bd dd strong{margin:.2rem 0 .1rem 0; display:block; font-size:18px;}
#job_bd dd a{cursor:pointer; font-size:15px; padding-left:35px; display: block; width:166px; line-height:42px; text-align: center; background:url(../images/joinsz3.png) no-repeat 35px center var(--main_color); color:#fff; transition:0.5s all; border-radius:50px; margin:25px auto auto auto; box-sizing:border-box;}
#job_bd dd a i{ margin-left:.1rem;}
#job_bd dd a:hover{transform: translateY(-5px); opacity:0.8;}
@media screen and (max-width:768px) {
#job_bd dl{margin-bottom:12px;  padding:25px 20px 0; }
#job_bd dt{ padding-bottom:15px;}
#job_bd dt .tit span{flex:auto; font-size:12px; width:100%; line-height:1.8;}
#job_bd dt .tit{width:calc(100% - 80px);}
#job_bd dt .tit h2{ font-size:16px; margin-bottom:10px;}
#job_bd dt .btn{width:80px; }

#job_bd dd{ line-height:1.8; font-size:13px; padding-bottom:25px;}
#job_bd dd strong{margin:.2rem 0 .1rem 0;  font-size:15px;}
#job_bd dd a{ font-size:14px; width:50%; line-height:40px; border-radius:50px; margin:15px auto auto auto;background:url(../images/joinsz3.png) no-repeat 30px center var(--main_color); background-size:16px auto;}

}



/*======================上传简历表单======================*/
.jianli_form{width:530px; height:580px; padding:50px 60px; background:#fcfcfc; border-radius:5px; box-sizing:border-box; position:absolute; top:0; left:0; right:0; bottom:0; z-index:2; margin:auto;}
.jianli_form .close{position:absolute; top:25px; right:25px; cursor:pointer;}

.jianli_form .tit{font-size:18px; color:#000; margin-bottom:25px; font-weight:bold;}
.jianli_form .tit span{ color:var(--main_color);}

.jianli_form ul{}
.jianli_form li{margin-bottom:.15rem;}

.jianli_form input,.jianli_form select{padding:.15rem;width:100%; box-sizing:border-box;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 2px; font-size:15px;
}
.jianli_form .form-group {width:100%;}
.jianli_form .form-group input{margin-bottom:.2rem;}

.jianli_form .submit{ border:none; font-size:16px; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); border-radius: 3px; transition:0.3s all; width:100%; height:46px; line-height:46px;}
.jianli_form .submit:hover{ opacity:0.8;}
@media screen and (max-width:768px) {
.jianli_form{width:95%; height:520px; padding:30px 20px;}
.jianli_form .close{position:absolute; top:10px; right:5px; cursor:pointer;}
.jianli_form .tit{font-size:16px; line-height:1.5; margin-bottom:20px;}

.jianli_form input,.jianli_form select{padding:12px 10px;font-size:14px;}
.jianli_form .submit{font-size:16px;width:100%; height:45px; line-height:45px;}

}

/*上传按钮*/
.fileupload-buttonbar .btn {vertical-align: middle;
    display: inline-block;
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.btn.blue:not(.btn-outline) {
    color: #FFF;
    background-color: #40aae2;
    border-color: #40aae2;
}
.btn.red:not(.btn-outline) {
    color: #fff;
    background-color: #e7505a;
    border-color: #e7505a;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}
.progress {
    border: 0;
    background-image: none;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.progress {
    height: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.progress {
    overflow: hidden;
}
.progress-bar.active, .progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-striped, .progress-striped .progress-bar {
    background-size: 40px 40px;
}
.progress-bar-striped, .progress-striped .progress-bar, .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}
.progress-bar-success {
    background-color: #36c6d3;
}
.progress-bar {text-align: center;
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    background-color: #40aae2;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}
.finecms-file-ts{ line-height:1.6em; color:#666;}
.files_row_preview { box-sizing:border-box;margin-right: 10px;border: 1px solid #d3cfcf;padding: 10px; width: 80px;height: 70px;overflow: hidden;border-radius: 4px; text-align: center;}
.files_row_preview img {max-width: 60px; max-height: 50px;}
.files_row .mpreview {position: relative;width: 78px;top: -18px;text-align: right;}
/*----------------------*/




/*======================留言反馈======================*/
.lxfs_bg2{background: url(../images/rel2bg.jpg) no-repeat center; background-size: cover;padding-bottom:1rem;}
.zxly_box{background:#fff;padding:.5rem .5rem;box-sizing:border-box;border-radius:15px;}
.ly_tit{font-weight:normal;font-size:14px;color:#4c5664;margin-bottom:15px;}
.ly_tit i{font-style:normal;color:rgba(255,0,0,1);margin-right:5px;}

/*留言*/
.page_liuyan{width:65%;border-right: 1px solid #d1d8de;padding-right:.5rem;box-sizing:border-box;}
.message_input {margin-bottom:25px;}
.message_input input::-webkit-input-placeholder,
.message_input textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#999;}
.message_input li{ width: 48.5%;} 
.message_input input{border: 1px solid #d1d8de;outline: none; width: 100%;padding:18px 20px; border-radius:5px;  box-sizing:border-box;} 
.message_input input::-webkit-input-placeholder {} 
.message_input textarea{font-size:15px; display: block;border: 1px solid #d1d8de;outline: none; width: 100%;padding: 20px 20px;box-sizing: border-box;min-height:150px; border-radius:5px;} 
.message_input .form-group input{width:45%; }

.message_input .submit{ border:none;outline: none; font-size:16px; margin:15px auto 0; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:2.5rem; line-height:50px; border-radius:5px;}
.message_input textarea::-webkit-input-placeholder{}
.message_input .submit i{margin-left:.25rem;}
.message_input input:focus,.message_input textarea:focus{border:solid 1px var(--main_color);}

.zxly_right{width:32%;}
.zxly_right .pic{overflow:hidden;border-radius:10px;}
.zxly_right .pic img{width:100%;display:block;}
.zxly_right .txt{margin:.4rem 0 .5rem;}
.zxly_right .txt h2{font-weight:normal;font-size:18px;color:#000;margin-bottom:15px;}
.zxly_right .txt p{color:var(--main_color);font-size:.2rem; letter-spacing:1px;line-height:1.4; font-family:'MiSans';}
.zxly_right .ewm{overflow:hidden;width: 140px;height: 140px;border: 1px solid #c7d7e6;border-radius:10px;padding:6px 6px;box-sizing:border-box;}
.zxly_right .ewm img{width:100%;display:block;}
.zxly_right dd{width:140px;color:#888;margin-top:15px;text-align:center;}


@media screen and (max-width:768px) {
.lxfs_bg2{padding-bottom:30px;}
.zxly_box{padding:20px 15px;border-radius:5px;}
.ly_tit{font-size:14px;margin-bottom:5px;line-height:1.6;}
.page_liuyan{width:100%;border-right:none;padding-right:0;}

.message_input input::-webkit-input-placeholder,
.message_input textarea::-webkit-input-placeholder{color: #999; font-size:13px;}
.message_input {margin-bottom:0;}
.message_input1{margin-bottom:15px;}
.message_input li{ width:100%; margin-bottom:10px;} 
.message_input input{padding:12px 15px;} 
.message_input textarea{min-height:100px;padding: 15px 15px;}
.message_input .submit{width:100%; line-height:42px;}

.zxly_right{ display:none;width:100%;margin-top:25px;margin-bottom:15px;}
.zxly_right .pic{border-radius:5px;}
.zxly_right .txt{margin:20px 0 20px;}
.zxly_right .txt h2{font-size:16px;margin-bottom:10px;}
.zxly_right .txt p{font-size:14px;}
.zxly_right .ewm{width: 120px;height: 120px;border-radius:5px;padding:5px 5px;}
.zxly_right .ewm img{width:100%;display:block;}
.zxly_right dd{width:120px;font-size:12px;margin-top:10px;}
}






/*========================新闻列表==============================*/
.pic_art_list { padding-bottom:.5rem;}
.pic_art_list li{width:31%;margin-right:3.5%;margin-bottom:.4rem;border-radius:6px;overflow:hidden;background:#fff;/*box-shadow: 0px 2px 20px 0px rgb(20 18 18 / 10%);*/}
.pic_art_list li:nth-child(3n){margin-right:0;}
.pic_art_list li .pic{overflow:hidden;}
.pic_art_list li .pic img{width:100%;display:block; transition:all .5s;}
.pic_art_list li .txt{padding:.35rem .35rem;box-sizing:border-box;}
.pic_art_list li .txt .time{color:#999;}
.pic_art_list li .txt h3{font-weight:normal;font-size:.2rem;line-height:1.6; text-align:justify; margin:.15rem 0 .25rem; transition:all .5s;}
.pic_art_list li .txt span{font-family: 'dinpro5';font-size:.16rem;color:#333;}
.pic_art_list li .txt span i{font-size:14px;margin-left:5px;color:#000;}

.pic_art_list li:hover .pic img{ transform:scale(1.1,1.1);}
.pic_art_list li:hover .txt h3{color:var(--main_color);}

@media screen and (max-width:768px) {
.pic_art_list li{width:100%;margin-right:0; margin-bottom:20px; border-radius:5px;}
.pic_art_list li .pic{overflow:hidden;}
.pic_art_list li .txt{padding:20px 20px 25px;}
.pic_art_list li .txt .time{font-size:14px;}
.pic_art_list li .txt h3{font-size:16px;margin:10px 0 15px; line-height:1.3;}
.pic_art_list li .txt span{font-size:13px;}
.pic_art_list li .txt span i{font-size:12px;margin-left:5px;}

}


/*===================内容页侧面产品列表================*/
.page_side_list{}
.page_side_list li{ margin-bottom:.2rem;}
.page_side_list li a{ display:block;overflow: hidden;  background:#fff; border:solid 1px #ddd; border-radius: 10px;padding: 8%; transition:0.5s all;}
.page_side_list li .type{color:#999;  transition:0.5s all;}
.page_side_list li .tit{ font-size:16px; min-height:.5rem; margin:15px 0; font-weight:bold;}
.page_side_list li .btn{ color:#999;  transition:0.5s all;}
.page_side_list li a:hover{ background:var(--main_color); color:#fff; border:solid 1px var(--main_color);}
.page_side_list li a:hover .type,
.page_side_list li a:hover .btn{color:rgba(255,255,255,0.68);}




/*===================内容页================*/
.show_top_blank{ height:1.5rem;}

.page_main{max-width:1200px; background:#fff; box-sizing:border-box; padding:.7rem 0 0; margin:0 auto;}
.page_side{width:3rem; }
.page_side .sticky{position: sticky;top: 100px;}


.page_side_box{ padding:25px 30px; background:#fff;}
.page_side_tit {font-size:.25rem; color: #000; margin-top:.1rem;  margin-bottom:.2rem;}


/*内容页位置导航*/
.show_news_weizhi{max-width:1200px;line-height:32px;margin:30px auto 10px;}
.show_news_weizhi span{display:inline-block; margin:0 5px;}
.show_news_weizhi i svg{width:18px; fill:#000;margin-right:10px;margin-top: 6px;}
.show_news_weizhi p a{ margin:0 5px; display:inline-block; color:#333;}

/*内容页*/
.title_txt {font-size:.36rem;line-height:1.4;  color:#000; text-align:center; font-family:'ali1'}
.show_pro_tit {font-size:.36rem;line-height:1.6;  color:#000; border-bottom:solid 2px #e8e8e8; padding-bottom:.25rem; margin-bottom:.25rem; }

.art_info{margin-bottom:25px; color:#888; border-bottom: solid 1px #e8e8e8; position:relative; text-align:center; }
.art_info em{position:relative;font-size:14px; display:inline-block; line-height:60px; font-style:normal; margin-right:25px;}
.art_info em img{ margin:-3px 5px 0 0; vertical-align:middle;}
.art_info em a{color:#888;}


/*share*/
.share-main{ width: 102px; height: 24px; position:absolute; right:0; top:15px; z-index:10;}
.share-main b{ position:absolute; left:-80px; top:10px; font-weight:normal;}
.share-bar a{margin-left: 10px; margin-top:5px; float: left; display: block; width: 24px; height: 24px; background-image:url(../images/icon-share.png); }
.share-bar .share-tsina{background-position: 0 0;}
.share-bar .share-weixin{background-position: -24px 0;}
.share-bar .share-qzone{background-position: -48px 0;}
.weixin-share-open{position: absolute; bottom: 34px; left:0; display: none; background: #fff;}
.weixin-wrap{ padding: 10px; width: 200px; height: 80px; border: 1px solid #ddd;}
.share-qrcode{float: left;}
.share-qrcode img{display: block; width: 80px; height: 80px;}
.weixin-close{position: absolute; top: 5px; right: 5px; display: block; width: 20px; height: 20px; line-height: 20px; text-align: center; font-size: 16px; color: #d4d4d4; cursor: pointer;}
.weixin-text{padding: 10px 0 0 90px; line-height: 24px; font-size: 12px; color: #666;}


/*正文*/
#art_box { text-align:justify;  line-height:2; font-size:16px; overflow:hidden; width:100%;}
#art_box p {margin-bottom:10px; }
#art_box img{ max-width:100%; border-radius:3px;}
#art_box table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px; margin-bottom:15px;}
#art_box table p{margin-bottom:0;}
#art_box table tr:nth-child(1){ font-size:14px; background:#eff3f8; font-weight:bold;}
#art_box table td{padding:5px 10px; border:1px solid #D5DFEC;text-align:center;}
#art_box a{color:var(--main_color);}

#art_box video{ max-width:100%;}

.pro_content{}
.pro_content h3{ font-size:18px; color:var(--main_color); position:relative; padding-left:18px;}
.pro_content h3:before{ content:''; display:block; position:absolute; left:0; top:50%; transform: translateY(-50%); width:7px; height:7px; border-radius:100%; border:solid 2px var(--main_color);}   
.pro_content h4{ font-size:15px;}


@media screen and (max-width:768px) {
.page_side,.show_news_weizhi{display:none;}
.page_main{width:100%;  padding:20px 0; margin-top:0;}
.share-main{ display:none;}
.title_txt {font-size:18px;line-height:1.6; margin-top:10px;}
.art_info{margin-bottom:15px;}
.art_info em{font-size:13px; line-height:40px; margin-right:10px;}
#art_box {font-size:15px; }

}

/*相关阅读*/
.xg_tit {  margin-top:.5rem;}
.xg_tit h5{font-size:20px; margin:.3rem 0 .25rem 0; position:relative; padding-left:15px;}
.xg_tit h5:after {width:5px;height:18px; border-radius:5px;
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    background:var(--main_color);
}

.xg_art{}
.xg_art li{position:relative; padding-left:15px; font-size:15px; width:48%; box-sizing:border-box; line-height:2.4;}
.xg_art li:before{ content: ""; display: block; width:6px; height:6px; border-radius:5px; border:solid 1px var(--main_color); position: absolute; top: 50%; left: 0;transform: translate(0, -50%);}
.xg_art li span{float:right; margin-top:5px; color:#999;font-size:13px;}

@media screen and (max-width:768px) {
.xg_art li{font-size:14px; width:100%; line-height:2.2;}
.xg_tit { margin-top:25px;}
.xg_tit h5{font-size:16px; margin:25px 0 15px 0; position:relative; padding-left:12px;}
.xg_tit h5:after {width:5px;height:14px; border-radius:5px;top: 0px;}

}

/*===================侧面新闻列表================*/
.side_news_list li{ margin-bottom:.4rem;}
.side_news_list .pic{ border-radius:10px; overflow:hidden;}
.side_news_list .pic img{ width:100%; display:block; transition:0.4s all;}
.side_news_list .type{ font-size:12px; color:#666; margin:20px 0 10px;}
.side_news_list .tit{ font-size:16px; line-height:1.6; text-align:justify; margin-top:.1rem;}
.side_news_list li:hover .pic img{ transform:scale(1.1);}


/*上一篇下一篇*/
.ctrl{margin-top: 40px;}
.ctrl a{position: relative; height: 60px;width:33%; background-color: #e7e7e7; box-sizing: border-box;z-index: 99;transition: 0.3s;}
.ctrl a:before{content: "";position: absolute;bottom: 0;left: 0;width: 100%;height: 1px;background-color:var(--main_color);opacity: 0;transition: 0.3s;z-index: -1;}
a#back:after,a#prev:after,a#next:after{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-image: url(../images/btn-back.png);background-repeat: no-repeat;background-position: center;transition: 0.3s;}
a#back:after{background-image: url(../images/btn-back.png);}
a#prev:after{background-image: url(../images/btn-prev.png);}
a#next:after{background-image: url(../images/btn-next.png);}

.ctrl a:hover:before{height: 100%;opacity: 1;}
a#back:hover:after{background-image: url(../images/btn-back2.png);}
a#prev:hover:after{background-image: url(../images/btn-prev2.png);}
a#next:hover:after{background-image: url(../images/btn-next2.png);}

.show_pre_next{ margin-top:.5rem; position:relative;}
.show_pre_next li{ width:100%;border-top: 1px solid #e8e8e8;padding:.3rem 0;}
.show_pre_next li:last-child{border-bottom: 1px solid #e8e8e8;}
.show_pre_next li h3{ font-family:'dinpro6';color:#000;font-weight:normal;font-size:16px;}
.show_pre_next li p{width:80%;}
.show_pre_next li p a{color:#000;font-size:16px; transition:all .5s;}
.show_pre_next li span{font-family:'monr';color:#999;}
.show_pre_next li:hover a{color:var(--main_color);}

@media screen and (max-width:768px) {
.show_pre_next{ margin-top:20px;}
.show_pre_next li{padding:12px 0;}
.show_pre_next li h3{font-size:13px;line-height:1.4;}
.show_pre_next li p{width:90%;line-height:1.4;}
.show_pre_next li p a{font-size:14px; transition:all .5s;}
.show_pre_next li span{display:none;}
.show_pre_next li:hover a{color:var(--main_color);}
}

/*======================表单页面======================*/
.message {padding-top:.25rem;}
.message input::-webkit-input-placeholder,
.message li{ width: 48%;} 
.message input{border:1px solid #e8e8e8;background: none;outline: none;width: 100%; height:.5rem; font-size:16px; padding:0 10px; box-sizing:border-box; border-radius:3px;} 
.message textarea{clear: both;display: block;border:1px solid #e8e8e8;background: none; outline: none;width: 100%;padding: 14px 15px;box-sizing: border-box;min-height: 1.6rem;font-size:16px;font-family: "微软雅黑"; border-radius:3px;} 
.message .submit{ border:none;outline: none; font-size:16px; margin-top:15px; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:3rem; line-height:52px;border-radius:3px;}

.message li select {width: 100%;height: 45px;background: #fff;border:1px solid #e8e8e8;font-size: 16px;color:#888;font-family: "微软雅黑";outline: none;padding:0 15px; border-radius:3px;}
.message p{font-size:.16rem;margin-bottom:10px;}
.message p span{color:rgba(255,0,0,1);}
@media screen and (max-width:768px) {
.message {padding-top:0;}
.message li{ width: 100%; margin-bottom:10px;} 
.message p{font-size:14px;margin-bottom:10px;}
.message input{ height:36px; font-size:14px;} 
.message li select { height: 36px;font-size:14px;color:#888;}
.message .submit{ width:100%; line-height:42px; }
}

/*======================返回按钮======================*/
.n_bottom{ text-align:center; margin-top:.5rem;}
.n_bottom li{display:inline-block;margin: 0 25px;cursor: pointer;}
.n_bottom li .img{display:inline-block;width:55px;height:55px; border: #ccc 1px solid; border-radius:50%;text-align:center;overflow: hidden; transition:0.6s; box-sizing:border-box;}
.n_bottom li .img h6{height:100%;transition:0.6s;overflow: hidden;}
.n_bottom li h5{ font-size:13px; color:#888; margin-top:6px; font-weight:normal;}
.n_bottom li a{ display:block;}
.n_bottom li a:hover .img h6{transform: translateY(-53px);}
.n_bottom li a:hover .img{ border:var(--main_color) 1px solid; background:var(--main_color);}



/*404*/
.page_msg {padding: 50px; background:#fff; margin:0 0;}
.page_msg h5 { line-height: 60px;border-bottom: 1px solid #ddd;margin-bottom: 10px; font-size:25px; text-align:center;}
.page_msg_con {color: #999; line-height:40px; text-align:center;padding: 25px 0;}
.page_msg_con i {font-size:100px;color: #ddd; margin-bottom:10px;}
@media screen and (max-width:768px) {
.page_msg {padding: 20px;}

}


/*内页分页*/
.search-pagination{text-align:center; padding:10px 0 0 0;}
.pagination li {display: inline-block;margin:0 3px;}
.pagination li a{display: inline-block;font-size: 15px;  border-radius:3px;min-width: 46px;height: 46px;line-height: 46px; box-sizing: border-box; padding:0 20px; box-sizing:border-box;transition: 0.3s; background:#e8e8e8; border:solid 0px #ddd;}
.pagination li.active a,.pagination li a:hover{color: #fff !important;background-color:var(--main_color);border:solid 0px #004d98;}
@media screen and (max-width:768px) {
.page_msg {padding: 20px;}
.pagination li {margin:0 3px 6px;}
.pagination li a{min-width: 40px;height: 40px;line-height: 40px; padding:0 15px;}
}

@keyframes o-upfade-top {
    0% {opacity: 0;
        transform: translateY(50px);
    }
    100% {opacity: 1;
        transform: translateY(0);
    }
}
@keyframes o-scale {
    0%,85%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.06);
    }
}
@keyframes o-opacity {
    0%,30%,60%,100%{
        opacity: 0;
    }
    15%,45%{
        opacity: 1;
    }
}
@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
} 
@keyframes bg {
    from {
        transform: scale(1.3);
    }
    to {
        transform: none;
    }
}
.main_tit{position:relative;}

@keyframes gd01_pic {
    0%{
        opacity: 0; transform: translateY(-100%);
    }
    100%{
        opacity: 1;  transform: translateY(0);
    }
}




/*搜索页面*/
.search_box{ background:#fff; /*box-shadow: 2px 2px 20px rgba(0,0,0,.05);*/padding: 60px 80px; box-sizing:border-box; margin:.6rem auto;}

.serch_n{position:relative;width:50%; margin:auto;}
.serch_n input{width:100%; padding:15px 15px; font-size:16px; outline:none; border-radius:5px; box-sizing:border-box; height:.6rem; line-height:.6rem; border:solid 1px #ddd;}
.serch_n .btn{ position:absolute; right:0; top:0px;}
.serch_n .btn i{font-style:normal;}
.serch_n .btn button{ width:1.25rem; height:.6rem; border:0; cursor:pointer; outline:none; padding-left:.4rem;border-radius:0 5px 5px 0; font-size:.18rem; color:#fff; background: url('../images/icon-hsrch.png') no-repeat 30px center var(--main_color);}

.search_tit{ height:50px; line-height:50px; border-bottom: 1px solid #eee; display: flex;justify-content: space-between; margin:20px 0;}
.search_tit h5{font-size:18px; position:relative; float:left; padding:0 5px;}
.search_tit h5:after{content: "";position: absolute;width:100%; height: 2px;left: 0;bottom: -1px;background:var(--main_color);}

.serch_list{}
.serch_list li{font-size:16px; padding-left:15px; line-height:2.6; overflow: hidden; text-overflow: ellipsis;white-space: nowrap; position:relative;}
.serch_list li:before{ content: ""; display: block; width:6px; height:6px; border-radius:5px; background:#ccc; position: absolute; top: 50%; left: 0;transform: translate(0, -50%);}
/*.serch_list li:nth-child(5n){border-bottom:dotted 1px #ccc; margin-bottom:.25rem; padding-bottom:.25rem;} */
.serch_list li span{color:#888; float:right; font-size:14px;}

@media screen and (max-width:768px) {
.search_box{ padding:15px 15px; }
.serch_list li{font-size:14px; }
.serch_list li span{font-size:12px;}
.serch_n {width:100%;border: 1px solid #e1e6f0; overflow:hidden; border-radius:3px; margin-bottom:10px; box-sizing:border-box;}
.serch_n input[type="text"] {width: 100%;height:44px;background:rgba(255,255,255,0.8);box-sizing: border-box;padding: 0 50px 0 15px;border: none;}
.serch_n .btn {position: absolute;top:0px;right:0px;width:50px ;height:100%;}
.serch_n .btn i{display:none;}
.serch_n .btn button{width:100%;height:100%; background: url('../images/zoom.png') no-repeat center; border:none; background-size:23px auto;}

}



/*表单*/
.form_box{width:330px; margin:auto;}
.form_box .con li,.form_box .con .form-actions{margin-top:15px; position:relative;}
.form_box .con li input{background: #fff; font-size:15px;border-radius: 4px;border: 1px solid #dcdfe6;box-sizing: border-box;color: #606266;height: 46px;line-height: 46px;outline: none;padding: 0 15px;transition: border-color .2s cubic-bezier(.645,.045,.355,1);width: 100%;}
.form_box .con li input:focus,.form_box .con li input:hover{border:solid 1px #FF2442;}
.form_box .con li .yzm{position:absolute; padding:0 10px; top:0px; right:0px; border-left:solid 1px #dcdfe6; transition:.2s all;}

.form_box .con button{ width:100%; height:50px; background:#FF2442; border:none; font-size:15px; color:#fff; cursor:pointer; outline:none; border-radius:3px;}
.form_box .con button:hover{ opacity:0.9;}

.form_box .con .sms_btn{ width:125px; line-height:46px; background:#333; font-size:14px; color:#fff; display:block; text-align:center; border-radius:3px; text-decoration:none;}

.btn_flash{overflow:hidden; position: relative;}
.btn_flash .anim { -moz-transform: translateY(-50%) translateX(-50%); -ms-transform: translateY(-50%) translateX(-50%); -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); position: absolute; top: 50%; left: 50%; }
.btn_flash .anim:before { position: relative; content: ''; display: block; margin-top: 100%; }
.btn_flash .anim:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 50%; }
.btn_flash:hover .anim { -moz-animation: anim-out 0.75s; -webkit-animation: anim-out 0.75s; animation: anim-out 0.75s; }
.btn_flash:hover .anim:after { -moz-animation: anim-out-pseudo 0.75s; -webkit-animation: anim-out-pseudo 0.75s; animation: anim-out-pseudo 0.75s; }
@-webkit-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-moz-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
} 
@-ms-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-webkit-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-moz-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-ms-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}

/*弹窗*/
.tc{transition:all ease 300ms;position: fixed;width: 100%;height: 100%;top: 0;left: 0;z-index: 99999; display:flex; flex-direction:column; justify-content:center;align-items:center;}
.tc{ pointer-events: none;  filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; opacity:0;transform:scale(1.1);}
.tc.act{ filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1;  pointer-events: auto;transform:scale(1);}
.tc-bg {height: 100%;background: rgba(0,0,0,.5);position: absolute;top: 0;left: 0;width: 100%;z-index: 0;}

/*留言弹窗*/
.buy_form{width:9rem; height:6rem; padding:.5rem .8rem; background:#fff; border-radius:10px; box-sizing:border-box; position:absolute; top:0; left:0; right:0; bottom:0; z-index:2; margin:auto;}
.buy_form .close{position:absolute; top:40px; right:40px; cursor:pointer;}

.buy_form .tit{font-size:.36rem; color:#000; margin-bottom:.15rem}
.buy_form .info{ line-height:2em; font-size:.16rem; color:#888; border-bottom:solid 1px #ddd; height:.5rem; margin-bottom:.35rem;}

.buy_form ul{display:flex; justify-content:space-between; flex-wrap:wrap;}
.buy_form li{font-size:.15rem; margin-bottom:.15rem; width:49%;}

.buy_form input,.buy_form select{padding:.15rem;width:100%; box-sizing:border-box;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 2px; font-size:.16rem;
}
.buy_form textarea{padding:.2rem;width:100%; box-sizing:border-box;border: 1px solid rgba(0,0,0,.1); height:1.25rem; border-radius: 2px; font-size:.16rem; font-family:"微软雅黑";}
.buy_form .form-group {width:100%;}
.buy_form .form-group input{width:49%; margin-right:1%;  margin-bottom:.2rem;}

.buy_form .submit{ border:none; font-size:.2rem; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); border-radius: 3px; transition:0.3s all; width:100%; height:.6rem; line-height:.6rem;}
.buy_form .submit:hover{}

@media screen and (max-width:768px) {
.buy_form{width:90%; height:460px; padding:30px 20px; border-radius:5px;}
.buy_form .close{top:20px; right:20px; cursor:pointer;}
.buy_form li{font-size:14px; margin-bottom:10px; width:100%;}
.buy_form input,.buy_form select{padding:12px;border-radius: 2px; font-size:12px;}
.buy_form .submit{ height:36px; line-height:36px;font-size:14px;}
.buy_form textarea{font-size:12px;}
}

/*右侧浮动*/
.online_q {position: fixed;right:10px;bottom:10%; z-index: 99;width: 50px;border-radius: 25px;background: #fff;box-shadow: 0px 0px 8px 0px rgba(181,181,181,0.5);}
.side-menu-itembox { position: relative}
.side-menu-itembox:not(:last-child) { margin-bottom:5px;}
.side-menu-itembox:hover .side-menu-screen {right: 50px;visibility: visible;opacity: 1}
.side-menu-itembox:hover .side-menu-btn {background: #E0E9FC}
.side-menu-itembox:hover .side-menu-btn.mine:before {width: 22px;height: 22px; background: url("../images/float_ico.png") -49px -50px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.message:before { width: 22px;height: 23px;background: url("../images/float_ico.png") 0px 0px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.qrcode:before {width: 22px;height: 22px;background: url("../images/float_ico.png") 0px -50px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.yijian:before {width: 22px;height: 22px;background: url("../images/float_ico.png") -98px 0px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.totop:before {width: 22px; height: 22px;background: url("../images/float_ico.png") -24.5px -25.5px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.totop { cursor: pointer}

.side-menu-btn {display: block;width: 50px;height: 50px; box-sizing: border-box;border: 4px solid #fff; background: #fff; border-radius: 50%;position: relative}
.side-menu-btn:before { content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%)}
.side-menu-btn.mine:before { width: 22px;height: 22px; background: url("../images/float_ico.png") -49px 0px/120px no-repeat}
.side-menu-btn.message:before {width: 22px;height: 23px;background: url("../images/float_ico.png") -24.5px 0px/120px no-repeat}
.side-menu-btn.qrcode:before {width: 22px;height: 22px;background: url("../images/float_ico.png") -73.5px 0px/120px no-repeat}
.side-menu-btn.yijian:before {width: 22px; height: 22px;background: url("../images/float_ico.png") -98px -24.5px/120px no-repeat}
.side-menu-btn.totop:before {width: 22px;height: 22px;background: url("../images/float_ico.png") 0px -25.5px/120px no-repeat}

.side-menu-screen {padding-top: 4px;position: absolute;padding-right: 11px; top: 0; right: 65px;transition: all .2s;visibility: hidden;opacity: 0}
.side-screen-box {position: relative; background: #fff;box-shadow: 0px 2px 7px -1px rgba(225,225,225,.5);border-radius: 6px;display: block}
.side-screen-box:before {content: '';position: absolute;top: 14px;right: -7px;border-left: 7px solid #fff; border-top: 7px solid rgba(0,0,0,0);border-bottom: 7px solid rgba(0,0,0,0)}
.side-screen-box.only-text {height: 42px;line-height: 42px;font-size: 15px;font-weight: 400;color: #111; white-space: nowrap; padding: 0 18px;}
.side-screen-box.qrcode {width: 136px;line-height: 20px;text-align: center;font-weight: 400;font-size: 12px;color: #333;padding: 5px 0 5px}
.side-screen-box.qrcode .gzh-qrcode {width: 125px;display: block;margin:auto}
@media screen and (max-width:768px) {
.online_q{ display:none;}	
}


.btn_flash{overflow:hidden; position: relative;}
.btn_flash .anim { -moz-transform: translateY(-50%) translateX(-50%); -ms-transform: translateY(-50%) translateX(-50%); -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); position: absolute; top: 50%; left: 50%; }
.btn_flash .anim:before { position: relative; content: ''; display: block; margin-top: 100%; }
.btn_flash .anim:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 50%; }
.btn_flash:hover .anim { -moz-animation: anim-out 0.75s; -webkit-animation: anim-out 0.75s; animation: anim-out 0.75s; }
.btn_flash:hover .anim:after { -moz-animation: anim-out-pseudo 0.75s; -webkit-animation: anim-out-pseudo 0.75s; animation: anim-out-pseudo 0.75s; }
@-webkit-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-moz-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
} 
@-ms-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-webkit-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-moz-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-ms-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}








/*更多*/
.lookmore{ text-align:center;}
.lookmore a{display:inline-block;border: #222 1px solid; font-size:15px; border-radius:22px; padding:12px 50px; color: #333; position:relative;overflow:hidden; transition:0.5s all;}
.lookmore a span{ position:relative; z-index:10}
.lookmore a:hover{color:#fff;border:var(--main_color) 1px solid;background: var(--main_color); transition-delay:0.36s}
@-webkit-keyframes criss-cross-left {
0% {
left: -20px;
}
50% {
left: 50%;
width: 20px;
height: 20px;
}
100% {
left: 50%;
width: 375px;
height: 375px;
}
}
@keyframes criss-cross-left {
0% {
left: -20px;
}
50% {
left: 50%;
width: 20px;
height: 20px;
}
100% {
left: 50%;
width: 375px;
height: 375px;
}
}
@-webkit-keyframes criss-cross-right {
0% {
right: -20px;
}
50% {
right: 50%;
width: 20px;
height: 20px;
}
100% {
right: 50%;
width: 375px;
height: 375px;
}
}
@keyframes criss-cross-right {
0% {
right: -20px;
}
50% {
right: 50%;
width: 20px;
height: 20px;
}
100% {
right: 50%;
width: 375px;
height: 375px;
}
}
.btn-11 {
position: relative;
color: #9a7cba;
}
.btn-11:before, .btn-11:after {
position: absolute;
top: 50%;
content: '';
width: 20px;
height: 20px;
background: var(--main_color);
border-radius: 50%;
}
.btn-11:before {
left: -20px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
/*     animation: criss-cross-left 0.8s reverse; */
}
.btn-11:after {
right: -20px;
-webkit-transform: translate(50%, -50%);
transform: translate(50%, -50%);
/*     animation: criss-cross-right 0.8s reverse; */
}
.btn-11:hover:before, .btn-11:hover:after {
/*       @include size($btn-width); */
}
.btn-11:hover:before {
-webkit-animation: criss-cross-left 0.8s both;
animation: criss-cross-left 0.8s both;
}
.btn-11:hover:after {
-webkit-animation: criss-cross-right 0.8s both;
animation: criss-cross-right 0.8s both;
}


/*向上*/
.cd-top {
  display: inline-block; z-index:9999;
  height: 46px;
  width: 46px;
  position: fixed;
  bottom: 60px;
  right: 5px;border-radius: 50%;
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.15) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* 如果用户继续向下滚动,这个按钮的透明度会变得更低 */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: var(--main_color);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 10px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 46px;
    width: 46px;
    right: 5px;
    bottom: 60px;
  }
}
.cd-top:hover{background-color:var(--second_color);transition: all 0.3s ease 0s;}
