/* CSS Document */
@font-face {
  font-family: 'syh';
  src: url('../fonts/syh.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.mb{width: 100%;}
.ck{width: 100%;}


@font-face {
  font-family: 'mon';
  src: url('../fonts/montserrat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'sys';
  src: url('../fonts/sys.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'honglei';
  src: url('../fonts/honglei.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@keyframes arrowMove {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.img-scale-box {
  overflow: hidden; 
}

.img-scale-box img {
  transition: transform 0.3s ease; 
}


.img-scale-box:hover img {
  transform: scale(1.2);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100px;
  height: 100%;
}

body {
  color: #5a5a5a;
  overflow-x: hidden;
  height: 100%;
  font-family: microsoft yahei !important;
}


a {
  color: #5a5a5a;
  text-decoration: none !important;
}
a:hover {
  color: #8b1f12;
  text-decoration: none !important;
}


ul,
ol {
  list-style: none;
}

ul li,
ol li {
  list-style: none;
}


img {
  border: 0;
  vertical-align: middle;
}

p {
  display: block;
}

input {
  outline: none;
}


.clear30 {
  clear: both;
  height: .3rem;
  width: 100%;
}

.clear40 {
  clear: both;
  height: .4rem;
  width: 100%;
}

.clear50 {
  clear: both;
  height: .5rem;
  width: 100%;
}

.clear60 {
  clear: both;
  height: .6rem;
  width: 100%;
}


.flex {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left {
  justify-content: flex-start;
}

.right {
  justify-content: flex-end;
}

.no {
  flex-wrap: nowrap;
}

.top {
  align-items: flex-start;
}

.mobile {
  display: none;
}
.topnr {
  max-width: 93%;
  margin: 0 auto;
}
.nr {
  max-width: 80%;
  margin: 0 auto;
}
.sytop {
  width: 100%;
  height: 2rem;
  position: fixed;
  z-index: 12;
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.sytop{border-top:3px solid #8b1f12 ;}
.logo {
  width: 5.5rem;
  margin-top: .2rem;
}
.logo img {
  width: 100%;
}
.topyc {
  flex: 1;
}
.toplink {
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  width: 95%;
  padding-bottom: .2rem;
}
.toplink ul {
  align-items: center;
  margin-top: .3rem;
}
.toplink a {
  color: #fff;
  font-size: .16rem;
  opacity: .6;
}
.toplink p {
  color: #fff;
  font-size: .14rem;
  font-style: italic;
  margin-right: .3rem;
  margin-left: .3rem;
  opacity: .6;
}
.toplink li:nth-child(6) p {
  display: none;
}
.toplink a:hover {
  opacity: 1;
  color: #f77620;
}
.sousuo {
  width: 2rem;
  margin-left: .3rem;
}
.ssk {
  width: 75%;
  height: .3rem;
  border-radius: .6rem 0 0 .6rem;
  font-size: .14rem;
  background: rgba(0, 0, 0, .1);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#19ffffff,endColorstr=#19ffffff);
  border: 1px solid rgba(255, 255, 255, .46);
  border-right: 0;
  color: #fff;
  padding-left: .2rem;
}
.search {
  width: 25%;
  height: .3rem;
  border-radius: 0 .6rem .6rem 0;
  background: rgba(0, 0, 0, .1) url(../images/search.svg) center no-repeat;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .46);
  border-left: 0;
  background-size: 50%;
}
.nav {
  width: 95%;
}
.nav a {
  display: block;
  line-height: inherit;
  cursor: pointer;
  color: #fff;
}
.nav_menu {
  text-transform: uppercase;
}
.nav_menu-item {
  font-size: .2rem;
  position: relative;
  line-height: .6rem;
}
.nav_menu-item:hover .nav_submenu {
  display: block;
}
.nav_menu-item a::after {
  content: '\e87e';
  font-family: iconfont;
  font-size: .16rem;
  color: #fff;
  margin-left: .05rem;
}
.nav_menu-item:hover a::after {
  content: '\e892';
  font-family: iconfont;
  font-size: .16rem;
  color: #f77620;
  margin-left: .05rem;
}
.nav_submenu {
  text-transform: none;
  display: none;
  background-color: #fff;
  border-radius: 0 0 .1rem .1rem;
  position: absolute;
  z-index: 3;
  top: .6rem;
  left: -35%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  padding-top: .15rem;
  padding-bottom: .3rem;
  text-align: center;
}
.nav_submenu::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.nav_menu-item:hover a {
  color: #f77620;
}
.nav_submenu-item {
  width: 1.5rem;
  line-height: .36rem;
  font-size: .16rem;
}
.nav_submenu-item a {
  font-size: .16rem;
  color: #333 !important;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  display: block;
  font-weight: normal;
  text-align: center;
}
.nav_submenu-item a:hover {
  color: #8b1f12 !important;
}
.nav_submenu-item a::after {
  display: none;
}
.banner {
  margin-top: 0rem;
  width: 100%;
}
.moduletable-banner {
  width: 100%;
  height: 100vh;
}
.slides {
  width: 100%;
  height: 100%;
}
.flexslider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flexslider .slides > li {
  display: none;
  width: 100%;
  height: 100%;
}
.flexslider .slides img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
.no-js .slides > li:first-child {
  display: block;
}
.flexslider {
  position: relative;
  zoom: 1;
  height: 100%;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides > li {
  position: relative;
}
.flex-caption {
  background: none;
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
  zoom: 1;
}
.flex-direction-nav {
  height: 0;
  overflow: hidden;
}
.flex-direction-nav li a {
  display: none;
  width: .6rem;
  height: .6rem;
  position: absolute;
  top: 50%;
  margin-top: -40px;
  cursor: pointer;
  text-indent: -9999px;
}
.flex-direction-nav li a.next {
  right: .2rem;
  background: url("../images/next.png");
}
.flex-direction-nav li a.next:hover {
  background: url("../images/next2.png");
}
.flex-direction-nav li a.next:active {
  background: url("../images/next2.png");
}
.flex-direction-nav li a.prev {
  left: .2rem;
  background: url("../images/prev.png");
}
.flex-direction-nav li a.prev:hover {
  background: url("../images/prev2.png");
}
.flex-direction-nav li a.prev:active {
  background: url("../images/prev2.png");
}
.flex-direction-nav li a.disabled {
  opacity: .3;
  filter: alpha(opacity=30);
  cursor: default;
}
.flex-control-nav {
  position: absolute;
  bottom: 50px;
  right: 20px;
}
.flex-control-nav li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin-right: 10px;
}
.flex-control-nav li a {
  display: none;
}
.bannerdb {
  width: 100%;
  height: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
  position: absolute;
  bottom: 0;
}


.bannerwz {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 4;
}
.bannerwz a {
  font-family: 'sys';
  font-size: .26rem;
  color: #fff;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 95%;
}
.db {
  position: relative;
  z-index: 5;
  width: 100%;
}


.flex-control-nav{position:absolute;bottom:50px;right:60px;}
.flex-control-nav li{display:inline-block;zoom:1;*display:inline;margin-right:20px;}
.flex-control-nav li a{display:block;cursor:pointer;text-indent:-9999px; background: #fff; width:15px;height:15px; border-radius: 15px; z-index: 3; }
.flex-control-nav li a:hover{background-position:0 -10px;background: #8b1f12; z-index: 3}
.flex-control-nav li a.active{background: #8b1f12;z-index: 3}



.fb {
  position: absolute;
  bottom: .8rem;
  width: 100%;
}
.fbbj {
  width: 3rem;
  height: 1rem;
  border: 2px solid #fff;
  border-bottom: none;
  border-radius: 3rem 3rem 0 0 / 2rem 2rem 0 0;
  box-sizing: border-box;
  margin: 0 auto;
}
.jiantou {
  width: 36px;
  bottom: .2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowMove 1.2s ease-in-out infinite;
}
.jiantou::before {
  content: '\e61f';
  font-family: iconfont;
  color: #fff;
  font-size: .36rem;
}


.half-top-empty {
  width: 1rem;
  height: .5rem;
  border: 2px solid #8b1f12;
  border-bottom: none;
  border-radius: .5rem .5rem 0 0;
  box-sizing: border-box;
}

.section {
  width: 100%;
}
.lefttop {
  justify-content: flex-start;
  align-items: center;
  vertical-align: middle;
}
.lefttop p {
  font-size: .26rem;
  margin: 0;
}
.lefttop span {
  font-size: .4rem;
  color: #8b1f12;
  font-family: 'honglei';
  margin-left: 5px;
  display: block;
}
.leftbottom span {
  width: .4rem;
  height: 1px;
  background: #8b1f12;
  display: block;
  margin-right: .1rem;
}
.leftbottom p {
  font-family: 'mon';
  color: #8b8b8b;
  font-size: .18rem;
  text-transform: uppercase;
}
.titleright {
  align-items: center;
  vertical-align: middle;
  height: .5rem;
}
.titleright a {
  font-size: .18rem;
  color: #b6b6b6;
}
.titleright::before {
  content: '\e600';
  font-family: iconfont;
  font-size: .3rem;
  margin-right: .2rem;
  color: #b6b6b6;
}
.titleright::after {
  content: '\e67e';
  font-family: iconfont;
  font-size: .2rem;
  margin-left: .2rem;
  color: #b6b6b6;
}
.titleright:hover a,
.titleright:hover::before,
.titleright:hover::after {
  color: #8b1f12;
}
.centernewsleft {
  width: 7.6rem;
  margin-top: .5rem;
}
#focus {
  position: relative;
  object-fit: cover;
}
#focus .focus-bar-box {
  width: 100%;
  height: 100%;
}
#focus .focus-bar li {
  width: 100%;
  height: 100%;
  position: relative;
  border-bottom: 3px solid #8b1f12;
  padding-bottom: 30px;
}
#focus .bd {
  position: relative;
}
.focus-bar {
  height: 100%;
  width: 100%;
}
.tempWrap {
  height: 100%;
  width: 100%;
}
#focus .btn-prev,
#focus .btn-next {
  width: 40px;
  height: 60px;
  line-height: 60px;
}
.btn-prev,
.btn-next {
  top: 60%;
  position: absolute;
}
.btn-prev {
  left: .5rem;
}
.btn-prev::after {
  content: "\e8b5";
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
  top: 33%;
}
.btn-next {
  left: .8rem;
  transform: scaleX(-1);
}
.btn-next::after {
  content: "\e8b5";
  font-family: iconfont;
  font-size: 40px;
  color: #fff;
}
.btn-next:hover::after,
.btn-prev:hover::after {
  color: #ffa200;
}
.bttu {
  width: 100%;
  height: 4.5rem;
  margin-bottom: 10px;
  overflow: hidden;
  background-size: 100% 100%;
  border-radius: 40px 0 40px 0;
}
.bttu img {
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
}
#focus li:hover img {
  overflow: hidden;
  -webkit-transform: scale(1.25);
  transform: scale(1.15);
}
.newswzbj {
  height: 2.3rem;
  width: 100%;
  margin-top: -2.3rem;
  position: relative;
  background: linear-gradient(rgba(0, 96, 189, 0), rgba(139,31,18, 1));
  border-radius: 0 0 40px 0;
}
.newstime {
  position: absolute;
  right: .2rem;
  bottom: 40px;
  font-family: 'mon';
}
.newstime p {
  font-size: 27px;
  color: #fff;
}
.newstime span {
  font-size: 16px;
  color: #fff;
  margin-left: .15rem;
}
.newstext {
  width: 100%;
  margin-top: .2rem;
}
.newstext a {
  color: #323232;
  font-size: .24rem;
  width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-left: .1rem;
}
.newstext jj {
  color: #9e9e9e;
  font-size: .16rem;
  width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-left: .1rem;
  padding-bottom: .1rem;
}
.more {
  width: 100%;
  text-align: right;
  padding-right: .3rem;
}
.more::before {
  content: '\e600';
  font-family: iconfont;
  font-size: .26rem;
  color: #9e9e9e;
  margin-right: .1rem;
}
.more a {
  font-size: .16rem;
  color: #9e9e9e;
}
.more:hover a,
.more:hover::before,
.newstext:hover a {
  color: #8b1f12;
}

.centernews {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.centerright {
  flex: 1;
  margin-left: 0.4rem;
  margin-top: 0.5rem;
  min-width: 0;
}

.centery {
  width: 100%;
  height: auto;
  min-width: 0;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: .25rem;
}


.ycnews{width: 100%;min-width: 0; }
.ycnews a{color: #6c6c6c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
font-size: .2rem;
width: 98%;
}

.ycnewstime{font-family: "mon";  color: #c4c4c4; font-size: .16rem;  margin-top: .15rem; margin-bottom: .2rem;}
.ycnewstime::before{content: '\e8b4'; font-family: "iconfont"; color: #c4c4c4; margin-left: .1rem; margin-right: .1rem; }

.centery:hover .ycnews a{color: #8b1f12;}
.centery:hover {border-bottom: 2px solid #8b1f12;}










.zxgk {
  margin-top: .3rem;
  width: 100%;
  background: url(../images/zxgk.jpg);
  height: 7rem;
}
.zxgk .section {
  justify-content: center;
}
.zxgk .lefttop {
  justify-content: center;
}
.zxgkleft {
  margin-top: .5rem;
  float: left;
  width: 6rem;
}
.gktopwz {
  font-size: .2rem;
  line-height: .4rem;
}
.bottomwz {
  width: 100%;
}
.jsnr {
  margin-top: .2rem;
  width: 48%;
}
.jsnrs {
  font-size: .2rem;
  color: #fff;
}
.jsnrs p {
  font-size: .18rem;
}
.jsnrx {
  justify-content: flex-start;
  align-items: flex-end;
}
.jsnrx span {
  font-size: .56rem;
  color: #fff;
  font-family: 'mon';
}
.jsnrx p {
  font-size: .2rem;
  color: #fff;
  margin-bottom: .1rem;
}
.zxgkright {
  width: calc(100% - 6rem);
  height: 5.2rem;
  margin-top: .5rem;
  float: right;
}
.zxgkright img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two {
  width: 100%;
  height: auto;
}
.two .nr {
  height: auto;
  height: 100%;
}
.notice {
  width: 48%;
  margin-top: .5rem;
  height: 100%;
}
.notice .section {
  margin-bottom: .4rem;
}
.noticenews {
  width: 100%;
  margin-top: .3rem;
}
.noticenews a {
  width: 96%;
  font-size: .18rem;
  color: #323232;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-left: 10px;
}
.nttime {
  margin-top: .2rem;
}
.nttime span {
  width: 75%;
  height: 1px;
  background-color: #d9d9d9;
}
.nttime p::after {
  content: '\e641';
  font-family: iconfont;
  font-size: .16rem;
  color: #d9d9d9;
  margin-right: .1rem;
  margin-left: -20px;
}
.nttime sj {
  font-family: 'mon';
  color: #d9d9d9;
  font-size: .16rem;
  font-style: italic;
}
.noticenews:hover a {
  color: #8b1f12;
}
.preview {
  margin-top: .5rem;
  width: 58%;
  flex-wrap: nowrap;
  height: 100%;
}
.previewnews {
  width: 100%;
}
.previewnr {
  width: 31%;
  border: 1px solid #eaeaea;
  margin-top: .4rem;
  height: auto;
  min-height: 3rem;
  border-radius: 20px 0 20px 0;
  padding: 2%;
}
.ptime {
  font-family: 'mon';
  font-size: .16rem;
  color: #d9d9d9;
  vertical-align: middle;
  align-items: center;
  height: .4rem;
  justify-content: flex-start;
}
.ptime::before {
  content: '\e70f';
  font-family: iconfont;
  color: #d9d9d9;
  font-size: .2rem;
  margin-right: 10px;
}
.previewnr a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical !important;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.18rem;
  width: 95%;
  line-height: 0.3rem;
}

.ptitle {
  border-bottom: 1px solid #d9d9d9;
  width: 100%;
  padding-bottom: 0.2rem;
}

.previewnr jj {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical !important;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.15rem;
  width: 95%;
  line-height: 0.3rem;
  color: #8d8d8d;
  margin-top: 0.2rem;
}


.previewnr:hover {
  border: 2px solid #8b1f12;
}
.previewnr:hover a {
  color: #8b1f12;
}



.teacher {
  margin-top: .3rem;
  width: 100%;
  background:#8b1f12  url(../images/teacher.jpg) top no-repeat;
  height: auto;
}

.teacher .section {
  padding-top: 1rem;
}
.teacher .lefttop p,
.teacher .lefttop span,
.teacher .leftbottom span,
.teacher .titleright a {
  color: #fff;
}
.teacher .titleright::before,
.teacher .titleright::after,
.teacher .leftbottom p {
  color: rgba(255, 255, 255, .5);
}
.teacher .leftbottom span {
  background: rgba(255, 255, 255, .5);
}

.teacher-btn-prev::before {
  content: '\e8b5';
  font-family: iconfont;
  font-size: .36rem;
  color: #898989;
  padding-left: .1rem;
}
.teacher-btn-next::before {
  content: '\e8b6';
  font-family: iconfont;
  font-size: .36rem;
  color: #898989;
}
.teacher-btn-prev:hover::before,
.teacher-btn-next:hover::before {
  color: #791cb5;
}
.teachertu {
  width: 100%;
  height: 2rem;
  overflow: hidden;
}
.teacher-item img {
  transition: transform 0.3s ease;
}
.teacher-item:hover img {
  transform: scale(1.1);
}


 .szfac-wrap {
            width: 100%;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }
        .szfac-wrap::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            border-radius: 0 0 100% 100%;
        }
        .szfac-container {
            margin: 0 auto;
            position: relative;
            z-index: 2;
			padding-bottom: .8rem;
			margin-top: .6rem;
			width: 100%;
        }
        .szfac-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }
        .szfac-title-box h2 {
            font-size: 32px;
            font-weight: 500;
            margin: 0;
        }
        .szfac-title-box p {
            font-size: 16px;
            opacity: 0.85;
            margin:4px 0 0;
            letter-spacing: 2px;
        }
        .szfac-more-link {
            display: flex;
            align-items: center;
            gap:8px;
            cursor: pointer;
            opacity: 0.9;
        }
        .szfac-more-link:hover{opacity:1;}
        .szfac-main-content{
            display: grid;
            grid-template-columns: 1fr 600px;
            gap:40px;
            margin-bottom:60px;
        }
        .szfac-text-area h3{
            font-size:28px;
            margin:0 0 20px;
			color: #fff;
			margin-top: .3rem;
			border-bottom: 1px solid rgba(240, 244, 244, 0.29);
			padding-bottom: .2rem;
			width:200px;
        }
		.szfac-text-area{width: 90%; margin-left: 50px;}
        .szfac-text-area p{
            font-size:18px;
            line-height:40px;
            opacity:0.63;
            margin:0 0 24px;
			color: #fff;
        }
        .szfac-detail-btn{
            display:flex;
            align-items:center;
            gap:8px;
            cursor:pointer;
        }

		.szfac-detail-btn a {
  color: #fff;
  font-size: 18px;
}

.szfac-detail-btn a::before {
  content: '\e68d';
  font-family: iconfont;
  font-size: 0.3rem;
  color: #fff;
  margin-right: 0.2rem;
}

.szfac-detail-btn:hover a,
.szfac-detail-btn:hover a::before {
  color: #f77620;
}

        .szfac-main-img-box{
            border-radius:45px 0 45px 0;
            overflow:hidden;
			margin-right: 50px;
			box-shadow: 10px 10px 0 rgba(240, 244, 244, 0.29);
        }
        .szfac-main-img{
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
			
        }
        /* 底部缩略轮播容器 */
        .szfac-thumbs-wrap{
            position:relative;
        }
        .szfac-arrow{
            position:absolute;
            top:50%;
            transform:translateY(-50%);
            width:44px;
            height:44px;
            border-radius:50%;
            background:rgba(255,255,255,0.22);
            border:none;
            color:#fff;
            font-size:20px;
            cursor:pointer;
            z-index:10;
            display:flex;
            align-items:center;
            justify-content:center;
        }
        .szfac-arrow:hover{
            background:rgba(255,255,255,0.35);
        }
        .szfac-arrow-left{
            left:0px;
        }
         .szfac-arrow-left::before{
            content: '\e8b5';
            font-family: iconfont;
            color: #fff;
            font-size: .3rem;
            padding-left: 10px;
        }
        .szfac-arrow-right{
            right:0px;
        }
        .szfac-arrow-right::before{
            content: '\e8b6';
            font-family: iconfont;
            color: #fff;
            font-size: .3rem;
        }
        .szfac-thumbs-outer{
            overflow:hidden;
            margin:0 60px;
        }
        .szfac-thumbs-track{
            display:flex;
            transition: transform 0.24s ease-out;
        }
        .szfac-thumb-item{
            margin: 0 .15rem;
            box-sizing:border-box;
            cursor:pointer;
        }
        .szfac-thumb-img{
            width:100%;
            height:140px;
            object-fit:cover;
            border-radius:25px 0 25px 0;
            border:4px solid rgba(255,255,255,0.22);
			
        }
        .szfac-thumb-item.active .szfac-thumb-img{
            border-color:#ffffff;
        }
        /* 数据源容器，隐藏 */
        .szfac-source-wrap{
            display:none;
        }

        /* 自适应 */
        @media(max-width:1200px){
            .szfac-main-content{
                grid-template-columns:1fr;
            }
           
            
        }
        @media(max-width:768px){
            .szfac-title-box h2{font-size:24px;}
            .szfac-thumbs-outer{margin:0 48px;}
            .szfac-thumb-item{
                flex:0 0 50%;
            }
            .szfac-main-img{height:220px;}
        }








.nr .two {
  align-items: flex-start;
}
.zsxx {
  width: 48%;
  margin-top: .5rem;
}
.zsxx .section {
  margin-bottom: .4rem;
}
.zsxx .lefttop span {
  margin-left: 0;
  margin-right: 5px;
}
.zsnews {
  width: 100%;
  border-bottom: 1px solid #e5e5e6;
  padding-bottom: .08rem;
  margin-top: .15rem;
}
.zsnews a {
  width: 95%;
  margin-left: 2%;
  overflow: hidden;
  font-size: .18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.zsnews sj {
  font-family: 'mon';
  font-size: .16rem;
  color: #bcbcbc;
  margin: .1rem 0;
  display: block;
  font-style: italic;
}
.zsnews sj::before {
  content: '\e70f';
  font-family: iconfont;
  font-size: .2rem;
  color: #bcbcbc;
  margin-left: .1rem;
  margin-right: .1rem;
}


.jxhs {
  width: 100%;
  margin-top: 0.5rem;
  align-items: flex-start;
  display: flex;
}

.jxhs .section {
  margin-bottom: 0.4rem;
}

.jxhsnews {
  width: 45%;
  height: 4.6rem;
  position: relative;
  min-width: 0;
}

.jxhdtu,
.jxhdtu img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.2rem 0 0.2rem 0;
}

.jxhdtu img {
  transition: transform 0.5s ease;
  object-fit: cover;
}

.jxhsnews:hover .jxhdtu img {
  transform: scale(1.2);
}

.jxtitle {
  position: absolute;
  bottom: 0;
  height: 1rem;
  background: linear-gradient(rgba(0, 96, 189, 0), rgba(139, 31, 18, 1));
  border-radius: 0 0 0.2rem 0;
  min-width: 0;
  width: 100%;
}

.jxtitle a {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: 0.18rem;
  width: 95%;
  margin-left: 2%;
  padding-top: 0.4rem;
  padding-bottom: 0.1rem;
}

.jxhsnews:hover .jxtitle a {
  border-bottom: 2px solid #ffa200;
}

.jxhsright {
  flex: 1;
  margin-left: 0.2rem;
}

.jxhsright .jxhsnews {
  width: 48%;
  height: 2.2rem;
  margin-bottom: 0.2rem;
}


.xiaoyou {
  margin-top: .3rem;
  width: 100%;
  background: url(../images/xybj.jpg) top no-repeat;
  min-height: 4rem;
  margin-top: -.3rem;
}

.xiaoyou .section {
  padding-top: 2.5rem;
}

.xiaoyou .lefttop p,
.xiaoyou .lefttop span,
.xiaoyou .leftbottom span,
.xiaoyou .titleright a {
  color: #fff;
}
.xiaoyou .titleright::before,
.xiaoyou .titleright::after,
.xiaoyou .leftbottom p {
  color: rgba(255, 255, 255, .5);
}
.xiaoyou .leftbottom span {
  background: rgba(255, 255, 255, .5);
}

.xiaoyou .lefttop span{
	margin-left: 0; 
	margin-right: .1rem;
}



.alumni-container {
  width: 100%;
  padding: 40px 0 0px;
}

.alumni-viewport {
  width: 100%;
  overflow: hidden;
}

.alumni-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.alumni-card-item {
  padding: 0 10px;
  flex-shrink: 0;
}

.alumni-card-box {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.xytu {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}

.alumni-card-box img {
  width: 100%;
  height: 100%;
  display: block;
}

.alumni-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(139,31,18, 1));
}

.alumni-card-box:hover  .alumni-card-text a{color: #ffa200;;}

.alumni-card-text a {
  color: #fff;
  font-size: .18rem;
  margin-top: .1rem;
  display: block;
}

.slider-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.slider-prev-btn,
.slider-next-btn {
  margin-left: .2rem;
  margin-right: .2rem;
  border: none;
  background: #fff;
  border-radius: 50%;
  font-size: .36rem;
  color: #888;
  cursor: pointer;
}

.alumni-card-item:hover img {
  transform: scale(1.1);
}

.xytu img {
  transition: transform 0.3s ease;
  object-fit: cover;
}

.slider-prev-btn::before {
  content: '\e640';
  font-family: iconfont;
  font-size: .5rem;
  color: #bcbcbc;
  margin: 0 .1rem;
}

.slider-next-btn::before {
  content: '\e642';
  font-family: iconfont;
  font-size: .5rem;
  color: #bcbcbc;
  margin: 0 .1rem;
}

.slider-next-btn:hover::before {
  color: #8b1f12;
}

.slider-prev-btn:hover::before {
  color: #8b1f12;
}

@media screen and (max-width: 767px) {
  .alumni-card-item {
    flex-basis: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .alumni-card-item {
    flex-basis: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .alumni-card-item {
    flex-basis: calc(100% / 3);
  }
}

.jxpy {
  width: 48%;
  margin-top: .5rem;
}

.jxpy .section {
  margin-bottom: .4rem;
}

.jxpynews {
  width: 100%;
  background: #fff;
  border: 1px solid #cbcbcb;
  box-shadow: 10px 10px 0 rgba(240, 244, 244, 0.7);
  margin-top: .3rem;
  padding-bottom: .2rem;
}

.jxpynews a {
  width: 95%;
  margin-left: 2%;
  overflow: hidden;
  font-size: .18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  color: #373737;
  margin-top: .2rem;
}

.jxpynews sj {
  text-align: right;
  font-family: 'mon';
  font-size: .18rem;
  margin-top: .1rem;
  display: block;
  margin-right: .3rem;
  color: #cbcbcb;
}

.jxpynews:hover {
  border: 1px solid #8b1f12;
}

.jxpynews:hover a {
  color: #8b1f12;
}

.xsfz {
  width: 48%;
  margin-top: .5rem;
}

.xsfz .section {
  margin-bottom: .4rem;
}

.xsfznews {
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  margin-top: .3rem;
  padding-bottom: .25rem;
}

.xsfznews a {
  width: 95%;
  margin-left: 2%;
  overflow: hidden;
  font-size: .18rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  color: #373737;
  margin-top: .05rem;
}

.xsfznews sj {
  font-family: 'mon';
  font-size: .16rem;
  margin-top: .1rem;
  display: block;
  color: #cbcbcb;
  margin-left: 2%;
  font-style: italic;
}

.xsfznews:hover a {
  color: #8b1f12;
}

.footer{
  margin-top: 1rem;
  width: 100%;
  background: url(../images/footer.jpg) top no-repeat;
height: auto;
  border-top: 5px solid #c0c0c0;
  padding-bottom: .5rem;
}



.footerleft {
  width: 50%;
  margin-top: .4rem;
}

.footerlogo {
  width: 100%;
}

.footerlogo img {
  width: 100%;
}

.footerright {
  width: 35%;
  margin-top: .5rem;
}

.footerright ul {
  width: 100%;
}

.footerright li {
  width: 48%;
  text-align: center;
  list-style: none;
}

.footerright li img {
  width: 1.5rem;
  border-radius: 5px;
}

.footerright li p {
  font-size: .16rem;
  color: #fff;
  margin-top: .1rem;
}

.footernr li {
  list-style: none;
  margin-top: .3rem;
}

.footernr p {
  font-size: .16rem;
  color: #fff;
  font-weight: bolder;
}

.footernr span {
  font-size: .18rem;
  color: #fff;
  font-family: 'mon';
  margin-top: .1rem;
  display: block;
}

.footernr li:nth-child(1) span {
  font-family: 'syh';
}



.nybanner {
  position: relative;
  width: 100%;
}

.nybanner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nyleft {
  width: 3rem;
position:relative;
}


.selected a{
color:#8b1f12
}

.nyflm {
  width: 100%;
  height: 1rem;
  background: #8b1f12;
  text-align: center;
  line-height: 1rem;
  border-radius: 35px 0 0 0;
  margin-top: -1rem;
  z-index: 2;
  color: #fff;
  font-size: 0.3rem;
}

.nyzlm {
  width: 100%;
  height: auto;
  padding-bottom: 1rem;
  border: 1px solid #c1c1c1;
  border-radius: 0 0 35px 0;
  margin-top: -1px;
}

.nyzlm ul {
  width: 100%;
}

.nyzlm li {
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
  line-height: 0.7rem;
  border-bottom: 1px solid #dcdcdc;
}

.nyzlm li a {
  font-size: 0.2rem;
  padding-left: 10px;
}

.nyzlm li span::after {
  content: '\e641';
  font-family: iconfont;
  font-size: 0.2rem;
  color: #d2d2d2;
  padding-right: 10px;
}

.nyzlm li:hover span::after,
.nyzlm li:hover a {
  color: #8b1f12;
}

.nyright {
  flex: 1;
  margin-left: 60px;
  margin-top: 0.4rem;
  min-width: 0;
}

.zclm {
  font-size: 0.3rem;
  color: #8b1f12;
  width: 2rem;
  border-bottom: 3px solid #8b1f12;
  text-align: center;
  height: 0.6rem;
}

.ycdh {
  font-size: 0.18rem;
  border-bottom: 1px solid #d3d3d3;
  height: 0.6rem;
  flex: 1;
  justify-content: flex-end;
}

.ycdh p,
.ycdh a,
.ycdh span {
  margin-right: 6px;
  margin-left: 6px;
  color: #8c8c8c;
}

.ycdh span::before {
  content: '\e641';
  font-family: iconfont;
  font-size: 0.16rem;
  color: #8c8c8c;
}

.ycdh a:hover {
  color: #8b1f12;
}

.lbnr {
  width: 100%;
}

.lbnews {
  width: 100%;
  height: 0.8rem;
  border-bottom: 1px dashed #cacaca;
  line-height: 0.8rem;
}

.lbnews a {
  width: 80%;
  font-size: 0.18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #2a2a2a;
  display: block;
  margin-left: 10px;
}

.lbnews sj {
  font-size: 0.16rem;
  font-family: "mon";
  color: #b5b5b5;
  margin-right: 10px;
}

.lbnews sj::before {
  content: '\e70f';
  font-family: iconfont;
  font-size: 0.2rem;
  color: #d2d2d2;
  padding-right: 10px;
}

.lbnews:hover a {
  color: #8b1f12;
}

.newstitle {
  margin-top: 0.2rem;
  font-size: 0.26rem;
  color: #545454;
  line-height: 0.42rem;
  width: 90%;
  margin: 0.3rem auto;
  text-align: center;
  font-weight: bolder;
}

.newsxx {
  justify-content: center;
  border-bottom: 1px dashed #cacaca;
  padding-bottom: 0.2rem;
  margin-top: -0.1rem;
  margin-bottom: 0.4rem;
}

.zz {
  font-size: 0.16rem;
  margin-right: 40px;
  color: #b5b5b5;
}

.sj {
  font-size: 0.16rem;
  color: #b5b5b5;
}

.zz p::before {
  content: '\e636';
  font-family: iconfont;
  font-size: 0.2rem;
  color: #d2d2d2;
  padding-right: 10px;
}

.sj p::before {
  content: '\e70f';
  font-family: iconfont;
  font-size: 0.2rem;
  color: #d2d2d2;
  padding-right: 10px;
}

.newstext,
.newstext p {
  width: 100%;
  font-size: 0.18rem !important;
  line-height: 0.4rem !important;
}

.newstext img {
  max-width: 80%;
  margin: 0.2rem auto;
  height: auto !important;
  display: block;
}



.teachernews {
  width: 23%;
  text-align: center;
  margin-top: 0.25rem;
}

.teachernews a,
.teachernews img {
  width: 100%;
}

.teachernews img {
  height: 1.8rem;
object-fit:cover;
border-radius:20px 0 20px 0;
}

.teachernews a {
  font-size: 0.18rem;
  margin-top: 0.1rem;
  display: block;
}

.teachernews:hover a {
  color: #8b1f12;
}

.phonenav{
  display: none;
}





@media screen and (max-width: 1700px) {
  .logo {
    width: 5rem;
  }
  .nav_menu-item {
    font-size: 0.18rem;
  }
  .topnr {
    max-width: 95%;
  }
  .nr {
    max-width: 90%;
  }
  .toplink a {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 1600px) {
  .nav {
    width: 98%;
  }
  .sousuo {
    width: auto;
  }
  .ycnews a {
    font-size: 0.18rem;
  }
  .bttu {
    height: 4.3rem;
  }
  .ycdh {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 95px;
  }
  .szfac-text-area p {
    font-size: 16px;
    line-height: 36px;
  }
  .toplink p {
    margin-left: 0.15rem;
    margin-right: 0.15rem;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 90px;
  }
  .logo {
    width: 4.5rem;
  }
  .moduletable-banner {
    height: 80vh;
  }
}

@media screen and (max-width: 1300px) {
  html {
    font-size: 85px;
  }
  .centernewsleft {
    width: 7rem;
  }
  .szfac-text-area h3 {
    margin-top: 0.1rem;
  }
  .nyright {
    margin-left: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .bttu {
    height: 4.2rem;
  }
  .zxgkleft {
    width: 5.5rem;
  }
  .teachernews {
    width: 31%;
  }
  .logo {
    width: 5rem;
  }
  .topyc {
    width: 100%;
    flex: auto;
    margin-top: -0.5rem;
  }
  .toplink {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .moduletable-banner {
    height: 60vh;
  }
  .sytop {
    position: relative;
    background-color: #8b1f12;
    height: 2.4rem;
  }
  .topyc {
    width: 100%;
    flex: auto;
    margin-top: -0.2rem;
  }
  .logo {
    width: 6rem;
  }
  .centernewsleft {
    width: 6rem;
  }
  .szfac-thumb-item {
    flex: 0 0 30%;
  }
  .jxhsnews {
    width: 100%;
  }
  .jxhsright {
    margin-left: 0;
    flex: auto;
    margin-top: 0.2rem;
  }
  .jxhs {
    flex-wrap: wrap;
  }
  .xiaoyou {
    margin-top: -0.8rem;
  }
  .flex-direction-nav li a {
    top: 60%;
  }
  .centernewsleft {
    width: 100%;
  }
  .centerright {
    margin-left: 0;
    flex: auto;
  }
  .notice,
  .zsxx,
  .jxpy,
  .xsfz {
    width: 100%;
  }
  .nyleft {
    width: 100%;
  }
  .nyflm {
    width: 40%;
  }
  .nyzlm {
    padding-bottom: 0.3rem;
  }
  .nyzlm ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .nyzlm li {
    width: 48%;
  }
  .nyright {
    margin-left: 0;
    width: 100%;
    flex: auto;
  }
}

@media screen and (max-width: 900px) {
  .topyc {
    display: none;
  }
  .phonenav {
    display: block;
  }
  .sytop {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    position: fixed;
  }
  .banner {
    margin-top: 0;
  }
  .zxgkleft {
    width: 100%;
  }
  .zxgkright {
    display: none;
  }
  .szfac-main-img-box {
    margin-right: 20px;
  }
  .szfac-thumb-item {
    flex: 0 0 88%;
  }
  .footerright {
    width: 40%;
  }
  .teachernews {
    width: 48%;
  }
  .lbnews {
    height: auto;
    line-height: 0.4rem;
    padding-bottom: 0.1rem;
  }
  .lbnews a {
    width: 95%;
    padding-top: 0.1rem;
  }
  .lbnews sj {
    margin-left: 70%;
  }
  .bannerwz a {
    font-size: 0.2rem;
  }


.szfac-text-area{width:100%;margin-left:0;}

.nyflm {width:60%; margin-top:30px;}

.ycdh{display:none;}

}

@media screen and (max-width: 750px) {
  .moduletable-banner {
    height: 35vh;
  }
  .footerleft,
  .footerright {
    width: 100%;
  }
  .footer {
    background-size: auto 100%;
  }
.btn-prev, .btn-next
{top:52%;}

.zxgk{height:7.5rem;}

}



    .mobile-nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 85%; 
      max-width: 300px; 
      height: 100vh;
      background-color: #fff;
      box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
      overflow-y: auto; 
      z-index: 1000;
      transform: translateX(100%); 
      transition: transform 0.3s ease;
    }

    .mobile-nav.show {
      transform: translateX(0);
    }

    .nav-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.3);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .nav-mask.show {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-list {
      width: 100%;
      padding-top: 20px; 
    }

    .nav-item {
      border-bottom: 1px solid #eee;
    }

    .nav-trigger {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      color: #333;
      font-size: 16px;
      font-weight: 500;
      background-color: transparent;
      border: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .nav-trigger:active {
      background-color: #f0f0f0;
    }

    .nav-arrow {
      width: 12px;
      height: 12px;
      border-right: 2px solid #666;
      border-bottom: 2px solid #666;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
    }

    .nav-item.active .nav-arrow {
      transform: rotate(-135deg);
      margin-bottom: 5px;
    }

    .sub-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: #f8f8f8;
    }

    .nav-item.active .sub-nav {
      max-height: 500px;
    }

    .sub-nav-item {
      padding: 12px 20px 12px 30px; 
    }

    .sub-nav-link {
      color: #555;
      font-size: 15px;
      display: block;
      transition: color 0.2s;
    }

    .sub-nav-link:active {
      color: #8b1f12; 
    }
    
    .nav-toggle-btn {
      position: fixed;
      top: 34px;
      right: 40px; 
      width: .5rem;
      height: .5rem;
      line-height: .5rem;
      border-radius: 50%;
      background-color: #8b1f12;
      color: #fff;
      border: none;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
      z-index: 1001; 
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .nav-toggle-btn:active {
      background-color: #8b1f12;
      transform: scale(0.95);
    }

.ycdh span{margin-right:20px;}

#wp_paging_w25{margin-top:20px}

#wp_column_article{margin-top:20px}

.flexslider .mb{height:100%}
.flexslider .ck{height:100%}

.nyzlm ul  .kd{width:100%;}
.nyzlm ul  .ck{width:100%; display:flex;flex-wrap:wrap;}


.subcol_wrap{width:90%; margin-left:10%}
.subcol_wrap  li {line-height:.5rem}
.subcol_wrap  li a{font-size:.16rem;}

