@charset "utf-8";

body {
  background: #f7faff;
}

.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;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
}

.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 a.active {
  background: #2E89E6;
  color: #fff;
  border: 1px solid #2E89E6;
}

.pagination a:hover {
  background: #2E89E6;
  color: #fff;
  border: 1px solid #2E89E6;
}

.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: #0065B3;
  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: #0065B3;
}

.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: #0065B3;
}

.nymain .leftNav>ul>li.on::before,
.nymain .leftNav>ul>li:hover::before {
  width: calc(100% + 0.2rem);
}

.nymain .leftNav>ul>li.active>a {
  color: #0065B3;
  font-weight: bold;
}

.nymain .leftNav ul li.active ul {
  display: block;
}

.nymain .leftNav ul li a:hover {
  background-position: 0.31rem center;
  color: #0065B3;
}

.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 {
  font-size: 0.16rem;
}

.position span {

  font-size: 0.16rem;
  vertical-align: middle;
  margin-right: 0.05rem;
}

.position img {
  display: inline;
  width: auto;
  height: 0.2rem;
  vertical-align: middle;
  margin-right: 0;
}

.position a {
  font-size: 0.16rem;
  margin: 0 0.05rem;
  vertical-align: middle;
}

.position a:hover {
  color: #0065B3;
}

/* 列表页 */
.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: #0065B3;
}

.pnext p:hover a {
  color: #0065B3;
}


/* 图片列表 */
.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: #0065B3;
}

.list-ld ul li:hover .sz-tx {
  border-color: #0065B3;
}

.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 #0065B3;
  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 ul li {}

.tw ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(141, 141, 141, 0.3);
  position: relative;
  z-index: 1;
  background-color: transparent;
  transition: all 0.5s;
  cursor: pointer;
}

.tw ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  border-bottom: 1px solid #0065B3;
  transition: all 0.5s;
}

.tw ul li a .pic {
  width: 2.9rem;
  height: 1.94rem;
  padding-top: 0;
}

.tw ul li a .tx {
  flex: 1;
  min-width: 0;
}

.tw ul li a .tx .date {
  display: inline-block;
  font-family: Microsoft YaHei;
  font-size: 0.16rem;
  color: #ADADAD;
  padding: 0 0.26rem;
  border-bottom: 1px solid #BFBFBF;
  padding-bottom: 0.07rem;
  margin-top: 0.17rem;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.tw ul li a .tx .date::after {
  content: '';
  position: absolute;
  bottom: -0.04rem;
  left: 100%;
  width: 0.06rem;
  height: 0.06rem;
  border: 1px solid #BFBFBF;
  border-radius: 50%;
  transition: all 0.5s;
}

.tw ul li a .tx .date b {
  font-size: 0.3rem;
  font-weight: normal;
  color: #ADADAD;
  padding-right: 0.02rem;
}

.tw ul li a .tx h3 {
  font-family: Microsoft YaHei;
  font-size: 0.2rem;
  line-height: 0.3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  margin-left: 0.26rem;
}

.tw ul li a .tx p {
  font-family: Microsoft YaHei;
  font-size: 0.16rem;
  line-height: 0.28rem;
  height: 0.56rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 0.16rem;
  color: #8D8D8D;
  margin-left: 0.26rem;

}

.tw ul li:hover a::before {
  width: 100%;
}

.tw ul li:hover a .date,
.tw ul li:hover a .date b {
  color: #0065B3;
}

.tw ul li a .tx h3 span:hover {
  color: #0065B3;
}

/* 学院列表 */
.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 ul li,
.xsjs>li {
  font-size: 0.16rem;
  line-height: 0.28rem;
  padding: 0 0.12rem;
  cursor: pointer;
  margin-right: 0.1rem;
  margin-bottom: 0.1rem;
  transition: all 0.5s;
  height: 0.3rem;
}

.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;
}

/* 内页公共头部组件 */
.ny-top {
  position: relative;
  text-align: center;
  margin-bottom: 0.4rem;
}

.ny-top .tit {
  display: inline-block;
}

.ny-top .tit h2 {
  display: inline-block;
  font-size: 0.48rem;
  font-weight: 600;
  font-family: sys-semibold;
}

.ny-top .tit span {
  display: inline-block;
  font-family: sys-semibold;
  font-size: 0.22rem;
  margin-left: 0.1rem;
  text-transform: uppercase;
  vertical-align: bottom;
  margin-bottom: 0.05rem;
}

.ny-top .position {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
}

.tdsy-item {
  margin-bottom: 0.5rem;
}

.tdsy-tit {
  margin-bottom: 0.35rem;
}

.tdsy-tit h3 {
  font-size: 0.32rem;
  color: #0066cc;
  font-weight: bold;
  line-height: 0.66rem;
  padding-left: 0.15rem;
  border-left: 0.04rem solid #F29B38;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #F3FAFF 100%);
}

.tdsy-cards ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.1rem;
}

.tdsy-cards ul li {
  width: 25%;
  padding: 0 0.1rem;
  margin-bottom: 0.2rem;
}

.tdsy-cards ul li a {
  display: block;
  background: linear-gradient(270deg, rgba(245, 251, 255, 0.6) 0%, #F3FAFF 100%);
  border: 1px solid;
  border-image: linear-gradient(270deg, rgba(214, 236, 252, 0.3) 0%, #D7EDFD 100%) 1;
  padding: 0.35rem 0.3rem;
  transition: all 0.3s;
}

.tdsy-cards ul li a:hover {
  background: #fff;
  box-shadow: 0 0.05rem 0.2rem rgba(0, 102, 204, 0.08);
  transform: translateY(-2px);
}

.tdsy-cards ul li a h4 {
  font-family: sys-semibold;
  font-size: 0.2rem;
  color: #333;
  margin-bottom: 0.18rem;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.tdsy-cards ul li a:hover h4 {
  color: #0066cc;
}

.tdsy-cards ul li a p {
  font-size: 0.16rem;
  color: #999;
  display: flex;
  align-items: center;
}

.tdsy-cards ul li a p img {
  height: 0.22rem;
  margin-right: 0.1rem;
}

@media screen and (max-width: 1024px) {
  .tdsy-cards ul li {
    width: 33.33%;
  }

  .tdsy-tit h3 {
    font-size: 0.22rem;
    line-height: 0.46rem;
    padding-left: 0.15rem;
  }

  .tdsy-cards ul li a {
    padding: 0.2rem;
  }

  .tdsy-tit {
    margin-bottom: 0.2rem;
  }

  .tdsy-item {
    margin-bottom: 0.25rem;
  }
}

@media screen and (max-width: 920px) {
  .tdsy-cards ul li {
    width: 50%;
  }


}

@media screen and (max-width: 640px) {
  .tdsy-cards ul li {
    width: 100%;
  }

  .ny-top .tit h2 {
    font-size: 0.36rem;
  }

  .ny-top .tit span {
    font-size: 0.16rem;
  }
}

.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: 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.4rem;
}

.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;
}

.js3 .ssbtn>input:hover {
  background: #2E89E6;
  color: #fff;
}

/* 常见问题 */
.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.98rem;
  width: 3.82rem;
  z-index: -1;
}

.ab2 .l {
  width: 50.93%;
}

.ab2 .l .pic {
  padding-top: 56.56%;
}

.ab2 .r {
  width: 49.07%;
  background: url(../images/ab2-bg.png) no-repeat right center;
  background-size: cover;
  padding: 0.85rem 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;
}

.search2 {
  margin-bottom: 0 !important;
}

@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;
  }

  .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;
  }


}


@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;
  }

  .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;
    min-height: 10.72rem;
  }
  .ny-top .position {
    position: static;
    margin-top: 0.2rem;
  }

  .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;
  }

  .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;
  }

  .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;
  }

  .ny-top .tit h2 {
    font-size: 0.26rem;
  }

  .ny-top .tit span {
    font-size: 0.16rem;
  }
}

@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: #0065B3;
  }

  .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;
    min-height: 8.98rem;
  }

  .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;
  }

  .tw ul li a .tx h3 {
    font-size: 0.18rem;
  }

  .tw ul li a .tx .date b {
    font-size: 0.26rem;
  }

  .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 h3 {
    width: 0.8rem !important;
    text-align: right;
  }

  .js3 .ssbtn {
    margin-top: 0;
    margin-left: 0.9rem;
  }

  .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;
  }

  .ny-top .position {
    position: static;
    margin-top: 0.2rem;
  }

  .ny-top {
    padding-bottom: 0;
    margin-bottom: 0.2rem;
  }
}

@media screen and (max-width:768px) {
  .nymain{
    min-height:7.34rem;
  }

}
@media screen and (max-width:640px) {

  .pages table td, .pages table td div{
    font-size:0.12rem;
  }
  .pages .PrevDisabled, .pages .Next, .pages a.Prev, .pages .NextDisabled{
    font-size:0.12rem !important;
    padding:0 0.07rem !important;
    margin:0 0.04rem !important;
  }
  .pages input[type="button"]{
    font-size:0.12rem !important;
    padding:0 0.07rem !important;
  }
  .pages input.defaultInputStyle{
    font-size:0.12rem !important;
    padding:0 0.07rem !important;
    max-width:0.4rem;
  }
  


}

@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{
    min-height:6.78rem;
  }

  .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: 66.89%;
    margin-bottom: 0.2rem;
    margin-right: 0;
    display: none;
  }

  .tw ul li a .tx {
    flex: none;
    width: 100%;
  }

  .tw ul li a .tx h3,
  .tw ul li a .tx p {
    margin-left: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: auto;
  }

  .tw ul li a .tx .date {
    padding: 0 0.2rem 0 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;
  }
}

/* 项目统计列表 */
.tj-item {
  margin-bottom: 0.6rem;
}

.tj-tit {
  margin-bottom: 0.3rem;
}

.tj-tit h3 {
  font-size: 0.32rem;
  color: #0066cc;
  font-weight: bold;
  line-height: 1.1;
  padding-left: 0.15rem;
  border-left: 0.06rem solid #F29B38;
}

.tj-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.tj-table th {
  background: #0065B3;
  color: #fff;
  font-size: 0.2rem;
  font-weight: normal;
  padding: 0.18rem 0.1rem;
  white-space: nowrap;
}

.tj-table th:first-child {
  text-align: left;
  padding-left: 0.2rem;
}

.tj-table td {
  font-size: 0.18rem;
  color: #333;
  padding: 0.16rem 0.1rem;
  border-right: 1px solid #E3F3FF;
  /* white-space: nowrap; */
}

.tj-table td.t-left {
  text-align: left;
  padding-left: 0.2rem;
}

.tj-table td:last-child {
  border-right: none;
}

.tj-table tbody tr:nth-child(even) {
  background: #EEF7FD;
}

.tj-table tbody tr:nth-child(odd) {
  background: #fff;
}

.tj-table td a {
  color: #333;
}

.tj-table td a:hover {
  color: #0066cc;
}

@media screen and (max-width: 1024px) {
  .tj-table {
    overflow-x: auto;
  }

  .tj-table table {
    min-width: 900px;
  }
}

/* 成果索引列表 */
.cg-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.4rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.3rem;
  /* 增加一点内边距让背景更好看 */
}

.cg-l {
  width: 3.2rem;
  background: linear-gradient(270deg, rgba(245, 251, 255, 0.6) 0%, #F3FAFF 100%);
  border: 1px solid;
  border-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #D7EDFD 100%) 1;
 /* border-radius: 0.2rem;*/
  padding: 0.4rem 0.2rem;
  box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.02);
}

.cg-l h3 {
  font-size: 0.3rem;
  color: #333;
  text-align: center;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.cg-l ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.25rem;
}

.cg-l .tag {
  width: 1.5rem;
  min-height: 0.46rem;
  line-height: 0.26rem;
  background: #0065B3;
  color: #fff;
  font-size: 0.2rem;
  text-align: center;
  border-radius: 0.04rem;
  margin-right: 0.2rem;
  padding: 0.1rem 0.05rem;
}

.cg-l .num {
  font-size: 0.3rem;
  color: #333;
  width: 0.6rem;
  text-align: left;
  font-family: Arial, sans-serif;
}

.cg-r {
  width: calc(100% - 3.8rem);
}

.cg-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  position: relative;
}

.cg-tit h3 {
  font-size: 0.3rem;
  color: #333;
  display: flex;
  align-items: center;
  font-weight: normal;
}

.cg-tit h3 img {
  height: 0.3rem;
  margin-right: 0.1rem;
}

.cg-tit .more {
  font-size: 0.16rem;
  color: #0065B3;
}

.cg-tit .more:hover {
  text-decoration: underline;
}

.cg-ul ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px dashed #e5e5e5;
  transition: all 0.3s;
  cursor: pointer;
}

.cg-ul ul li a:hover {
  background: #fafafa;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}

.cg-ul ul li a .txt {
  font-size: 0.18rem;
  color: #333;
  flex: 1;
  min-width: 0;
  margin-right: 0.4rem;
}

.cg-ul ul li a .txt span:hover {
  color: #0065b3;
}

.cg-ul ul li a .date {
  font-size: 0.18rem;
  color: #999;
  white-space: nowrap;
  margin-left: 0.2rem;
}

@media screen and (max-width: 920px) {
  .cg-item {
    flex-wrap: wrap;
    padding: 0.2rem;
  }

  .cg-l h3 {
    font-size: 0.26rem;
    margin-bottom: 0.2rem;
  }

  .cg-l {
    width: 100%;
    padding: 0.2rem;
  }

  .cg-l ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cg-r {
    width: 100%;
  }

  .cg-tit {
    margin-top: 0.25rem;
  }

  .cg-tit h3 {
    font-size: 0.22rem;
  }

  .cg-tit h3 img {
    height: 0.22rem;
  }

  .cg-l .tag {
    width: calc(100% - 0.65rem);
    min-height: 0.4rem;
    line-height: 0.2rem;
    font-size: 0.18rem;
    margin-right: 0.1rem;
  }

  .cg-l .num {
    font-size: 0.26rem;
  }

  .cg-l ul li {
    margin-bottom: 0.1rem;
    width: 33%;
  }
}

@media screen and (max-width: 768px) {
  .cg-l ul li {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .cg-ul ul li a {
    flex-wrap: wrap;
  }

  .cg-ul ul li a .txt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.1rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .cg-l{
    padding: 0.2rem 0.15rem;
  }

}

@media screen and (max-width: 768px) {
  .cg-l ul li {
    width: 100%;
  }
}

/* 结构内容页 */
.jg-detail {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
}

.jg-detail-tit {
  text-align: center;
  margin-bottom: 0.6rem;
}

.jg-detail-tit h2 {
  font-size: 0.3rem;
  color: #333;
  font-weight: bold;
}

.jg-detail-box {
  background: rgba(255, 255, 255, 0.4);
  padding: 0.6rem 0.8rem;
}

.jg-detail-box ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.jg-detail-box ul li:last-child {
  margin-bottom: 0;
}

.jg-detail-box ul li .item {
  width: 50%;
  display: flex;
  font-size: 0.22rem;
  line-height: 1.6;
}

.jg-detail-box ul li .item .label {
  color: #333;
  font-weight: bold;
  width: 1.6rem;
  flex-shrink: 0;
  margin-right: 0.3rem;
}

.jg-detail-box ul li .item .val {
  color: #666;
  flex: 1;
}

.jg-prev-next {
  margin-top: 0.6rem;
}

.jg-prev-next a {
  display: block;
  font-size: 0.22rem;
  color: #666;
  margin-bottom: 0.25rem;
  transition: all 0.3s;
}

.jg-prev-next a:hover {
  color: #0065B3;
}

@media screen and (max-width: 1024px) {
  .jg-detail-tit {
    margin-bottom: 0.2rem;
  }

  .jg-detail-tit h2 {
    font-size: 0.22rem;
  }

  .jg-detail-box {
    padding: 0.2rem;
  }

  .jg-detail-box ul li .item,
  .jg-prev-next a {
    font-size: 0.18rem;
  }

  .jg-detail {
    margin-top: 0.2rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 640px) {
  .jg-detail-box ul li {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .jg-detail-box ul li .item {
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .jg-detail-box ul li:last-child .item:last-child {
    margin-bottom: 0;
  }

  .jg-detail-tit h2 {
    font-size: 0.22rem;
  }

  .jg-detail-box ul li .item .label {
    width: 1.3rem;
  }

  .jg-prev-next {
    margin-top: 0.2rem;
  }

  .jg-prev-next a {
    margin-bottom: 0.1rem;
  }
}

/* 团队索引内页列表 */
.team-list {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.team-item {
  background: linear-gradient(270deg, rgba(245, 251, 255, 0.6) 0%, #F3FAFF 100%);
  border: 1px solid;
  border-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #D7EDFD 100%) 1;
  padding: 0.4rem;
  margin-bottom: 0.57rem;
  border-radius: 0.1rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}

.team-item:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(0, 102, 204, 0.08);
  transform: translateY(-2px);
}

.t-pic {
  width: 2.3rem;
  flex-shrink: 0;
  margin-right: 0.33rem;
  background: #fff;
}

.t-pic img {
  width: 100%;
  display: block;
}

.t-info {
  flex: 1;
  min-width: 0;
  margin-right: 0.4rem;
}

.t-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.t-name {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.t-name .tag {
  background: #0065B3;
  color: #fff;
  font-size: 0.24rem;
  padding: 0.05rem 0.15rem;
  border-radius: 0.25rem;
  margin-right: 0.2rem;
  white-space: nowrap;
}

.t-name h3 {
  font-size: 0.24rem;
  color: #333;
  font-weight: normal;
}

.t-view-wrapper {
  display: flex;
  align-items: center;
}

.t-view {
  font-size: 0.22rem;
  color: #999;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-right: 0.3rem;
}

.t-view img {
  height: 0.13rem;
  margin-right: 0.1rem;
}

.t-bd {
  display: flex;
  justify-content: space-between;
}

.t-desc {
  width: 49%;
  padding-right: 0.35rem;
}

.t-desc .row {
  display: flex;
  font-size: 0.22rem;
  line-height: 1.8;
  margin-bottom: 0.15rem;
}

.t-desc .row .label {
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}

.t-desc .row .val {
  color: #666;
  flex: 1;
}
/*
.tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}
*/
/* IE 兼容写法 */
.tags-group {
    display: flex;
    flex-wrap: wrap;
    margin: -0.1rem; /* 抵消子元素margin产生的边缘空白 */
}

.d-tag {
    margin: 0.075rem; /* 等于 gap / 2 */
}

/* 现代浏览器增强 */
@supports (display: grid) and (gap: 0.2rem) {
    .tags-group {
        display: flex;
        flex-wrap: wrap;
        gap: 0.15rem;
        margin: 0;
    }
    
    .d-tag {
        margin: 0;
    }
}


.d-tag {
  display: inline-flex;
  align-items: baseline;
  padding: 0.02rem 0.1rem;
  font-size: 0.16rem;
  color: #0065B3;
  border-radius: 0.1rem;
  border: 1px solid #D6ECFC;
}

.d-tag b {
  font-family: Impact;
  font-size: 0.3rem;
  font-weight: bold;
  margin-right: 0.05rem;
  line-height: 1;
  position: relative;
  top: 0.02rem;
}

.t-members {
  flex: 1;
  min-width: 0;
}

.t-members h4 {
  font-size: 0.22rem;
  color: #333;
  font-weight: normal;
  margin-bottom: 0.2rem;
}

/* IE 兼容写法 */
.t-members ul {
    display: flex;
    flex-wrap: wrap;
    margin: -0.1rem; /* 抵消子元素margin产生的边缘空白 */
}

.t-members ul li {
    margin: 0.1rem; /* 等于 gap / 2 */
  width: 16.4%;
}

/* 现代浏览器增强 */
@supports (display: grid) and (gap: 0.2rem) {
    .t-members ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.2rem;
        margin: 0;
    }
    
    .t-members ul li {
        width: calc(20% - 0.16rem);
        margin: 0;
    }
}

/*
.t-members ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}*/

.t-members ul li {
  text-align: center;
}

.t-members .m-pic {
  margin-bottom: 0.1rem;
  height: 1.5rem;
  position: relative;
  border: 1px solid #f0f0f0;
}

.t-members .m-pic img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  /* border: 1px solid #f0f0f0; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.t-members .m-name {
  font-size: 0.16rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 0.8rem;
  height: 0.8rem;
  background: #0065B3;
  background-clip: padding-box;
  border: 0.1rem solid #EAF5FD;
  color: #fff;
  font-size: 0.18rem;
  line-height: 1.2;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
  box-sizing: content-box;
}

.t-btn:hover {
  background: #00508e;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .t-bd {
    flex-wrap: wrap;
  }

  .t-desc {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.3rem;
  }

  .team-item {
    padding: 0.2rem;
    margin-bottom: 0.25rem;
  }

  .t-name .tag,
  .t-name h3 {
    font-size: 0.2rem;
  }

  .t-desc .row {
    font-size: 0.18rem;
  }
  .d-tag{
    font-size: 0.14rem;
  }
  .d-tag b{  
    font-size: 0.26rem;
  }

  .t-members {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 920px) {
  .team-item {
    flex-wrap: wrap;
  }

  .t-pic {
    margin: 0 auto;
    margin-bottom: 0.2rem;
  }

  .t-info {
    flex: none;
    width: 100%;
    margin-right: 0;
  }

  .t-btn {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.15rem;
  }
}

@media screen and (max-width: 640px) {
  .t-hd {
    flex-wrap: wrap;
  }

  .t-name h3 {
    font-size: 0.22rem;
  }

  .t-view {
    margin-top: 0.15rem;
    width: 100%;
  }

  .t-btn {
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0.14rem;
    right: 0.2rem;
    top: 0.2rem;
  }

  .t-members ul li {
    width: calc(33.33% - 0.14rem);
  }
.t-members{display:none;}
}