@charset "utf-8";

.nymain .wp {
  width: 14rem;
}

.banner {
  width: 100%;
  position: relative;
}

.banner>img {
  display: block;
  width: 100%;
  min-height: 1.5rem;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 43.33%;
  background: linear-gradient(to bottom, rgba(0, 66, 147, 0.9) 0%, rgba(0, 43, 96, 0) 100%);
  pointer-events: none;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(0, 31, 77, 0) 0%, rgba(0, 43, 96, 0.5) 100%);
  pointer-events: none;
}

.banbox {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  z-index: 1;
}

/* 分页 */

.pagination {
  text-align: center;
  font-size: 0;
  padding-top: 0.7rem;
}

.pagination a {
  display: inline-block;
  border: 1px solid #D4D4D4;
  border-radius: 0.04rem;
  padding: 0 0.12rem;
  height: 0.35rem;
  font-size: 0.14rem;
  line-height: 0.35rem;
  text-align: center;
  color: #666;
  margin: 0 0.07rem;
}

.pagination a.active {
  background: #314DAF;
  color: #fff;
  border: 1px solid #314DAF;
}

.pagination a:hover {
  background: #314DAF;
  color: #fff;
  border: 1px solid #314DAF;
}

.pagination span {
  display: inline-block;
  font-size: 0.14rem;
}

/* 主体 */
.nymain {}

.nymain-bg1 {
  background: url(../images/nybg.png) no-repeat center bottom / 100% auto;
}

.leftNavbox {
  background: #F4F8FF;
}

.leftNav {
  position: relative;
  z-index: 1;
  font-size: 0;
  height: 0.76rem;
  display: flex;
  align-items: center;
}

.leftNav .leftNav-tit {
  margin-right: 0.26rem;
  height: 0.76rem;
  padding-right: 0.6rem;
  position: relative;
}

.leftNav .leftNav-tit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2.6rem;
  right: 0;
  height: 1.1rem;
  background: #314DAF;
  border-radius: 0 0.2rem 0 0;
}

.leftNav .leftNav-tit>h2 {
  font-family: Source Han Serif CN;
  font-size: 0.3rem;
  font-weight: bold;
  line-height: normal;
  letter-spacing: normal;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.leftNav .leftNav-tit>h2::before {
  content: "";
  position: absolute;
  top: -0.05rem;
  left: -0.6rem;
  width: 1.11rem;
  height: 0.43rem;
  background: url(../images/tit-l.png) no-repeat center center / 100% 100%;
  z-index: -1;
  transition: all 0.3s;
}

.leftNav>ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.leftNav>ul>li {
  position: relative;
}

.leftNav>ul>li>span {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.46rem;
  height: 0.46rem;
  background: url(../images/raw-b.png) no-repeat center;
  background-size: 0.09rem auto;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.leftNav>ul>li>a {
  text-align: center;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 0.76rem;
  margin: 0 0.2rem;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}

.leftNav>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 0.03rem;
  background: #314DAF;
  transition: all 0.3s;
}

.leftNav>ul>li.active>a::before,
.leftNav>ul>li:hover>a::before,
.leftNav>ul>li.active>a::after,
.leftNav>ul>li:hover>a::after {
  transform: translateX(-50%) scaleX(1);
}

.leftNav>ul>li>a::after {
  /* content: ""; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.03rem;
  height: 0.03rem;
  border-radius: 50%;
  background: #595757;
  transition: all 0.3s;
}

.leftNav>ul>li.on>a,
.leftNav>ul>li.active>a,
.leftNav>ul>li:hover>a {
  color: #314DAF;
  font-weight: bold;
}

.leftNav ul li a {
  display: block;
}

.leftNav ul li:last-child a {
  border-bottom: none;
}

.leftNav>ul>li.on::before,
.leftNav>ul>li:hover::before {
  display: block;
}

.leftNav ul li.active ul {
  display: block;
}

.leftNav>ul>li>ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  width: 100%;
  min-width: 1.6rem;
  top: 100%;
  background: #fff;
  box-shadow: 0px 0.02rem 0.2rem 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
}

.leftNav>ul>li:hover>ul {
  transform: translateX(-50%) scaleY(1);
  visibility: visible;
  opacity: 1;
}

.leftNav>ul>li>ul>li>a {
  font-size: 0.16rem;
  line-height: 0.3rem;
  padding: 0.1rem;
  text-align: center;
  color: #333;
  margin: 0;
}

.leftNav>ul>li>ul>li:hover>a {
  font-weight: bold;
  background: #314DAF;
  color: #fff;
}

.ny-right {
  min-height: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 1.2rem;
}

/* 位置 */
.position {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #FFFFFF;
}

.position span {
  display: block;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.16rem;
  letter-spacing: normal;
  color: #FFFFFF;
}

.position img {
  display: block;
  height: 0.25rem;
  margin-right: 0.1rem;
}

.position a {
  display: block;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.16rem;
  letter-spacing: normal;
  color: #FFFFFF;
  margin: 0 0.07rem;
  transition: all 0.5s;
}

.position a:hover,
.position a.position-dq {
  font-weight: bold;
}

.gg-tit {}

.gg-tit h3 {
  font-size: 0.38rem;
  font-weight: normal;
  line-height: 0.38rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #000000;
  border-left: 0.06rem solid #E53327;
  padding-left: 0.16rem;
  margin-top: 0.1rem;
}

.gg-tit h4 {
  font-family: ArialHebrew;
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 0.7rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #333333;
}

/* 列表页 */
.text-list {}

.text-list ul li a {
  display: flex;
  align-items: center;
  padding: 0.28rem 0;
  border-top: 1px dashed #C4D1E5;
  position: relative;
  transition: all 0.5s;
}

.text-list ul li:first-child a {
  border-top: 0;
}

.text-list ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 0.04rem;
  background: #F7B045;
  transform: scaleY(0);
  transition: all 0.4s;
}

.text-list ul li a span {
  display: block;
  font-family: Philosopher;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.3rem;
  letter-spacing: normal;
  margin-left: 0.2rem;
}

.text-list ul li a .tx {
  flex: 1;
  min-width: 0;
}

.text-list ul li a p {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0;
  letter-spacing: normal;
  color: #898989;
  transition: all 0.5s;
}

.text-list ul li a h3 {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.3rem;
  letter-spacing: normal;
  transition: all 0.5s;
}

.list ul li {
  line-height: 0.8rem;
  border-bottom: 1px dashed #dcdcdc;
  position: relative;
  z-index: 1;
}

.list ul li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.4rem;
  width: 0;
  background: #314DAF;
  z-index: -1;
  transition: all 0.4s;
}

.list ul li a {
  display: block;
  overflow: hidden;
}

.list ul li a span {
  float: right;
  font-size: 0.16rem;
  padding-left: 0.2rem;
  color: #999;
  transition: all 0.4s;
}

.list ul li a h3 {
  font-size: 0.18rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  position: relative;
  padding-left: 0.3rem;
  transition: all 0.4s;
}

.list ul li a h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.05rem;
  height: 0.05rem;
  border-radius: 50%;
  border: 0.03rem solid #314DAF;
  transition: all 0.4s;
}

.list ul li:hover a h3::after {
  width: 0.09rem;
  height: 0.09rem;
  border: 1px solid #fff;
}

.list ul li:hover a h3,
.list ul li:hover a span {
  color: #fff;
}

/* 内容页 */
.art-main {
  margin-top: 0.28rem;
}

.art-main>.l {
  flex: 1;
  min-width: 0;
}

.art-main .art-tit h3 {
  font-size: 0.26rem;
  font-weight: bold;
  line-height: 1.5;
  color: #314DAF;
  text-align: center;
}

.art-main .art-body {
  padding-top: 0.65rem;
}

.art-main .art-body p {
  text-indent: 2em;
  font-family: Microsoft YaHei !important;
  font-size: 0.2rem !important;
  line-height: 0.36rem !important;
  margin-bottom: 0.3rem !important;
  color: #333 !important;
  text-align: justify;
}

.art-main .art-body img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.art-main .cont-tit .fbt {
  margin-top: 0.25rem;
  background: #F4F8FF;
}

.art-main .cont-tit .fbt .l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.15rem 0.1rem;
}

.art-main .cont-tit .fbt .l>div {
  margin: 0 0.2rem 0.05rem 0.2rem;
  font-size: 0.16rem;
  line-height: 0.26rem;
}

.art-main .cont-tit .fbt .l div img {
  display: inline-block;
  vertical-align: middle;
  max-width: 0.17rem;
  max-height: 0.17rem;
  margin-right: 0.08rem;
}

.art-main .cont-tit .fbt>div.font {
  display: flex;
  align-items: center;
}

.art-main .cont-tit .fbt>div.font span {
  display: block;
  font-size: 0.16rem;
  color: #777;
  margin: 0 0.05rem;
  cursor: pointer;
}

.art-main .cont-tit .fbt>div.font span.on {
  color: #014694;
}

.art-info {
  border-top: 1px dashed #D8D8D8;
  position: relative;
  margin-top: 0.8rem;
  padding-top: 0.26rem;
}

/* .art-info::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 1.2rem;
  height: 3px;
  background: #0068B7;
} */

.pnext {}

.pnext p {
  font-size: 0.2rem;
  line-height: 0.3rem;
}

.pnext p+p {
  margin-top: 0.1rem;
}

.pnext p a {
  color: #333;
}

.pnext p:hover,
.pnext p:hover a {
  color: #314DAF;
}

.art-main .r {
  width: 3.16rem;
  margin-left: 0.65rem;
}

.art-main .r .tit {}

.art-main .r .tit h3 {
  line-height: 0.55rem;
  font-size: 0.28rem;
  font-weight: normal;
  color: #000000;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.art-main .r ul li {
  margin-top: 0.3rem;
}

.art-main .r ul li a {
  display: block;
}

.art-main .r ul li a .pic {
  padding-top: 61.7%;
}

.art-main .r ul li a h3 {
  font-size: 0.18rem;
  font-weight: normal;
  margin-top: 0.1rem;
  text-align: center;
  transition: all 0.5s;
}

.art-main .r ul li:hover a h3 {
  color: #314DAF;
  font-weight: bold;
}

.art-main .r ul li:hover a::after {
  left: 0;
  width: 100%;
}

/* 学校章程 */
.xxzc {}

.xxzc h3 {
  font-size: 0.38rem;
  font-weight: normal;
  line-height: 0.4rem;
  text-align: center;
  letter-spacing: normal;
  color: #0068B7;
}

.xxzc h4 {
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 0.4rem;
  letter-spacing: normal;
  color: #0068B7;
  margin-top: 0.4rem;
  text-align: center;
  margin-bottom: 0.15rem;
}

.xxzc p {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.48rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  text-indent: 2em;
  color: #666666;
}

.xxzc p b {
  color: #0068B7;
}

.hidden-content {
  display: none;
}

.xxzc .more {
  text-align: center;
  font-size: 0.2rem;
  font-weight: normal;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #0068B7;
  text-align: center;
  margin-top: 0.75rem;
  background-image: url();
  background-repeat: no-repeat;
  background-size: 0.22rem auto;
  background-position: center;
  padding-bottom: 0.5rem;
  cursor: pointer;
}

/* 图片列表 */

.img-lists {
  /* overflow: hidden; */
}

.img-lists ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -0.26rem;
}

.img-lists ul li {
  width: 33.333%;
  margin-top: 0.38rem;
}

.img-lists ul li a {
  display: block;
  margin: 0 0.26rem;
}

.img-lists ul li a .pic {
  padding-top: 56.25%;
}

.img-lists ul li a .tx {
  padding: 0.2rem 0;
  text-align: center;
  font-size: 0;
  border: 1px solid #B9B9B9;
  border-top: 0;
  transition: all 0.5s;
}

.img-lists ul li a .tx h3 {
  font-size: 0.2rem;
  font-weight: normal;
  transition: all 0.5s;
}

/*师资队伍*/
.list-ld {}

.list-ld ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-ld ul li {
  width: 48.125%;
  margin-top: 0.5rem;
}

.list-ld ul li a {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(162, 195, 253, 0.5);
  ;
  padding: 0.4rem;
}

.list-ld ul li .sz-pic {
  width: 2.14rem;
  margin-right: 0.36rem;
  position: relative;
  z-index: 1;
}

.list-ld ul li .sz-pic::before {
  content: '';
  position: absolute;
  top: 0.1rem;
  left: -0.1rem;
  right: 0.1rem;
  bottom: -0.1rem;
  background: #314DAF;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.list-ld ul li .pic {
  padding-top: 129.9%;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .list-ld ul li .pic img {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .list-ld ul li:hover .pic img {
    transform: translateX(-50%) scale(1.1);
  }
}

.list-ld ul li .sz-tx {
  flex: 1;
  min-width: 0;
}

.list-ld ul li h3 {
  font-family: sys-semibold;
  font-size: 0.3rem;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #314DAF;
  margin-top: 0.2rem;
  transition: all 0.5s;
}

.list-ld ul li p {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.28rem;
  max-height: 0.84rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  text-transform: uppercase;
  letter-spacing: normal;
  color: #666666;
  margin-top: 0.2rem;
}

.list-ld ul li .xq {
  border-top: 1px solid rgba(13, 66, 167, 0.1);
  padding-top: 0.3rem;
  margin-top: 0.38rem;
  position: relative;
  z-index: 1;
}

.list-ld ul li .xq::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 0;
  border-top: 1px solid #314DAF;
  transition: all 0.5s;
}

.list-ld ul li .xq span {
  display: inline-block;
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.28rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  text-transform: uppercase;
  letter-spacing: normal;
  color: #666666;
  background: url(../images/ld-jt.png) no-repeat right center;
  background-size: 0.22rem auto;
  padding-right: 0.38rem;
}

/* 公司领导 */
.gsld {
  overflow: hidden;
}

.gsld-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
}

.gsld-list li {
  width: 33.3333%;
  padding: 0 0.4rem;
  margin-bottom: 0.5rem;
}

.gsld-list li a {
  display: flex;
  align-items: center;
  background: #F4F8FF;
  border-left: 0.04rem solid #F7B045;
  height: 0.8rem;
  padding: 0 0.3rem;
  transition: all 0.3s;
}

.gsld-list li a .icon {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  border: 1px solid #314DAF;
  position: relative;
  margin-right: 0.15rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.gsld-list li a .icon::after {
  content: "";
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #314DAF;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.gsld-list li a h3 {
  font-size: 0.22rem;
  color: #333;
  font-weight: normal;
  transition: all 0.3s;
}

.gsld-list li a:hover,
.gsld-list li.active a {
  background: #314DAF;
}

.gsld-list li a:hover .icon,
.gsld-list li.active a .icon {
  border-color: #fff;
}

.gsld-list li a:hover .icon::after,
.gsld-list li.active a .icon::after {
  background: #fff;
}

.gsld-list li a:hover h3,
.gsld-list li.active a h3 {
  color: #fff;
  font-weight: bold;
}

/* 师资概况 */
.szgk {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.szgk .tx {
  flex: 1;
  min-width: 0;
}

.szgk .tx p {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.38rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #666666;
  text-indent: 2em;
}

.szgk .r {
  width: 6.22rem;
  margin-left: 0.58rem;
}

.szgk .r ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.szgk .r ul li {
  width: 3.22rem;
  position: relative;
}

.szgk .r ul li::before {
  content: "";
  position: absolute;
  bottom: -0.44rem;
  left: -0.44rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #7DCDF4;
  z-index: 1;
}

.szgk .r ul li:nth-child(2) {
  width: 3.52rem;
  margin-left: -0.52rem;
  margin-top: 0.93rem;
}

.szgk .r ul li:nth-child(2):before {
  content: "";
  position: absolute;
  top: -0.14rem;
  right: -0.14rem;
  bottom: auto;
  left: auto;
  width: 0.2rem;
  height: 0.2rem;
  background: #D64F25;
  z-index: 1;
}

.szgk .r ul li a {
  display: block;
  position: relative;
}

.szgk .r ul li a .pic {
  padding-top: 71.42%;
  border: 0.06rem solid #F0F6FF;
}

.szgk .r ul li:nth-child(2) a .pic {
  padding-top: 71.59%;
}

.szgk .r ul li a .pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  opacity: 0.6;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.szgk .r ul li a h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0.2rem;
  font-size: 0.18rem;
  font-weight: bold;
  line-height: 0.36rem;
  letter-spacing: normal;
  color: #FFFFFF;
}

.szgk .r ul li:first-child a h3 {
  padding: 0.2rem 0.6rem 0.2rem 0.2rem;
}

/* 师资内容 */
.sz-con {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.38rem;
}

.sz-con .pic1 {
  width: 2.3rem;
  margin-left: 0.1rem;
  position: relative;
  z-index: 1;
  margin-right: 0.52rem;
}

.sz-con .pic1::before {
  content: '';
  position: absolute;
  top: 0.1rem;
  left: -0.1rem;
  right: 0.1rem;
  bottom: -0.1rem;
  background: #314DAF;
  z-index: -1;
}

.sz-con .pic1 img {
  display: block;
  width: 100%;
}

.sz-r {
  flex: 1;
  min-width: 0;
  padding-top: 0.32rem;
}

.sz-ty {
  overflow: hidden;
}

.sz-ty h3 {
  font-family: sys-semibold;
  font-size: 0.36rem;
  font-weight: normal;
  color: #314DAF;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(0, 72, 157, 0.1);
}

.sz-ty h3 span {
  font-family: sys-semibold;
  font-size: 0.2rem;
  font-weight: normal;
  margin-left: 0.25rem;
  color: #333333;
}

.sz-ty>div {
  margin-top: 0.32rem;
}

.sz-ty>div p {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.34rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
}

.sz-d {
  position: relative;
  z-index: 1;
}

.sz-box {
  margin-top: 0.75rem;
}

.sz-box h4 {
  font-size: 0;
  padding: 0.15rem 0.2rem;
  background: linear-gradient(90deg, #ECF7FF 7%, rgba(236, 247, 255, 0) 58%);
  border: 1px solid #BFCCE1;
  border-left: 0.04rem solid #314DAF;
}

.sz-box h4 span {
  display: inline-block;
  font-family: sys-semibold;
  font-size: 0.26rem;
  font-weight: normal;
  line-height: 0.3rem;
  color: #314DAF;
}

.sz-box p {
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #666666;
  text-indent: 2em;
  margin-top: 0.34rem;
}

.sz-box .tz {
  margin-top: 0.3rem;
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.sz-box .tz img {
  display: block;
  max-width: 48%;
}

.sz-p p:first-child {
  margin-top: 0;
}

/* 图文列表页  start */
.tw ul li+li {
  margin-top: 0.45rem;
}

.tw ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.2rem 0.4rem 0.2rem 0.2rem;
  background: #F4F8FF;
  position: relative;
  transition: all 0.5s;
}

.tw ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  border-bottom: 0.04rem solid #314DAF;
  transition: all 0.5s;
}

.tw ul li a .pic {
  width: 2.63rem;
  height: 1.65rem;
  padding-top: 0;
  margin-right: 0.36rem;
}

.tw ul li a .tx {
  flex: 1;
  min-width: 0;
}

.tw ul li a .date {
  margin-left: 0.45rem;
  padding-left: 0.45rem;
  font-family: Philosopher;
  text-align: center;
  border-left: 1px solid #BFD3F4;
}

.tw ul li a .date b {
  display: block;
  font-size: 0.34rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #314DAF;
}

.tw ul li a .date span {
  display: block;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  margin-top: 0.09rem;
}

.tw ul li a .tx h3 {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.3rem;
  letter-spacing: normal;
}

.tw ul li a .tx hr {
  display: inline-block;
  border: 0;
  width: 0.4rem;
  height: 0.03rem;
  background: #314DAF;
  margin-top: 0.15rem;
}

.tw ul li a .tx p {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.3rem;
  height: 0.6rem;
  letter-spacing: normal;
  color: #898989;
  margin-top: 0.15rem;
}

/* 组织机构 */
.zzjg {
  margin-top: 0.1rem;
}

.zzjg .tit h3 {
  font-size: 0.38rem;
  font-weight: normal;
  line-height: 0.38rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #000000;
  border-left: 0.06rem solid #E53327;
  padding-left: 0.16rem;
}

.zzjg .k+.k {
  margin-top: 0.8rem;
}

.zzjg .k:first-child>img {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
}

.zzjg .qh-tit {
  margin-top: 0.4rem;
}

.zzjg .qh-tit ul {
  display: flex;
  flex-wrap: wrap;
}

.zzjg .qh-tit ul li {
  padding: 0.15rem 0.56rem;
  font-size: 0.28rem;
  font-weight: normal;
  line-height: 0.42rem;
  letter-spacing: normal;
  color: #595757;
  background: #F3F3F3;
  margin-right: 0.3rem;
  cursor: pointer;
  margin-bottom: 0.2rem;
  transition: all 0.5s;
}

.zzjg .qh-tit ul li:last-child {
  margin-right: 0;
}

.zzjg .qh-tit ul li.on {
  background: #314DAF;
  color: #fff;
}

.zzjg .qh-bd {
  margin-top: 0.2rem;
  position: relative;
  overflow: hidden;
}

.zzjg .qh-bd>ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 8;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.zzjg .qh-bd>ul.on {
  position: relative;
  z-index: 9;
  opacity: 1;
}

.zzjg .qh-bd ul li {
  width: 48%;
}

.zzjg .qh-bd ul li a {
  display: block;
  line-height: 0.74rem;
  border-bottom: 1px solid #DDDDDD;
  font-size: 0.2rem;
  font-weight: normal;
  letter-spacing: normal;

  padding-left: 0.29rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  left: 0;
  transition: all 0.5s;
}

.zzjg .qh-bd ul li:hover a {
  left: 0.05rem;
  border-bottom-color: #314DAF;
}

/* 校园风光 */
.groupbox {
  padding: 0 1.5rem;
  margin-top: 0.5rem;
}

.groupbox .tit ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.groupbox .tit li a {
  display: block;
  width: 2rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  border-radius: 0.25rem;
  border: 1px solid #095885;
  font-family: sys;
  font-size: 0.3rem;
  color: #095885;
  transition: all 0.5s;
}

.groupbox .tit li.on a {
  color: #fff;

  background-size: 100% 100%;
}

.groupbox .tit li+li {
  margin-left: 0.15rem;
}

.groupbox .qh-bd {
  position: relative;
}

.groupbox .qh-bd>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 8;
}

.groupbox .qh-bd>div.on {
  position: relative;
  z-index: 9;
  opacity: 1;
}

.group-big .slick-list {
  /* margin: 0 0.7rem; */
}

.group-big li a {
  display: block;
}

.group-big li a .pic {
  padding-top: 56.69%;
  display: block;
  position: relative;
  overflow: hidden;
}

.group-big li a .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.group-big li a img {
  display: block;
  width: 100%;
}

.group-big .slick-prev,
.group-big .slick-next {
  width: 0.49rem;
  height: 0.7rem;
  opacity: 0.2;
  transition: all 0.3s;
}

.group-big .slick-prev {

  background-size: 100% 100%;
  left: 0;
}

.group-big .slick-next {

  background-size: 100% 100%;
  right: 0;
}

.group-big .slick-prev:hover,
.group-big .slick-next:hover {
  opacity: 1;
}

.group-big .slick-dots {
  margin: 0 0.7rem;
  width: calc(100% - 1.4rem);
  height: 0.6rem;
  line-height: 0.6rem;
  background: rgba(50, 50, 50, 0.5);
  color: #fff;
}

.group-big .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

.group-big .slick-dots li .dot-page {
  display: none;
}

.group-big .slick-dots li.slick-active .dot-page {
  display: block;
}

.group-big .slick-dots li .dot-page span {
  font-family: Arial;
  font-size: 0.26rem;
  padding-right: 0.05rem;
}

.group-big .slick-dots li .dot-page b {
  font-family: Arial;
  font-size: 0.16rem;
  font-weight: normal;
  padding-left: 0.05rem;
}

.group-sml {
  margin-top: 0.15rem;
  overflow: hidden;
}

.group-sml li a {
  display: block;
  margin: 0 0.05rem;
  position: relative;
  z-index: 1;
}

.group-sml li a .tx {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.group-sml li:hover a .tx {
  top: 0;
}

.group-sml li a .tx h3 {
  padding: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.2rem;
  line-height: 0.3rem;
  color: #fff;
}

.group-sml li a .pic {
  padding-top: 56.12%;
  display: block;
  position: relative;
  overflow: hidden;
}

.group-sml li a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.group-big .slick-prev,
.group-big .slick-next {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #e1ccba;
  opacity: 1;
  z-index: 9;
}

.group-big .slick-list {
  /* margin: 0 0.3rem; */
}

.group-big .slick-prev {
  left: -1.5rem;
  background-image: url(../images/s4-prev.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.1rem auto;
}

.group-big .slick-next {
  right: -1.5rem;
  background-color: #095785;
  background-image: url(../images/s4-next.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.1rem auto;
}


/* 公司简介 */
.gsjj {
  margin-top: 0.5rem;
}

.gsjj p {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.32rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  text-indent: 2em;
  margin-bottom: 0.4rem;
}

.gsjj-tit {
  margin-bottom: 0.5rem;
}

.gsjj-tit h3 {
  font-size: 0.26rem;
  font-weight: bold;
  text-align: center;
}

.gsjj-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}

.gsjj-item.right-pic .tx {
  flex: 1;
  min-width: 0;
  margin-right: 0.5rem;
}

.gsjj-item.left-pic .tx {
  flex: 1;
  min-width: 0;
  margin-left: 0.5rem;
}

.gsjj-item .picbox {
  width: 4rem;
  padding-top: 0.14rem;
  padding-right: 0.16rem;
  position: relative;
  z-index: 1;
}

.gsjj-item .picbox::after {
  content: "";
  position: absolute;
  background: #314DAF;
  z-index: -1;
}

.gsjj-item.right-pic .picbox::after {
  top: 0;
  right: 0;
  left: 0.3rem;
  bottom: 0.2rem;
}

.gsjj-item.right-pic .picbox::after {
  left: 0.3rem;
}

.gsjj-item .pic {
  padding-top: 45.19%;
  background: #fff;
}

.gsjj-item p {
  margin-bottom: 0.2rem;
}

.gsjj-item p:last-child {
  margin-bottom: 0;
}

.left-pic .picbox {
  width: 3.06rem;
  padding-left: 0.15rem;
  padding-bottom: 0.14rem;
  padding-right: 0;
  padding-top: 0;
}

.left-pic .picbox .pic {
  padding-top: 118.21%;
}

.gsjj-item.left-pic .picbox::after {
  left: 0;
  bottom: 0;
  top: 0.3rem;
  right: 0.3rem;
}


/* 学校标识 */
.xxbs {}

.xxbs .k+.k {
  margin-top: 1.1rem;
}

.xxbs .tit {
  font-size: 0.38rem;
  font-weight: normal;
  line-height: 0.4rem;
  text-align: center;
  letter-spacing: normal;
  color: #0068B7;
  margin-bottom: 0.75rem;
}

.xxbs .bs-img {
  text-align: center;
}

.xxbs .bs-img img {
  max-width: 100%;
}

.xxbs .k2 .bs-img {
  display: flex;
  justify-content: space-between;
}

.xxbs .k2 .bs-img img {
  display: block;
}

.xxbs .k1 .bs-img img {
  /*width: 5.91rem;*/
  width: 36.93%;
}

.xxbs .k3 .bs-img img {
  /*width: 7.84rem;*/
  width: 49%;
}

.xxbs .k2 .bs-img img:first-child {
  /*width: 2.31rem;*/
  width: 14.43%;
}

.xxbs .k2 .bs-img img:nth-child(2) {
  /*width: 5.94rem;*/
  width: 37.125%;
}

.xxbs .k2 .bs-img img:nth-child(3) {
  /*width: 6.39rem;*/
  width: 39.93%;
}

.xxbs .k p {
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.48rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #666666;
  margin-top: 0.4rem;
  text-indent: 2em;
}

.xxbs .k p b {
  color: #0068B7;
}

.xxbs .fj {
  margin-top: 0.7rem;
}

.xxbs .fj ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.xxbs .fj ul li {
  width: 49%;
}

.xxbs .k3 .fj ul li {
  width: 100%;
}

.xxbs .fj ul li a {
  display: block;
  border: 1px solid #BFCCE1;
  border-left: 4px solid #0068B7;
  font-size: 0.22rem;
  font-weight: normal;
  line-height: 0.36rem;
  padding: 0.24rem;
}

/* 历史沿革 */
.history {
  padding: 0 2rem;
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}

.history-title {
  position: absolute;
  top: 0;
  left: 0;
}

.history-title span {
  display: block;
  font-family: sys-b;
  font-size: 0.58rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: normal;
  color: #0068B7;
}

.history-title span:nth-of-type(even) {
  margin-left: 0.2rem;
}

.history .zy {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.38rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #666666;
  text-indent: 2em;
  position: relative;
  z-index: 2;
}

.lsyg-logo {
  display: block;
  margin: 0 auto;
  width: 1.21rem;
  height: 1.21rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

.lsyg-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.36rem;
  height: 4.36rem;

  background-size: 100% 100%;
  z-index: -1;
}

.lsyg-logo img {
  display: block;
  width: 100%;
}

.history ul {
  padding-top: 0.2rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.history ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  border: 1px solid rgba(121, 153, 206, 0.3);
  z-index: -1;
}

.history ul li {
  width: 50%;
  margin-top: 0.4rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px dashed #7999CE;
}

.history ul li:nth-of-type(even) {
  margin-left: 50%;
}

.history ul li:nth-of-type(odd) a {
  padding-left: 0;
  padding-right: 0.7rem;
}

.history ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding-left: 0.7rem;
}

.history ul li a::before {
  content: '';
  position: absolute;
  bottom: -0.48rem;
  left: -0.22rem;
  width: 0.44rem;
  height: 0.44rem;

  background-size: 100% 100%;
  transition: all 0.5s;
}

.history ul li:nth-of-type(odd) a::before {
  left: auto;
  right: -0.22rem;
}

.history ul li a::after {
  content: '';
  position: absolute;
  bottom: -0.26rem;
  left: 0;
  width: 0;
  border-bottom: 1px solid #D64F25;
  transition: all 0.5s;
}

.history ul li:nth-of-type(odd) a::after {
  left: auto;
  right: 0;
}

.his-year {
  font-family: sys-b;
  font-size: 0.46rem;
  font-weight: normal;
  line-height: 0.46rem;
  letter-spacing: normal;
  color: #0068B7;
  margin-right: 0.1rem;
}

.history ul li:nth-of-type(odd) a {
  justify-content: flex-end;
}

.history ul li:nth-of-type(odd) .his-year {
  order: 2;
  margin-left: 0.1rem;
  margin-right: 0;
}

.his-year span {
  font-size: 0.48rem;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  color: #092C7A;
  opacity: 0.0808;
}

.history ul li h3 {
  flex: 1;
  min-width: 0;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.28rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #666666;
}

.history ul li:nth-of-type(odd) h3 {
  text-align: right;
}

.history .his dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.history .his dd {
  width: calc((100% - 0.48rem*2)/3);
  background: #F0F6FF;
  border: 1px solid #7999CE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  font-weight: normal;
  line-height: 0.26rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  letter-spacing: normal;
  color: #666666;
  padding: 0.25rem 0.44rem;
}

.history .his-zi {
  display: block;
  position: absolute;
  right: -0.84rem;
  top: 0.2rem;
  width: 4.73rem;
}

/* 联系我们 */
.contact {
  margin-top: 0.5rem;
}

.con1 {}

.con1 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.27rem;
}

.con1 ul li {
  width: 33.333%;
}

.con1 ul li .k {
  display: flex;
  align-items: flex-start;
  height: 1.8rem;
  margin: 0 0.27rem;
  background: #FFFFFF;
  border-top: 2px solid #314DAF;
  box-shadow: 0px 0.04rem 0.3rem 0px rgba(0, 0, 0, 0.07);
  padding: 0.3rem;
}

.con1 ul li .k .icon {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.1rem;
  background: #E53327;
  margin-right: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.con1 ul li .k .icon img {
  display: block;
}

.con1 ul li .k .tx {
  flex: 1;
  min-width: 0;
}

.con1 ul li .k .tx>h3 {
  font-size: 0.24rem;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: normal;
}

.con1 ul li .k .tx>h4 {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.28rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: rgba(51, 51, 51, 0.5);
}

.con1 ul li .k .tx .con {
  margin-top: 0.1rem;
}

.con1 ul li .k .tx .con p {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.28rem;
  text-transform: uppercase;
  letter-spacing: normal;
}

.con1 ul li .k .tx .con h3 {
  font-size: 0.32rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: normal;
}

.con1 ul li .k .tx .con h4 {
  font-size: 0.2rem;
  font-weight: normal;
  letter-spacing: normal;
  color: #333333;
}

.map {
  margin-top: 0.6rem;
}

.map img {
  display: block;
  width: 100%;
}

/* 产业布局 */
.cybj {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cybj .qh-tit {
  width: 38%;
}

.cybj .qh-tit ul li {
  padding: 0.2rem;
  transition: all 0.5s;
  cursor: pointer;
}

.cybj .qh-tit ul li+li {
  margin-top: 0.4rem;
}

.cybj .qh-tit ul li h3 {
  font-size: 0.24rem;
  font-weight: normal;
  line-height: 0.24rem;
  letter-spacing: normal;
  transition: all 0.5s;
}

.cybj .qh-tit ul li p {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.26rem;
  letter-spacing: normal;
  color: #6E6E6E;
  margin-top: 0.05rem;
  transition: all 0.5s;
}

.cybj .qh-tit ul li.on {
  border-radius: 0.1rem;
  background: #314DAF;
}

.cybj .qh-tit ul li.on h3 {
  color: #fff;
}

.cybj .qh-tit ul li.on p {
  color: #fff;
}

.cybj .qh-bd {
  width: 59%;
  border-radius: 0.2rem;
  background: #FFFFFF;
  padding: 0.4rem;
  box-shadow: 0px 0.04rem 0.4rem 0px rgba(15, 94, 187, 0.1);
  position: relative;
  overflow: hidden;
}

.cybj .qh-bd>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 8;
  overflow: hidden;
}

.cybj .qh-bd>div.on {
  position: relative;
  z-index: 9;
  opacity: 1;
}

.cybj .qh-bd>div h3 {
  text-align: center;
  font-size: 0.32rem;
  font-weight: normal;
  line-height: 0.32rem;
  letter-spacing: normal;
  color: #222222;
}

.cybj .qh-bd>div>img {
  display: block;
  width: 100%;
  border-radius: 0.1rem;
  margin-top: 0.3rem;
}

.cybj .qh-bd>div .con {
  margin-top: 0.5rem;
}

.cybj .qh-bd>div .con p {
  font-size: 0.18rem;
  font-weight: normal;
  line-height: 0.32rem;
  letter-spacing: normal;
  color: #555555;
}

/* 企业文化 */
.qywh {
  margin-top: 0.34rem;
}

.qywh .con {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.78rem;
}

.qywh .con>div {
  width: 32%;
}

.qywh .con>div+div {
  margin-left: 2%;
}

.qywh ul li a {
  display: block;
  position: relative;
}

.qywh ul li a .pic {
  padding-top: 122.38%;
}

.qywh .con>div:nth-child(2) ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qywh .con>div:nth-child(2) ul li a .pic {
  padding-top: 58.31%;
}

.qywh ul li a .pic::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.qywh ul li a .tx {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0.2rem 0.2rem;
}

.qywh ul li a .tx h3 {
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 0.3rem;
  letter-spacing: normal;
  color: #FFFFFF;
}

.qywh ul li a .tx p {
  font-size: 0.14rem;
  font-weight: normal;
  line-height: 0.24rem;
  letter-spacing: normal;
  color: #FFFFFF;
  opacity: 0.7;
  margin-top: 0.08rem;
}

/* 荣誉资质 */
.ryzz .con {
  position: relative;
}

.ryzz .swiper-container {
  margin-top: 0.72rem;
}

.ryzz .swiper-container ul li {
  padding: 0.2rem 0;
}

.ryzz .swiper-container ul li a {
  display: block;
  transform: scale(0.8);
  transition: all 0.5s;
  background: #FFFFFF;
  box-shadow: 0px 0.1rem 0.3rem 0px rgba(177, 191, 207, 0.3);
  padding: 0.2rem;
}

.ryzz .swiper-container ul li.swiper-slide-active+li+li a {
  transform: scale(1);
  box-shadow: 0px 0.02rem 0.23rem 0px rgba(0, 78, 151, 0.3574);
}

.ryzz .swiper-container ul li.swiper-slide-active+li a {
  transform: scale(0.8) translateX(-0.15rem);
}

.ryzz .swiper-container ul li.swiper-slide-active+li+li+li a {
  transform: scale(0.8) translateX(0.2rem)
}

.ryzz .swiper-container ul li a .pic {
  padding-top: 137.37%;
}

.ryzz .btn {
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid #314DAF;
  box-shadow: 0px 0.04rem 0.2rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 0.1rem auto;
  background-position: center center;
  transition: all 0.5s;
}

.ryzz .btn.prev {
  left: -1rem;

}

.ryzz .btn.next {
  right: -1rem;

}

.ryzz .btn:hover {
  background-color: #314DAF;
}

.ryzz .btn.prev:hover {

}

.ryzz .btn.next:hover {

}



@media screen and (min-width: 1025px) {
  .text-list ul li:hover a {
    background: #FFFFFF;
    box-shadow: 0px 0px 0.14rem 0px rgba(23, 68, 190, 0.23);
    padding: 0.3rem;
  }

  .text-list ul li:hover a::after {
    transform: scaleY(1);
  }

  .text-list ul li:hover a h3 {
    font-weight: bold;
  }

  .text-list ul li:hover a p {
    line-height: 0.26rem;
    margin-top: 0.1rem;
  }

  .tw ul li:hover a {
    background: #FFFFFF;
    box-shadow: 0px 0px 0.14rem 0px rgba(23, 68, 190, 0.23);
  }

  .tw ul li:hover a::after {
    left: 0;
    width: 100%;
  }

  .tw ul li:hover a h3 {
    color: #314DAF;
    font-weight: bold;
  }

  .tw ul li:hover a h3::after {
    background: #F7B045;
  }

  .tw ul li:hover a .date b {
    color: #F8B146;
  }

  .tw ul li:hover a .date span {
    color: #314DAF;
  }

  .img-lists ul li:hover a h3 {
    color: #314DAF;
    font-weight: bold;
  }

  .list-ld ul li:hover .sz-pic::before {
    opacity: 1;
    visibility: visible;
  }

  .list-ld ul li:hover a {
    background: #fff;
    box-shadow: 0 0 0.1rem rgba(39, 76, 143, 0.15);
  }

  .list-ld ul li:hover .xq::after {
    left: 0;
    width: 100%;
  }

  .img-lists ul li:hover a {
    box-shadow: 0px 0.04rem 0.16rem 0px rgba(0, 44, 97, 0.19);
  }

  .img-lists ul li:hover a .tx {
    border-color: transparent;
  }

  .zzjg-box ul li:hover a {
    color: #314DAF;

    border-bottom-color: #314DAF;
  }

  .con1 ul li:hover .k .icon img {
    animation: jello 1.5s infinite linear;
  }

}

@media screen and (max-width: 1024px) {
  .banner::before {
    content: none;
  }

  .lmmc h3 {
    font-size: 0.26rem;
  }

  .lmmc p {
    font-size: 0.15rem;
    margin-top: 0.1rem;
  }

  .nymain-bg1 {
    padding-top: 0.2rem;
  }

  .leftNavbox {
    display: block;
    box-shadow: none;
    border: none;
    background: none;
  }

  .nymain .leftNav {
    display: block;
    width: 100%;
    max-width: inherit;
    height: auto;
    background: none;
    padding-right: 0;
    margin-left: 0;
    margin-top: 0;
  }

  .left-box {
    border-bottom: 0;
  }

  .leftNav .leftNav-tit {
    width: 100%;
    height: auto;
    line-height: inherit;
    margin-top: 0;
    display: block;
    margin-right: 0;
    padding-right: 0;
  }

  .leftNav .leftNav-tit>h2 {
    display: block;
    height: inherit;
    line-height: 0.56rem;
    font-size: 0.2rem;
    text-align: left;
    padding-left: 0.15rem;
    padding-top: 0;
    font-weight: 600;
    background: #314DAF;
    color: #fff;
    padding-bottom: 0;
  }

  .leftNav .leftNav-tit>h2::before {
    left: 0;
    top: 0.08rem;
    width: 0.7rem;
    height: 0.27rem;
  }

  .leftNav .leftNav-tit>h2 span {
    float: right;
    width: 0.5rem;
    height: 0.56rem;
    background: url(../images/sub_left_down2.png) no-repeat center center;
    background-size: 0.14rem auto;
    cursor: pointer;
  }

  .leftNav .leftNav-tit>h2 span.on {
    background: url(../images/sub_left_up2.png) no-repeat center center;
    background-size: 0.14rem auto;
  }

  .leftNav .leftNav-tit::before {
    display: none;
  }

  .leftNav>ul {
    display: none;
    background: #f5f5f5;
  }

  .leftNav>ul>li {
    width: auto;
    padding-left: 0;
  }

  .leftNav>ul>li::before {
    content: none;
  }

  .leftNav>ul>li::after {
    display: none;
  }

  .leftNav>ul>li>a::before {
    content: none;
  }

  .leftNav>ul>li.on>a,
  .leftNav>ul>li.active>a,
  .leftNav>ul>li:hover>a {
    background: none;
    color: #314DAF;
    font-weight: bold;
  }

  .leftNav>ul>li>ul {
    position: static;
    display: none;
    transform: none;
    padding: 0 0.2rem;
    background: none;
    box-shadow: none;
    border-top: 0;
    transition: none;
    visibility: visible;
    opacity: 1;
  }

  .leftNav>ul>li:hover>ul {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .leftNav>ul>li>ul>li>a {
    text-align: left;
    color: #666;
    padding: 0.1rem 0;
  }

  .leftNav>ul>li>ul>li.active>a {
    background: none;
    color: #08988e;
    font-weight: bold;
  }

  .leftNav>ul>li>span {
    display: block;
    transition: all 0.5s;
  }

  .leftNav>ul>li.on>span {
    transform: rotate(90deg);
  }

  .leftNav ul li a {
    font-size: 0.18rem;
    line-height: 0.46rem;
    margin: 0;
    padding: 0 0.2rem;
    color: #333;
    border: 0;
    text-align: left;
  }

  .position {
    margin-top: 0.1rem;
  }

  .position span,
  .position a {
    font-size: 11px;
    line-height: 12px;
    margin: 0 0.04rem;
  }

  .pagination a {
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    margin: 0 3px;
  }

  .pagination {
    padding-top: 0.3rem;
  }

  .ny-right {
    padding-top: 0.2rem;
    padding-bottom: 0.4rem;
  }

  .nymain-bg2::before {
    width: 3rem;
    height: 0.28rem;
  }

  .position>h3 {
    display: none;
  }

  .text-list ul li a {
    padding: 0.2rem 0;
  }

  .text-list ul li a span {
    font-size: 0.18rem;
    width: 1rem;
    text-align: justify;
    /* font-family: none; */
  }

  .text-list ul li a h3 {
    font-size: 0.18rem;
  }

  .text-list ul li a p {
    font-size: 12px;
  }

  .list-ld ul li a {
    padding: 0.2rem;
  }

  .list-ld ul li .sz-pic {
    width: 2.14rem;
    margin-right: 0.2rem;
  }

  .list-ld ul li h3 {
    font-size: 0.22rem;
  }

  .zzjg-box ul li {
    margin-top: 0.2rem;
  }

  .zzjg-box ul {
    margin: 0 -0.1rem;
  }

  .zzjg-box ul li a {
    margin: 0 0.1rem;
    font-size: 0.18rem;
    padding-bottom: 0.2rem;
    background-position: right center;
    padding-right: 0.2rem;
  }

  .zzjg-box {
    margin-bottom: 0.3rem;
  }

  .zzjg-box .k+.k {
    margin-top: 0.3rem;
  }

  .art-main {
    margin-top: 0.2rem;
  }

  .art-main .l {
    flex: none;
    width: 100%;
  }

  .art-main .art-tit h3 {
    font-size: 0.22rem;
  }

  .art-main .cont-tit .fbt .l div img {
    max-width: 0.14rem;
    max-height: 0.14rem;
  }

  .art-main .cont-tit .fbt .l>div {
    font-size: 0.16rem;
    line-height: 0.26rem;
    margin: 0 0.1rem 0.05rem 0.1rem;
  }

  .art-main .cont-tit .fbt {
    margin-top: 0.2rem;
  }

  .art-main .cont-tit .fbt .l {
    padding: 0.1rem;
  }

  .art-main .art-body {
    padding-top: 0.2rem;
  }

  .art-main .art-body p {
    margin-bottom: 0.2rem !important;
    font-size: 0.18rem !important;
    line-height: 0.3rem !important;
  }

  .art-info {
    margin-top: 0.2rem;
  }

  .pnext p {
    width: 100%;
    line-height: 0.26rem;
    font-size: 0.18rem;
  }

  .pnext p+p {
    margin-top: 0.1rem;
  }

  .art-main .r {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .art-main .r .tit h3 {
    line-height: 0.36rem;
    font-size: 0.22rem;
    padding-bottom: 0.1rem;
  }

  .art-main .r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .art-main .r ul li {
    width: 48%;
    margin-top: 0.2rem;
  }

  .groupbox {
    padding: 0 0.3rem;
    margin-top: 0.3rem;
  }

  .group-big .slick-prev,
  .group-big .slick-next {
    width: 0.3rem;
    height: 0.3rem;
  }

  .group-big .slick-prev {
    left: -0.4rem;
  }

  .group-big .slick-next {
    right: -0.4rem;
  }

  .groupbox .tit li a {
    width: 1.4rem;
    height: 0.42rem;
    line-height: 0.42rem;
    font-size: 0.22rem;
  }

  .img-lists {
    overflow: hidden;
  }

  .img-lists ul {
    margin: 0 -0.15rem;
  }

  .img-lists ul li a {
    margin: 0 0.15rem;
  }

  .img-lists ul li a .tx {
    padding: 0.15rem 0;
  }

  .img-lists ul li a .tx h3 {
    font-size: 0.14rem;
    padding: 0 10px;
  }

  .img-lists ul li {
    margin-top: 0.2rem;
  }

  .tw ul li+li {
    margin-top: 0.2rem;
  }

  .tw ul li a {
    padding: 0.2rem;
  }

  .tw ul li a .pic {
    margin-right: 0.25rem;
  }

  .tw ul li a .tx h3 {
    font-size: 0.18rem;
  }

  .tw ul li a .tx hr {
    height: 0.02rem;
  }

  .tw ul li a .date {
    margin-left: 0.25rem;
    padding-left: 0.25rem;
  }

  .tw ul li a .date b {
    font-size: 0.26rem;
  }

  .tw ul li a .date span {
    font-size: 0.18rem;
  }

  .xxzc h3 {
    font-size: 0.26rem;
    line-height: 0.3rem;
  }

  .xxzc h4 {
    font-size: 0.2rem;
    line-height: 0.3rem;
    margin-top: 0.2rem;
    margin-bottom: 0.05rem;
  }

  .xxzc p {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }

  .xxzc .more {
    margin-top: 0.2rem;
    font-size: 0.18rem;
    background-size: 0.18rem auto;
    padding-bottom: 0.4rem;
  }

  .sz-con .pic1 {
    margin-right: 0.2rem;
  }

  .sz-ty h3 {
    font-size: 0.26rem;
    padding-bottom: 0.15rem;
  }

  .sz-ty h3 span {
    font-size: 0.16rem;
    margin-left: 0.15rem;
  }

  .sz-ty>div {
    margin-top: 0.2rem;
  }

  .sz-ty>div p {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }

  .sz-box h4 span {
    font-size: 0.22rem;
    line-height: 0.26rem;
  }

  .sz-box h4 {
    padding: 0.1rem 0.15rem;
  }

  .sz-box p {
    font-size: 0.16rem;
    margin-top: 0.2rem;
  }

  .sz-box {
    margin-top: 0.4rem;
  }

  .xxbs .tit {
    font-size: 0.2rem;
    line-height: 0.24rem;
    margin-bottom: 0.3rem;
  }

  .xxbs .k p {
    font-size: 0.16rem;
    line-height: 0.26rem;
    margin-top: 0.2rem;
  }

  .xxbs .k+.k {
    margin-top: 0.3rem;
  }

  .xxbs .fj {
    margin-top: 0.2rem;
  }

  .xxbs .fj ul li a {
    font-size: 0.16rem;
    line-height: 0.26rem;
    padding: 0.1rem 0.2rem;
  }

  .history {
    padding: 0;
    margin-top: 0;
  }

  .history .his-zi {
    right: -10px;
    width: 2.73rem;
  }

  .history-title {
    text-align: center;
    width: 100%;
    position: static;
    margin-bottom: 0.2rem;
  }

  .history-title span {
    display: inline-block;
    margin-left: 0 !important;
    font-size: 0.26rem;
  }

  .history .zy {
    font-size: 0.16rem;
    line-height: 0.3rem;
  }

  .history ul li h3 {
    font-size: 0.16rem;
  }

  .his-year {
    font-size: 0.24rem;
    line-height: 0.3rem;
  }

  .history ul li {
    margin-top: 0.3rem;
    padding-bottom: 0.1rem;
  }

  .history ul li a::before {
    bottom: -0.27rem;
    left: -0.17rem;
    width: 0.34rem;
    height: 0.34rem;
  }

  .history ul li:nth-of-type(odd) a::before {
    right: -0.17rem;
  }

  .history ul li a {
    padding-left: 0.3rem;
  }

  .history ul li:nth-of-type(odd) a {
    padding-right: 0.3rem;
  }

  .history .his dl {
    margin-top: 0.3rem;
  }

  .history .his dd {
    font-size: 0.16rem;
    padding: 0.15rem 0.2rem;
  }

  .lsyg-logo {
    width: 1rem;
    height: 1rem;
    margin-top: 0.3rem;
  }

  .lsyg-logo::before {
    width: 3.36rem;
    height: 3.36rem;
  }

  .zzjg-box .k>h3 {
    font-size: 0.22rem;
    padding-left: 0.15rem;
  }

  .zzjg-box .ny-tit {
    margin-bottom: 0.2rem;
  }

  .list-ld ul li {
    margin-top: 0.25rem;
  }

  .contact {
    margin-top: 0.2rem;
  }

  .con1 ul li {
    width: 100%;
  }

  .con1 ul li+li {
    margin-top: 0.2rem;
  }

  .con1 ul {
    margin: 0;
  }

  .con1 ul li .k {
    margin: 0;
    height: auto;
    padding: 0.2rem;
  }

  .con1 ul li .k .icon {
    width: 0.46rem;
    height: 0.46rem;
    margin-right: 0.2rem;
  }

  .con1 ul li .k .icon img {
    max-width: 0.2rem;
    max-height: 0.2rem;
  }

  .con1 ul li .k .tx .con h3 {
    font-size: 0.24rem;
  }

  .map {
    margin-top: 0.3rem;
  }

  .gg-tit h4 {
    font-size: 0.4rem;
    line-height: 0.4rem;
  }

  .gg-tit h3 {
    font-size: 0.24rem;
    line-height: 0.24rem;
    border-left: 0.04rem solid #E53327;
    padding-left: 0.14rem;
  }

  .gsjj {
    margin-top: 0.2rem;
  }

  .gsjj p {
    font-size: 0.18rem;
    line-height: 0.3rem;
    margin-bottom: 0.2rem;
  }

  .gsjj-tit {
    margin-bottom: 0.2rem;
  }

  .gsjj-tit h3 {
    font-size: 0.22rem;
  }

  .gsjj-item {
    flex-direction: column;
    margin-bottom: 0.3rem;
  }

  .gsjj-item.right-pic {
    flex-direction: column-reverse;
  }

  .gsjj-item.right-pic .tx {
    margin-right: 0;
    margin-top: 0.3rem;
  }

  .gsjj-item.left-pic .tx {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .gsjj-item .picbox {
    width: 100%;
  }

  .zzjg .tit h3 {
    font-size: 0.26rem;
    line-height: 0.26rem;
    border-left: 0.04rem solid #E53327;
    padding-left: 0.14rem;
  }

  .zzjg .k:first-child>img {
    margin-top: 0.3rem;
  }

  .zzjg .k+.k {
    margin-top: 0.3rem;
  }

  .zzjg .qh-tit ul li {
    font-size: 0.18rem;
    line-height: 0.3rem;
    padding: 0.1rem 0.15rem;
    margin-right: 0.15rem;
  }

  .zzjg .qh-bd {
    margin-top: 0;
  }

  .zzjg .qh-bd ul li a {
    line-height: 0.6rem;
    font-size: 0.18rem;
    background-size: 0.07rem auto;
    padding-left: 0.27rem;
  }

  .cybj .qh-tit {
    width: 100%;
  }

  .cybj .qh-tit ul li {
    padding: 0.15rem;
  }

  .cybj .qh-tit ul li+li {
    margin-top: 0;
  }

  .cybj .qh-tit ul li h3 {
    font-size: 0.2rem;
    line-height: 0.2rem;
  }

  .cybj .qh-bd {
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.2rem 0.15rem 0.15rem;
  }

  .cybj .qh-bd>div h3 {
    font-size: 0.22rem;
    line-height: 0.22rem;
  }

  .cybj .qh-bd>div>img {
    margin-top: 0.2rem;
  }

  .cybj .qh-bd>div .con {
    margin-top: 0.2rem;
  }

  .qywh {
    margin-top: 0.2rem;
  }

  .qywh .con {
    margin-top: 0.3rem;
  }

  .qywh ul li a .tx {
    padding: 0 0.15rem 0.1rem;
  }

  .qywh ul li a .tx h3 {
    font-size: 0.18rem;
  }

  .ryzz .swiper-container {
    margin-top: 0.1rem;
  }

  .ryzz .btn {
    width: 0.38rem;
    height: 0.38rem;
    background-size: 0.07rem auto;
  }

  .ryzz .btn.prev {
    left: 0;
  }

  .ryzz .btn.next {
    right: 0;
  }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 768px) {
  .ny-right {
    min-height: inherit;
  }

  .list ul li {
    line-height: 0.7rem;
  }

  .img-lists ul li {
    width: 50%;
  }

  .xbxx {
    padding-top: 0;
  }

  .xbxx ul li a {
    padding: 15px 10px;
  }

  .xbxx ul li a h3 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .xbxx ul li a p {
    font-size: 14px;
    line-height: 26px;
    height: 72px;
    padding: 0;
  }

  .xbxx ul li a div span {
    font-size: 12px;
  }

  .xbxx ul li a div img {
    height: 14px;
  }

  .leftNav>h2 img {
    height: 20px;
  }

  .list ul li a h3 {
    font-size: 0.2rem;
  }

  .list ul li a span {
    font-size: 0.18rem;
  }

  .zzjg-box {
    margin-top: 0;
  }

  .zzjg-box ul {
    margin: 0;
  }

  .zzjg-box ul li {
    width: 100%;
  }

  .zzjg-box ul li a {
    margin: 0;
    height: auto;
  }

  .zzjg-box ul li a::before {
    left: 0.15rem;
  }

  .zzjg-box ul li a::after {
    right: 0.15rem;
  }

  .szgk .tx {
    flex: none;
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .szgk .r {
    width: 100%;
    margin-left: 0;
  }

  .szgk .r ul li::before {
    content: none !important;
  }

  .szgk .r ul li {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .szgk .r ul li:nth-child(2) {
    margin-top: 0.2rem;
  }

  .szgk .r ul li a h3 {
    padding: 0.2rem !important;
  }

  .list-ld ul li {
    width: 100%;
  }

  .ryzz .swiper-container ul li {
    padding: 0;
  }

  .ryzz .swiper-container ul li a {
    transform: scale(1) !important;
    box-shadow: none !important;
    padding: 0.1rem;
  }
}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 480px) {
  .ny-right {
    padding-top: 0;
    padding-bottom: 0.5rem;
  }

  .text-list ul li a p {
    margin-top: 0.05rem;
  }

  .img-lists ul {
    margin: 0 -0.1rem;
  }

  .img-lists ul li a {
    margin: 0 0.1rem;
  }

  .img-lists ul li a>img {
    height: 100px;
  }

  .leftNav>.box>ul>li>ul>li>a {
    font-size: 12px;
  }

  .list-ld ul li a {
    padding: 0.1rem;
  }

  .list-ld ul li .sz-pic {
    width: 100%;
    margin-right: 0;
  }

  .list-ld ul li .sz-tx {
    flex: none;
    width: 100%;
  }

  .list-ld ul li p {
    max-height: inherit;
  }

  .list-ld ul li .xq {
    padding-top: 0.2rem;
    margin-top: 0.2rem;
  }

  .tw ul li a {
    /* align-items: flex-start; */
  }

  .tw ul li a .pic {
    width: 100%;
    height: auto;
    padding-top: 62.73%;
    margin-right: 0;
    margin-bottom: 0.15rem;
  }

  .tw ul li a .tx {
    flex: none;
    width: 100%;
  }

  .tw ul li a .date {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
  }

  .tw ul li a .date span {
    margin-top: 0;
    margin-left: 0.15rem;
    position: relative;
  }

  .tw ul li a .date span::before {
    content: "/";
    position: absolute;
    top: 50%;
    left: -0.1rem;
    transform: translateY(-50%);
    font-family: Arial;
    font-size: 0.18rem;
    line-height: 0.18rem;
    color: rgba(0, 0, 0, 0.5);
  }

  .sz-con .pic1 {
    margin: 0 auto;
  }

  .sz-r {
    flex: none;
    width: 100%;
    margin-top: 0.1rem;
  }

  .history .his dd {
    width: 100%;
  }

  .history .his dd+dd {
    margin-top: 0.2rem;
  }

  .history ul li a {
    display: block;
  }

  .history ul li h3 {
    margin-top: 0.05rem;
  }

  .history ul li:nth-of-type(odd) .his-year {
    text-align: right;
  }

  .sz-con {
    margin-top: 0.15rem;
  }

  .con1 ul li .k .tx>h3 {
    font-size: 0.22rem;
  }

  .gg-tit h4 {
    font-size: 0.3rem;
    line-height: 0.3rem;
  }

  .gg-tit h3 {
    font-size: 0.2rem;
    line-height: 0.2rem;
  }

  .zzjg {
    margin-top: 0.25rem;
  }

  .zzjg .qh-tit {
    margin-top: 0.2rem;
  }

  .zzjg .qh-tit ul li {
    line-height: 0.26rem;
    padding: 0.05rem 0.1rem;
    margin-right: 0.15rem;
    margin-bottom: 0.15rem;
  }

  .zzjg .qh-bd ul li {
    width: 100%;
  }

  .qywh .con>div {
    width: 100%;
  }

  .qywh .con>div+div {
    margin-left: 0;
    margin-top: 0.2rem;
  }

  .qywh .con>div:nth-child(2) ul li+li {
    margin-top: 0.2rem;
  }

  .ryzz {
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 374px) {
  .img-lists ul li a>img {
    height: 84px;
  }

}

@media screen and (max-width: 1024px) {
  .gsld-list {
    margin: 0 -0.2rem;
  }

  .gsld-list li {
    width: 50%;
    margin-bottom: 0.2rem;
    padding: 0 0.2rem;
  }
  .gsld-list li a h3{font-size: 0.18rem;}
}

@media screen and (max-width: 640px) {
  .gsld-list li {
    width: 100%;
  }
}