@charset "utf-8";

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner>img {
  display: block;
  width: 100%;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(252deg, #0045ac30 16%, #0045ac00 40%, #12b07849 66%, #008758da 90%);
  background: -ms-linear-gradient(252deg, rgba(0, 69, 172, 0.19) 20%, rgba(0, 135, 88, 0.85) 80%);
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.ban-tit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.44rem;
}

.ban-tit .titbox {}

.ban-tit h3 {
  font-family: Alimama Agile VF;
  font-size: 0.46rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0px 0.03rem 0.06rem rgba(0, 47, 117, 0.6);
  margin-left: 0.37rem;
}

.ban-tit h3::after {
  content: '';
  display: block;
  width: 1rem;
  height: 0.05rem;
  background: #fff;
  margin-top: 0.2rem;
}


/* 分页 */

.pagination {
  text-align: center;
  font-size: 0;
  padding-top: 0.7rem;
}

.pagination a {
  display: inline-block;
  border: 1px solid #dcdcdc;
  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: #14B2CC;
  color: #fff;
  border: 1px solid #14B2CC;
}

.pagination a:hover {
  background: #14B2CC;
  color: #fff;
  border: 1px solid #14B2CC;
}

.pagination span {
  display: inline-block;
  font-size: 0.14rem;
}

/* 主体 */
.nymain {
  background: url(../images/ny-mainbg.png) no-repeat left top / 55% auto;
}

.left-box {
  background: rgba(0, 132, 154, 0.1);
  position: relative;
  z-index: 2;
}

.nymain .leftNav {
  position: relative;
  z-index: 1;
  font-size: 0;
  margin-left: 2.27rem;
}

.nymain .leftNav .leftNav-tit {
  /* padding-bottom: 0.9rem; */
  display: none;
}

.nymain .leftNav .leftNav-tit>h2 {
  font-family: sys-b;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 0.4rem;
  color: #fff;
}

.nymain .leftNav .box {
  display: flex;
  justify-content: space-between;
}

.nymain .leftNav>.box>ul {
  display: flex;
  position: relative;
  z-index: 1;
}

.nymain .leftNav>.box>ul>li {
  position: relative;
}

.nymain .leftNav>.box>ul>li>span {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.56rem;
  height: 0.56rem;
  background: url(../images/raw-b.png) no-repeat center;
  background-size: 0.09rem 0.17rem;
  cursor: pointer;
  display: none;
}

.nymain .leftNav>.box>ul>li>a {
  font-size: 0.18rem;
  line-height: 0.3rem;
  margin: 0 0.25rem;
  overflow: hidden;
  position: relative;
  padding: 0.25rem 0;
  transition: all 0.4s;
}

.nymain .leftNav>.box>ul>li>a::after {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 0.03rem solid #fff;
  transform: scaleX(0);
  transition: all 0.4s;
}

.nymain .leftNav>.box>ul>li:hover>a,
.nymain .leftNav>.box>ul>li.on>a {
  font-weight: 700;
  color: #14B2CC;
}

.nymain .leftNav>.box>ul>li:hover>a::after,
.nymain .leftNav>.box>ul>li.on>a::after {
  transform: none;
}

.nymain .leftNav>.box>ul>li:hover>a::before,
.nymain .leftNav>.box>ul>li.on>a::before {
  transform: translateX(-50%) translateY(0);
}

.nymain .leftNav ul li a {
  display: block;
}

.nymain .leftNav ul li:last-child a {
  border-bottom: none;
}

.nymain .leftNav>.box>ul>li.on::before,
.nymain .leftNav>.box>ul>li:hover::before {
  display: block;
}

.nymain .leftNav .box ul li.active ul {
  display: block;
}

.nymain .leftNav ul li a:hover {
  background-position: 0.31rem center;
}

.nymain .leftNav>.box>ul>li>ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  width: 100%;
  top: 100%;
  background: #fff;
  padding: 0.1rem 0;
  box-shadow: 0 0.1rem 0.15rem 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
}

.nymain .leftNav>.box>ul>li:hover>ul {
  transform: translateX(-50%) scaleY(1);
  visibility: visible;
  opacity: 1;
}

.nymain .leftNav>.box>ul>li>ul>li>a {
  font-size: 0.16rem;
  line-height: 0.26rem;
  padding: 0.07rem 0.1rem;
  color: #666666;
  text-align: center;
  margin: 0;
}

.nymain .leftNav>.box>ul>li>ul>li:hover>a {
  color: #14B2CC;
  font-weight: bold;
}

.ny-right {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
  min-height: 5rem;
}

.position {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.position>h3 {
  font-size: 0.3rem;
  font-weight: bold;
  color: #14B2CC;
}

.position span {
  color: #A4A4A4;
  font-size: 0.16rem;
  vertical-align: middle;
}

.position img {
  height: 0.14rem;
  vertical-align: middle;
  margin-right: 0.05rem;
}

.position a {
  font-size: 0.16rem;
  color: #A4A4A4;
  margin: 0 0.05rem;
  vertical-align: middle;
  transition: all 0.5s;
}

.position a:hover,
.position a.position-dq {
  color: #14B2CC;
}

.gg-tit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gg-tit::before {
  content: '';
  display: block;
  width: 1.33rem;
  height: 0.24rem;
  background: url(../images/gg-titxl.png) no-repeat center;
  background-size: 100% 100%;
}

.gg-tit::after {
  content: '';
  display: block;
  width: 1.33rem;
  height: 0.24rem;
  background: url(../images/gg-titxr.png) no-repeat center;
  background-size: 100% 100%;
}

.gg-tit h3 {
  font-family: sys-b;
  font-size: 0.32rem;
  font-weight: bold;
  line-height: 0.4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 0.22rem;
}

.gg-tit h3::before {
  content: '';
  position: absolute;
  top: -0.13rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.66rem;
  height: 0.66rem;
  background: linear-gradient(180deg, #DAE4F6 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  z-index: -1;
}

.ny-rk {
  padding-left: 2.63rem;
  position: relative;
}

.ny-lx {
  width: 2.27rem;
  position: absolute;
  left: 0;
  top: -1.5rem;
  bottom: -1rem;
}

.ny-lx img {
  display: block;
  width: 100%;
}

.ny-lx::before {
  content: '';
  position: absolute;
  top: 1.14rem;
  left: 50%;
  bottom: 0;
  border-left: 1px solid rgba(20, 178, 204, 0.2);
}

.ny-lx::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 5.5rem;
  background: linear-gradient(90deg, #74e856 0%, #0aa7e1 99%);
}

/* 列表页 */
.text-list {}

.text-list ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(73, 34, 172, 0.1);
  position: relative;
  left: 0;
  transition: all 0.5s;
}

.text-list ul li a .date {
  text-align: center;
  width: 0.98rem;
  height: 0.9rem;
  font-family: Georgia;
  background: rgba(0, 132, 154, 0.1);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  position: relative;
  z-index: 1;
}

.text-list ul li a .date b {
  display: block;
  font-size: 0.36rem;
  font-weight: normal;
  color: #14B2CC;
}

.text-list ul li a .date span {
  display: block;
  font-size: 0.16rem;
  font-weight: normal;
  color: #14B2CC;
}

.text-list ul li a .tx {
  flex: 1;
  min-width: 0;
  padding-right: 1rem;
  position: relative;
  z-index: 1;
}

.text-list ul li a .tx::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.3rem;
  width: 0.26rem;
  height: 0.12rem;
  background: url(../images/text-jt1.png) no-repeat center;
  background-size: 100% 100%;
}

.text-list ul li a h3 {
  font-size: 0.2rem;
  line-height: 0.32rem;
  transition: all 0.5s;
}

.text-list ul li a p {
  font-size: 0.16rem;
  line-height: 0.28rem;
  max-height: 0.56rem;
  margin-top: 0.15rem;
  color: #666666;
  transition: all 0.5s;
}

.text-list ul li:hover a {
  padding: 0.32rem 0.2rem;
  background: linear-gradient(251deg, #14b2cc 9%, #55d47f 88%);
}

.text-list ul li:hover a .date {
  background: #ffffff;
}

.text-list ul li:hover a .date b,
.text-list ul li:hover a .date span {
  color: #14B2CC;
}

.text-list ul li:hover a h3 {
  font-weight: bold;
  color: #fff;
}

.text-list ul li:hover a p {
  color: #fff;
}

.text-list ul li:hover a .tx::after {
  background-image: url(../images/text-jt2.png);
}

.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: #004dca;
  z-index: -1;
  transition: all 0.4s;
}

.list ul li:hover::after {
  right: -0.4rem;
  width: 100%;
  width: calc(100% + 0.8rem);
}

.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 #004dca;
  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 {}

.art-main .art-tit h3 {
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.5rem;
  text-align: center;
}

.art-main .art-body {
  padding-top: 0.3rem;
   font-size: 0.18rem;
  line-height: 0.36rem;

}
.art-main .art-body h6{
    font-size:0.2rem;
    line-height:0.3rem;
    color: #2f78d2;
    text-align: center;
}
.art-main .art-body p {
  text-indent: 2em;
  font-family: "微软雅黑" !important;
  font-size: 0.18rem !important;
  line-height: 0.36rem !important;
  margin-bottom: 0.3rem !important;
  text-align: justify;
}

.art-main .art-body img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}
.art-main .art-body table p{
   text-indent: 0em;
    margin-bottom: 0!important;
}
.art-main .cont-tit .fbt {
  font-size: 0.16rem;
  color: #9E9E9E;
  text-align: center;
  background: #F7F7F7;
  margin-top: 0.17rem;
  padding: 0.07rem;
}

.art-main .cont-tit .fbt .l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.art-main .cont-tit .fbt .l>div {
  margin: 0 0.2rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #8D8D8D;
}

.art-main .cont-tit .fbt .l div img {
  display: inline-block;
  vertical-align: middle;
  max-width: 0.25rem;
  max-height: 0.21rem;
  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: #10348F;
}

.art-info {
  border-top: 1px dashed #D8D8D8;
  margin-top: 0.4rem;
}

.pnext {
  margin-top: 0.25rem;
  font-size: 0.18rem;
}

.pnext p {
  line-height: 0.24rem;
  /* color: #14B2CC; */
}

.pnext p+p {
  margin-top: 0.2rem;
}

.pnext p:hover,
.pnext p:hover a {
  color: #14B2CC;
  background-image: -webkit-linear-gradient(93deg, #14B2CC 0%, #2C21E4 125%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* 概况 */
.art-main .art-body {
  padding-top: 0.3rem;
}

.jj1 {
  overflow: hidden;
}

.jj1 img {
  float: left;
  display: block;
  width: 7.51rem;
  margin-right: 0.7rem !important;
}

.jj1 .tit {
  font-size: 0.32rem;
  font-weight: normal;
  line-height: 0.5rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: #2C2C2C;
  margin-top: 0.1rem;
}

.jj1 hr {
  display: inline-block;
  width: 0.94rem;
  height: 0.03rem;
  background: linear-gradient(90deg, #14B2CC 4%, #2C21E4 125%);
  border: 0;
  margin-bottom: 0.4rem;
  margin-top: 0.24rem;
}

.art-jj p {
  line-height: 0.34rem !important;
  color: #666666;
}

/* 图片列表 */
.img-list1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.img-list1 ul:first-child {
  width: 65.81%;
}

.img-list1 ul:first-child li .pic {
  padding-top: 56.31%;
}

.img-list1 ul li a {
  display: block;
  position: relative;
  z-index: 1;
}

.img-list1 ul:first-child li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.61rem;
  background: url(../images/bf.png) no-repeat;
  background-size: 100% 100%;
}

.img-list1 ul li a .pic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.img-list1 ul li a>div.info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.15rem 0;
  font-size: 0;
  transition: all 0.4s;
}

.img-list1 ul li a>div.info p {
  color: #fff;
  font-size: 0.18rem;
  padding: 0 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.img-list1 ul:nth-child(2) {
  width: 31.68%;
}

.img-list1 ul:nth-child(2) li .pic {
  padding-top: 56.41%;
}

.img-list1 ul:nth-child(2) li+li {
  margin-top: 0.2rem;
}

.img-lists {
  overflow: hidden;
}

.img-lists h3 {
  text-align: center;
  font-family: sys;
  font-size: 0.38rem;
}

.img-lists ul {
  overflow: hidden;
  padding-bottom: 0.1rem;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.img-lists ul li {
  float: left;
  width: 30.333%;
  margin: 0.34rem 1.5% 0 1.5%;
  border: 1px solid #eee;
  transition: all 0.4s;
}

.img-lists ul li:hover {
  box-shadow: 0 0 0.1rem rgba(51, 51, 51, 0.16);
  transform: translateY(-10px);
}

.img-lists ul li a {
  display: block;
  width: 100%;
}

.img-lists ul li a .pic {
  padding-top: 69.33%;
}

.img-lists ul li a .pic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.img-lists ul li a>div.info {
  padding: 0.15rem 0;
  font-size: 0;
  transition: all 0.4s;
}

.img-lists ul li a>div.info p {
  font-size: 0.18rem;
  padding: 0 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*领导*/
.list-ld {}

.list-ld ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-ld ul li {
  width: 48.375%;
  margin-top: 0.6rem;
}

.list-ld ul li a {
  display: flex;
  flex-wrap: wrap;
  background: #FFFFFF;
  border: 1px solid rgba(20, 178, 204, 0.2);
  padding: 0 0.28rem 0.28rem 0;
}

.list-ld ul li .sz-pic {
  width: 2.07rem;
  position: relative;
  margin-top: -0.28rem;
  margin-left: -1px;
}

.list-ld ul li .pic {
  padding-top: 119.32%;
  border-radius: 0 0.2rem 0 0;
}

.list-ld ul li .sz-tx {
  flex: 1;
  min-width: 0;
  padding: 0.3rem 0 0 0.45rem;
  transition: all 0.4s;
}

.list-ld ul li h3 b {
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 0.18rem;
  letter-spacing: normal;
  color: #14B2CC;
  margin-right: 0.2rem;
}

.list-ld ul li h3 span {
  font-size: 0.14rem;
  font-weight: 350;
  line-height: 0.14rem;
  letter-spacing: normal;
  color: #333333;
}

.list-ld ul li .con {
  padding-top: 0.08rem;
}

.list-ld ul li .con>p {
  margin-top: 0.14rem;
  font-size: 0.16rem;
  font-weight: 350;
  line-height: 0.27rem;
  letter-spacing: normal;
}

.list-ld ul li .con>p span {
  color: #14B2CC;
}

.list-ld ul li .con>p:first-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list-ld ul li .con>p:nth-child(2) {
  max-height: 0.54rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.list-ld ul li:hover a {
  background: linear-gradient(251deg, rgb(20, 178, 204) 9%, rgb(85, 212, 127) 88%);
}

.list-ld ul li:hover h3 b {
  color: #fff;
}

.list-ld ul li:hover h3 span {
  color: #FFFFFF;
}

.list-ld ul li:hover .con>p,
.list-ld ul li:hover .con>p span {
  color: #FFFFFF;
}

/* 现任领导 */
.xrld {}

.xrld ul {}

.xrld ul li {
  padding: 0 0.25rem 0.22rem 0.25rem;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.xrld ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFFFFF;
  padding-right: 0.2rem;
}

.xrld ul li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: #14B2CC;
  background-size: 100% 30%;
  z-index: -1;
}

.xrld ul li a .sz-pic {
  width: 4.98rem;
  margin-right: 0.6rem;
}

.xrld ul li a .sz-pic .pic {
  padding-top: 66.66%;
}

.xrld ul li a .sz-tx {
  flex: 1;
  min-width: 0;
  padding-top: 0.49rem;
}

.xrld ul li a .sz-tx h3 {
  font-size: 0.24rem;
  font-weight: bold;
  color: #14B2CC;
}

.xrld ul li a .sz-tx h3 span {
  vertical-align: middle;
  font-size: 0.18rem;
  line-height: 0.25rem;
  color: #474747;
  margin-left: 0.34rem;
}

.xrld ul li a .sz-tx p {
  font-size: 0.18rem;
  line-height: 0.34rem;
  text-align: justify;
  color: #474747;
  margin-top: 0.27rem;
}

/* 师资内容 */
.sz-con {
  margin-top: 0.57rem;
}

.sz-con .pic1 {
  position: relative;
  z-index: 1;
  padding-left: 0.1rem;
  padding-bottom: 0.1rem;
}

.sz-con .pic1::before {
  content: '';
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  left: 0;
  bottom: 0;
  background: #14B2CC;
  z-index: -1;
}

.sz-con .pic1 img {
  display: block;
  width: 1.8rem;
  max-width: 100%;
}

.sz-t {
  margin-top: 0.26rem;
}

.sz-ty {
  overflow: hidden;
  padding-left: 0.5rem;
}

.sz-ty h3 {
  font-size: 0.3rem;
  font-weight: normal;
  color: #14B2CC;
}

.sz-ty>div {
  margin-top: 0.16rem;
}

.sz-ty>div p {
  font-size: 0.18rem;
  line-height: 0.44rem;
  color: #666666;
  background: url(../images/leftNav-q.png) no-repeat left 0.2rem;
  background-size: 0.05rem auto;
  padding-left: 0.25rem;
}

.sz-d {
  position: relative;
  z-index: 1;
}

.sz-d::before {
  content: '';
  position: absolute;
  top: 0.15rem;
  bottom: 0;
  left: 0.15rem;
  border-left: 1px solid rgba(13, 66, 167, 0.1);
  z-index: -1;
}

.sz-box {
  margin-top: 0.5rem;
}

.sz-box h4 {
  font-size: 0;
  padding-left: 0.8rem;
  margin-bottom: 0.3rem;
  background-image: url(../images/sz-dot.png);
  background-repeat: no-repeat;
  background-size: 0.29rem auto;
  background-position: left center;
}

.sz-box h4 strong {
  display: inline-block;
  font-size: 0.26rem;
  font-weight: bold;
  color: #14B2CC;
  text-indent: 0;
}

.sz-box p {
  font-size: 0.16rem;
  line-height: 0.34rem;
  color: #666666;
  padding-left: 0.8rem;
}

.sz-p p {
  /* text-indent: 2em; */
  margin-top: 0.3rem;
}

.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;
  background: #FFFFFF;
  box-shadow: 0px 0.04rem 0.1rem 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.tw ul li a .pic {
  width: 3.7rem;
  height: 2.4rem;
  padding-top: 0;
}

.tw ul li a .tx {
  flex: 1;
  min-width: 0;
  padding: 0.32rem 0.3rem 0 0.68rem;
  transition: all 0.5s;
}

.tw ul li a .tx .date {
  font-size: 0.16rem;
  font-weight: normal;
  line-height: 0.26rem;
  letter-spacing: normal;
  color: #888888;
  margin-top: 0.17rem;
  transition: all 0.5s;
}

.tw ul li a .tx h3 {
  font-size: 0.2rem;
  line-height: 0.3rem;
  height: 0.6rem;
  transition: all 0.5s;
}

.tw ul li a .tx .b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.14rem;
}

.tw ul li a .tx .b p {
  flex: 1;
  min-width: 0;
  font-size: 0.16rem;
  line-height: 0.28rem;
  height: 0.52rem;
  color: #555555;
  transition: all 0.5s;
}

.tw ul li a .tx .b .gd {
  width: 0.57rem;
  height: 0.57rem;
  margin-left: 0.3rem;
  background: url(../images/gd1.png) no-repeat center center / 100% 100%;
  transition: all 0.5s;
}

.tw ul li:hover a .tx {
  background: url(../images/tw-bg.png) no-repeat right center / cover;
}

.tw ul li:hover a .date {
  color: #fff;
}

.tw ul li:hover a .tx h3 {
  color: #fff;
  font-weight: bold;
}

.tw ul li:hover a .tx .b p {
  color: #fff;
}

.tw ul li:hover a .tx .b .gd {
  background-image: url(../images/gd2.png)
}

/* 组织机构 */
.zzjg {}

.zzjg-box {
  margin-top: 0.3rem;
}

.zzjg-box .tit {
  background: url(../images/zzjg-titbg.png) no-repeat;
  background-size: cover;
  padding: 0 0.42rem;
}

.zzjg-box h3 {
  font-size: 0.28rem;
  line-height: 0.8rem;
  color: #fff;
}

.zzjg-box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.zzjg-box ul li {
  width: 33.33%;
  margin-top: 0.3rem;
}

.zzjg-box ul li a {
  display: block;
  margin: 0 0.75rem;
  font-size: 0.2rem;
  line-height: 0.36rem;
  padding: 0.18rem 0.4rem 0.18rem 0.56rem;
  border-radius: 0.08rem;
  border: 1px solid #C1CDE3;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.zzjg-box ul li a::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3rem;
  width: 0.05rem;
  height: 0.05rem;
  background: #07378D;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s;
}

.zzjg-box ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.25rem;
  width: 0.11rem;
  height: 0.16rem;
  background: url(../images/jg-r.png) no-repeat center;
  background-size: 100% 100%;
  z-index: -1;
  transition: all 0.5s;
}

.zzjg-box ul li:hover a {
  background: #07378D;
  color: #fff;
}

.zzjg-box ul li:hover a::before {
  background: #fff;
}

.zzjg-box ul li:hover a::after {
  background: url(../images/jg-r2.png) no-repeat center;
  background-size: 100% 100%;
}

/* 校园风光 */
.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: url(../images/grouptitbg.png) no-repeat;
  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: url(../images/group-bigprev.png) no-repeat;
  background-size: 100% 100%;
  left: 0;
}

.group-big .slick-next {
  background: url(../images/group-bignext.png) no-repeat;
  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;
}


/* 学校简介 */
.xxjj {}

.xxjj p {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #666666;
  text-indent: 2em;
}

.jj1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.jj1 .tx {
  flex: 1;
  min-width: 0;
  padding-top: 0.84rem;
}

.jj1 .tx h3 {
  font-family: Alimama Agile VF;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 0.46rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.jj1 .tx h3::after {
  content: '';
  display: block;
  width: 0.76rem;
  height: 0.05rem;
  background: linear-gradient(91deg, #74e856 0%, #0aa7e1 99%);
  margin-top: 0.8rem;
}

.jj1 .pic1 {
  width: 7.04rem;
  max-width: 100%;
  position: relative;
  margin-left: 0.65rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 0.62rem;
}

.jj1 .pic1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 41%;
  border: 0.1rem solid;
  border-image: linear-gradient(147deg, #74e856 -1%, #0aa7e1 83%) 10;
  z-index: -1;
}

.jj1 .pic1 img {
  display: block;
  width: 100%;
  height: auto;
}

.jj2 {
  margin-top: 0.5rem;
}

.jj3 {
  margin-top: 0.5rem;
}

.jj3 img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1560px) {}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 1024px) {

  .banner::after,
  .banner::before {
    content: none;
  }

  .ban-tit {
    display: none;
  }

  .left-box {
    margin-top: 0;
    background: none;
  }

  .nymain {
    padding-top: 0.24rem;
  }

  .nymain .leftNav .leftNav-tit {
    padding-bottom: 0;
    display: block;
  }

  .nymain .leftNav .leftNav-tit::before {
    content: none;
  }

  .nymain .leftNav .leftNav-tit>h2 {
    display: block;
    height: inherit;
    line-height: 0.56rem;
    font-size: 0.22rem;
    text-align: left;
    padding-left: 0.15rem;
    padding-top: 0;
    font-weight: 600;
    background: #14B2CC;
    color: #fff;
    padding-bottom: 0;
  }

  .nymain .leftNav .leftNav-tit>h2>i {
    color: #fff;
  }

  .nymain .leftNav .leftNav-tit>h2 span {
    float: right;
    width: 0.56rem;
    height: 0.56rem;
    background: url(../images/sub_left_down2.png) no-repeat center center;
    background-size: 0.14rem 0.14rem;
    cursor: pointer;
  }

  .nymain .leftNav .leftNav-tit>h2 span.on {
    background-image: url(../images/sub_left_up2.png);
  }

  .nymain .leftNav>.box>ul {
    margin-top: 0;
    border-radius: 0;
    padding-right: 0;
  }

  .nymain .leftNav>.box>ul>li {
    float: none;
    width: auto;
  }

  .nymain .leftNav>.box>ul>li::before {
    display: none !important;
  }

  .nymain .leftNav>.box>ul>li>ul {
    position: static;
    display: none;
    transform: none;
    width: calc(100% - 0.4rem);
    margin: 0 0.2rem;
    background: none;
    box-shadow: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }

  .nymain .leftNav>.box>ul>li:hover>ul {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .nymain .leftNav>.box>ul>li>ul>li>a {
    text-align: left;
    font-size: 0.18rem;
  }

  .nymain .leftNav>.box>ul>li>span {
    display: block;
    transition: all 0.5s;
  }

  .nymain .leftNav>.box>ul>li.on>span {
    transform: rotate(90deg);
  }

  .nymain .leftNav>.box>ul>li>a::after {
    top: 50%;
    width: auto;
    height: 0.36rem;
    border-top: none;
    border-left: 0.04rem solid #14B2CC;
    transform: translateY(-50%) scaleY(0);
  }

  .nymain .leftNav>.box>ul>li:hover>a::after,
  .nymain .leftNav>.box>ul>li.on>a::after {
    transform: translateY(-50%) scaleY(1);
  }

  .nymain .leftNav {
    width: 100%;
    display: block;
    margin-left: 0;
  }

  .nymain .leftNav .box {
    display: block;
  }

  .nymain .leftNav ul li a {
    line-height: 0.56rem;
    margin: 0;
    padding: 0 0.2rem;
    color: #333;
  }

  .nymain .leftNav>.box>ul>li>a {
    margin: 0;
    line-height: 0.56rem;
    padding: 0 0.2rem;
    color: #333;
  }

  .nymain .leftNav .box>ul {
    flex: none;
    max-width: 100%;
    width: 100%;
    display: none;
    box-shadow: 0px 0px 0.2rem 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-left: 0;
    padding-left: 0;
  }

  .nymain .leftNav>.box>ul>li:hover>a,
  .nymain .leftNav>.box>ul>li.on>a {
    color: #14B2CC;
  }

  .position {
    padding: 15px 0;
  }

  .position span,
  .position a {
    font-size: 12px;
  }

  .pagination a {
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    margin: 0 3px;
  }

  .pagination {
    padding-top: 0.4rem;
  }

  .ny-right {
    padding-top: 0.25rem;
    padding-bottom: 0.4rem;
  }

  .ny-lx {
    display: none;
  }

  .position>h3 {
    display: none;
  }

  .gg-tit h3 {
    font-size: 0.26rem;
    line-height: 0.3rem;
    margin: 0 0.15rem;
  }

  .gg-tit h3::before {
    top: -0.08rem;
    width: 0.4rem;
    height: 0.4rem;
  }

  .gg-tit::before,
  .gg-tit::after {
    width: 1rem;
    height: 0.18rem;
  }

  .text-list ul li a {
    padding: 0.2rem 0 0.2rem 0.1rem;
  }

  .text-list ul li a .date {
    margin-right: 0.2rem;
    width: 0.8rem;
    height: 0.8rem;
  }

  .text-list ul li a .date::before {
    right: -0.2rem;
  }

  .text-list ul li a .date b {
    font-size: 0.26rem;
  }

  .text-list ul li a .date span {
    font-size: 0.16rem;
  }

  .text-list ul li a h3 {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }

  .text-list ul li a p {
    margin-top: 0.1rem;
    line-height: 0.26rem;
    max-height: 0.52rem;
  }

  .text-list ul li a .tx {
    padding-right: 0.6rem;
  }

  .text-list ul li a .tx::after {
    right: 0.1rem;
  }

  .list-ld ul li {
    width: 100%;
    margin-top: 0.5rem;
  }

  .list-ld ul li a {
    padding: 0 0.2rem 0.2rem 0;
  }

  .list-ld ul li .sz-tx {
    padding: 0.2rem 0 0 0.2rem;
  }

  .list-ld ul li .con>p {
    margin-top: 0.1rem;
  }

  .list-ld ul li .sz-pic {
    margin-top: -0.2rem;
  }

  .zzjg-box .tit {
    padding: 0 0.2rem;
  }

  .zzjg-box h3 {
    line-height: 0.5rem;
    font-size: 0.26rem;
  }

  .zzjg-box ul {
    margin: 0 -0.15rem;
  }

  .zzjg-box ul li a {
    margin: 0 0.15rem;
    font-size: 0.18rem;
    line-height: 0.26rem;
  }

  .art-main {}

  .art-main .cont-tit .fbt>div.font {
    margin: 0 auto;
  }

  .art-main .cont-tit .fbt .l div img {
    max-width: 0.18rem;
    max-height: 0.18rem;
    margin-right: 0.05rem;
  }

  .art-info {
    margin-top: 0.3rem;
  }

  .pnext {
    margin-top: 0.15rem;
  }

  .art-main .art-tit h3 {
    font-size: 0.2rem;
    line-height: inherit;
  }

  .art-main .art-body {
    padding-top: 0.2rem;
  }

  .art-main .cont-tit .fbt .l>div {
    margin: 0 0.1rem;
  }

  .art-main .cont-tit .fbt .l>div::before {
    left: -0.2rem;
  }

  .art-main .art-body p {
    margin-bottom: 0.2rem !important;
  }

  .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 h3 {
    font-size: 0.24rem;
  }

  .img-list1 ul {
    width: 100% !important;
  }

  .img-list1 ul:nth-child(2) li {
    margin-top: 0.2rem !important;
  }

  .img-lists ul li {
    width: 47%;
  }

  .xrld ul li {
    padding: 0 0.1rem 0.1rem 0.1rem;
    margin-top: 0.3rem;
  }

  .xrld ul li a .sz-pic {
    margin-right: 0.3rem;
  }

  .xrld ul li a .sz-tx {
    padding-top: 0.24rem;
  }

  .xrld ul li a .sz-tx h3 {
    font-size: 0.2rem;
  }

  .xrld ul li a .sz-tx h3 span {
    font-size: 0.16rem;
    line-height: 0.24rem;
    margin-left: 0.2rem;
  }

  .xrld ul li a .sz-tx p {
    font-size: 0.16rem;
    line-height: 0.3rem;
    margin-top: 0.2rem;
  }

  .tw ul li+li {
    margin-top: 0.25rem;
  }

  .tw ul li a .tx {
    padding: 0.26rem 0.2rem 0 0.3rem
  }

  .tw ul li a .tx h3 {
    font-size: 0.18rem;
  }

  .jj1 .tx {
    flex: none;
    width: 100%;
    padding-top: 0;
  }

  .jj2,
  .jj3 {
    margin-top: 0.25rem;
  }

  .jj1 .tx h3 {
    font-size: 0.26rem;
    line-height: 0.36rem;
    margin-bottom: 0.3rem;
  }

  .jj1 .tx h3::after {
    width: 0.6rem;
    height: 0.04rem;
    margin-top: 0.3rem;
  }

  .jj1 .pic1 {
    margin: 0 auto;
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-right: 0.3rem;
  }

  .jj1 .pic1::before {
    border-width: 0.05rem;
  }
}

@media screen and (max-width: 900px) {}

@media screen and (max-width: 768px) {
  .list ul li {
    line-height: 0.7rem;
  }

  .pnext p {
    line-height: 0.26rem;
  }

  .img-lists ul li {
    width: 46%;
    margin: 10px 2%;
  }

  .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;
  }

  .nymain .leftNav>h2 img {
    height: 20px;
  }

  .list ul li a h3 {
    font-size: 0.2rem;
  }

  .list ul li a span {
    font-size: 0.18rem;
  }

  .xrld ul li a {
    padding-right: 0;
  }

  .xrld ul li a .sz-pic {
    width: 100%;
    margin-right: 0;
  }

  .xrld ul li a .sz-tx {
    flex: none;
    width: 100%;
    padding: 0.2rem;
  }

  .zzjg-box {
    margin-top: 0;
  }

  .zzjg-box ul {
    margin: 0;
  }

  .zzjg-box ul li {
    width: 100%;
    margin-top: 0.2rem;
  }

  .zzjg-box ul li a {
    margin: 0;
    padding: 0.15rem 0.3rem;
  }

  .zzjg-box ul li a::before {
    left: 0.15rem;
  }

  .zzjg-box ul li a::after {
    right: 0.15rem;
  }

  .sz-con {
    margin-top: 0.25rem;
  }


  .sz-con {
    margin-top: 0.25rem;
  }

  .sz-ty {
    padding-left: 0.3rem;
  }

  .sz-con .pic1 img {
    width: 2.8rem;
  }

  .sz-t {
    margin-top: 0.2rem;
  }

  .sz-ty h3 {
    font-size: 0.26rem;
  }

  .sz-box h4 span {
    font-size: 0.22rem;
  }

  .sz-box p {
    font-size: 0.18rem;
    line-height: 0.34rem;
    padding-left: 0.5rem;
  }

  .sz-box h4 {
    background-size: 0.25rem auto;
    padding-left: 0.5rem;
  }

  .sz-d::before {
    left: 0.12rem;
  }

  .jj1 .tx {
    width: 100%;
  }

  .jj1 .picbox {
    width: 100%;
    margin-top: 0.2rem;
  }

  .jj1b ul li {
    width: 100%;
    padding: 0.2rem 0;
  }

  .jj1b ul li:nth-child(odd) {
    padding-right: 0;
  }

  .jj1b ul li:nth-child(even) {
    padding-left: 0;
  }

  .jj1b ul li:nth-child(even)::before {
    content: none;
  }

  .jj2 ul li {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {}

@media screen and (max-width: 480px) {
  .img-lists ul li a>img {
    height: 100px;
  }

  .nymain .leftNav>.box>ul>li>ul>li>a {
    font-size: 12px;
  }

  .list-ld ul li {
    margin-top: 0.2rem;
  }

  .list-ld ul li:first-child {
    margin-top: 0;
  }

  .list-ld ul li a {
    padding: 0.1rem;
  }

  .list-ld ul li .sz-pic {
    width: 100%;
    margin-top: 0;
  }

  .list-ld ul li .sz-tx {
    flex: none;
    width: 100%;
    padding: 0;
    margin-top: 0.14rem;
  }

  .tw ul li a .pic {
    width: 100%;
    height: auto;
    padding-top: 64.86%;
    margin-right: 0;
  }

  .tw ul li a .tx {
    flex: none;
    width: 100%;
    padding: 0.2rem;
  }

  .tw ul li a .tx .b .gd {
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.2rem;
  }

  .sz-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sz-con .sz-r {
    width: 100%;
  }

  .sz-r {
    width: calc(100% - 2rem);
  }

  .sz-ty {
    padding-left: 0;
  }

  .sz-ty h3 {
    padding-left: 0;
    text-align: center;
  }

  .sz-ty>div p {
    line-height: 0.34rem;
  }

  .jj1b ul li .gg-tit {
    margin-right: 0;
  }

  .jj1b ul li .tx {
    flex: none;
    width: 100%;
    margin-top: 0.1rem;
    font-size: 0.2rem;
  }
}

@media screen and (max-width: 320px) {
  .img-lists ul li a>img {
    height: 84px;
  }
}


.ssjg {
    min-height:5rem;
   overflow:hidden;
}

.list_rsou {
    width: 100%;
}

.list_rsou ul {
    width: 100%;
    float: left;
}

.list_rsou ul li {
    width: 100%;
    float: left;
    border-bottom: #ccc 1px dashed;
    position: relative;
}

.list_rsou ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 25px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #14B2CC;
}

.list_rsou ul li a {
    margin-left: 14px;
    font-size: 16px;
    color: #333;
    float: left;
    line-height: 55px;
    height: 55px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: -moz-calc(100% - 100px);
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    transition: all 0.4s;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.list_rsou ul li i {
    float: right;
    font-size: 14px;
    color: #666;
    line-height: 55px;
    font-style: normal;
}

.list_rsou ul li:hover a {
    color: #14B2CC;
    text-indent: 16px;
    transition: all 0.4s;
}

.sspage {
    width: 100%;
    float: left;
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #333;
}

.sspage a {
    color: #01548a;
}

.qzssjg_no {
    width: 300px;
    margin: 50px auto;
    overflow: hidden;
    font-size: 14px;
    color: #333;
    line-height: 25px;
}

@media only screen and (max-width: 700px) {
    .qzssjg_no {
        width: 100%;
        font-family: Arial, Helvetica, sans-serif;
        font-family: "FZLTZHK", "Microsoft YaHei";
        font-family: "Microsoft YaHei";
    }
}

.pb_sys_style1 .p_no_d{
    border: 1px solid #14B2CC!important;
    background-color: #14B2CC!important;
}