@charset "UTF-8";

.root {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background: #f8f9fd;
}

.first-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.first-screen header {
  flex: none;
}

.first-screen .index-banner {
  flex: 1;
  position: relative;
}

.first-screen .index-banner .box {
  height: 100%;
  background: #333;
  position: relative;
}

header {
  /* position: relative; */
  z-index: 9;
  position: fixed;
  width: 100%;
  background: #f8f9fd;
  /* box-shadow: 0 10px 20px rgba(23, 45, 141, 0.1); */
}

header::before {
  content: '';
  display: block;
  height: .08rem;
  min-height: 3px;
  background-image: linear-gradient(to right, #172d8d, #b71c22);
}

header .menu-btn {
  width: .56rem;
  height: .56rem;
  border-radius: 50%;
  border: 1px solid #333;
  display: none;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

header .menu-btn span {
  width: 40%;
  height: 2px;
  background: #333;
  margin: 4% 0;
}

header .menu-btn:hover {
  background: #b71c22;
  border: none;
}

header .menu-btn:hover span {
  background: white;
}

header .search .box {
  display: flex;
  max-width: 18em;
  height: 2.5em;
  line-height: 2.5;
  border-radius: 1.25em;
  background: white;
  margin: 0 2.5em;
  box-shadow: 0 10px 20px rgba(23, 45, 141, 0.1);
}

header .search .box>* {
  padding: 0 1em;
  flex: none;
}

header .search .box input {
  flex: 1;
  color: inherit;
}

header .search .box button {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

header .search .box a:hover {
  color: initial;
}

header .top .container {
  height: .9rem;
  align-items: center;
}

header .top .logo,
header .top .goto,
header .top .lang,
header .top .menu-btn {
  flex: none;
}

header .top .logo {
  font-size: 0;
}

header .top .search {
  flex: 1;
}

header .top .goto {
  font-size: .875em;
}

header .top .goto a {
  margin-right: 2.5em;
  color: #333;
}

header .top .goto a:hover {
  color: #172d8d;
}

header .top .lang a {
  width: .4rem;
  height: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #333;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

header .top .lang a:hover {
  border: none;
  background: #b71c22;
  color: white;
}

header .menu {
  border-top: 1px solid #e5e5e5;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {

  header .menu .goto,
  header .menu .search,
  header .menu .lang {
    display: none;
  }
}

header .menu .container {
  justify-content: space-between;
}

header .menu .nav-1 {
  flex: none;
  position: relative;
  color: #999;
}

header .menu .nav-1>a {
  height: .6rem;
  line-height: .6rem;
  color: #998;
  font-size: 17px;
}

header .menu .nav-1>a:hover {
  color: initial;
}

header .menu .nav-1>a.active {
  color: #172d8d !important;
  font-weight: bold;
}

header .menu .nav-1::before {
  content: '';
  width: 3px;
  height: 0;
  display: block;
  background: #b71c22;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: -12px;
  margin-left: -1.5px;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  z-index: 2;
}

header .menu .nav-1:first-of-type::before {
  display: none;
}

header .menu .nav-2 {
  display: none;
  background: white;
  text-align: center;
  box-shadow: 0 10px 20px rgba(23, 45, 141, 0.1);
  padding: 1em 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 240%;
  margin-left: -70%;
  margin-top: .3rem;
}

header .menu .nav-2>a {
  font-size: .925em;
  line-height: 1.2;
  padding: .8em 0;
  border-bottom: 1px solid #e5e5e5;
  color: #999;
}

header .menu .nav-2>a:hover,
header .menu .nav-2>a.slt {
  color: #172d8d;
}

header .menu .nav-1:hover>a {
  color: #333;
}

header .menu .nav-1:hover::before {
  height: 24px;
}

header .menu .nav-1:hover .nav-2 {
  display: block;
  margin-top: .6rem;
}

video header .menu .nav-1:nth-child(1)::before {
  display: none;
}

header .menu .nav-1>a,
header .top .container,
/* header .top .logo>img {
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
} */

header .top .logo img {
  transform-origin: left;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

@media (min-width: 769px) {
  .xx .top .logo img {
    transform: scale(.8);
  }

  .xx .top .container {
    height: .7rem;
  }

  .xx .menu .nav-1>a {
    height: .5rem;
    line-height: .5rem;
  }

  .xx .menu .nav-1:hover .nav-2 {
    margin-top: .5rem;
  }
}

.index-banner {
  background: #333;
}

.row .news ._body {
  display: flex;
}

.row .news ._focus {
  width: 50%;
  flex: none;
  margin-right: 4%;
  position: relative;
}

.row .news .newslist._justlist {
  display: flex;
  flex-wrap: wrap;
}

.row .news .newslist._justlist>a {
  flex: none;
  width: 47%;
  /* background: url(../images/bg1.png) no-repeat right -5px bottom -5px/60%, white; */
  box-shadow: 0 20px 30px rgba(23, 45, 141, 0.1);
  /* padding: 0 1.5em; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  color: #333;
}

.row .news .newslist._justlist>a:nth-child(1),
.row .news .newslist._justlist>a:nth-child(3) {
  margin-right: 6%;
}

.row .news .newslist._justlist>a:nth-child(1),
.row .news .newslist._justlist>a:nth-child(2) {
  margin-bottom: 5%;
}

.row .news .newslist._justlist>a time::after {
  content: '';
  /* display: block; */
  width: 2em;
  height: 3px;
  background: #172d8d;
  margin: 6% 0;
}

/* .row .news .newslist._justlist>a:hover {
  color: white;
  background: url(../images/bg2.png) no-repeat right -5px bottom -5px/60%, #172d8d;
  box-shadow: none;
} */

.row .news .newslist._justlist>a:hover .box {
  transform: scale(1.1);
}

/* .row .news .newslist._justlist>a:hover time {
  color: white;
} */

.row .news .newslist._justlist>a:hover time::after {
  background: white;
}

.row .news .newslist._justlist>a:hover ._line {
  background: white;
}

.news .newslist .pic {
  flex: 1;
  Overflow: hidden;
}

.news .newslist .pic .box {
  height: 100%;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.news .newslist .txt {
  background: white;
  padding: .5em 1.2em;
}

.row .research ._body {
  display: flex;
}

.row .research ._body>a {
  flex: 1;
  color: #333;
}

.row .research ._body>a:hover {
  color: #172d8d;
}

.row .research ._body>a:nth-child(1) {
  margin-right: 5%;
}

.row .research .calendar .down {
  padding: 0 .6em;
}

.newslist._pictxtlist._updown {
  box-shadow: 0 10px 20px rgba(23, 45, 141, 0.1);
}

.newslist._pictxtlist._updown .pic {
  position: relative;
  padding-top: 60%;
}

.newslist._pictxtlist._updown .pic .box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
}

.newslist._pictxtlist._updown .txt {
  background: white;
  padding: .5em 1.2em;
  position: relative;
}

.newslist._pictxtlist._updown .txt ._title {
  min-height: 3.5em
}

.newslist._pictxtlist._updown .calendar {
  position: absolute;
  left: 1.5em;
  bottom: 0;
  padding: .3em 0;
  z-index: 1;
}

.calendar {
  background: #172d8d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.calendar .up {
  font-family: Impact;
  font-size: 1.875em;
  margin-bottom: 5px;
}

.calendar .down {
  font-size: .875em;
}

.notice ._list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.notice ._list>a {
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5%;
  margin-bottom: 5%;
  display: flex;
  color: #333;
}

.notice ._list>a:hover {
  color: #172d8d;
}

.notice ._list>a:nth-child(3) {
  margin-bottom: 0;
}

.notice ._list>a .calendar {
  min-width: 13%;
  flex: none;
  margin-right: 1.5em;
  align-items: stretch;
  box-shadow: 0 10px 20px rgba(23, 45, 141, 0.1);
}

.notice ._list>a .calendar .up,
.notice ._list>a .calendar .down {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice ._list>a .calendar .up {
  height: 60%;
  flex: none;
}

.notice ._list>a .calendar .down {
  flex: 1;
  background: white;
  color: #172d8d;
  padding: 0 .5em;
}

.video ._focus .box {
  padding-top: 68%;
  background: #333;
}

.academic ._list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.academic ._list>a {
  flex: 1;
  display: flex;
  /*max-height: 50%;*/
}

.academic ._list>a:hover ._name {
  color: #333;
}

.academic ._list>a:hover ._name::after {
  width: 100% !important;
}

.academic ._list>a:nth-child(1) {
  margin-bottom: 8%;
}

.academic ._list>a .personImg {
  flex: none;
  width: 40%;
  /*background: #333;*/
  margin-right: 5%;
  position: relative;
}

.academic ._list>a .personImg .box {
  position: relative;
  /*top: 0;*/
  /*bottom: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*background: #333;*/
  padding-top: 120%;
}

.academic ._list>a ._txt {
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
}

.academic ._list>a ._txt ._name {
  font-size: 1.125em;
  color: #333;
}

.academic ._list>a ._txt ._name::after {
  content: '';
  display: block;
  height: 3px;
  width: 1em;
  background: #172d8d;
  margin: 3% 0;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.academic ._list>a ._txt ._title {
  margin: 5% 0;
}

.academic ._list>a ._txt ._where {
  font-size: .875em;
  color: #999;
}

.academic ._list>a ._txt ._info {
  font-size: .875em;
  color: #999;
  margin-top: 5%;
}

/*新增*/
.new_info {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  font-size: .875em;
  color: #999;
}

.new_info>div {
  flex: none;
  padding-right: 1em;
}

.newslist._academic .newslist-pic .box {
  width: 100%;
  height: 100%;
  background: url(../images/test1.jpg) no-repeat center;
  background-size: cover;
}

@media (max-width: 768px) {
  .newslist._academic .newsgroup {
    flex-direction: column;
  }

  .newslist._academic .newsgroup .newslist-pic {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 1em;
  }

  .newslist._academic .newsgroup .newslist-pic .box {
    padding-top: 64%;
    height: auto;
  }
}

.about ._head ._line._left {
  margin-left: 0;
}

.about ._head ._line._right {
  margin-right: 0;
}

.about ._list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 1%;
}

.about ._list .data {
  flex: none;
  width: 25%;
  padding-left: 4%;
  display: flex;
  align-items: center;
  font-size: .875em;
  margin-bottom: 2.5%;
}

.about ._list .data ._icon {
  flex: none;
}

.about ._list .data ._txt {
  padding-left: 1em;
}

.about ._list .data .num {
  font-size: 3em;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  font-family: Arial, Helvetica, sans-serif, '微软雅黑';
  color: #172d8d;
}

.about ._list .data .num .unit {
  font-size: .45em;
  padding-bottom: .3em;
  font-weight: bold;
}

.about ._list .data .num .plus {
  font-size: .8em;
}

footer {
  background: #172d8d;
  color: white;
  font-size: .875em;
}

footer .up {
  display: flex;
  font-family: Arial, Helvetica, sans-serif, '微软雅黑';
}

footer .up>div {
  margin-right: 3%;
}

footer .up>div:nth-child(3) {
  margin-right: 0;
}

footer .up .logo {
  flex: 1.2;
}

footer .up .contact {
  flex: 2;
}

footer .up .link {
  
}

footer .up ._head {
  font-size: 1.125em;
  font-weight: bold;
  padding-bottom: 1em;
}

footer .up ._body {
  display: flex;
  flex-wrap: wrap;
}

footer .up ._body>div,
footer .up ._body>a {
  margin-bottom: .6em;
}

footer .up ._body>div {
  width: 100%;
  flex: none;
}

footer .up ._body>a {
  min-width: 50%;
  flex: none;
  opacity: .5;
  line-height: 2;
  padding-left: .8em;
  position: relative;
  padding-right: 10%;
  color: #fff;
}

footer .up ._body>a::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1.5px;
}

footer .up ._body>a:hover {
  color: white;
  opacity: 1;
}

footer .up .iconfont {
  margin-right: .6em;
}

footer .up .logo img {
  max-width: 198px;
  width: 100%;
  height: auto;
}

footer .down {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  opacity: .5;
  text-align: center;
  padding: 1.5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2%;
}

.index-main {
  background: url(../images/bg3.png) no-repeat bottom center;
}

.pic-txt .pic .box {
  padding-top: 60%;
  background: #333;
}

.pic-txt .txt {
  background: white;
  padding: .5em 1.2em;
}

.video .pic-txt._index .pic,
.news .pic-txt._index .pic {
  overflow: hidden;
  position: relative;
}

.video .pic-txt._index .pic .box,
.news .pic-txt._index .pic .box {
  background-image: url(../images/test1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #333;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.video .pic-txt._index .pic::before,
.video .pic-txt._index .pic::after,
.news .pic-txt._index .pic::before,
.news .pic-txt._index .pic::after {
  content: '';
  display: block;
  position: absolute;
}

.video .pic-txt._index .pic::after,
.news .pic-txt._index .pic::after {
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 10%;
  /* background-image: linear-gradient(to top, #172d8d, rgba(23, 45, 141, 0)); */
}

/* .video .pic-txt._index .txt,
.news .pic-txt._index .txt {
  background: #172d8d;
  color: white;
} */

.video .pic-txt._index:hover,
.news .pic-txt._index:hover {
  color: inherit !important;
}

.video .pic-txt._index:hover .pic .box,
.news .pic-txt._index:hover .pic .box {
  transform: scale(1.1);
}

.video .pic-txt._index .pic::before,
.video .pic-txt._index .pic::after {
  content: '';
  display: block;
  position: absolute;
}

.video .pic-txt._index .pic::before {
  z-index: 2;
  width: .6rem;
  height: .6rem;
  left: 50%;
  top: 50%;
  margin-left: -.3rem;
  margin-top: -.3rem;
  background: url(../images/play.png) no-repeat center/100%;
}

.index-banner .swiper {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.index-banner ._title {
  font-size: 2em;
  font-weight: bold;
  width: 80%;
  flex: none;
}

.index-banner .swiper-pagination {
  bottom: 0 !important;
  margin-bottom: 2%;
  line-height: 1 !important;
}

.index-banner .swiper-pagination-bullet {
  width: .1rem !important;
  height: .1rem !important;
  min-width: 6px;
  min-height: 6px;
  margin: 0 .1rem !important;
  background: none;
  border: 1px solid white;
  opacity: 1;
}

.index-banner .swiper-pagination-bullet-active {
  background: white !important;
}

.index-banner .swiper-slide {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  padding-bottom: 5%;
  color: white;
}

.index-banner .swiper-slide::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 20%;
  background-image: linear-gradient(to top, #172d8d, rgba(23, 45, 141, 0));
  z-index: -1;
}

.index-banner .swiper-slide:nth-child(1) {
  background-image: url(../images/test1.jpg);
}

.index-banner .swiper-slide:nth-child(2) {
  background-image: url(../images/test1.jpg);
}

.index-banner .swiper-slide:nth-child(3) {
  background-image: url(../images/test1.jpg);
}

.news .swiper-slide {
  display: block !important;
  text-align: left;
}

.news .swiper-slide .box:nth-child(1) {
  background-image: url(../images/test1.jpg);
}

.news .swiper-slide .box:nth-child(2) {
  background-image: url(../images/test1.jpg);
}

.news .swiper-slide .box:nth-child(3) {
  background-image: url(../images/test1.jpg);
}

.news .mySwiper,
.video .pic-txt._index {
  box-shadow: 0 20px 30px rgba(23, 45, 141, 0.1);
}

.index-main ._first .container {
  display: block;
}

.inner-banner {
  padding-top: 18%;
  position: relative;
  background-image: url(../images/inner-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #333;
}

/* .inner-banner::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background-image: linear-gradient(to top, #172d8d, rgba(23, 45, 141, 0));
} */

.inner-banner .inner-banner-txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.inner-banner .container {
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.inner-name {
  margin-bottom: 1em;
  color: white;
}

.inner-name .cn {
  font-size: .6rem;
  font-weight: bold;
  line-height: 1;
}

.inner-name .en {
  font-size: .24rem;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}

.inner-bar {
  background: #f8f9fd;
  color: white;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}

.inner-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky {
  position: fixed;
  top: .96rem;
  left: 0;
  width: 100%;
}

.inner-local {
  flex: none;
  font-size: .875em;
  color: #333;
}

.inner-local .iconfont {
  margin-right: .5em;
}

.inner-local span:nth-of-type(n+3)::after {
  content: '>';
  display: inline;
  font-family: '宋体';
  margin: 0 .5em;
  opacity: .3;
}

.inner-local span:last-child::after {
  display: none;
}

.inner-local a {
  display: inline;
  /* color: #fff; */
  text-decoration: none;
}

/* .inner-local a:hover {
  color: #fff;
} */

.inner-nav2._tab {
  flex: 1;
  margin-left: 6%;
  display: flex;
  justify-content: flex-end;
  height: 3em;
}

.inner-nav2._tab a {
  flex: auto;
  padding: 0 .5em;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 1px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
}

.inner-nav2._tab a:hover {
  /* color: white !important; */
  font-weight: bold;
}

.inner-nav2._tab a.active {
  color: #172d8d !important;
  font-weight: bold;
  padding-bottom: 5px;
}

.inner-nav2._tab a.active::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 8px);
  height: -moz-calc(100% + 8px);
  height: -webkit-calc(100% + 8px);
  background: white;
  border-top: 3px solid #b71c22;
  z-index: -1;
}

.inner-nav2._swiper {
  display: none;
}

.inner-nav2._swiper .swiper-slide {
  height: .8rem;
  line-height: 1;
  background: none;
  flex: none;
  width: auto;
  font-size: 1em;
  padding: 0 1%;
  flex-direction: column;
  /* justify-content: flex-start; */
  /* color: #fff; */
  position: relative;
}

/* .inner-nav2._swiper .swiper-slide:hover {
  color: white;
} */

.inner-nav2._swiper .swiper-slide.active::after {
  content: '';
  display: block;
  width: 1em;
  height: 3px;
  background: #172d8d;
  margin-top: .6em;
  position: absolute;
  bottom: 0;
}

.inner-main {
  background-color: white;
  padding: 3% 0;
}

.inner-side {
  /* order: 2; */
  width: 15%;
  min-width: 190px;
  flex: none;
  margin-right: 6%;
}

.inner-side ._name {
  font-size: 1.4em;
  font-weight: bold;
  /* margin-bottom: 1em; */
  line-height: 1;
  padding-bottom: .6em;
  margin-bottom: .4em;
  border-bottom: 2px solid #e5e5e5;
  color: #172d8d;
}

.inner-side>div {
  margin-bottom: 16%;
}

/* .inner-side-nav ._nav3 {
  background: #f8f9fd;
} */

.inner-side-nav ._nav3 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
  padding: .8em 0;
  /* border-bottom: 1px solid #e5e5e5; */
  color: #333;
}

.inner-side-nav ._nav3 a:hover {
  color: #172d8d;
}

.inner-side-nav ._nav3 a span {
  flex: 1;
  margin-right: 1.2em;
}

/* .inner-side-nav ._nav3 a::after {
  content: '>';
  display: block;
  font-family: '宋体';
  flex: none;
  color: inherit;
} */

.inner-side-nav ._nav3 a.active {
  /* background-image: linear-gradient(to right, #172d8d, #93203a);
  color: white; */
  font-weight: bold;
  color: #172d8d;
}

.inner-side-news ._focus {
  position: relative;
}

.inner-side-news ._focus::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(to top, #172d8d, rgba(23, 45, 141, 0));
  z-index: 1;
}

.inner-side-news ._focus:hover ._box {
  transform: scale(1.1);
}

.inner-side-news ._focus ._pic {
  padding-top: 60%;
  overflow: hidden;
  position: relative;
}

.inner-side-news ._focus ._box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/test1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #333;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.inner-side-news ._focus ._title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 1em;
  margin-bottom: 3%;
  color: white;
  font-weight: bold;
  z-index: 2;
}

.inner-side-news ._list {
  background: #f8f9fd;
}

.inner-side-news ._list a {
  padding: 4% 1em;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  color: #333;
}

.inner-side-news ._list a:hover {
  color: #172d8d;
}

.inner-side-news ._list time {
  font-size: .875em;
  color: #172d8d;
  font-family: Arial, Helvetica, sans-serif;
}

.inner-content {
  flex: 1;
  /* margin-right: 6%; */
}

.inner-content .content {
  padding-bottom: 5%;
}

.inner-content .content a {
  display: inline;
}

.inner-content .pagetitle {
  font-size: .34rem;
  font-weight: bold;
  color: #172d8d;
  line-height: 1;
}

.inner-content .pagetitle::after {
  content: '';
  display: block;
  width: 1em;
  height: 3px;
  background: #172d8d;
  margin: 4% 0;
}

.inner-content .content .v_news_content table {
  width: 100%;
}

/*单页*/
.singlepage .singlepage-header {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.singlepage .singlepage-title {
  font-size: 2em;
  font-weight: bold;
  line-height: 1.2;
}

.singlepage .singlepage-time {
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
}

.singlepage .singlepagetxt img {
  /* display: block; */
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
  padding-bottom: 10px;
}

.singlepage .singlepagetxt,
.singlepage .singlepagetxt p,
.singlepage .singlepagetxt div,
.singlepage .singlepagetxt span {
  font-size: 16px !important;
}

.singlepage .singlepagetxt table {
  min-width: 80%;
}

.singlepage .singlepagetxt table p {
  margin: 5px 0;
}

/*图文列表*/
.newslist .newsgroup {
  display: flex;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.newslist .newsgroup .newslist-pic {
  width: 1.40rem;
  height: .9rem;
  margin-right: 24px;
  flex: none;
}

.newslist .newsgroup .newslist-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newslist .newsgroup .newslist-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.newslist .newsgroup .newslist-txt .news-title {
  flex: none;
  line-height: 1.4;
  font-size: 1.25em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.newslist .newsgroup .newslist-txt .news-time {
  flex: 1;
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: flex-end;
}

.newslist .newsgroup:hover .news-title {
  color: #14a5d2;
}

/*纯列表*/
.justlist>a {
  display: flex !important;
  line-height: 1;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.3em;
  margin-bottom: 1.3em;
  color: #333;
}

.justlist>a:hover {
  color: #172d8d;
}

.justlist>a span {
  flex: 1;
  padding-right: 3em;
  padding-left: 15px;
  position: relative;
}

.justlist>a span::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.justlist>a time {
  flex: none;
  width: auto;
  font-size: .875em;
  color: #aaa;
}

/*专家列表*/
.personlist.inner {
  display: flex;
  flex-wrap: wrap;
}

.personlist.inner .swiper-slide {
  margin-right: 4%;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .personlist.inner .swiper-slide {
    width: 22%;
  }

  .personlist.inner .swiper-slide:nth-of-type(4n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .personlist.inner .swiper-slide {
    width: 48%;
  }

  .personlist.inner .swiper-slide:nth-of-type(2n) {
    margin-right: 0;
  }
}

/*时间轴*/
.history {
  border: none !important;
  border-left: 1px solid #172d8d !important;
  padding-left: .15rem;
  margin: 5% 0 !important;
  /* margin-bottom: 5%; */
}

.history td {
  padding: .06rem 0 !important;
  vertical-align: text-top;
  border: none !important;
}

.history td:nth-of-type(1) {
  font-size: 1.25em;
  font-weight: bold;
  color: #172d8d;
  font-family: Arial, Helvetica, sans-serif;
  width: 5.8em;
  padding-left: .5em !important;
}

.history td b {
  margin: 0 .1rem;
}

/*教师*/
.teacherlist ._list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.teacherlist ._list .teacher-info {
  width: 20%;
  margin-right: calc(20% / 3);
  word-break: break-all;
}

.teacherlist ._list .teacher-info:nth-of-type(4n) {
  margin-right: 0;
}

.teacher-info {
  /* display: flex; */
  /* align-items: flex-end; */
  margin-bottom: 3%;
}

.teacher-info ._pic {
  /* width: 38%; */
  flex: none;
  width: 100% !important;
  margin-bottom: 4%;
}

.teacher-info ._pic .box {
  padding-top: 75%;
  background-color: #333;
  background-image: url(../images/test2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.teacher-info ._txt {
  /* padding-left: .24rem; */
  margin-bottom: 4%;
  font-size: .875em;
}

.teacher-info ._txt .name {
  font-size: initial;
  /* line-height: 1; */
}

.teacher-info ._txt .name::after {
  content: '';
  display: block;
  width: 2em;
  height: 3px;
  background: #172d8d;
  margin: 3% 0;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.teacher-info:hover ._txt .name::after {
  width: 100%;
}

.teacher-info ._txt .name a {
  color: #333;
  text-decoration: none;
}

@media (min-width: 768px) {
  .teacherdetail {
    display: flex;
  }

  .teacherdetail .teacher-info {
    width: 30%;
    flex: none;
    /* margin-right: 5%; */
    flex-direction: column;
    align-items: stretch;
    order: 2;
    margin-left: 5%;
  }

  .teacherdetail .teacher-info ._pic {
    width: 100%;
    margin-bottom: 5%;
  }

  .teacherdetail .teacher-info ._txt {
    padding-left: 0;
  }
}

/* .teacherdetail .teacher-content {
  text-indent: 2em;
} */

/* .teacherdetail .teacher-content p {
  margin-top: 0;
  margin-bottom: 1.5em;
} */

.teacher-content {
  flex: 1;
}

.teacherlist ._choose {
  margin-bottom: 5%;
}

.teacherlist.menu-four ._choose {
  margin-bottom: 0;
}

.teacherlist ._choose .level1 {
  display: flex;
  align-items: center;
}

.teacherlist ._choose .level1 a {
  flex: 1;
  text-align: center;
  background: white;
  line-height: .6rem;
  border: 2px solid #f8f9fd;
  color: #333;
}

.teacherlist ._choose .level1 a:hover {
  color: #172d8d;
}

.teacherlist ._choose .level1 a.active {
  background: #f8f9fd;
  font-weight: bold;
  color: #172d8d;
}

.teacherlist ._choose .level2 {
  border-bottom: 1px solid #172d8d;
  background: #f8f9fd;
  padding: 1em;
  padding-bottom: 0;
}

.teacherlist ._choose .level2::after,
.teacherlist ._choose .level2>div::after {
  content: '';
  display: block;
  clear: both;
}

.teacherlist ._choose .level2 a {
  float: left;
  color: #172d8d;
  line-height: 2;
  height: 2em;
  border-radius: 1em;
  padding: 0 .8em;
  margin-bottom: 1em;
}

.teacherlist ._choose .level2 a.active {
  background: #172d8d;
  color: white !important;
}

.teacherlist ._choose .level2 .byName {
  text-transform: uppercase;
}

/* 图文列表 */
.inner-content .inner_newsList {
  padding-bottom: 1em;
}

.inner-content .inner_newsList a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
  text-decoration: none;
}

.inner-content .inner_newsList a:hover .title {
  color: #172d8d
}

.inner-content .inner_newsList .pic {
  width: 240px;
  margin-right: 2em;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: none;
  -webkit-flex: none;
  flex: none
}

.inner-content .inner_newsList .pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 64%;
  background: #333
}

.inner-content .inner_newsList .pic .box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/demo.jpg) no-repeat center;
  background-size: cover
}

.inner-content .inner_newsList .txt {
  line-height: 1.4
}

.inner-content .inner_newsList .txt .title {
  font-size: 1.125em;
  display: block;
  height: auto;
  font-weight: normal;
  color: #333;
}

.inner-content .inner_newsList .txt .info {
  color: #999;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 1.8em;
  overflow: hidden;
  text-align: justify !important;
  -webkit-line-clamp: 2;
  height: 2.8em;
  margin-top: 1em
}

.inner-content .inner_newsList .txt .time {
  font-size: 14px;
  margin-top: 1em;
  color: #999
}

@media (max-width: 767px) {

  /* .inner-content .inner_newsList, .inner-content .justlist {
    padding-top: 1.5em;
  } */
  .inner-content .inner_newsList .txt .title {
    font-size: 1.1em;
  }

  .inner-content .inner_newsList .pic {
    width: 140px
  }

  .inner-content .inner_newsList .txt .info {
    display: none
  }
}

.return {
  float: right;
  margin: 20px 10px;
}

.pager {
  text-align: center;
  font-size: 16px;
  margin: 20px 0px;
}

.pager a,
.return a {
  color: #172d8d !important;
  font-size: 16px;
  display: inline;
  text-decoration: none;
}

@media (max-width: 767px) {

  .pager,
  .pager a {
    font-size: 14px;
  }
}

.search_result {
  padding: 10px 0;
}

#vsb_content {
  /* text-indent: 2em; */
  text-align: justify;
}

#vsb_content table {
  text-indent: 0;
  width: 100%;
}

#vsb_content_2 table {
  text-indent: 0;
  width: 100%;
  margin: 0 2em;
}

#vsb_content span,
#vsb_content p,
#vsb_content a,
#vsb_content td,
#vsb_content tr {
  font-size: inherit !important;
  line-height: inherit !important;
  font-family: initial !important;
}

#vsb_content p {
  margin-left: 0 !important;
}

#vsb_content td {
  min-width: 3em;
}

/* .v_news_content {
  text-indent: 2em;
} */

.v_news_content table {
  text-indent: 0;
  border-collapse: collapse;
  width: 100%;
}

.v_news_content table td {
  border: 1px solid #333;
  height: 40px;
}

.v_news_content img {
  display: block;
}