@charset "utf-8";

/* 网站通用样式 */
@font-face {
  font-family: "HarmonyOS300";
  src: url("../fonts/HarmonyOS_Sans_SC_Light.ttf") format("truetype");
}

a.a {
  color: #323232;
}

@font-face {
  font-family: "HarmonyOS400";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf") format("truetype");
}

@font-face {
  font-family: "HarmonyOS500";
  src: url("../fonts/HarmonyOS_Sans_SC_Medium.ttf") format("truetype");
}

@font-face {
  font-family: "HarmonyOS700";
  src: url("../fonts/HarmonyOS_Sans_SC_Bold.ttf") format("truetype");
}

#loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
}

html {
  width: 100%;
  min-width: 320px;
  font-size: 100px;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: .1rem;
}

html::-webkit-scrollbar-thumb {
  border-radius: .08rem;
  background: #00399A;
}

html::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.2);
}

.overflow {
  height: 100vh;
  overflow: hidden !important;
}

.container {
  width: 14.2rem;
  margin: 0 auto;
  font-size: .16rem;
}

.title {
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.24rem;
  color: #000;
  text-align: left;
}

.info {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.24rem;
  color: #8a8a8a;
  text-align: justify;
}

.date {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.24rem;
  color: #00399A;
  text-align: left;
}

.date1 {
  width: .6rem;
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 0.16rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.date1 p:first-child {
  font-size: .4rem;
  font-weight: 700;
  color: #00399A;
  line-height: .48rem;
}

.date1 p:first-child::after {
  display: block;
  content: "";
  box-sizing: border-box;
  width: .2rem;
  height: 1px;
  margin: .12rem auto .1rem;
  background: #00399A;
}

/* 网站头部 */
.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1000;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  content: "";
  width: 100%;
  height: 0;
  background: #00399A;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: 100%;
  height: 165%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 24, 78, 0.9528) 0%, rgba(0, 34, 97, 0) 99%);
}

.header .container {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  padding: .26rem 0 0;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header .right-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 10rem;
  max-width: calc(100% - 4rem);
}

.header.scroll {
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.24);
}

.header.scroll .container {
  border: none;
  padding: .15rem 0 .08rem;
}

.header.scroll::before {
  height: 100%;
  box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.36);
}

.header.scroll::after {
  display: none;
}

.header.scroll .search-box.show {
  top: 100%;
}

.logo {
  margin: 0 0 .1rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.logo img {
  max-height: .6rem;
}

.nav {
  width: calc(100% - .5rem);
}

.nav li {
  position: relative;
}

.nav li a {
  position: relative;
  display: block;
  font-family: "HarmonyOS400";
  font-size: 0.22rem;
  font-weight: 400;
  line-height: 0.6rem;
  color: #fff;
  text-align: center;
}

.nav li>a {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.nav li>a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  box-sizing: border-box;
  width: 0%;
  height: 3px;
  margin: 0 auto;
  border-radius: 3px;
  background: #47C7FE;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.nav li:hover>a::after {
  width: 1.5rem;
}

.nav li:hover>a {
  color: #48C9FF;
}

.nav li:hover .sub-nav {
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

.nav .sub-nav {
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: calc(50% - .75rem);
  z-index: 1;
  width: 1.5rem;
  padding: .08rem 0;
  background: #00399A;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.22);
  background: white;
  border-radius: 2px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 50% 0%;
  -webkit-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -moz-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -ms-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -o-transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.nav .sub-nav dd {
  position: relative;
  padding: 0 .15rem;
}

.nav .sub-nav dd::before {
  position: absolute;
  top: 0;
  right: 0.15rem;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: calc(100% - .3rem);
  height: 100%;
  content: "";
  background-image: linear-gradient(270deg, #1CA2FF 0%, #0067F6 100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.nav .sub-nav dd:last-child a {
  border: none;
}

.nav .sub-nav dd:hover::before {
  right: 0;
  width: 100%;
  opacity: 1;
}

.nav .sub-nav dd:hover a {
  color: #fff;
  border-color: #00399A;
}

.nav .sub-nav a {
  z-index: 2;
  width: 100%;
  padding: .1rem 0;
  font-size: .16rem;
  font-weight: 500;
  line-height: .2rem;
  color: #666;
  -webkit-transition: background 0.15s ease-out 0s;
  -moz-transition: background 0.15s ease-out 0s;
  -ms-transition: background 0.15s ease-out 0s;
  -o-transition: background 0.15s ease-out 0s;
  transition: background 0.15s ease-out 0s;
}

.search-box {
  position: absolute;
  top: calc(100% + .2rem);
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: 2rem;
  border: 2px solid #fff;
  border-radius: .26rem;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.search-box .input {
  width: calc(100% - .5rem);
  height: .28rem;
  padding: 0 .1rem 0 .12rem;
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 0.26rem;
  color: #000;
  text-align: left;
}

.search-box .input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-box .submit {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: .5rem;
  height: .28rem;
  background: linear-gradient(270deg, #1CA2FF 0%, #0067F6 100%), linear-gradient(270deg, #9061F0 0%, #0067F6 100%), #00399A;
  border-radius: .26rem;
}

.search-box .submit::after {
  display: block;
  content: "";
  box-sizing: border-box;
  width: .2rem;
  height: .2rem;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 100%;
}

.search-box.show {
  top: calc(100% + .1rem);
  opacity: 1;
  visibility: visible;
}

.pad-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 0 .1rem;
}

.pad-btn .search-btn {
  position: relative;
  z-index: 5;
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url(../images/search.png);
  background-repeat: no-repeat;
  background-position: 50% 45%;
  background-color: transparent;
  background-size: auto;
  border-radius: 50%;
  cursor: pointer;
}

.pad-btn .nav-btn {
  display: none;
  position: relative;
  z-index: 5;
  width: 28px;
  margin: 0 0 0 .16rem;
  vertical-align: middle;
  cursor: pointer;
}

.pad-btn .nav-btn i {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
  transition: all 0.3s cubic-bezier(0.99, 0.01, 0.01, 1) 0s;
}

.pad-btn .nav-btn.close i:nth-child(1) {
  -webkit-transform: translate(0px, 9px) rotate(45deg);
  -moz-transform: translate(0px, 9px) rotate(45deg);
  -ms-transform: translate(0px, 9px) rotate(45deg);
  -o-transform: translate(0px, 9px) rotate(45deg);
  transform: translate(0px, 9px) rotate(45deg);
}

.pad-btn .nav-btn.close i:nth-child(2) {
  opacity: 0;
}

.pad-btn .nav-btn.close i:nth-child(3) {
  -webkit-transform: translate(0px, -9px) rotate(-45deg);
  -moz-transform: translate(0px, -9px) rotate(-45deg);
  -ms-transform: translate(0px, -9px) rotate(-45deg);
  -o-transform: translate(0px, -9px) rotate(-45deg);
  transform: translate(0px, -9px) rotate(-45deg);
}

.mobile-box {
  display: none;
  position: fixed;
  top: 65px;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 65px);
  padding: .15rem 4% .4rem;
  background: #F8F8F8;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
  visibility: hidden;
}

.mobile-box .nav {
  width: 100%;
  height: calc(100% - 1rem);
  padding: 0 0 .2rem;
}

.mobile-box .nav ul {
  display: block;
  height: 100%;
  overflow-y: auto;
}

.mobile-box .nav li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #fff;
}

.mobile-box .nav li:first-child {
  border-top: none;
}

.mobile-box .nav li:last-child {
  border-bottom: none;
}

.mobile-box .nav li a {
  color: #000;
  font-weight: 500;
  padding: 0 .1rem;
  line-height: .6rem;
  text-align: left;
}

.mobile-box .nav li a::after {
  display: none;
}

.mobile-box .nav li .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: .6rem;
  height: .6rem;
  background-image: url(../images/arrow3.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 13px;
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.mobile-box .nav li .icon.close {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}

.mobile-box .nav li>a {
  font-size: .21rem;
}

.mobile-box .nav .sub-nav {
  display: none;
  position: static;
  opacity: 1;
  width: 100%;
  padding: 0 0 12px 20px;
  background: none;
  box-shadow: none;
  transition: none;
  border: none;
  visibility: visible;
  transform: none;
}

.mobile-box .nav .sub-nav dd::before {
  display: none;
}

.mobile-box .nav .sub-nav .tri {
  display: none;
}

.mobile-box .nav .sub-nav a {
  font-size: .17rem;
  line-height: .44rem;
  color: #00399A !important;
  border-bottom: 1px solid #ddd;
}

.mobile-box .nav .sub-nav::before {
  display: none;
}

.mobile-box .mobile-search {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 0 1px;
  margin: .1rem auto .15rem;
  overflow: hidden;
  background: #fff;
}

.mobile-box .mobile-search .form {
  display: flex;
  width: 100%;
  border: 1px solid #0052d6;
  border-radius: 2px;
  overflow: hidden;
}

.mobile-box .mobile-search .input {
  width: calc(100% - .7rem);
  height: .5rem;
  margin: 0 .1rem 0 0;
  padding: 0 .1rem 0 .2rem;
  vertical-align: top;
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 0.5rem;
  color: #333;
  text-align: left;
  background: #fff;
}

.mobile-box .mobile-search .submit {
  width: .7rem;
  height: .5rem;
  vertical-align: top;
  background-image: url("../images/search.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #0052d6;
  background-size: auto;
}

.mobile-box.show {
  left: 0px;
  opacity: 1;
  visibility: visible;
}

/* 首页轮播图 */
.banner {
  z-index: 1;
  font-size: 0;
  background: #00399A;
}

.banner::before {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 1rem;
  left: 0;
  z-index: 2;
  content: "";
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
}

.banner .img {
  position: relative;
  display: block;
  width: 100%;
  padding: 100vh 0 0;
  overflow: hidden;
}

.banner .img .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.banner .img img {
  display: none;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: transform 0.6s ease-out 0s;
  -moz-transition: transform 0.6s ease-out 0s;
  -ms-transition: transform 0.6s ease-out 0s;
  -o-transition: transform 0.6s ease-out 0s;
  transition: transform 0.6s ease-out 0s;
}

.banner .text {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 2.65rem;
  left: calc(50% - 7.1rem);
  z-index: 3;
  font-family: "HarmonyOS400";
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 0.7rem;
  color: #fff;
  text-align: left;
}

.banner .text .p1 {
  font-weight: 700;
}

.banner .swiper-slide-active img {
  -webkit-transition: transform 6s ease-out 1s;
  -moz-transition: transform 6s ease-out 1s;
  -ms-transition: transform 6s ease-out 1s;
  -o-transition: transform 6s ease-out 1s;
  transition: transform 6s ease-out 1s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.banner .pagination {
  position: absolute;
  bottom: 1.9rem;
  left: calc(50% - 7.1rem);
  z-index: 4;
  width: auto;
}

.banner .pagination .swiper-pagination-bullet {
  position: relative;
  vertical-align: middle;
  width: 0.8rem;
  height: .06rem;
  margin: 0 .1rem;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  border-radius: .06rem;
}

.banner .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(270deg, #1CA2FF 0%, #0067F6 100%), linear-gradient(270deg, #9061F0 0%, #0067F6 100%), #00A0E4;
}

.dept-box {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
}

.dept-box::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  content: "";
  width: calc(50% - 7.1rem);
  height: 100%;
  background: rgba(11, 170, 240, 1);
}

.dept-box::after {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 1;
  content: "";
  width: calc(50% - 7.1rem);
  height: 100%;
  background: rgba(0, 41, 160, 1);
}

.dept-box li {
  width: 20%;
  background: rgba(0, 60, 170, 1);
}

.dept-box li:nth-child(2) {
  background: rgba(0, 80, 181, 1);
}

.dept-box li:nth-child(3) {
  background: rgba(7, 100, 208, 1);
}

.dept-box li:nth-child(4) {
  background: rgba(3, 121, 220, 1);
}

.dept-box li:nth-child(5) {
  background: rgba(0, 148, 231, 1);
}

.dept-box li:nth-child(6) {
  background: rgba(13, 150, 227, 1);
}

.dept-box li:nth-child(7) {
  background: rgba(0, 168, 242, 1);
}

.dept-box li:hover {
  background: linear-gradient(270deg, rgba(28, 162, 255, 1) 0%, rgba(0, 103, 246, 1) 100%);
}

.dept-box a {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1rem;
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.28rem;
  color: #fff;
  text-align: left;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* 网站底部 */
.footer {
  padding: 1rem 0 .47rem;
}

.footer .flex-between {
  align-items: flex-end;
}

.footer .line {
  width: 100%;
  height: .33rem;
  margin: .22rem 0 0 0;
  background-image: url("../images/f_icon5.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 100%;
}

.footer.inset {
  padding: .6rem 0 1rem;
}

.foot-contact {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.42rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.foot-contact img {
  max-height: .75rem;
  margin: 0 0 .25rem;
}

.foot-contact a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.2s ease-out 0s;
  -moz-transition: color 0.2s ease-out 0s;
  -ms-transition: color 0.2s ease-out 0s;
  -o-transition: color 0.2s ease-out 0s;
  transition: color 0.2s ease-out 0s;
}

.foot-contact a:hover {
  color: #fff;
}

.QR-code img {
  width: 1.1rem;
  height: auto;
}

.QR-code p {
  margin: .14rem 0 0;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.copy {
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
}

.copy a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.2s ease-out 0s;
  -moz-transition: color 0.2s ease-out 0s;
  -ms-transition: color 0.2s ease-out 0s;
  -o-transition: color 0.2s ease-out 0s;
  transition: color 0.2s ease-out 0s;
}

.copy a:hover {
  color: #fff;
}

.copy img {
  width: .18rem;
  margin: 0 2px 4px 0;
}

.foot-link a {
  margin: 0 0 0 .5rem;
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  -webkit-transition: color 0.2s ease-out 0s;
  -moz-transition: color 0.2s ease-out 0s;
  -ms-transition: color 0.2s ease-out 0s;
  -o-transition: color 0.2s ease-out 0s;
  transition: color 0.2s ease-out 0s;
}

.foot-link a:hover {
  color: #fff;
}

/* 首页样式 */
.column {
  width: 100%;
  margin: .85rem 0 .6rem;
}

.column h3 {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-family: "HarmonyOS700";
  font-size: 0.48rem;
  font-weight: 500;
  line-height: 0.6rem;
  color: #000;
  text-align: left;
}

.column .en {
  display: inline-block;
  font-family: "HarmonyOS400";
  font-size: .34rem;
  color: #00399A;
  line-height: .35rem;
  margin: .1rem 0 0 .13rem;
  padding: 0 0 0 .13rem;
  border-left: 1px solid #BCBCBC;
}

.more-box {
  width: 100%;
}

.more {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #00399A;
  text-align: center;
}

.more span {
  position: relative;
  display: block;
}

.more span::after {
  display: block;
  content: "";
  box-sizing: border-box;
  width: 0;
  height: 1px;
  background: #00399A;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.more i {
  display: inline-block;
  width: .22rem;
  height: .22rem;
  margin: 0 0 0 .1rem;
  background-image: url("../images/f_icon11.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #00399A;
  background-size: auto;
  border-radius: 50%;
}

.more:hover span::after {
  width: 100%;
}

.home1 {
  padding: 1px 0 .7rem;
  background-image: url("../images/index_bg1.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.home1 .news-box {
  width: 100%;
  margin: 0 0 .4rem;
}

.home1 .flex-between {
  align-items: center;
}

.jdt {
  width: 48.59%;
  margin: 0;
}

.first-news {
  width: 100%;
}

.first-news .img {
  padding: 4.49rem 0 0;
}

.first-news .text {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 0.18rem 0.58rem 0.22rem .48rem;
  overflow: hidden;
}

.first-news .text::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(250deg, rgba(0, 104, 239, 0.90) 0%, rgba(0, 42, 170, 0.92) 100%);
  -webkit-transition: all 0.1s ease-out 0s;
  -moz-transition: all 0.1s ease-out 0s;
  -ms-transition: all 0.1s ease-out 0s;
  -o-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}

.first-news .text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(28, 162, 255, 0.92) 0%, rgba(0, 103, 246, 0.96) 100%);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.first-news .title {
  font-size: .2rem;
  color: #fff;
}

.first-news .info {
  height: .48rem;
  margin: .18rem 0 .3rem;
  color: #fff;
}

.first-news .date {
  padding: .04rem 0 0;
  color: #fff;
}

.first-news .date span {
  display: block;
  padding: 0 .16rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: HarmonyOS_Sans_SC_Light;
}

.first-news:hover .text::before {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.first-news:hover .text::after {
  opacity: 1;
  -webkit-transition: all 0.1s ease-out 0s;
  -moz-transition: all 0.1s ease-out 0s;
  -ms-transition: all 0.1s ease-out 0s;
  -o-transition: all 0.1s ease-out 0s;
  transition: all 0.1s ease-out 0s;
}


em {
  font-style: normal;
  position: relative;
  background-image: linear-gradient(#00399A, #00399A);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size .3s;
}

.news-list {
  width: 47.18%;
}

.news-list li {
  width: 100%;
}

.news-list li+li {
  margin-top: 0.12rem;
}

.news-list li a {
  display: flex;
  align-items: center;
}

.news-list li a .img-frame {
  width: 1.24rem;
}

.news-list .img {
  padding: .8rem 0 0;
}

.news-list .text {
  flex: 1;
  min-width: 0;
  align-items: center;
  padding: 0 0 0 .21rem;
}

.news-list .text p {
  position: relative;
  z-index: 1;
}

.news-list .text p em {}

.news-list .text span {
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 14px;
  color: #787A7E;
  font-weight: 200;
  display: block;
  margin-top: 0.12rem;
}

.news-list .img-zoom:hover .text p em {
  color: #00399A;
  font-weight: bold;
  background-size: 100% 1px;
}

.news-list .img-zoom:hover .date1 {
  color: #fff;
}

.news-list .img-zoom:hover .date1 p:first-child {
  color: #fff;
}

.news-list .img-zoom:hover .date1 p:first-child::after {
  background: #fff;
}

.news-list .img-zoom:hover .title {
  color: #00399A;
  font-weight: bold;
}

.home2 .left-box {
  width: 34.2%;
  padding: 0 0 1.1rem calc(50vw - 7.1rem);
  background-image: url("../images/index_bg2.jpg");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-color: transparent;
  background-size: cover;
}

.home2 .left-box .more {
  display: none;
  width: 1.45rem;
  margin: .55rem 0 0;
  line-height: .42rem;
  color: #00399A;
  justify-content: center;
  border: 1px solid #00399A;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.home2 .left-box .more:hover {
  color: #fff;
  background: #00399A;
}

.home2 .left-box .more.active {
  display: block;
}

.home2 .right-box {
  width: 65.8%;
  padding: 0 calc(50vw - 7.1rem) 0 0.6rem;
  background-image: url("../images/index_bg3.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.home2 .column {
  margin: .6rem 0 .5rem;
}

.home2 .column .en {
  margin: .18rem 0 0;
  padding: 0;
  border: none;
}

.notice-swiper-thumbs {
  position: relative;
}

.notice-swiper-thumbs .title {
  font-family: "HarmonyOS500";
  font-size: .22rem;
  line-height: .54rem;
  -webkit-transition: color 0.18s ease-out 0s;
  -moz-transition: color 0.18s ease-out 0s;
  -ms-transition: color 0.18s ease-out 0s;
  -o-transition: color 0.18s ease-out 0s;
  transition: color 0.18s ease-out 0s;
  cursor: pointer;
}

.notice-swiper-thumbs .title.active {
  color: #00399A;
}

.notice-swiper-thumbs .swiper-arrow {
  position: absolute;
  top: auto;
  right: 0.4rem;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  cursor: pointer;
  background-image: url("../images/arrow3.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
  background-size: 0.18rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.notice-swiper-thumbs .swiper-arrow.swiper-prev {
  bottom: .7rem;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.notice-swiper-thumbs .swiper-arrow.swiper-next {
  bottom: .2rem;
}

.notice-swiper-thumbs .swiper-arrow:hover {
  background-color: #00399A;
  background-image: url("../images/arrow6.png");
}

.notice-swiper {
  width: 100%;
}

.notice-list {
  font-size: 0;
  margin: 0 -0.09rem;
}

.notice-list>li {
  display: inline-block;
  vertical-align: top;
  width: 33.3333333333%;
  padding: 0 0.09rem;
}

.notice-list li {
  padding: .09rem;
}

.notice-list a {
  display: block;
  background: #E6F0FF;
}

.notice-list a:hover .title {
  color: #fff;
}

.notice-list a:hover .title::after {
  height: 100%;
  -webkit-transition: all 0.22s linear 0s;
  -moz-transition: all 0.22s linear 0s;
  -ms-transition: all 0.22s linear 0s;
  -o-transition: all 0.22s linear 0s;
  transition: all 0.22s linear 0s;
}

.notice-list a:hover .date {
  color: #fff;
}

.notice-list a:hover .date i {
  background-image: url("../images/f_icon3.png");
}

.notice-list a:hover .date::after {
  height: 100%;
  -webkit-transition: all 0.12s linear 0.22s;
  -moz-transition: all 0.12s linear 0.22s;
  -ms-transition: all 0.12s linear 0.22s;
  -o-transition: all 0.12s linear 0.22s;
  transition: all 0.12s linear 0.22s;
}

.notice-list .title {
  position: relative;
  z-index: 1;
  height: 1.4rem;
  font-size: .16rem;
  padding: .36rem .36rem 0;
  background: #fff;
}

.notice-list .title .tt3 {
  max-height: .72rem;
}

.notice-list .title::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 0;
  background: linear-gradient(270deg, #32a9ff 0%, #1074FF 100%);
}

.notice-list .date {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: .5rem;
  padding: 0 .36rem;
  color: rgba(0, 0, 0, 0.6);
}

.notice-list .date i {
  width: .36rem;
  height: .1rem;
  background-image: url("../images/f_icon4.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 100%;
}

.notice-list .date::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 0;
  background: linear-gradient(270deg, #1CA2FF 0%, #0067F6 100%);
}

.home3 {
  padding: 1px 0 .8rem;
  background-image: url("../images/index_bg4.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.home3 .column {
  padding: 0 0 0 calc(50vw - 7.1rem);
  margin: .85rem 0 .4rem;
}

.qh-tit {
  padding: 0 0 0 calc(50vw - 7.1rem);
}

.qh-tit ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #A7AFBC;
  margin-bottom: 0.54rem;
}

.qh-tit li {
  cursor: pointer;
  padding-bottom: 0.14rem;
  padding-left: 0.05rem;
  padding-right: 0.05rem;
  position: relative;
  z-index: 1;
  font-size: 0.24rem;
  color: #323232;
  font-weight: 400;
}

.qh-tit li+li {
  margin-left: 0.56rem;
}

.qh-tit li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.05rem;
  background: #0BAAF0;
  transform: scaleX(0);
  transition: all 0.5s;
}

.qh-tit li.on::before {
  transform: none;
}

.qh-bd {
  position: relative;
}

.qh-bd>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 8;
}

.qh-bd>div.on {
  position: relative;
  z-index: 9;
  opacity: 1;
}

.research-swiper {
  margin: 0 0 0 calc(50vw - 7.1rem);
}

.research-swiper .swiper-slide {
  display: block;
  position: relative;
  z-index: 1;
  width: 3.6rem;
  height: 3.83rem;
  margin-right: .34rem;
  background: #fff;
  box-shadow: 0.02rem 0.02rem 0.1rem 0px rgba(19, 43, 153, 0.09);
  overflow: hidden;
}

.research-swiper .swiper-slide::before {
  position: absolute;
  top: 0.5rem;
  right: auto;
  bottom: auto;
  left: 0.45rem;
  z-index: -1;
  /* content: ""; */
  width: 5rem;
  height: 5rem;
  transform: rotate(-60deg);
  background: linear-gradient(212deg, rgba(0, 81, 234, 0.424) 14%, rgba(0, 85, 234, 0) 62%, rgba(0, 85, 234, 0) 62%);
  opacity: 0.6402;
  border-radius: 50%;
}

.research-swiper .swiper-slide::after {
  position: absolute;
  top: 1.4rem;
  right: auto;
  bottom: auto;
  left: 1.4rem;
  z-index: 2;
  /* content: ""; */
  width: 4rem;
  height: 4rem;
  background: linear-gradient(214deg, rgba(0, 81, 234, 0.879) 14%, rgba(0, 85, 234, 0) 65%);
  opacity: 0.6402;
  transform: rotate(-80deg);
  border-radius: 50%;
}

.research-swiper .swiper-slide:hover .text2::after {
  bottom: 0;
  opacity: 1;
}

.research-swiper .img {
  position: relative;
  z-index: 1;
  /* width: 3.6rem; */
  margin: 0rem 0 0 auto;
  text-align: right;
}

.research-swiper .img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-swiper .text1 {
  position: absolute;
  top: 0.24rem;
  right: auto;
  bottom: auto;
  left: 0.25rem;
  z-index: 3;
}

.research-swiper .text1 p {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.2rem;
  color: #000;
  text-align: left;
}

.research-swiper .text1 .name {
  margin: 0 0 .12rem;
  font-family: "HarmonyOS500";
  font-size: .26rem;
  line-height: .38rem;
}

.research-swiper .text1 .name::after {
  display: block;
  content: "";
  box-sizing: border-box;
  width: .4rem;
  height: 3px;
  margin: .11rem 0 0;
  background: #00399A;
}

.research-swiper .text2 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: -ms-flexbox;
  display: block;
  width: 100%;
  height: 2rem;
  padding: 0.5rem .26rem .27rem;
  background-image: url("../images/list_bg1.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-color: transparent;
  background-size: 100% 100%;
}

.research-swiper .text2 .title {
  width: 100%;
  color: #fff;
  font-size: .18rem;
  line-height: .3rem;
  height: .6rem;
}

.research-swiper .text2 .time {
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 0.16rem;
  color: #FFFFFF;
  font-weight: 200;
  margin-top: 0.16rem;
  background: url(../images/home1-sj.png) no-repeat left center;
  background-size: 0.24rem auto;
  padding-left: 0.34rem;
  transition: all 0.5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.research-swiper .text2:hover .time {
  background: url(../images/home1-sjon.png) no-repeat left center;
  background-size: 0.24rem auto;
}

.research-swiper .text2 .dd {
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 0.16rem;
  color: #FFFFFF;
  font-weight: 200;
  margin-top: 0.06rem;
  background: url(../images/home1-dd.png) no-repeat left center;
  background-size: 0.24rem auto;
  padding-left: 0.34rem;
  transition: all 0.5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.research-swiper .text2:hover .dd {
  background: url(../images/home1-ddon.png) no-repeat left center;
  background-size: 0.24rem auto;
}

.research-swiper .text2 .zy {
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 0.16rem;
  color: #FFFFFF;
  font-weight: 200;
  margin-top: 0.06rem;
  line-height: 0.3rem;
  height: 0.6rem;
  transition: all 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin-top: 0.15rem;
}

.research-swiper .text2::after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -0.15rem;
  left: 0%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/list_bg2.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-color: transparent;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.research-swiper>.flex-between {
  margin: .55rem 0 0;
  padding: 0 calc(50vw - 7.1rem) 0 0;
}

.research-swiper .swiper-arrow>div {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-image: url("../images/arrow4.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 0.16rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 3px solid #00399A;
  cursor: pointer;
}

.research-swiper .swiper-arrow>div:hover {
  background-color: #00399A;
  background-image: url("../images/arrow5.png");
}

.research-swiper .swiper-arrow .swiper-prev {
  margin: 0 .4rem 0 0;
}

.research-swiper .swiper-arrow .swiper-next {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.foot-bg {
  background-image: url("../images/index_bg5.jpg");
  background-repeat: no-repeat;
  background-position: 50% bottom;
  background-color: transparent;
  background-size: cover;
}

.home4 {
  padding: 1px 0 0;
}

.home4 .left-box {
  width: 34%;
  padding: 0 0 0 calc(50vw - 7.1rem);
}

.home4 .right-box {
  width: 66%;
}

.home4 .column {
  margin: .85rem 0 1.5rem;
}

.home4 .column h3 {
  color: #fff;
}

.home4 .column .en {
  margin: 0;
  padding: 0;
  border: none;
  color: #00A0E4;
}

.home4 .swiper-arrow>div {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-image: url("../images/arrow5.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 0.16rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border: 3px solid #fff;
  cursor: pointer;
}

.home4 .swiper-arrow>div:hover {
  background-color: #00A0E4;
  border-color: #00A0E4;
}

.home4 .swiper-arrow .swiper-prev {
  margin: 0 .4rem 0 0;
}

.home4 .swiper-arrow .swiper-next {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.picture-swiper {
  margin: .89rem 0 0.58rem;
}

.picture-swiper .swiper-slide {
  width: 4.56rem;
  margin: 0 .18rem 0 0;
}

.picture-swiper .img-zoom {
  opacity: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.picture-swiper .img-zoom::after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 50, 112, 0.00) 50%, rgba(0, 50, 112, 0.60) 100%), linear-gradient(180deg, rgba(0, 50, 112, 0.10) 0%, rgba(0, 50, 112, 0.10) 100%);
}

.picture-swiper .img-zoom:hover {
  opacity: 1;
}

.picture-swiper .img {
  padding: 68.27% 0 0;
}

.picture-swiper .text {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0.48rem;
  left: 0.6rem;
  z-index: 2;
  display: none !important;
}

.picture-swiper .text .title {
  font-size: .35rem;
  line-height: .42rem;
  color: #fff;
}

.picture-swiper .text::after {
  display: block;
  content: "";
  box-sizing: border-box;
  width: .68rem;
  height: .04rem;
  margin: .16rem 0 0;
  background: #00A0E4;
}

/* 3.21 */
.home5 {
  background: rgba(245, 246, 247, 0.7);
  padding-bottom: 0.97rem;
}

.h5-l {
  width: 42.95%;
}

.h5-l li {
  margin-top: 0.3rem;
}

.h5-l li:first-child {
  margin-top: 0;
}

.h5-l li a {
  display: block;
}

.h5-l li a .show {
  overflow: hidden;
  line-height: 0.3rem;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.h5-l li a .show::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid #00399A;
  transition: all 0.5s;
}

.h5-l li a .show>span {
  display: block;
  float: right;
  margin-left: 0.2rem;
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 0.14rem;
  color: #787A7E;
  font-weight: 200;
}

.h5-l li a .show>h3 {
  font-size: 0.18rem;
  color: #000000;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.h5-l li.on a .show {
  height: 0;
}

.h5-l li a .hide {
  height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s;
  display: flex;
  align-items: center;
}

.h5-l li.on a .hide {
  height: auto;
  transform: none;
}

.h5-l li a .hide .date {
  text-align: center;
  width: 0.8rem;
  height: 0.8rem;
  background: #00A0E4;
  color: #fff;
  padding-top: 0.15rem;
}

.h5-l li a .hide .date b {
  display: block;
  font-family: HarmonyOS_Sans_SC_Medium;
  font-size: 0.34rem;
  font-weight: 500;
}

.h5-l li a .hide .date span {
  display: block;
  font-size: 0.14rem;
  font-weight: 400;
  margin-top: 0.1rem;
}

.h5-l li a .hide h3 {
  flex: 1;
  min-width: 0;
  background-color: #00399A;
  line-height: 0.8rem;
  padding: 0 0.68rem 0 0.22rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.18rem;
  color: #FFFFFF;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.h5-l li a .hide h3 i {
  display: inline-block;
  font-size: 0.12rem;
  color: #00A0E4;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 0.22rem;
  font-style: normal;
}

.h5-l li.on {
  margin-bottom: 0.4rem;
}

.h5-l li:hover a .show::after {
  width: 100%;
}

.h5-l li:hover a .show h3,
.h5-l li:hover a .show span {
  color: #00399A;
}








.h5-r {
  width: 42.95%;
}

.h5-r li {
  position: relative;
  z-index: 1;
  overflow: hidden;
  line-height: 0.3rem;
  margin-top: 0.3rem;
}

.h5-r li:first-child {
  margin-top: 0;
}

.h5-r li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid #00399A;
  transition: all 0.5s;
}

.h5-r li span {
  display: block;
  float: right;
  margin-left: 0.2rem;
  font-family: HarmonyOS_Sans_SC_Light;
  font-size: 0.14rem;
  color: #787A7E;
  font-weight: 200;
  transition: all 0.5s;
}

.h5-r li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.18rem;
  color: #000000;
  font-weight: 400;
  transition: all 0.5s;
}

.h5-r li:hover::after {
  width: 100%;
}

.h5-r li:hover span,
.h5-r li:hover a {
  color: #00399A;
}

/* 内页样式 */
.decorate {
  position: relative;
  z-index: 1;
  padding: 29% 0 0;
}

.decorate img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-box {
  position: relative;
  z-index: 2;
}

.main-box .container {
  align-items: flex-start;
}

.sidebar {
  position: relative;
  z-index: 3;
  width: 3rem;
  margin: -.7rem 0 .6rem;
  background: #F2F4FB;
}

.sidebar h3 {
  position: relative;
  font-family: "HarmonyOS700";
  font-size: 0.4rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #fff;
  text-align: center;
  background-image: url("../images/list_bg3.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.sub-nav {
  position: relative;
  padding: .17rem 0;
}

.sub-nav li {
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sub-nav li.cur {
  background: #DCE5FF;
}

.sub-nav li.cur>a p::after {
  width: 100%;
  opacity: 1;
}

.sub-nav li.cur .lv3 {
  display: block;
  background: #E6ECFF;
}

.sub-nav li:hover {
  background: #DCE5FF;
}

.sub-nav li:hover .lv3 {
  background: #E6ECFF;
}

.sub-nav a {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .2rem;
  font-family: "HarmonyOS500";
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.84rem;
  color: #000;
  text-align: left;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sub-nav a p {
  position: relative;
}

.sub-nav a p::after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -0.03rem;
  left: 0;
  z-index: 1;
  width: 0;
  max-width: .9rem;
  height: .15rem;
  border-radius: .1rem 0 .1rem 0;
  background: #54a4e2;
  content: "";
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.sub-nav a span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.sub-nav .down {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: calc(100% + .05rem);
  z-index: 1;
  width: .4rem;
  height: 100%;
  background-image: url("../images/f_icon6.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: 0.08rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sub-nav .down.close {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sub-nav .lv3 {
  display: none;
  padding: .1rem .12rem;
  -webkit-transition: background 0.3s ease-out 0s;
  -moz-transition: background 0.3s ease-out 0s;
  -ms-transition: background 0.3s ease-out 0s;
  -o-transition: background 0.3s ease-out 0s;
  transition: background 0.3s ease-out 0s;
}

.sub-nav .lv3 a {
  font-family: "HarmonyOS400";
  height: auto;
  font-size: .18rem;
  line-height: .42rem;
  color: #686868;
}

.sub-nav .lv3 a:hover {
  color: #00399A;
}

.sub-nav .lv3 a.cur {
  color: #00399A;
  font-weight: 700;
}

.main {
  position: relative;
  z-index: 4;
  width: calc(100% - 3.6rem);
  min-height: 4rem;
  margin: .2rem 0 0;
  padding: 0 0 .2rem;
}

.position {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .1rem 0;
  border-bottom: 1px solid #00399A;
}

.position h3 {
  font-family: "HarmonyOS500";
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #000;
  text-align: left;
}

.place {
  font-size: 0.14rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #000;
  text-align: left;
}

.place a {
  color: #000;
}

.place a:hover {
  color: #00399A;
}

.list1 {
  margin: .1rem 0 0;
}

.list1 li {
  border-bottom: 1px solid #D6D6D6;
}

.list1 a {
  padding: 0 .45rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.list1 a:hover {
  background: #F3F6FA;
}

.list1 a:hover .date {
  color: #ffffff;
}

.list1 a:hover .title {
  color: #ffffff;
}

.list1 .title {
  width: calc(100% - 1.2rem);
  font-size: .2rem;
  line-height: .9rem;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.list1 .date {
  font-size: .16rem;
  line-height: .9rem;
}

.picture2 {
  margin: .2rem 0 0;
}

.picture2 li {
  margin: .3rem 0 0;
}

.picture2 a {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #F3F6FA;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.picture2 a:hover {
  box-shadow: 3px 4px 17px 0px rgba(139, 139, 139, 0.1566);
}

.picture2 a:hover .title {
  color: #00399A;
}

.picture2 a:hover .text::after {
  height: 100%;
  opacity: 1;
}

.picture2 .img-frame {
  vertical-align: top;
  width: 2.8rem;
}

.picture2 .img-frame .img {
  padding: 1.9rem 0 0;
}

.picture2 .text {
  position: relative;
  z-index: 1;
  flex: 1;
  vertical-align: top;
  padding: .34rem .64rem;
}

.picture2 .text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 0;
  background-image: url("../images/list_bg4.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.picture2 .date {
  font-size: .15rem;
}

.picture2 .title {
  font-family: "HarmonyOS500";
  font-size: .22rem;
  line-height: .3rem;
}

.picture2 .info {
  margin: .1rem 0;
  font-size: .14rem;
  line-height: .24rem;
  max-height: .48rem;
  color: rgba(0, 0, 0, 0.7);
}

.picture3 {
  font-size: 0;
  margin: 0 -0.2rem;
}

.picture3>li {
  display: inline-block;
  vertical-align: top;
  width: 33.3333333333%;
  padding: 0 0.2rem;
}

.picture3 .img-zoom {
  margin: .4rem 0 0;
  padding: .12rem;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fcfeff;
  box-shadow: 0px 0.05rem 0.12rem 0px rgba(165, 186, 199, 0.32);
}

.picture3 .img {
  padding: 65% 0 0;
}

.picture3 .text {
  padding: .15rem 0 .05rem;
}

.picture3 .title {
  font-family: "SYST400";
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.4rem;
  color: #333;
  text-align: center;
}

.teach-column {
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .2rem 0 0;
  border-bottom: 1px solid #ddd;
}

.teach-column h5 {
  margin: 0 0 -1px;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 0.5rem;
  color: #333;
  text-align: left;
  border-bottom: 3px solid #00A0E4;
}

.teach-column .more {
  padding: 0;
  font-size: .16rem;
  line-height: .5rem;
  background: none;
}

.teach-list li {
  margin: .5rem 0 0;
}

.teach-list li:nth-child(even) .img-zoom {
  flex-direction: row-reverse;
}

.teach-list li:nth-child(even) .text::after {
  background-image: url("../images/list_bg6.jpg");
}

.teach-list .img-zoom {
  display: flex;
  align-items: flex-end;
}

.teach-list .img-zoom:hover .name {
  color: #00399A;
}

.teach-list .img-zoom:hover .text::after {
  height: 100%;
  opacity: 1;
}

.teach-list .img-zoom:hover .more {
  color: #fff;
  background: #00399A;
}

.teach-list .img-frame {
  width: 3.26rem;
}

.teach-list .img-frame .img {
  padding: 3.64rem 0 0;
  background-position-y: 10%;
}

.teach-list .text {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 3.35rem;
  padding: .35rem .64rem 0;
  background: #F3F6FA;
}

.teach-list .text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: -1;
  content: "";
  width: 100%;
  height: 0;
  background-image: url("../images/list_bg5.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.teach-list .name {
  margin: 0 0 .15rem;
  font-family: "HarmonyOS500";
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 0.5rem;
  color: #000;
  text-align: left;
}

.teach-list .name span {
  margin: 0 0 0 .12rem;
  font-family: "HarmonyOS400";
  font-size: .18rem;
}

.teach-list .info {
  font-size: .14rem;
  color: #494949;
}

.teach-list .p2 {
  max-height: .72rem;
  margin: .12rem 0 0;
}

.teach-list .more {
  width: 1.1rem;
  margin: .15rem 0 0;
  line-height: .32rem;
  color: #00399A;
  justify-content: center;
  border: 1px solid #00399A;
  background: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.article {
  padding: .36rem 0 .5rem;
}

.article .title {
  font-family: "黑体";
  font-size: 0.26rem;
  font-weight: 500;
  line-height: 140%;
  color: #000;
  text-align: center;
}

.article .sub-title1 {
  margin: 0 0 .08rem;
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 0.32rem;
  color: #000;
  text-align: center;
}

.article .sub-title2 {
  margin: .08rem 0 0;
  font-size: 0.17rem;
  font-weight: 500;
  line-height: 0.32rem;
  color: #666;
  text-align: center;
}

.article .sub {
  padding: .16rem 0 .25rem;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.22rem;
  color: #7f7f7f;
  text-align: center;
  border-bottom: 3px solid #00399A;
}

.article .sub span {
  margin: 0 .12rem;
}

.article .sub span span {
  margin: 0;
}

.article .content {
  padding: .4rem 0 .2rem;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 200%;
  color: #000;
  text-align: justify;
}

.article .content p {
  text-indent: 2em;
  word-break: break-all;
}

.article .content img,
.article .content video {
  max-width: 100%;
  height: auto !important;
  border: none !important;
}

.article .content video {
  display: block;
  margin: 0 auto;
}

.article .content table {
  max-width: 100%;
}

.article .content table td {
  word-break: break-all;
}

.article .content table p {
  text-indent: 0;
  margin: 0;
}

.article .content table img,
.article .content table video,
.article .content table iframe {
  margin-top: 0;
  margin-bottom: 0;
}

.article .content iframe {
  display: block;
  max-width: 100%;
}

.article .cont-page {
  position: relative;
  padding: .3rem 90px .28rem .1rem;
  border-top: 3px solid #00399A;
}

.article .cont-page a {
  display: block;
  padding: 4px 0;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.28rem;
  color: #666;
  text-align: left;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.article .cont-page a span {
  position: relative;
}

.article .cont-page a span::after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -2px;
  left: 0;
  z-index: 1;
  width: 0;
  height: 1px;
  background: #00399A;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  content: "";
}

.article .cont-page a:hover {
  text-decoration: none;
  color: #00399A;
  font-weight: 700;
}

.article .cont-page a:hover span::after {
  width: 100%;
}

.article .return-list {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  text-align: center !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.article .return-list p {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 200%;
  color: #00399A;
  text-align: center;
}

.article .return-list:hover p {
  font-weight: 700;
}

.article ul a,
.article a {
  color: #2196f3;
}

.article ul a:hover,
.article a:hover {
  text-decoration: underline;
}

.article .table-box {
  overflow-x: auto;
}

/* 学院简介 */
.about-content {
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #000;
  text-align: justify;
}

.about-content p {
  margin: 0 0 .3rem;
}

.data-list {
  margin: .5rem 0 0;
}

.data-list .data {
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 0.72rem;
  color: #00399A;
  text-align: left;
}

.data-list .data span {
  font-size: .6rem;
}

.data-list .txt {
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 0.4rem;
  color: #000;
  text-align: left;
}

.data-list .line {
  width: 1px;
  height: .9rem;
  background: #ccc;
}

.about-wrap1 {
  position: relative;
  z-index: 2;
  padding: 1.8rem 0 2.75rem;
  background-image: url("../images/index_bg7.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.about-wrap1 .column-name {
  position: absolute;
  top: -0.96rem;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 7.32rem;
  height: 1.92rem;
  padding: 0 0 0 calc(50vw - 7.1rem);
  font-family: "HarmonyOS700";
  border-radius: 0 .6rem 0 0;
  font-size: 0.4rem;
  font-weight: 500;
  line-height: 0.5rem;
  color: #fff;
  text-align: left;
  background-image: url("../images/list_bg7.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: cover;
}

.about-wrap1 .title h1 {
  font-family: "HarmonyOS700";
  font-size: .46rem;
  line-height: .61rem;
  margin: 0 0 .35rem;
}

.about-wrap1 .title p {
  font-size: .14rem;
  color: #00399A;
  line-height: .24rem;
}

.about-wrap1 .about-content {
  width: 8.55rem;
}

.about-wrap1 .data-list {
  width: 100%;
}

.about-wrap2 {
  position: relative;
  z-index: 3;
}

.about-wrap2 .img-zoom {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 55%;
}

.about-wrap2 .img-zoom .img {
  padding: 6.67rem 0 0;
}

.about-wrap2 .text {
  position: relative;
  z-index: 3;
  width: 52%;
  min-height: 5.33rem;
  margin: 0 0 0 auto;
  padding: 0.8rem calc(50vw - 7.1rem) 0.6rem 0.7rem;
  background: #fff;
}

.about-wrap3 {
  padding: 1rem 0 1.5rem;
  background: #F3F5F7;
}

.about-wrap3 .about-content {
  padding: 0 10% 1px;
  text-align: center;
}

/* 翻页样式 */
#list-page {
  margin: .4rem 0 .3rem !important;
  font-family: "HarmonyOS400";
  text-align: center;
}

#list-page div {
  font-family: "HarmonyOS400";
}

#list-page .p_pages a,
#list-page span,
#list-page .p_goto a {
  font-size: 14px;
  width: auto;
  height: auto;
  margin-top: 5px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

#list-page .p_pages a,
#list-page .p_no_d,
#list-page .p_fun_d,
#list-page .p_goto a {
  padding: 10px 12px;
  color: #00399A;
  border: 1px solid #aaa;
  border-radius: 4px;
}

#list-page .p_pages .p_no_d,
#list-page a:hover,
#list-page .p_goto a {
  background: #00399A;
  font-weight: bold;
  color: #fff;
  border-color: #00399A;
}

#list-page .p_t {
  padding: 0 2px 0 0;
  color: #777;
}

#list-page .p_first,
#list-page .p_first_d,
#list-page .p_last,
#list-page .p_last_d {
  display: inline-block;
}

#list-page .p_pages span {
  color: #aaa;
}

#list-page .p_goto input {
  font-family: "HarmonyOS400";
  color: #333;
  border-radius: 4px;
  width: 40px;
  height: 34px;
  line-height: 34px;
  vertical-align: bottom;
}

#list-page .p_goto input:hover,
#list-page .p_goto input:focus {
  border-color: #00399A;
}

/* 导师名录 */
.dsml {}

.ds-list {
  margin-top: 0.5rem;
}

.ds-tit {}

.ds-tit h3 {
  display: inline-block;
  background: #E7F1FE;
  font-family: "HarmonyOS500";
  font-size: 0.32rem;
  font-weight: 500;
  color: #000;
  padding: 0.09rem 1.24rem 0.15rem 0.27rem;
  border-left: 0.08rem solid #00A0E4;
}

.ds-list ul {
  display: flex;
  flex-wrap: wrap;
}

.ds-list li {
  width: 16.66%;
  margin-top: 0.32rem;
}

.ds-list li a {
  display: block;
  font-family: "HarmonyOS400";
  font-size: 0.24rem;
  font-weight: 400;
  line-height: 0.36rem;
  margin: 0 0.1rem;
  padding-left: 0.26rem;
  color: #000;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
}

.ds-list li a::after {
  content: '';
  position: absolute;
  top: 0.14rem;
  left: 0;
  width: 0.08rem;
  height: 0.08rem;
  border: 1px solid #00A0E4;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.ds-list li:hover a {
  color: #00399A;
}

.ds-list li:hover a::after {
  background-color: #00A0E4;
}


@media screen and (min-width: 1025px) {
  .picture3 .img-zoom:hover {
    border-color: #00399A;
    background: #00399A;
  }

  .picture3 .img-zoom:hover .title {
    color: #fff;
    font-family: "SYST700";
  }
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 90px;
  }

  .container {
    width: 92%;
  }

  .header {
    padding: 10px 0 !important;
    transition: all .2s;
    background: linear-gradient(237deg, #0068ef 12%, #002aaa 71%);
  }

  .header::before,
  .header::after {
    display: none;
  }

  .header .container {
    width: 92%;
    padding: 0 !important;
    align-items: center;
    border: none;
  }

  .header .right-wrapper {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .header .right-wrapper .top-link a,
  .header .right-wrapper .nav,
  .header .right-wrapper .search-btn {
    display: none;
  }

  .logo {
    width: auto;
    min-width: auto;
    height: 45px;
    padding: 0 .12rem 0 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
  }

  .logo img {
    max-height: 45px !important;
  }

  .pad-btn .nav-btn {
    display: block;
  }

  .pad-btn::before {
    display: none;
  }

  .mobile-box {
    display: block;
  }

  .banner {
    margin: 65px 0 0;
  }

  .banner::before {
    bottom: .74rem;
  }

  .banner .img {
    height: auto;
    padding: 45% 0 0;
  }

  .banner .text {
    left: 4%;
    bottom: 1.4rem;
    font-size: .38rem;
    line-height: .5rem;
  }

  .banner .pagination {
    left: 4%;
    bottom: 1rem;
  }

  .banner .pagination .swiper-pagination-bullet {
    width: .8rem;
  }

  .dept-box::before,
  .dept-box::after {
    display: none;
  }

  .dept-box .container {
    width: 100%;
  }

  .dept-box a {
    font-size: .2rem;
    height: .74rem;
  }

  .column {
    margin: .3rem 0 .24rem;
  }

  .column h3 {
    font-size: .32rem;
  }

  .column .en {
    font-size: .2rem;
    margin-top: 0;
    line-height: .25rem;
  }

  .title {
    font-size: .2rem;
  }

  .home1 {
    padding-left: 4%;
    padding-right: 4%;
  }

  .home1 .container {
    width: 100%;
  }

  .home1 .news-box {
    padding: 0;
  }

  .first-news {
    width: 100%;
  }

  .first-news .text {
    padding: .3rem 4%;
  }

  /* .news-list { width: 100%; margin: .3rem 0 0; } */
  .home2 .left-box {
    width: 28%;
    padding: 0 0 .6rem 4vw;
  }

  .home2 .left-box .more {
    margin: .3rem 0 0;
    width: 1.3rem;
  }

  .home2 .right-box {
    width: 72%;
    padding: .3rem 3vw;
  }

  .home2 .column {
    margin: .4rem 0;
  }

  .home2 .column .en {
    margin: 0;
  }

  .notice-list .title {
    height: 1.2rem;
    padding: .2rem .18rem;
  }

  .notice-list .date {
    padding: 0 .18rem;
  }

  .home3 {
    padding: 1px 0 .5rem 4%;
  }

  .home3 .column {
    margin: .3rem 0 .24rem;
  }

  .qh-tit li {
    font-size: .22rem;
  }

  .qh-tit li+li {
    margin-left: 0.3rem;
  }

  .qh-tit li::before {
    height: 0.03rem;
  }

  .qh-tit ul {
    margin-bottom: 0.35rem;
  }

  .research-swiper {
    margin: 0;
  }

  .research-swiper .swiper-slide {
    width: 26vw;
    height: 34vw;
  }

  .research-swiper .swiper-slide::before {
    /* left: 0;
    top: 2.8rem; */
    /* width: 4.8rem; */
    /* height: 4.8rem; */
  }

  .research-swiper .swiper-slide::after {
    /* top: 3.8rem;
    left: 40%;
    width: 3.6rem;
    height: 3.6rem; */
  }

  .research-swiper .img {
    width: 100%;
  }

  .research-swiper .img img {
    max-width: 100%;
  }

  .research-swiper .text1 {
    top: auto;
    left: 0;
    width: 100%;
    bottom: 1.8rem;
    z-index: 5;
  }

  .research-swiper .text1 .name {
    margin: 0 0 6px;
    color: #fff;
    font-size: .24rem;
    text-align: center;
  }

  .research-swiper .text1 .name::after {
    display: none;
    margin: .1rem 0 0;
  }

  .research-swiper .text1 p {
    font-size: .14rem;
    color: #fff;
    text-align: center;
  }

  .research-swiper .text2 {
    padding: 1.5rem .16rem .2rem;
    /* background: #00399A;
    border-top: 5px solid #00A0E4; */
    height: 3.1rem;
  }

  .research-swiper .text2 .title {
    height: .56rem;
    font-size: .18rem;
    line-height: .28rem;
  }

  .research-swiper .text2::after {
    display: none;
  }

  .research-swiper .text2 .time,
  .research-swiper .text2 .dd {
    font-size: .14rem;
    background-size: .2rem auto !important;
  }

  .research-swiper .text2 .zy {
    font-size: 0.14rem;
  }

  .research-swiper>.flex-between {
    margin: .3rem 0 0;
    padding: 0 4vw 0 0;
  }

  .research-swiper .swiper-arrow>div {
    width: .42rem;
    height: .42rem;
    border-width: 2px;
    background-size: .13rem;
  }

  .research-swiper .swiper-arrow .swiper-prev {
    margin: 0 .2rem 0 0;
  }

  .home4 {
    padding: 0 0 0 4%;
  }

  .home4 .column {
    margin: .5rem 0 1rem;
  }

  .home4 .column .en {
    margin: 0;
  }

  .home4 .left-box {
    width: 1.5rem;
    padding: 0;
  }

  .home4 .right-box {
    width: calc(100% - 1.5rem);
  }

  .home4 .swiper-arrow>div {
    width: .42rem;
    height: .42rem;
    border-width: 2px;
    background-size: .13rem;
  }

  .home4 .swiper-arrow .swiper-prev {
    margin: 0 .2rem 0 0;
  }

  .picture-swiper {
    margin: .3rem 0 .4rem;
  }

  .picture-swiper .swiper-slide {
    width: 33vw;
  }

  .picture-swiper .img-zoom {
    opacity: 1;
  }

  .picture-swiper .text {
    bottom: .2rem;
    left: .2rem;
  }

  .picture-swiper .text::after {
    width: .5rem;
    height: 3px;
    margin: 0;
  }

  .picture-swiper .text .title {
    font-size: .22rem;
  }

  .footer {
    padding: .4rem 0 .25rem 0;
  }

  .decorate {
    margin: 65px 0 0;
    padding: 35% 0 0;
  }

  .sidebar {
    width: 100%;
    margin: .15rem 0 0;
    padding: 0;
    border-radius: 3px;
    overflow: hidden;
  }

  .sidebar h3 {
    position: relative;
    font-size: .22rem;
    line-height: .5rem;
    text-align: center;
  }

  .sidebar h3::after {
    display: none;
  }

  .sidebar h3 i {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: .5rem;
    height: .5rem;
    background-image: url(../images/daohang.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.24rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }

  .sidebar h3.down i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .sidebar h3 .return-sup {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 1;
    display: block;
    width: .5rem;
    height: .5rem;
    background-image: url("../images/fanhui.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 0.24rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .sidebar .sub-nav {
    /* display: none;*/
    padding: 5px 0;
  }

  .sidebar .sub-nav li .lv3 {
    margin: 0;
    padding-top: 0;
  }

  .sidebar .sub-nav a {
    height: .5rem;
    text-align: left;
    font-size: .2rem;
    line-height: .5rem;
  }

  .sidebar .sub-nav .down {
    background-size: 6px;
  }

  .sidebar .sub-nav .lv3 a {
    font-size: .16rem;
    line-height: .34rem;
  }

  .main {
    width: 100%;
    padding: .26rem 0 0;
    margin: 0;
    box-shadow: none;
    background: none;
  }

  .main::before {
    display: none;
  }

  .position {
    padding: 0 0 .1rem;
    margin: 0;
  }

  .position h3 {
    font-size: .21rem;
  }

  .picture2 .text {
    padding: .2rem .3rem;
  }

  .picture2 .text::after {
    height: 100%;
    opacity: 1;
  }

  .teach-list .text {
    padding: .25rem .3rem 0;
  }

  .teach-list .text::after {
    height: 100%;
    opacity: 1;
  }

  .article {
    padding: .3rem 0 0 !important;
  }

  .article .sub {
    margin: .2rem 0 0;
    padding: 0 0 .18rem;
  }

  .data-list {
    margin: .2rem 0 0;
    justify-content: center;
  }

  .data-list li {
    width: 33%;
    margin: 0 0 .2rem;
  }

  .data-list .data {
    font-size: .18rem;
    line-height: .52rem;
    text-align: center;
  }

  .data-list .data span {
    font-size: .4rem;
  }

  .data-list .txt {
    font-size: .18rem;
    line-height: .32rem;
    text-align: center;
  }

  .data-list .line {
    width: 1px !important;
  }

  .data-list .line:nth-child(6) {
    display: none;
  }

  .about-content p {
    margin: 0 0 .12rem;
  }

  .about-wrap1 {
    padding: .9rem 0 .3rem;
  }

  .about-wrap1 .column-name {
    top: -.5rem;
    height: 1rem;
    padding-left: 4vw;
    font-size: .32rem;
    border-radius: 0 .3rem 0 0;
    text-align: center;
  }

  .about-wrap1 .title h1 {
    margin: 0 0 .1rem;
    line-height: .42rem;
    font-size: .32rem;
  }

  .about-wrap1 .about-content {
    width: 100%;
    margin: .22rem 0 0;
  }

  .about-wrap2 .img-zoom {
    position: static;
    width: 100%;
  }

  .about-wrap2 .img-zoom .img {
    display: none;
  }

  .about-wrap2 .img-zoom img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }

  .about-wrap2 .text {
    width: 100%;
    min-height: auto;
    padding: .4rem 4vw;
  }

  .about-wrap3 {
    padding: .4rem 0;
  }

  .about-wrap3 .about-content {
    padding: 0;
  }

  .ds-tit h3 {
    padding: 0.09rem 0.5rem 0.15rem 0.27rem;
    border-left: 0.04rem solid #00A0E4;
    font-size: 0.2rem;
  }

  .ds-list li a {
    font-size: 0.18rem;
    line-height: 0.3rem;
  }

  .ds-list li a::after {
    top: 0.11rem;
  }
}

@media screen and (max-width: 768px) {
  .banner::before {
    display: none;
  }

  .banner .pagination {
    bottom: .8rem;
  }

  .banner .pagination .swiper-pagination-bullet {
    width: .4rem;
    height: 4px;
  }

  .banner .text {
    bottom: .4rem;
    font-size: .24rem;
    line-height: .32rem;
  }

  .dept-box {
    position: static;
  }

  .dept-box a {
    height: .6rem;
    padding: 0 .1rem;
    font-size: .15rem;
    line-height: .2rem;
    text-align: center;
  }

  .first-news .img {
    padding: 60% 0 0;
  }

  .first-news .text {
    position: static;
    border-radius: 0 0 .6rem 0;
    background: linear-gradient(237deg, #0068ef 12%, #002aaa 71%);
  }

  .date1 p:first-child::after {
    margin: 5px auto;
  }

  .home1 {
    padding-bottom: .4rem;
  }

  .home1 .news-box {
    margin: 0 0 .2rem;
  }

  .news-list .img {
    padding: 60% 0 0;
  }

  .news-list li {
    width: 100%;
  }

  .news-list li:nth-child(2) {
    margin-top: .18rem;
  }

  .home2 .left-box {
    width: 1.8rem;
  }

  .home2 .right-box {
    width: calc(100% - 1.8rem);
  }

  .notice-swiper-thumbs .title {
    font-size: .2rem;
    line-height: .46rem;
  }

  .notice-swiper-thumbs .swiper-arrow {
    right: .2rem;
  }

  .notice-list>li {
    width: 50%;
  }

  .research-swiper .swiper-slide {
    width: 40vw;
    height: 55.5vw;
    margin-right: .2rem;
  }

  .picture-swiper .swiper-slide {
    width: 45vw;
  }

  .footer .line {
    margin: .15rem 0 0;
  }

  .foot-contact {
    width: 100%;
    text-align: center;
    line-height: .3rem;
  }

  .foot-contact img {
    margin: 0 0 .1rem;
  }

  .QR-code {
    width: 100%;
    margin: .15rem 0 0;
    text-align: center;
  }

  .QR-code p {
    margin: 0;
  }

  .foot-link {
    width: 100%;
    text-align: center;
  }

  .foot-link a {
    margin: 0 .1rem;
  }

  .position {
    padding: 0 0 5px;
    border-bottom: 1px solid #00399A;
  }

  .position h3,
  .position .line {
    display: none;
  }

  .place {
    padding-top: .06rem;
    padding-bottom: .06rem;
    line-height: .22rem;
    white-space: initial;
    background-position-y: 2px;
  }

  .main {
    padding: .18rem 0 0;
  }

  .article {
    padding: .25rem 0 0 !important;
  }

  .article .title {
    font-size: .21rem;
  }

  .article .content {
    padding: .2rem 0 .1rem;
    line-height: 170%;
  }

  .article .cont-page {
    padding: .15rem 0 .35rem;
  }

  .cont-page {
    padding-right: .1rem;
  }

  .cont-page .return-list {
    display: block;
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  .cont-page .return-list p {
    font-weight: 700;
  }

  .teach-list .img-frame {
    width: 2.4rem;
  }

  .teach-list .img-frame .img {
    padding: 3rem 0 0;
  }

  .teach-list .text {
    height: 2.8rem;
    padding: .2rem .2rem 0;
  }

  .teach-list .name {
    margin: 0;
  }

  .teach-list .p2 {
    margin: 6px 0 0;
  }

  .picture2 a {
    flex-wrap: wrap;
  }

  .picture2 .img-frame {
    width: 100%;
  }

  .picture2 .img-frame .img {
    padding: 60% 0 0;
  }

  .picture2 .text {
    width: 100%;
  }

  .picture2 .title {
    font-size: .2rem;
    text-overflow: clip;
    white-space: initial;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .picture3 {
    margin: 0 -.1rem;
  }

  .picture3>li {
    width: 50%;
    padding: 0 .1rem;
  }

  .picture3 .img-zoom {
    margin: .2rem 0 0;
  }

  #list-page {
    margin: .3rem 0 .4rem !important;
  }

  #list-page .p_pages a,
  #list-page .p_no_d,
  #list-page .p_fun_d,
  #list-page .p_goto a {
    padding: 7px 9px;
  }

  #list-page .p_goto input {
    width: 36px;
    height: 28px;
    line-height: 28px;
  }

  .list1 a {
    padding: 0 .1rem;
  }

  .about-wrap1 {
    padding-top: 0;
  }

  .about-wrap1 .column-name {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 .3rem;
    font-size: .25rem;
    line-height: .6rem;
    justify-content: center;
    border-radius: 0;
  }

  .jdt {
    width: 100%;
  }

  .news-list {
    width: 100%;
    margin-top: 0.3rem;
  }

  .home5 {
    padding-bottom: 0.5rem;
  }

  .h5-l {
    width: 100%;
  }

  .h5-l li {
    margin-top: 0.3rem;
  }

  .h5-r {
    width: 100%;
    margin-top: 0.3rem;
  }

  .h5-r li {
    margin-top: 0.3rem;
  }

  .ds-list li {
    width: 50%;
  }

}

@media screen and (max-width: 640px) {
  .qh-tit {}

  .qh-tit ul {
    overflow-x: auto;
  }

  .qh-tit li {
    white-space: nowrap;
  }
}

@media screen and (max-width: 520px) {
  .header {
    padding: 7px 0 !important;
  }

  .header .right-wrapper {
    width: auto;
    max-width: none;
  }

  .logo {
    height: 40px !important;
  }

  .logo img {
    max-height: 40px !important;
  }

  .mobile-box {
    height: calc(100vh - 54px);
    top: 54px;
  }

  .mobile-box .nav {
    height: calc(100% - 1.6rem);
  }

  .mobile-box .top-link2 {
    margin: 0 .1rem;
  }

  .pad-btn .nav-btn {
    width: 26px;
  }

  .pad-btn .nav-btn i {
    margin: 6px 0;
  }

  .pad-btn .nav-btn.close i:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
  }

  .pad-btn .nav-btn.close i:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
  }

  .banner {
    margin: 54px 0 0;
  }

  .banner .img {
    padding: 50% 0 0;
  }

  .banner .pagination {
    display: none;
    bottom: .22rem;
  }

  .banner .text {
    bottom: .22rem;
    font-size: .2rem;
    line-height: .26rem;
  }

  .dept-box li {
    width: 33.33%;
  }

  .dept-box li:nth-child(4),
  .dept-box li:nth-child(5) {
    width: 50%;
  }

  .dept-box a {
    height: .45rem;
    padding: 0 8px;
    font-size: .14rem;
  }

  .column {
    margin: .2rem 0 .1rem;
  }

  .column h3 {
    font-size: .24rem;
    line-height: .5rem;
  }

  .column .en {
    font-size: .16rem;
  }

  .first-news .text {
    padding: .18rem 4%;
    border-radius: 0;
  }

  .first-news .title {
    font-size: .18rem;
  }

  .first-news .info {
    margin: .1rem 0;
  }

  .first-news .date {
    padding: .1rem 0 0;
  }

  .news-list .text p {
    font-size: .18rem;
  }

  .home2 {
    flex-wrap: wrap;
  }

  .home2 .left-box {
    width: 100%;
    padding-right: 4vw;
    padding-bottom: .2rem;
  }

  .home2 .left-box .more {
    margin: .18rem 0 0;
    width: 1rem;
    margin: 0 auto;
    font-size: .15rem;
    line-height: .32rem;
  }

  .home2 .right-box {
    width: 100%;
    padding: .15rem 4vw;
  }

  .home2 .column {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: .2rem 0 0;
  }

  .notice-list>li {
    width: 100%;
    min-height: 123px;
  }

  .notice-list .title {
    height: auto;
    padding: .15rem .14rem;
    min-height: 70px;
  }

  .notice-list .date {
    line-height: .4rem;
  }

  .thumbs-wrap {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-right: 4vw;
  }

  .thumbs-wrap .title {
    font-size: .18rem;
  }

  .notice-swiper-thumbs .swiper-arrow {
    display: none !important;
  }

  .research-swiper {
    padding: 0 0 4px;
  }

  .research-swiper .swiper-slide {
    width: 93vw;
    height: 107vw;
  }

  /* .research-swiper .text1 { bottom: .85rem; } */
  .research-swiper .text1 .name {
    margin: 0;
  }

  /* .research-swiper .text2 { height: 1.8rem; } */
  .research-swiper .text2 .title {
    height: .44rem;
    font-size: .16rem;
    line-height: .22rem;
  }

  .home3 {
    padding-bottom: .3rem;
  }

  .qh-tit li {
    font-size: .18rem;
  }

  .home4 {
    flex-wrap: wrap;
  }

  .home4 .left-box {
    width: 100%;
    padding-right: 4vw;
  }

  .home4 .right-box {
    width: 100%;
    margin-bottom: .1rem;
  }

  .home4 .column {
    margin: .24rem 0 .1rem;
  }

  .home4 .column h3 {
    line-height: .4rem;
    justify-content: center;
  }

  .home4 .column .en {
    width: 100%;
    text-align: center;
  }

  .home4 .swiper-arrow {
    justify-content: center;
  }

  .picture-swiper .swiper-slide {
    width: 92vw;
    margin-right: .2rem;
  }

  .list1 li {
    flex-wrap: wrap;
    padding: .15rem 0 !important;
  }

  .list1 .title {
    width: 100%;
    line-height: .28rem !important;
    overflow: visible;
    text-overflow: clip;
    white-space: initial;
  }

  .list1 .title i {
    margin: 0 .1rem 0 0;
  }

  .list1 .date {
    line-height: .4rem !important;
  }

  .decorate {
    margin: 54px 0 0;
    padding: 45% 0 0;
  }

  .sidebar h3 i {
    background-size: .22rem;
  }

  .sidebar h3 .return-sup {
    background-size: .22rem;
  }

  .picture2 .text {
    width: 100%;
    padding: .15rem;
  }

  .picture3>li {
    width: 100%;
  }

  .teach-list li {
    margin: .3rem 0 0;
  }

  .teach-list .img-zoom {
    flex-wrap: wrap;
  }

  .teach-list .img-frame {
    width: 100%;
  }

  .teach-list .img-frame .img {
    padding: 100% 0 0;
  }

  .teach-list .text {
    width: 100%;
    height: auto;
    padding: .16rem;
  }

  .teach-list .name {
    margin: 0;
  }

  .teach-list .p2 {
    margin: 6px 0 0;
  }

  .data-list li {
    width: 48%;
  }

  .data-list .line:nth-child(6) {
    display: block;
  }

  .data-list .line:nth-child(4),
  .data-list .line:nth-child(8) {
    display: none;
  }

  .about-wrap1 .title h1 {
    font-size: .26rem;
    line-height: .32rem;
  }

  .about-wrap2 .text {
    padding: .3rem 4vw .2rem;
  }

  .research-swiper .swiper-arrow>div {
    width: .34rem;
    height: 0.34rem;
    background-size: .1rem auto;
  }

  .home4 .swiper-arrow>div {
    width: .34rem;
    height: .34rem;
    border-width: 1px;
    background-size: .1rem;
  }
}

@media screen and (max-width: 400px) {
  .research-swiper .swiper-slide {
    height: 118vw;
  }
}

/*# sourceMappingURL=style.css.map */