@charset "utf-8";

body {
  background: #F7FAFF;
}

.pc,
.pc .head {
  transition: all .8s ease-in-out;
}

.pc.on {
  background: #2E89E6;
}

.pc.on .head {
  padding: 0.19rem 0.4rem 0.19rem 0.42rem;
}

.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner>img {
  display: block;
  width: 100%;
  min-height: 2rem;
  object-fit: cover;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(250deg, rgba(0, 0, 0, 0) 21%, #000000 99%);
  width: 32.5%;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #177CE3 0%, rgba(46, 137, 230, 0) 100%);
  height: 60%;
}

.lmmc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.37rem;
}

.lmmc h3 {
  font-size: 0.5rem;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  margin-bottom: 0.76rem;
}

.lmmc h3::after {
  content: '';
  position: absolute;
  bottom: -0.34rem;
  left: 0;
  width: 0.95rem;
  height: 0.04rem;
  background: rgba(255, 255, 255, 0.5);
}

.foot {
  position: static;
  background: #2E89E6;
  padding: 0.45rem 0.14rem;
}

/* 分页 */

.pagination {
  text-align: center;
  font-size: 0;
  padding-top: 0.4rem;
}

.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;
  cursor: pointer;
}


.pagination>span {
  display: inline-block;
  font-size: 0.14rem;
  margin: 0 3px;
}

/* 主体 */
.nymain {
  position: relative;
  z-index: 1;
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  background: url(../images/nymain-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.nymain .leftNav {
  float: left;
  width: 3rem;
  position: relative;
}

.nymain .leftNav>h2 {
  line-height: 0.9rem;
  font-family: sys-semi;
  color: #fff;
  background: #AD0101;
  font-size: 0.3rem;
  font-weight: bold;
  overflow: hidden;
  text-align: center;
}

.nymain .leftNav>ul {
  background-color: #f1f1f1;
  box-shadow: -0.1rem 0.12rem 0.46rem 0px rgba(219, 246, 253, 0.04);
  padding: 0.1rem 0 0.7rem 0;
}

.nymain .leftNav>ul>li {
  margin: 0 0.2rem;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #fff;
}

.nymain .leftNav>ul>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 0.2rem);
  width: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: all 0.5s;
}

.nymain .leftNav>ul>li>a {
  position: relative;
  padding: 0.1rem 0.25rem;
  border-bottom: 1px solid rgba(195, 195, 195, 0.55);
}

.nymain .leftNav>ul>li>a::after {
  /* content: ''; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.2rem;
  background: url(../images/left-sj.png) no-repeat;
  background-size: 100% auto;
  width: 0.12rem;
  height: 0.14rem;
  display: none;
}

.nymain .leftNav ul li a {
  display: block;
  font-size: 0.2rem;
  line-height: 0.48rem;
  color: #000;
}

.nymain .leftNav>ul>li.on>a {
  color: #AD0101;
}

.nymain .leftNav>ul>li.on>a::after,
.nymain .leftNav>ul>li.active>a::after,
.nymain .leftNav>ul>li:hover>a::after {
  display: block;
}


.nymain .leftNav>ul>li>span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0.3rem;
  height: 0.7rem;
  background: url(../images/left-sj.png) no-repeat center;
  background-size: 0.08rem 0.14rem;
  z-index: 9;
  cursor: pointer;
  transition: all 0.5s;
}

.nymain .leftNav>ul>li.on>span {
  background: url(../images/left-sj2.png) no-repeat center;
  background-size: 0.08rem 0.14rem;
  transform: rotate(90deg);
}

.nymain .leftNav>ul>li:hover>a {
  color: #AD0101;
}

.nymain .leftNav>ul>li.on::before,
.nymain .leftNav>ul>li:hover::before {
  width: calc(100% + 0.2rem);
}

.nymain .leftNav>ul>li.active>a {
  color: #AD0101;
  font-weight: bold;
}

.nymain .leftNav ul li.active ul {
  display: block;
}

.nymain .leftNav ul li a:hover {
  background-position: 0.31rem center;
  color: #AD0101;
}

.nymain .leftNav>ul>li>ul {
  display: none;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  padding-right: 0;
  padding-left: 0.3rem;
}

.nymain .leftNav>ul>li>ul>li>a {
  font-size: 0.16rem;
  line-height: 0.34rem;
  color: #333;
  border-bottom: none;
  margin: 0.1rem 0;
}

.ny-right {
  float: right;
  width: calc(100% - 3.5rem);
  min-height: 4rem;
}

.position>div {
  position: relative;
  font-size: 0;
  line-height: 0.26rem;
}

.position span {
  color: #fff;
  font-size: 0.16rem;
  vertical-align: middle;
}

.position img {
  display: inline;
  width: auto;
  height: 0.17rem;
  vertical-align: middle;
  margin-right: 0.1rem;
}

.position a {
  font-size: 0.16rem;
  color: #fff;
  margin: 0 0.05rem;
  vertical-align: middle;
}

.position a:hover {
  color: #fff;
}

/* 列表页 */
.text-list {}

.text-list ul li {
  padding-left: 0.3rem;
  position: relative;
  line-height: 0.8rem;
  border-bottom: 1px solid #D8D8D8;
  font-size: 0.2rem;
  position: relative;
  left: 0;
  transition: all 0.3s;
}

.text-list ul li:first-child {
  border-top: none;
}

.text-list ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  background: #2E89E6;
}

.text-list ul li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
}

.text-list ul li>span {
  display: block;
  float: right;
  font-family: Arial;
  font-size: 0.16rem;
  color: #666;
  background: url(../images/rl.png) no-repeat left center;
  background-size: 0.21rem auto;
  padding-left: 0.41rem;
  margin-left: 0.2rem;
}

.text-list ul li:hover a {
  color: #2E89E6;
}

.text-list ul li:hover span {
  color: #2E89E6;
}

.text-list ul li:hover {
  left: 0.05rem;
}

/* 内容页 */
.art-main .art-tit h3 {
  text-align: center;
  font-weight: normal;
  font-size: 0.26rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 0.51rem;
}

.art-main .art-body {
  padding-top: 0.3rem;
}

.art-main .art-body p,
.art-main .art-body p * {
  color: #000;
  text-indent: 2em;
  font-family: "微软雅黑" !important;
  font-size: 0.18rem !important;
  line-height: 0.38rem !important;
  margin-bottom: 0.3rem !important;
}

.art-main .art-body img {
  max-width: 80% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.art-main .art-body table {
  max-width: 90%;
}

.art-main .art-body video {
  max-width: 90%;
}

.art-main .cont-tit p {
  font-size: 0;
  text-align: center;
  line-height: 0.3rem;
  border-bottom: 1px solid #e1e1e1;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.art-main .cont-tit p span {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.16rem;
  color: #777;
  margin: 0 0.2rem;
}

.art-info {
  border-top: 1px solid #e1e1e1;
  margin-top: 0.25rem;
}

.pnext {
  margin-top: 0.25rem;
}

.pnext p {
  font-size: 0.18rem;
  text-indent: initial;
  line-height: 0.28rem;
  padding: 0.05rem 0;
  transition: all 0.5s;
}

.pnext p a {
  color: #222;
  font-weight: normal;
}

.pnext p:hover {
  color: #AD0101;
}

.pnext p:hover a {
  color: #AD0101;
}


/* 图片列表 */
.img-lists {
  margin-top: 0.18rem;
}

.img-lists ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.18rem;
}

.img-lists ul li {
  width: 20%;
}

.img-lists ul li a {
  display: block;
  margin: 0.18rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.img-lists ul li a .pic {
  padding-top: 0;
  height: 3.1rem;
  text-align: center;
  background: #ccc;
}

.img-lists ul li a>div.info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 121, 124, 0.9);
  line-height: 0.42rem;
  padding: 0 0.1rem;
  font-size: 0;
  text-align: center;
  transition: all 0.5s;
}

.img-lists ul li a>div.info p {
  color: #fff;
  font-size: 0.18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.img-lists ul li:hover a>div.info {
  background: rgba(220, 171, 101, 0.9);
}


/*领导*/
.list-ld {
  overflow: hidden;
}

.list-ld ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-ld ul li {
  width: 48%;
  margin-top: 0.8rem;
}

.list-ld ul li a {
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.03);
}

.list-ld ul li .sz-pic {
  width: 2.4rem;
}

.list-ld ul li .pic {
  padding-top: 132.08%;
}

.list-ld ul li .sz-tx {
  flex: 1;
  min-width: 0;
  border: 1px solid transparent;
  border-left: none;
  padding: 0.3rem;
  transition: all 0.4s;
}

.list-ld ul li h3 {
  font-size: 0.2rem;
  font-weight: bold;
  color: #3D3D3D;
  margin-bottom: 0.16rem;
}

.list-ld ul li p {
  font-size: 0.14rem;
  line-height: 0.3rem;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  transition: all 0.4s;
}

.list-ld ul li .xq {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.24rem;
}

.list-ld ul li .xq span {
  display: inline-block;
  font-size: 0.14rem;
  line-height: 0.28rem;
  color: #000;
  padding-right: 0.47rem;
  background: url(../images/xq-jt.png) no-repeat right center;
  background-size: 0.37rem auto;
  opacity: 0.32;
  transition: all 0.4s;
}


.list-ld ul li:hover p {
  color: #AD0101;
}

.list-ld ul li:hover .sz-tx {
  border-color: #AD0101;
}

.list-ld ul li:hover .pic img {
  transform: scale(1.1);
}

.list-ld ul li .xq span {
  opacity: 1;
}


/* 师资内容 */
.sz-con {
  margin-top: 0.57rem;
  border-bottom: 2px solid #AD0101;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(1, 117, 182, 0.2);
  padding: 0.23rem;
}

.sz-con .pic1 {
  width: 2.09rem;
}

.sz-con .pic1 img {
  display: block;
  max-width: 100%;
}

.sz-con .pic1 img {}

.sz-r {
  flex: 1;
  min-width: 0;
  padding-left: 0.42rem;
}

.sz-ty {
  overflow: hidden;
}

.sz-ty h3 {
  font-size: 0.2rem;
  font-weight: bold;
}

.sz-ty>div {
  margin-top: 0.32rem;
}

.sz-ty>div p {
  font-size: 0.18rem;
  line-height: 0.4rem;
  color: #666666;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}

.sz-d {
  position: relative;
  z-index: 1;
}

.sz-box {
  margin-top: 0.52rem;
}

.sz-box h4 {
  font-size: 0;
  margin-bottom: 0.3rem;
  background: #F4F6F6;
  padding: 0.12rem 0.18rem;
}

.sz-box h4 span {
  display: inline-block;
  font-size: 0.2rem;
  font-weight: bold;
  line-height: 36px;
  background: url(../images/sz-f.png) no-repeat left center;
  background-size: 0.14rem auto;
  padding-left: 0.24rem;
}

.sz-box p {
  font-size: 0.18rem;
  line-height: 0.32rem;
  color: #666666;
}

.sz-box p.z {
  text-align: center;
}

.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 {}

.sz-p p:first-child {
  margin-top: 0;
}

/* 图文列表页  start */
.tw {
  margin-top: 0.3rem;
}

.tw ul li a {
  display: block;
  overflow: hidden;
  padding: 0.3rem 0;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}

.tw ul li:first-child a {
  padding-top: 0;
}

.tw ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-top: 1px solid #AD0101;
  transition: all 0.5s;
}

.tw ul li a .pic {
  width: 3.5rem;
  height: 1.98rem;
  padding-top: 0;
  float: left;
  margin-right: 0.42rem;
}

.tw ul li a .pic .ly {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 1.22rem;
  line-height: 0.34rem;
  text-align: center;
  padding: 0 0.1rem;
  background: rgba(173, 1, 1, 0.7);
  font-size: 0.18rem;
  color: #fff;
}

.tw ul li a .tw-tx {
  overflow: hidden;
}

.tw ul li a .tw-tx .date {
  font-family: Cochin-Bold;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #666;
  background: url(../images/rl.png) no-repeat left center;
  background-size: 0.21rem auto;
  padding-left: 0.31rem;
  margin-top: 0.4rem;
  transition: all 0.5s;
}

.tw ul li a .tw-tx h3 {
  font-size: 0.2rem;
  line-height: 0.3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  margin-top: 0.1rem;
  transition: all 0.5s;
}

.tw ul li a .tw-tx p {
  font-size: 0.16rem;
  line-height: 0.26rem;
  height: 0.52rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 0.3rem;
  color: #191919;
  text-indent: 2em;
  opacity: 0.5;
}

.tw ul li:hover a::after {
  width: 100%;
}

.tw ul li:hover a .tw-tx .date {
  color: #AD0101;
}

/* 学院列表 */
.xylb {
  overflow: hidden;
}

.xylb .k+.k {
  margin-top: 0.7rem;
}

.xylb .tit {
  background-color: #2E89E6;
  background-image: url(../images/xylb-tbg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  padding: 0.18rem 0.3rem;
}

.xylb .tit h3 {
  display: flex;
  align-items: center;
  font-size: 0.24rem;
  line-height: 0.34rem;
  color: #fff;
}

.xylb .tit h3>img {
  display: block;
  height: 0.34rem;
  margin-right: 0.1rem;
}

.xylb ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.2rem;
  margin-left: -0.18rem;
  margin-right: -0.18rem;
}

.xylb ul li {
  width: 33.33%;
}

.xylb ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.18rem;
  background-image: url(../images/xylb-libg1.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding: 0.18rem;
  border-radius: 0.05rem;
  border: 1px solid rgba(2, 67, 157, 0.3);
  transition: all 0.5s;
}

.xylb ul li a h3 {
  flex: 1;
  min-width: 0;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #666666;
  transition: all 0.5s;
}

.xylb ul li a .icon {
  width: 0.19rem;
  height: 0.07rem;
  background-image: url(../images/xylb-sj1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin-left: 0.2rem;
  transition: all 0.5s;
}

/* 学院列表图 */
.xylb2 {}

.xsjsbox {
  background: #fff url(../images/xsjs-bg.png) no-repeat right bottom;
  background-size: 100% auto;
  box-shadow: 0px 0.02rem 0.2rem 0px rgba(225, 225, 225, 0.5);
  padding: 0.45rem;
  border-top: 0.04rem solid #2E89E6;
  box-shadow: 0px 0.02rem 0.2rem 0px rgba(225, 225, 225, 0.5);
}

.xsjs {
  display: flex;
  flex-wrap: wrap;
}


.xsjs h3 {
  width: 1.3rem;
  text-align: right;
  font-family: PingFang SC, "微软雅黑";
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.28rem;
  color: #2E89E6;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
}

.xsjs ul {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
}

.xsjs>li{
    height: 0.3rem;
    line-height: 0.28rem !important;
}

.xsjs ul li,
.xsjs>li {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0 0.12rem;
  cursor: pointer;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  transition: all 0.5s;
}

.xsjs ul li.on,
.xsjs>li.on {
  background: #2E89E6;
  color: #fff;
  border-radius: 0.2rem;
}

.xylb2 .k {
  margin-top: 0.6rem;
}

.xylb2 .k .tit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.xylb2 .k .tit .xl {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.xylb2 .k .tit .xl::before {
  content: "";
  display: block;
  border-top: 1px solid rgba(46, 137, 230, 0.5);
}

.xylb2 .k .tit .xl::after {
  content: "";
  display: block;
  border-top: 1px solid rgba(46, 137, 230, 0.5);
  margin-top: 0.05rem;
}

.xylb2 .k .tit .xr {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.xylb2 .k .tit .xr::before {
  content: "";
  display: block;
  border-top: 1px solid rgba(46, 137, 230, 0.5);
}

.xylb2 .k .tit .xr::after {
  content: "";
  display: block;
  border-top: 1px solid rgba(46, 137, 230, 0.5);
  margin-top: 0.05rem;
}

.xylb2 .k .tit h3 {
  font-size: 0.36rem;
  font-weight: bold;
  color: #2E89E6;
  margin: 0 0.15rem;
}

.xylb2 .k ul {
  display: flex;
  flex-wrap: wrap;
}

.xylb2 .k ul li {
  width: 20%;
}

.xylb2 .k ul li a {
  display: block;
  margin: 0.65rem 0.37rem 0 0.37rem;
}

.xylb2 .k ul li a .picbox {
  position: relative;
  z-index: 1;
}

.xylb2 .k ul li a .picbox::before {
  content: '';
  position: absolute;
  top: -0.2rem;
  left: -0.2rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(136deg, rgba(46, 137, 230, 0.9829) 4%, rgba(46, 137, 230, 0) 43%);
  opacity: 0.5013;
  transition: all 0.5s;
}

.xylb2 .k ul li a .pic {
  padding-top: 132.81%;
}

.xylb2 .k ul li a .tx {
  padding-top: 0.18rem;
}

.xylb2 .k ul li a .tx h3 {
  font-size: 0.22rem;
  color: #000000;
  transition: all 0.5s;
}

.xylb2 .k ul li a .tx .con {
  border-top: 1px solid rgba(46, 137, 230, 0.3);
  margin-top: 0.18rem;
  padding-top: 0.08rem;
}

.xylb2 .k ul li a .tx .con p {
  margin-top: 0.1rem;
  font-size: 0.16rem;
  color: #666666;
  transition: all 0.5s;
}

/* 学科列表 */
.xklb-con {}

.xklb-con>div {
  margin-top: 0.3rem;
}

.xklb-con>div .tit {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 0.05rem solid #DCAB65;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.16rem 0.16rem 0.16rem 0.25rem;
  transition: all 0.5s;
  cursor: pointer;
}

.xklb-con>div .tit h3 {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.34rem;
  color: #2E89E6;
  transition: all 0.5s;
}

.xklb-con>div .tit h3 a {
  font-size: 0.24rem;
  font-weight: bold;
  line-height: 0.34rem;
  color: #2E89E6;
  transition: all 0.5s;
}

.xklb-con>div .tit .icon {
  height: 0.34rem;
  width: 0.34rem;
  background: url(../images/xl1.png) no-repeat center;
  background-size: 0.2rem auto;
  cursor: pointer;
  margin-left: 0.2rem;
  transition: all 0.5s;
}

.xklb-con>div .con {
  display: none;
}

.xklb-con>div:first-child .con {
  display: block;
}

.xklb-con>div .con ul {
  display: flex;
  flex-wrap: wrap;
  background: #FFFBF4 url(../images/xklb-dbg.png) no-repeat center bottom;
  background-size: 100% auto;
  padding: 0.5rem;
  min-height: 2.8rem;
  border: 1px solid #CCE4E5;
  border-top: 0;
}

.xklb-con>div .con ul li {}

.xklb-con>div .con ul li a {
  display: block;
  font-size: 0.18rem;
  line-height: 0.24rem;
  color: #666;
  padding: 0.1rem 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: all 0.5s;
}

.xklb-con>div .con ul li:hover a {
  border-color: #2E89E6;
  color: #2E89E6;
  font-weight: bold;
}

.xklb-con>div.on .tit {
  border-color: #2E89E6;
  border-left: 0.05rem solid #DCAB65;
  background: #2E89E6;
  cursor: pointer;
}

.xklb-con>div.on .tit h3 {
  color: #fff;
}

.xklb-con>div.on .tit h3 a {
  color: #fff;
}

.xklb-con>div.on .tit .icon {
  background: url(../images/xl2.png) no-repeat center;
  background-size: 0.2rem auto;
  transform: rotate(180deg);
}

/* 教师索引 */
.zcjs,
.js3 {
  border-top: 1px dashed rgba(46, 137, 230, 0.2);
  padding-top: 0.4rem;
  margin-top: 0.3rem;
}

.zcjs ul li {
  margin-right: 0.05rem;
}

.jssy2 .k2 ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.54rem;
  margin-left: -0.19rem;
  margin-right: -0.19rem;
}

.jssy2 .k2 ul li {
  width: 33.33%;
}

.jssy2 .k2 ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.2rem;
  background: url(../images/jssy-libg.png) no-repeat center;
  background-size: cover;
  box-shadow: 0px 0.02rem 0.16rem 0px rgba(2, 67, 157, 0.1013);
  margin: 0.24rem 0.19rem;
  border-radius: 0 0.2rem 0.2rem 0;
}

.jssy2 .k2 ul li a .picbox {
  width: 1.32rem;
  margin-right: 0.25rem;
}

.jssy2 .k2 ul li a .picbox .pic {
  padding-top: 132.57%;
  border-radius: 0px 0.3rem 0px 0.3rem;
}

.jssy2 .k2 ul li a .tx {
  flex: 1;
  min-width: 0;
  padding-top: 0.16rem;
}

.jssy2 .k2 ul li a .tx h3 {
  font-size: 0.26rem;
  font-weight: bold;
  color: #2E89E6;
}

.jssy2 .k2 ul li a .tx h3 span {
  font-size: 0.16rem;
  color: #2E89E6;
  padding-left: 0.16rem;
}

.jssy2 .k2 ul li a .tx .con {
  margin-top: 0.2rem;
  border-left: 0.02rem solid #2E89E6;
  padding-left: 0.2rem;
}

.jssy2 .k2 ul li a .tx .con p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jssy2 .k2 ul li a .tx .con p+p {
  margin-top: 0.1rem;
}

.jssy {
  position: relative;
  z-index: 2;
}

.jssy .k1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.jssy .k1 label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.jssy .k1 .tit {
  display: flex;
  align-items: center;
  margin-right: 0.14rem;
}

.jssy .k1 .tit>img {
  display: block;
  width: 0.14rem;
}

.jssy .k1 .tit span {
  display: block;
  font-size: 0.18rem;
  font-weight: bold;
  margin: 0 0.1rem;
}

.jssy .k1 .r {
  width: 3.6rem;
}

.jssy .k1 .r input {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border: 1px solid rgba(0, 121, 124, 0.4);
  background: none;
  border-radius: 7.96rem;
  padding: 0 0.3rem;
  font-size: 0.16rem;
  transition: all 0.5s;
}

.jssy .k1 .r input:focus {
  box-shadow: 0 0 0.1rem rgba(0, 121, 124, 0.4);
}

.jssy .k1 .r input::placeholder {
  color: #999;
}

.jssy .k1 .ssk {
  border-radius: 3.36rem;
  border: 0.03rem solid rgba(0, 121, 124, 0.2);
  cursor: pointer;
}

.jssy .k1 .ss {
  width: 1.2rem;
  height: 0.44rem;
  line-height: 0.44rem;
  border-radius: 3.36rem;
  background-color: #2E89E6;
  background-image: url(../images/fdj.png);
  background-repeat: no-repeat;
  background-position: 0.3rem center;
  background-size: 0.18rem auto;
  padding-left: 0.23rem;
  cursor: pointer;
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  transition: all 0.5s;
}

.jssy .k1 .ss:hover {
  box-shadow: 0 0 0.1rem rgba(0, 121, 124, 0.8);
}

.jssy .k1 .czk {
  border-radius: 3.36rem;
  border: 0.03rem solid rgba(220, 171, 101, 0.2);
  margin-left: 0.2rem;
  cursor: pointer;
}

.jssy .k1 .cz {
  width: 1.2rem;
  height: 0.44rem;
  line-height: 0.44rem;
  border-radius: 3.36rem;
  background-color: #DCAB65;
  background-image: url(../images/cz.png);
  background-repeat: no-repeat;
  background-position: 0.3rem center;
  background-size: 0.16rem auto;
  padding-left: 0.21rem;
  cursor: pointer;
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  transition: all 0.5s;
}

.jssy .k1 .cz:hover {
  box-shadow: 0 0 0.1rem rgba(220, 171, 101, 0.8);
}

.jssy .k2 {
  margin: 0.25rem 0;
}

.jssy .k2 ul {
  display: flex;
  flex-wrap: wrap;
}

.jssy .k2 ul li {
  font-size: 0.18rem;
  color: #2E89E6;
  line-height: 0.3rem;
  padding: 0 0.1rem;
  border-radius: 0.05rem;
  transition: all 0.5s;
  margin-top: 0.05rem;
  margin-bottom: 0.05rem;
}

.jssy .k2 ul li.all {
  font-size: 0.16rem;
  color: #fff;
  background: #2E89E6;
  margin-right: 0.18rem;
}

.jssy .k2 ul li+li {
  cursor: pointer;
  margin-right: 0.1rem;
}

.jssy .k2 ul li+li:hover {
  color: #fff;
  background: #2E89E6;
}

.jssy .k3box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: url(../images/jssy-k3bg.png) no-repeat center;
  background-size: 100% 100%;
  height: 0.83rem;
  padding: 0 0.4rem;
}

.selbox {
  display: flex;
  align-items: center;
}

.sel {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 0 0.2rem;
}

.sel.active {
  z-index: 2;
}

.jssy .k3box .sel+.sel::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 0.25rem;
  border-left: 1px solid rgba(216, 216, 216, 0.2);
}

.sel .form-control {
  width: 100%;
  height: 0.34rem;
  line-height: 0.34rem;
  font-size: 0.16rem;
  padding-left: 0.2rem;
  background-color: transparent;
  background-image: url(../images/sel-down.png);
  background-repeat: no-repeat;
  background-size: 0.13rem auto;
  background-position: 92% center;
  padding-right: 0.2rem;
  border: 1px solid rgba(151, 151, 151, 0.3);
  border-radius: 0.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}

.sel .form-control::placeholder {
  color: #666;
}

.sel .form-control2 {
  width: 100%;
  height: 0.34rem;
  line-height: 0.34rem;
  font-size: 0.16rem;
  padding-left: 0.2rem;
  background-color: transparent;
  padding-right: 0.2rem;
  border: 1px solid rgba(151, 151, 151, 0.3);
  border-radius: 0.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  /*  cursor: pointer;*/
}

.sel .form-control2::placeholder {
  color: rgba(102, 102, 102, 0.5);
}

.sel .sub {
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  top: 110%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  z-index: 2;
  display: none;
}

.sel .sub>ul {
  display: block;
  max-height: 3rem;
  overflow-y: auto;
}

.sel .sub>ul::-webkit-scrollbar {
  width: 4px;
  background-color: #f5f5f5;
}

.sel .sub>ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e2e2e2;
}

.sel .sub>ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #2E89E6;
}

.sel .sub>ul>li {
  font-size: 14px;
  padding: 5px 10px;
  margin-right: 0;
  margin-bottom: 0;
  line-height: inherit;
  cursor: pointer;
  transition: all 0.5s;
}

.sel .sub>ul>li:hover {
  color: #fff;
  background: #2E89E6;
}

.js3 {
  padding-left: 0.82rem;
}

.js3 h3 {
  width: auto !important;
  margin-bottom: 0;
}

.js3 .sel {
  padding: 0;
}

.js3 .selbox {
  width: 3.55rem;
  margin-right: 0.32rem;
}
.js3 .selbox:nth-child(3){
  width: 3.87rem;
}

.js3 .ssbtn {
  display: flex;
  align-items: center;
}

.js3 .ssbtn>input {
  display: block;
  width: 0.73rem;
  height: 0.34rem;
  line-height: 0.34rem;
  text-align: center;
  background: #E3E3E3;
  font-size: 0.16rem;
  color: #666666;
  border-radius: 0.17rem;
  cursor: pointer;
  transition: all 0.5s;
}

.js3 .ssbtn>input.cz {
  margin-left: 0.2rem;
}



/* 常见问题 */
.cjwt .k0 p {
  font-size: 0.16rem;
  line-height: 0.28rem;
  color: #666666;
}

.cjwt .xklb-con>div .tit h3 {
  font-size: 0.18rem;
  line-height: 0.24rem;
  cursor: pointer;
}

.cjwt .xklb-con>div .con ul p {
  font-size: 0.16rem;
  line-height: 0.28rem;
  text-align: justify;
  /* 浏览器可能不支持 */
  color: #666666;
  width: 100%;
}

.yd_page {
  margin-top: 0.25rem;
  text-align: center;
  background-color: #2E89E6;
  color: #fff;
  padding: 10px 0;
  border-radius: 0.5rem;
  font-size: 14px;
}

.pages {
  text-align: center;
  margin: 0.4rem auto 0;
}

.pages table {
  width: auto !important;
  margin: auto
}

tbody {
  border: none;

}

.pages table td,
.pages table td div {
  font-family: "微软雅黑" !important;
  color: #333;
  font-size: 0.14rem;
}

.pages .PrevDisabled,
.pages .Next,
.pages a.Prev,
.pages .NextDisabled {
  border: 1px solid #dcdcdc !important;
  height: 0.35rem !important;
  line-height: 0.33rem !important;
  font-size: 0.14rem !important;
  color: #666 !important;
  padding: 0 0.12rem !important;
  font-family: "微软雅黑" !important;
  vertical-align: middle;
  background: none !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0 0.07rem !important;
}


.pages a.Next:hover,
.pages a.Prev:hover {
  background: #2E89E6 !important;
  color: #fff !important;
  border: 1px solid #2E89E6 !important;
}

.pages input[type="button"] {
  padding: 0 10px !important;
  height: 0.35rem !important;
  line-height: 0.35rem !important;
  background: #2E89E6 !important;
  color: #fff !important;
  border: 0 !important;
  vertical-align: top;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.pages input.defaultInputStyle {
  margin-left: 5px !important;
  margin-right: 5px !important;
  border: 1px solid #dcdcdc !important;
  height: 0.35rem !important;
  line-height: 0.35rem !important;
  vertical-align: top;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 5px !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: none;
}

.defaultButtonStyle {
  FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#2E89E6, EndColorStr=#2E89E6) !important;
  CURSOR: pointer;
  line-height: 14px;
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#2E89E6), to(#2E89E6)) !important;
  background: -moz-linear-gradient(top, #2E89E6, #2E89E6) !important;
  background: -ms-linear-gradient(top, #2E89E6 0%, #2E89E6 100%) !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.yd_list {
  display: none;
}

.pc_list {
  display: block;
}


.page {
  text-align: center;
  margin-top: 50px;
}

.page a {
  font-size: 14px;
  color: #9F9F9F;
  padding-right: 20px;
}

.page p {
  display: inline;
  border-radius: 20px;
  border: 1px solid #C0C0C0;
  padding: 10px 15px;
}

.pageNum {
  padding: 4px 10px;
  border-radius: 50%;
}

.pageNum.cur {
  background: #DFBF69;
  color: #fff;
}

.prevPage {
  padding-right: 20px;
}

.nextPage {
  padding-left: 20px;
}

/* 关于我们 */
.about {}

.ab1 {
  border-left: 0.06rem solid #2E89E6;
  padding-left: 0.42rem;
}

.ab1 h4 {
  font-family: PingFang SC, "微软雅黑";
  font-size: 0.24rem;
  font-weight: 500;
}

.ab1 h4+h4 {
  margin-top: 0.17rem;
}

.ab1 .con {
  margin-top: 0.5rem;
}

.ab1 .con p {
  font-family: PingFang SC, "微软雅黑";
  font-size: 0.2rem;
  color: #666666;
}

.ab1 .con p+p {
  margin-top: 0.17rem;
}

.ab2 {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ab2 .ab-zs {
  position: absolute;
  bottom: 0;
  right: 0.05rem;
  width: 3.82rem;
  z-index: -1;
}

.ab2 .l {
  width: 50.93%;
}

.ab2 .l .pic {
  padding-top: 56.56%;
}

.ab2 .r {
  width: 42.67%;
  background: url(../images/ab2-bg.png) no-repeat right center;
  background-size: cover;
  padding: 0.95rem 0.1rem 0 0.6rem;
}

.ab2 .r h3 {
  font-family: PingFang SC, "微软雅黑";
  font-size: 0.24rem;
  font-weight: 500;
  color: #2E89E6;
}

.ab2 .r .con {
  margin-top: 0.6rem;
}

.ab2 .r .con p {
  font-family: PingFang SC, "微软雅黑";
  font-size: 0.2rem;
  color: #666666;
}

.ab2 .r .con p img {
  vertical-align: middle;
  margin-right: 0.1rem;
  width: 0.2rem;
}

.ab2 .r .con p+p {
  margin-top: 0.2rem;
}

@media screen and (min-width: 1025px) {
  .xylb ul li:hover a {
    background-image: url(../images/xylb-libg.png);
    box-shadow: 0px 0.02rem 0.19rem 0px rgba(2, 67, 157, 0.4364);
    border: 1px solid #2E89E6;
  }

  .js3 .ssbtn>input:hover {
    background: #2E89E6;
    color: #fff;
  }

  .xylb ul li:hover a h3 {
    font-weight: bold;
    color: #fff;
  }

  .xylb ul li:hover a .icon {
    background-image: url(../images/xylb-sj2.png);
  }

  .xylb2 .k ul li:hover a .picbox::before {
    opacity: 1;
    background: linear-gradient(141deg, rgba(46, 137, 230, 0.9829) 3%, rgba(46, 137, 230, 0) 61%);
  }

  .xylb2 .k ul li:hover a .tx h3 {
    color: #2E89E6;
    font-weight: bold;
  }

  .xylb2 .k ul li:hover a .tx .con p {
    color: #2E89E6;
  }


.pagination a.active {
  background: #2E89E6;
  color: #fff;
  border: 1px solid #2E89E6;
}

.pagination a:hover {
  background: #2E89E6;
  color: #fff;
  border: 1px solid #2E89E6;
}



}


@media screen and (max-width: 1600px) {}


@media screen and (max-width: 1024px) {
  .foot {
    padding: 0.14rem;
  }

  .banner::after {
    display: none;
  }

  .lmmc {
    bottom: 0.2rem;
  }

  .lmmc h3 {
    font-size: 0.26rem;
    margin-bottom: 0.3rem;
  }

  .lmmc h3::after {
    bottom: -0.15rem;
    width: 0.45rem;
    height: 0.02rem;
  }

  .xylb .tit {
    padding: 0.1rem 0.2rem;
  }

  .js3 .selbox{
    width: 3.1rem;
    margin-right: 0.2rem;
  }
  .js3 .selbox:nth-child(3){
    width: 3.45rem;
    margin-right: 0;
  }

  .xylb .tit h3>img {
    height: 0.24rem;
  }

  .xylb ul {
    margin-top: 0.1rem;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
  }

  .xylb ul li a {
    margin: 0.1rem;
  }

  .xylb .k+.k {
    margin-top: 0.3rem;
  }

  .xsjsbox {
    padding: 0.2rem;
  }

  .xsjs h3 {
    width: 100%;
    text-align: left;
  }

  .xylb2 .k {
    margin-top: 0.3rem;
  }

  .xylb2 .k .tit h3 {
    font-size: 0.24rem;
  }

  .xylb2 .k ul li {
    width: 25%;
  }

  .xylb2 .k ul li a {
    margin: 0.4rem 0.15rem 0 0.15rem;
  }

  .xylb2 .k ul li a .picbox::before {
    top: -0.1rem;
    left: -0.1rem;
  }

  .xylb2 .k ul li a .tx {
    padding-top: 0.1rem;
  }

  .xylb2 .k ul li a .tx h3 {
    font-size: 0.18rem;
  }

  .xylb2 .k ul li a .tx .con {
    margin-top: 0.1rem;
  }

  .pc_list {
    display: none;
  }

  .yd_list {
    display: block;
  }

  .nymain {
    padding-top: 0.3rem;
    padding-bottom: 0.4rem;
  }

  .nymain .leftNav>h2 {
    font-size: 24px;
    line-height: 70px;
  }

  .nymain .leftNav>ul>li::before {
    border-left-width: 2px;
  }

  .position h3 {
    font-size: 22px;
  }

  .position h3::after {
    height: 2px;
  }

  .text-list ul li {
    font-size: 0.18rem;
    line-height: 0.7rem;
  }

  .tw ul li a .pic {
    width: 3rem;
    height: 1.7rem;
  }

  .tw ul li a .pic .ly {
    font-size: 0.16rem;
  }

  .tw ul li a .tw-tx .date {
    margin-top: 0.2rem;
  }

  .tw ul li a .tw-tx h3 {
    margin-top: 0;
    font-size: 0.18rem;
  }

  .tw ul li a .tw-tx p {
    margin-top: 0.2rem;
  }

  .list-ld ul li .sz-pic {
    margin: 0 auto;
  }

  .list-ld ul li {
    margin-top: 0.3rem;
  }

  .list-ld ul li a {
    display: block;
    padding-top: 0.3rem;
  }

  .list-ld ul li .sz-tx {
    border: 1px solid transparent !important;
  }

  .list-ld ul li h3 {
    text-align: center;
  }

  .list-ld ul li .xq {
    margin-top: 0.2rem;
    padding-top: 0.2rem;
  }

  .art-main .art-tit h3 {
    font-size: 0.2rem;
  }

  .jssy .k1 .r {
    width: 3rem;
  }

  .jssy .k2 ul li+li {
    margin-right: 0.05rem;
  }

  .xylb .k1 {
    height: 2rem;
    padding: 0.5rem 0.2rem 0.3rem 2rem;
  }

  .xylb-hx {
    left: 0.3rem;
  }

  .xylb .k2>div {
    margin-top: 0.3rem;
  }

  .xylb .k2>div .tit h3 {
    font-size: 0.2rem;
  }

  .chartsTit {
    font-size: 16px;
    height: 46px;
    line-height: 46px;
    border-left: 3px solid #DCAB65;
  }

  .charts1>div {
    padding: 20px;
  }

  .xylb ul li {
    width: 50%;
  }

  .js3 {
    padding-left: 0;
  }

  .zcjs,
  .js3 {
    padding-top: 0.2rem;
    margin-top: 0.1rem;
  }

  .js3 .ssbtn {
    margin-top: 0.2rem;
    width: 100%;
    justify-content: center;
  }

  .jssy2 .k2 ul {
    margin-top: 0.2rem;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
  }

  .jssy2 .k2 ul li {
    width: 50%;
  }

  .jssy2 .k2 ul li a {
    margin: 0.1rem;
  }

  .jssy2 .k2 ul li a .tx h3 {
    font-size: 0.2rem;
  }

  .jssy2 .k2 ul li a .tx h3 span {
    padding-left: 0.1rem;
  }

  .ab1 {
    padding-left: 0.3rem;
  }

  .ab1 h4 {
    font-size: 0.18rem;
  }

  .ab1 .con p {
    font-size: 0.16rem;
  }

  .ab1 h4+h4,
  .ab1 .con p+p {
    margin-top: 0.1rem;
  }

  .ab1 .con {
    margin-top: 0.25rem;
  }

  .ab2 .r {
    padding: 0.65rem 0.1rem 0 0.3rem;
  }

  .ab2 .r .con {
    margin-top: 0.3rem;
  }

  .ab2 .r h3 {
    font-size: 0.18rem;
  }

  .ab2 .r .con p {
    font-size: 0.16rem;
  }

  .ab2 .r .con p img {
    width: 0.18rem;
  }

  .ab2 .ab-zs {
    width: 2.52rem;
    right: 0;
  }

  .ab2 {
    padding-right: 0.2rem;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width:920px) {
  .nymain .leftNav>h2 {
    height: inherit;
    line-height: 0.56rem;
    font-size: 0.2rem;
    text-align: left;
    padding-left: 0.15rem;
    font-weight: 600;
    background: #AD0101;
  }

  .nymain .leftNav>h2::before,
  .nymain .leftNav>h2::after {
    display: none;
  }

  .nymain .leftNav>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 0.14rem;
    cursor: pointer;
  }

  .nymain {
    padding: 0.25rem 0;
  }

  .nymain .leftNav {
    float: none;
    width: auto;
    top: 0;
    margin-right: 0;
  }

  .nymain .leftNav>p {
    font-size: 18px;
    padding: 10px 0;
  }

  .nymain .leftNav ul li a {
    font-size: 0.2rem;
    line-height: 0.3rem;
  }

  .nymain .leftNav>ul>li>ul {
    padding-left: 0.4rem;
  }

  .nymain .leftNav>ul>li>ul>li>a {
    margin: 0.1rem 0;
  }

  .ny-right {
    float: none;
    width: auto;
    padding: 0 0 0.3rem 0;
  }

  .position>div {
    text-align: left;
    height: auto;
    line-height: 22px;
  }

  .position h3 {
    left: 0;
    width: auto;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
    position: relative;
    left: 0;
    margin-bottom: 10px;
    font-weight: 600;
    display: none;
  }

  .position h3::after {
    width: 37px;
    height: 37px;
    right: -10px;
    bottom: -15px;
  }

  .pagination {
    padding-top: 25px;
  }

  .pagination a {
    padding: 0 5px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
    margin: 0 3px;
  }

  .nymain .leftNav ul {
    display: none;
    padding-bottom: 0;
    background-image: none;
  }

  .nymain .leftNav>ul>li>span {
    height: 0.57rem;
  }

  .xylb ul li {
    width: 100%;
  }

  .xylb2 .k ul li {
    width: 50%;
  }

  .text-list {
    margin-top: 0;
  }

  .pnext {
    float: none;
    border: none;
    width: auto;
  }

  .zzjg_text 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;
  }

  .nymain .leftNav>h2 img {
    height: 20px;
  }

  .dt-list2 li a>.dt-text h3 {
    font-size: 18px;
  }

  .dt-list2 li a>.dt-text p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 0;
  }

  .dt-list2 li a>.dt-text {
    padding-left: 10px;
  }

  .dt-list2 li .date {
    width: 60px;
  }

  .dt-list2 li .date span {
    font-size: 24px;
  }

  .dt-list2 li .date {
    padding: 4px 0;
  }

  .dt-list2 li {
    padding: 15px 0;
  }

  .art-main .art-body {
    padding-top: 20px;
  }

  .sz-con {
    margin-top: 0.25rem;
  }

  .sz-ty h3 {
    font-size: 0.22rem;
  }

  .sz-ty>div {
    margin-top: 0.2rem;
  }

  .sz-ty>div p {
    font-size: 0.2rem;
  }

  .sz-box h4 span {
    font-size: 0.22rem;
  }

  .sz-box p {
    font-size: 0.2rem;
    line-height: 0.36rem;
  }

  .sz-d::before {
    left: 0.12rem;
  }

  .xz-list-t ul li .pic {
    width: 2.2rem;
    height: 1.47rem;
  }

  .tw {
    margin-top: 0;
  }

  .tw ul li a {
    padding: 0.25rem 0;
  }

  .art-main .art-tit h3 {
    margin-top: 0.15rem;
  }

  .art-main .cont-tit p span {
    font-size: 12px;
  }

  .list-ld ul li h3 {
    font-size: 0.22rem;
  }

  .list-ld ul li p {
    font-size: 0.16rem;
  }

  .list-ld ul li .xq span {
    font-size: 0.16rem;
    background-size: 0.25rem auto;
    padding-right: 0.35rem;
  }

  .jssy .k1 {
    display: block;
  }

  .jssy .k1 label {
    width: 100%;
  }

  .jssy .k1 label+label {
    margin-top: 0.2rem;
  }

  .jssy .k1 .r {
    flex: 1;
    min-width: 0;
    width: auto;
  }

  .jssy .k1 .tit span {
    width: 0.75rem;
    text-align: center;
  }

  .jssy .k1 label:nth-child(3) {
    justify-content: center;
  }

  .jssy .k3box {
    background: #2E89E6;
    height: auto;
    padding: 0.1rem 0;
  }

  .sel {
    width: calc(100% / 2);
  }

  .jssy .k3box .sel:nth-child(odd)::before {
    content: none;
  }

  .img-lists ul {
    margin: 0 -0.1rem;
  }

  .img-lists ul li {
    width: 50%;
  }

  .img-lists ul li a {
    margin: 0.1rem;
  }

  .xylb .k1 {
    height: auto;
    padding: 0.2rem;
    background: #2E89E6;
  }

  .xylb-hx {
    position: static;
    margin: 0 auto;
    margin-bottom: 0.2rem;
  }

  .xklb-con>div .tit h3 {
    font-size: 0.2rem;
    cursor: pointer;
  }

  .xklb-con>div .con ul {
    min-height: 1.5rem;
    padding: 0.2rem 0.1rem;
  }

  .cjwt .xklb-con>div .con ul {
    padding: 0.2rem;
  }

  .jssy2 .k2 ul li {
    width: 100%;
  }

  .js3 .selbox {
    width: 100%;
    margin-bottom: 0.2rem;
    margin-right: 0;
  }
  .js3 .selbox:nth-child(3){
    width: 100%;
  }

  .js3 .selbox h3 {
    width: 0.8rem !important;
    text-align: right;
  }

  .js3 .ssbtn {
    /* margin-top: 0; */
    /* margin-left: 0.9rem; */
    margin: 0 auto;
  }

  .ab2 .l {
    width: 100%;
  }

  .ab2 .r {
    width: 100%;
  }

  .ab2 .ab-zs {
    display: none;
  }

  .ab2 .r {
    padding: 0.2rem;
  }

  .ab2 {
    margin-top: 0.3rem;
    padding-right: 0;
  }
}

@media screen and (max-width:640px) {}

@media screen and (max-width:480px) {
  .nymain>div {
    padding: 0 10px 10px;
  }

  .img-lists ul li a>img {
    height: 100px;
  }

  .art-main .cont-tit p .liulan {
    margin-left: 15px;
  }

  .nymain .leftNav ul li a {
    line-height: 36px;
    font-size: 15px;
  }

  .nymain .leftNav>ul>li>ul>li>a {
    font-size: 13px;
    line-height: 30px;
  }

  .sz-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sz-con .sz-r {
    width: 100%;
    flex: none;
    padding-left: 0;
  }

  .sz-r {
    width: calc(100% - 2rem);
  }

  .sz-ty {
    padding-left: 0;
  }

  .sz-ty h3 {
    text-align: center;
    margin-top: 0.2rem;
  }

  .sz-ty>div p {
    white-space: normal;
    word-break: normal;
    overflow:
      visible;
    text-overflow: initial;
  }

  .tw ul li a .pic {
    float: none;
    width: 100%;
    height: auto;
    padding-top: 56.57%;
    margin-bottom: 0.2rem;
    margin-right: 0;
  }

  .list-ld ul li {
    width: 100%;
  }

  .list-ld ul li .sz-tx {
    padding: 0.2rem 0.3rem 0.3rem 0.3rem;
  }

  .img-lists ul li a .pic {
    height: 2.4rem;
  }

  .jssy2 .k2 ul li a {
    padding: 0.15rem;
  }

}

@media screen and (max-width:320px) {
  .text-list ul li {
    line-height: 40px;
  }

  .art-main .art-tit span {
    font-size: 12px;
    padding-bottom: 5px;
    line-height: 24px;
    height: 24px;
  }

  .art-main .art-body p {
    font-size: 15px;
  }

  .img-lists ul li a>img {
    height: 84px;
  }
}