@charset "UTF-8";
@import url("https://at.alicdn.com/t/c/font_4679064_0vx39zbfojxr.css");
/* 引入图标 */
/* 引入字体 */
/*kingsoft_cloud _font*/
@font-face {
  font-family: "kingsoft";
  src: url("../fonts/kingsoft_cloud_font.ttf");
}
/*DIN*/
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN.ttf");
}
/*Hiragino*/
@font-face {
  font-family: "Hiragino";
  src: url("../fonts/Hiragino_Sans_GB_W6.ttf");
}
@font-face {
  font-family: "Georgia";
  src: url("../fonts/sdgeorgialight-pmj.ttf");
}
@font-face {
  font-family: "BiaoTi";
  src: url("../fonts/youshebiaotihei.ttf");
}
/*公共样式*/
html, body {
  font-family: PingFangSC-Light, "helvetica neue", "hiragino sans gb", arial, "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
  -ms-overflow-style: scrollbar;
  background: #f2f2f2;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td, a {
  margin: 0;
  padding: 0;
  list-style-type: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  padding-right: 0 !important;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none !important;
  outline: 0;
}

a {
  transition: all 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0px;
  padding: 0px;
}

input, select, textarea {
  -webkit-appearance: none; /*清除ios默认圆角*/
  border-radius: 0;
}

/* select::-ms-expand { display: none; }　 */
/*滚动条样式*/
html::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0);
}

html::-webkit-scrollbar-thumb {
  border-radius: 0;
  width: 4px;
  height: 4px;
  background-color: #eaeaea;
}

/* html::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #23297a;
} */
img {
  max-width: 100%;
}

/* 公共样式 */
.w {
  width: 100%;
  max-width: 1600px;
  margin: 0px auto;
}

.w-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: #666;
}

.overflow {
  overflow: hidden;
}

.over-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.line-height {
  line-height: 0;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.flex-1 {
  flex: 1 0 0;
}

.flex-2 {
  flex: 2 0 0;
}

/* css截取字符串 */
.clamp1 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp2 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp3 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp4 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp5 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp6 {
  word-break: break-all;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clear:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.animated {
  visibility: hidden;
}

.main {
  max-width: 1600px;
  margin: 0px auto;
}

.row {
  padding: 60px 0px;
}

.img-box {
  position: relative;
  overflow: hidden;
}
.img-box::after {
  display: block;
  content: "";
  padding-top: 56.25%;
  position: relative;
  z-index: 1;
}
.img-box img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 2;
  transition: all 0.4s ease-out;
}
.img-box.contain img {
  object-fit: contain;
}
.img-box.none img {
  object-fit: none;
}

a:hover .img-box img {
  transform: translate(-50%, -50%) scale(1.05);
}

@keyframes logo {
  0% {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes navAmimation {
  0% {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }
}
.header {
  position: relative;
  z-index: 99;
  height: 52px;
}
.header.show .header-cont .logo {
  animation: logo 1s ease-out forwards;
}
.header.show .header-cont .head-right {
  animation: navAmimation 1s ease-out forwards;
}
.header.show .header-cont .handleNav {
  animation: navAmimation 1s ease-out forwards;
}
.header.index-header {
  height: 0px;
}
.header.index-header .header-cont {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0);
}
.header.index-header .header-cont .head-top {
  padding: 10px 0px;
}
.header.index-header .header-cont .head-top .head-right-top-dl {
  display: flex;
  align-items: center;
}
.header.index-header .header-cont .head-top .head-right-top-dl dd {
  position: relative;
  padding: 0px 15px;
}
.header.index-header .header-cont .head-top .head-right-top-dl dd::after {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.header.index-header .header-cont .head-top .head-right-top-dl dd:last-child::after {
  display: none;
}
.header.index-header .header-cont .head-top .head-right-top-dl dd .head-right-top-a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-out;
}
.header.index-header .header-cont .head-top .head-right-top-dl dd .head-right-top-a:hover {
  color: #fff;
}
.header.index-header .header-cont .head-top .head-right-search-box .search-input {
  transition: all 0.4s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  padding: 0px 35px 0px 15px;
  position: relative;
  width: 170px;
}
.header.index-header .header-cont .head-top .head-right-search-box .search-input input {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  outline: none;
  font-size: 14px;
  color: #fff;
  border: none;
  background: none;
  overflow: hidden;
}
.header.index-header .header-cont .head-top .head-right-search-box .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header.index-header .header-cont .head-top .head-right-search-box .search-input .search-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: 0px;
}
.header.index-header .header-cont .head-top .head-right-search-box .search-input .search-bt i {
  color: rgba(255, 255, 255, 0.5);
}
.header.index-header .header-cont .logo .logo-white {
  opacity: 1;
}
.header.index-header .header-cont .logo .logo-local {
  opacity: 0;
}
.header.index-header .header-cont .nav-box .nav-dl dd .nav-a span {
  color: #fff;
}
.header.index-header .header-cont .nav-box .nav-dl dd .nav-a i {
  background: #fff;
}
.header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a {
  color: #fff;
}
.header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a span i {
  background: #fff;
}
.header.index-header .header-cont .nav-box .search-box .search i {
  color: #fff;
}
.header.index-header .header-cont .pc-nav-bg {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0);
}
.header .header-cont {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}
.header .header-cont .head-top {
  padding: 10px 0px;
  background: rgb(16, 90, 97);
}
.header .header-cont .head-top .main {
  display: flex;
  justify-content: space-between;
}
.header .header-cont .head-top .welcom {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-out;
  display: flex;
  align-items: center;
}
.header .header-cont .head-top .top-right {
  display: flex;
}
.header .header-cont .head-top .top-right .head-right-top-dl {
  display: flex;
  align-items: center;
}
.header .header-cont .head-top .top-right .head-right-top-dl dd {
  position: relative;
  padding: 0px 15px;
}
.header .header-cont .head-top .top-right .head-right-top-dl dd::after {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.header .header-cont .head-top .top-right .head-right-top-dl dd:last-child::after {
  display: none;
}
.header .header-cont .head-top .top-right .head-right-top-dl dd .head-right-top-a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-out;
}
.header .header-cont .head-top .top-right .head-right-top-dl dd .head-right-top-a:hover {
  color: #fff;
}
.header .header-cont .head-top .top-right .head-right-search-box .search-input {
  transition: all 0.4s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  padding: 0px 35px 0px 15px;
  position: relative;
  width: 170px;
}
.header .header-cont .head-top .top-right .head-right-search-box .search-input input {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  outline: none;
  font-size: 14px;
  color: #fff;
  border: none;
  background: none;
  overflow: hidden;
}
.header .header-cont .head-top .top-right .head-right-search-box .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header .header-cont .head-top .top-right .head-right-search-box .search-input .search-bt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: 0px;
}
.header .header-cont .head-top .top-right .head-right-search-box .search-input .search-bt i {
  color: rgba(255, 255, 255, 0.5);
}
.header .header-cont .head-center {
  padding: 5px 0px;
}
.header .header-cont .main {
  position: relative;
  z-index: 3;
}
.header .header-cont .pc-header-line {
  display: none;
  content: "";
  width: 100vw;
  position: absolute;
  left: 50%;
  bottom: 0px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}
.header .header-cont .pc-header-line::after {
  display: block;
  content: "";
  width: 0px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 0px;
  background: rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease-out;
  transform: translateX(-50%);
}
.header .header-cont .logo {
  display: block;
}
.header .header-cont .logo img {
  height: 72px;
}
.header .header-cont .logo .logo-local {
  opacity: 0;
}
.header .header-cont .logo .logo-local {
  opacity: 1;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.header .header-cont .head-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .header-cont .handleNav {
  display: none;
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden;
}
.header .header-cont .handleNav i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex: none;
  font-size: 30px;
  color: #999;
  transition: all 0.3s ease-out;
}
.header .header-cont .handleNav i.icon-guanbi {
  font-size: 22px;
}
.header .header-cont .handleNav.active i.icon-caidan {
  margin-left: -35px;
}
.header .header-cont .nav-box {
  margin: 0px -20px;
}
.header .header-cont .nav-box .nav-dl dd {
  position: relative;
  padding: 0px 15px;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .nav-a {
  display: block;
  transition: all 0.3s ease-out;
  height: 40px;
  line-height: 40px;
  position: relative;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .nav-a span {
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease-out;
  white-space: nowrap;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .nav-a i {
  display: block;
  content: "";
  width: 0px;
  height: 2px;
  background: #297d79;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  transition: all 0.4s ease-out;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .nav-a:hover span {
  color: #297d79;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .nav-a:hover i {
  width: 50%;
}
.header .header-cont .nav-box .nav-dl dd .nav-div .mobile-nav-icon {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.header .header-cont .nav-box .nav-dl dd.hover .nav-a span {
  color: #297d79;
}
.header .header-cont .nav-box .nav-dl dd.hover .nav-a i {
  width: 50%;
}
.header .header-cont .nav-box .nav-dl dd.actived .nav-a {
  font-weight: bold;
}
.header .header-cont .nav-box .nav-dl dd.actived .nav-a span {
  color: #297d79;
}
.header .header-cont .nav-box .nav-dl dd:hover .sub-nav-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box {
  position: absolute;
  left: 0px;
  top: calc(100% - 1px);
  visibility: hidden;
  opacity: 0;
  width: 100%;
  padding-top: 24px;
  transform: translateY(15px);
  transition: all 0.4s ease-out;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box::after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgb(68, 152, 144);
  position: absolute;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
  z-index: 3;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul {
  transition: all 0.3s linear;
  border-top: 5px solid rgb(68, 152, 144);
  background: linear-gradient(to bottom, rgba(68, 152, 144, 0.9), rgba(68, 152, 144, 0.2));
  position: relative;
  z-index: 2;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li {
  line-height: 40px;
  height: 40px;
  text-align: center;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a {
  color: #fff;
  font-size: 14px;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a:hover span i {
  width: 100%;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a span {
  position: relative;
  white-space: nowrap;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a span i {
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.active .sub-nav-a span i, .header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.hover .sub-nav-a span i {
  width: 100%;
}
.header .header-cont .nav-box .nav-more-cont {
  display: none;
  padding: 0px 10px;
}
.header .header-cont .nav-box .nav-more-cont .nav-code {
  display: flex;
  margin: 0px -5px 10px -5px;
}
.header .header-cont .nav-box .nav-more-cont .nav-code .code-box {
  flex: 1 0 0;
  margin: 0px 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.header .header-cont .nav-box .nav-more-cont .nav-code .code-box .code-img {
  width: 70px;
  height: 70px;
  border: 1px solid #ededed;
  padding: 3px;
  overflow: hidden;
  border-radius: 3px;
}
.header .header-cont .nav-box .nav-more-cont .nav-code .code-box .code-img img {
  display: block;
  width: 100%;
}
.header .header-cont .nav-box .nav-more-cont .nav-code .code-box .dode-name {
  font-size: 12px;
  color: #666;
  text-align: center;
  padding-top: 5px;
}
.header .header-cont .nav-box .nav-more-cont .nav-tell {
  padding-top: 15px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: flex-start;
  padding: 10px 15px 0px 15px;
  justify-content: flex-start;
}
.header .header-cont .nav-box .nav-more-cont .nav-tell i,
.header .header-cont .nav-box .nav-more-cont .nav-tell a {
  color: #297d79;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
}
.header .header-cont .nav-box .nav-more-cont .nav-tell i {
  display: block;
  flex: 1 0 0;
}
.header .header-cont .nav-box .search-box {
  position: relative;
  margin: 0px 20px;
  display: none;
}
.header .header-cont .nav-box .search-box .search {
  display: block;
}
.header .header-cont .nav-box .search-box .search i {
  font-size: 18px;
  color: #297d79;
}
.header .header-cont .nav-box .search-box .search-cont {
  position: absolute;
  right: -10px;
  top: calc(100% - 1px);
  padding-top: 7px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s linear;
}
.header .header-cont .nav-box .search-box .search-cont .search-div {
  width: 300px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  border-radius: 3px;
  padding: 7px;
  position: relative;
  z-index: 9;
}
.header .header-cont .nav-box .search-box .search-cont .search-div .search-input {
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 0px 7px;
}
.header .header-cont .nav-box .search-box .search-cont .search-div .search-input input {
  display: block;
  border: none;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #888;
  outline: none;
}
.header .header-cont .nav-box .search-box .search-cont .search-div .search-bt {
  margin-left: 7px;
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  background: #297d79;
  border-radius: 3px;
  padding: 0px 15px;
  transition: none;
}
.header .header-cont .nav-box .search-box .search-cont .search-icon {
  position: absolute;
  right: 15px;
  top: 0px;
  z-index: 1;
  color: #fff;
}
.header .header-cont .nav-box .search-box:hover .search-cont {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header .header-cont .nav-box .head-user {
  display: none;
}
.header .header-cont .mobile-nav-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.header .header-cont .head-user {
  margin-left: 25px;
}
.header .header-cont .head-user .head-user-a i {
  font-size: 30px;
  color: #666;
}
.header .header-cont .head-user .head-user-a:hover i, .header .header-cont .head-user .head-user-a.active i {
  color: #297d79;
}
.header .header-cont .pc-nav-bg {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 2;
  transform: translate(-50%, 15px);
  width: 100vw;
  background: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  transition: all 0.2s linear;
  opacity: 0;
}
.header .header-cont.navShow .pc-header-line::after {
  width: 100%;
}
.footer {
  overflow: hidden;
  background: #404040;
}
.footer .footer-top {
  padding: 35px 0px;
}
.footer .footer-top .main .footer-logo {
  display: block;
}
.footer .footer-top .main .footer-logo img {
  display: block;
  height: 60px;
}
.footer .footer-top .main .footer-menu {
  display: flex;
}
.footer .footer-top .main .footer-menu a {
  display: block;
  font-size: 16px;
  margin: 0px 10px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s linear;
}
.footer .footer-top .main .footer-menu a:hover {
  color: rgb(255, 255, 255);
}
.footer .footer-center {
  padding: 35px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-center .main .flex-wrap .footer-center-l .name {
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer .footer-center .main .flex-wrap .footer-center-l .text {
  line-height: 25px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.footer .footer-center .main .flex-wrap .footer-center-l .text:last-child {
  margin-right: 0px;
}
.footer .footer-center .main .flex-wrap .footer-center-l .text i {
  font-size: 30px;
  color: #333;
  margin-right: 10px;
  font-weight: lighter;
}
.footer .footer-center .main .flex-wrap .footer-center-r {
  margin: 0px -20px;
}
.footer .footer-center .main .flex-wrap .footer-center-r .code-box {
  margin: 0px 20px;
}
.footer .footer-center .main .flex-wrap .footer-center-r .code-box .code-img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 7px;
}
.footer .footer-center .main .flex-wrap .footer-center-r .code-box .code-img img {
  display: block;
  width: 95px;
  height: 95px;
  border-radius: 5px;
}
.footer .footer-center .main .flex-wrap .footer-center-r .code-box .code-name {
  font-size: 14px;
  color: #888888;
  text-align: center;
  padding-top: 10px;
}
.footer .footer-center .main .branch {
  line-height: 30px;
  padding-top: 30px;
  position: relative;
}
.footer .footer-center .main .branch .branch-name {
  font-size: 14px;
  color: #999;
  font-weight: bold;
  margin: 3px 0px;
}
.footer .footer-center .main .branch .branch-cont {
  overflow: hidden;
}
.footer .footer-center .main .branch .branch-cont .branch-a {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  margin: 3px 0px;
  position: relative;
}
.footer .footer-center .main .branch .branch-cont .branch-a span {
  font-size: 14px;
  color: #999;
  transition: all 0.3s ease-out;
}
.footer .footer-center .main .branch .branch-cont .branch-a:hover i, .footer .footer-center .main .branch .branch-cont .branch-a:hover span {
  color: #fff;
}
.footer .footer-center .main .branch .branch-cont .branch-a::after {
  display: block;
  content: "";
  width: 1px;
  height: 40%;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
}
.footer .footer-center .main .branch .branch-cont .branch-a:last-child::after {
  display: none;
}
.footer .footer-center .main .branch.border::after {
  bottom: 0px;
}
.footer .footer-bottom .main .footer-bottom {
  padding: 20px 0px;
  font-size: 15px;
  color: #666;
  line-height: 40px;
  position: relative;
}
.footer .footer-bottom .main .footer-bottom a {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #666;
}
.footer .footer-bottom .main .footer-bottom a:hover {
  color: #297d79;
}
.footer .footer-bottom .main .footer-bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .footer-bottom .main .footer-bottom img {
  display: block;
  height: 20px;
}
.footer .footer-bottom .main .footer-bottom.border::after {
  top: 0px;
}

.list-a {
  line-height: 25px;
  transition: all 0.4s ease-out;
  position: relative;
}
.list-a .name {
  font-size: 18px;
  color: #333;
  transition: all 0.4s ease-out;
  margin: 5px 0px;
}
.list-a .name.bold {
  font-weight: bold;
}
.list-a .name.point {
  padding-left: 20px;
  position: relative;
  transition: all 0.4s ease-out;
}
.list-a .name.point::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background: #3b3b3b;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.list-a .name.point.circle::after {
  border-radius: 8px;
}
.list-a .text {
  font-size: 16px;
  color: #999;
  margin: 5px 0px;
  line-height: 25px;
}
.list-a .text.hover {
  color: #297d79;
}
.list-a .time {
  font-size: 16px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.list-a .time i {
  font-size: 16px;
  color: #999;
  margin-right: 5px;
}
.list-a .keywords {
  font-size: 16px;
  color: #3b3b3b;
  height: 50px;
}
.list-a .list-more {
  font-size: 14px;
  color: #999;
  transition: all 0.4s linear;
  display: flex;
  align-items: center;
}
.list-a .list-more img {
  margin-left: 10px;
}
.list-a .more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #999;
  transition: all 0.3s ease-out;
}
.list-a .more-icon i {
  font-size: 18px;
  color: #999;
  transition: all 0.3s ease-out;
}
.list-a:hover .name {
  color: #297d79;
}
.list-a:hover .name::after {
  background: #297d79;
}
.list-a:hover .list-more {
  color: #297d79;
}
.list-a:hover .more-icon {
  border-color: #297d79;
}
.list-a:hover .more-icon i {
  color: #297d79;
}

.sub-banner-box {
  position: relative;
}
.sub-banner-box::after {
  display: block;
  content: "";
  padding-top: 32.2916666667%;
}
.sub-banner-box::before {
  display: block;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.sub-banner-box .cont {
  position: absolute;
  left: 0px;
  bottom: 100px;
  width: 100%;
  z-index: 3;
}
.sub-banner-box .cont .name {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}
.sub-banner-box .cont .location {
  display: flex;
  align-items: center;
}
.sub-banner-box .cont .location a {
  font-size: 16px;
  color: #fff;
}
.sub-banner-box .cont .location i {
  font-size: 20px;
  color: #fff;
}

.local-nav-box {
  position: relative;
  z-index: 3;
  height: 45px;
}
.local-nav-box .sub-nav {
  position: absolute;
  left: 0px;
  top: -45px;
  z-index: 3;
  width: 100%;
}
.local-nav-box .sub-nav .main {
  position: relative;
}
.local-nav-box .sub-nav .main .sub-nav-dl {
  display: flex;
  margin: 0px -15px;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd {
  margin: 0px 15px;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd .sub-nav-a {
  display: block;
  line-height: 90px;
  overflow: hidden;
  font-size: 18px;
  color: #95b2b1;
  position: relative;
  transition: all 0.4s linear;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd .sub-nav-a::after {
  display: block;
  content: "";
  width: 0px;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s linear;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd .sub-nav-a:hover {
  color: #fff;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd.active .sub-nav-a {
  color: #fff;
}
.local-nav-box .sub-nav .main .sub-nav-dl dd.active .sub-nav-a::after {
  width: 100%;
}
.local-nav-box::after {
  display: block;
  content: "";
  width: 100%;
  height: 90px;
  position: absolute;
  left: -25%;
  top: -45px;
  background: #297d79;
  z-index: 1;
  transform: skew(10deg);
}

.sub-page {
  min-height: 400px;
}

.channel-title-box .channel-title {
  position: relative;
}
.channel-title-box .channel-title::before, .channel-title-box .channel-title::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 1;
}
.channel-title-box .channel-title::before {
  background: url(../images/channel-title-bg1.png) no-repeat left top;
  left: -20px;
}
.channel-title-box .channel-title::after {
  background: url(../images/channel-title-bg2.png) no-repeat right bottom;
  right: -30px;
}
.channel-title-box .channel-title span {
  position: relative;
  z-index: 3;
  font-size: 48px;
  color: #297d79;
}

.txt-img-dl {
  margin: -20px;
}
.txt-img-dl dd {
  width: 100%;
  margin: 20px 0px;
}
.txt-img-dl dd .list-a {
  margin: 0px 20px;
  transition: all 0.4s ease-out;
}
.txt-img-dl dd .list-a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1) !important;
}
.txt-img-dl.row-1 {
  margin: 0px;
}
.txt-img-dl.row-1 dd {
  margin: 0px;
  margin-bottom: 20px;
}
.txt-img-dl.row-1 dd .list-a {
  margin: 0px;
  border-radius: 5px;
  background: #fff;
  padding: 20px;
}
.txt-img-dl.row-1 dd .list-a .img-box {
  width: 350px;
  margin-right: 20px;
}
.txt-img-dl.row-1 dd .list-a .time {
  font-size: 14px;
  margin: 10px 0px;
}
.txt-img-dl.row-1 dd .list-a .time i {
  font-size: 16px;
}
.txt-img-dl.row-1 dd .list-a .text {
  height: 50px;
}
.txt-img-dl.row-1 dd .list-a .more-icon {
  margin-top: 10px;
}
.txt-img-dl.row-3 dd {
  width: 33.3333333333%;
}
.txt-img-dl.row-3 dd .list-a {
  display: block;
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.txt-img-dl.row-3 dd .list-a .img-box {
  border-radius: 5px;
}
.txt-img-dl.row-3 dd .list-a .list-cont {
  display: block;
  padding-top: 15px;
}
.txt-img-dl.row-3 dd .list-a .list-cont .name {
  margin: 15px 0px;
}
.txt-img-dl.row-3 dd .list-a .list-cont .name.clamp1 {
  height: 25px;
}
.txt-img-dl.row-3 dd .list-a .list-cont .name.clamp2 {
  height: 50px;
}
.txt-img-dl.row-3 dd .list-a .list-cont .list-other {
  margin-top: 10px;
}
.txt-img-dl.video dd {
  width: 33.3333333333%;
}
.txt-img-dl.video dd .list-a {
  padding: 0px;
}
.txt-img-dl.video dd .list-a .img-box {
  border-radius: 0px;
}
.txt-img-dl.video dd .list-a .img-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\e624";
  font-family: "iconfont" !important;
  font-size: 40px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
}
.txt-img-dl.video dd .list-a .list-cont {
  padding: 15px;
}
.txt-img-dl.video dd .list-a .list-cont .name {
  height: 25px;
}
.txt-img-dl.honor dd {
  width: 25%;
}
.txt-img-dl.honor dd .list-a {
  padding: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  display: block;
}
.txt-img-dl.honor dd .list-a .img-box {
  border-radius: 0px;
}
.txt-img-dl.honor dd .list-a .img-box img {
  object-fit: contain;
}
.txt-img-dl.honor dd .list-a .img-box::after {
  padding-top: 133.3333333333%;
}
.txt-img-dl.honor dd .list-a .list-cont {
  position: relative;
  margin-top: 20px;
  padding-top: 15px;
}
.txt-img-dl.honor dd .list-a .list-cont::after {
  display: block;
  content: "";
  width: 200%;
  height: 1px;
  background: #e7e7e7;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
.txt-img-dl.honor dd .list-a .list-cont .name {
  height: 25px;
  text-align: center;
}
.txt-img-dl.img-list {
  margin: -10px;
}
.txt-img-dl.img-list dd {
  width: 25%;
  margin: 10px 0px;
}
.txt-img-dl.img-list dd .list-a {
  display: block;
  margin: 0px 10px;
}
.txt-img-dl.img-list dd .list-a .img-box::after {
  padding-top: 178.3783783784%;
}
.txt-img-dl.photos dd .list-a {
  padding: 0px;
  overflow: hidden;
  border-radius: 5px;
}
.txt-img-dl.photos dd .list-a .img-box {
  border-radius: 0px;
}
.txt-img-dl.photos dd .list-a .list-cont {
  padding: 20px;
}
.txt-img-dl.photos dd .list-a .list-cont .name {
  margin: 0px;
}
.txt-img-dl.photos dd .list-a .list-cont .views {
  font-size: 14px;
  color: #999;
}
.txt-img-dl.student dd .list-a {
  padding: 70px;
}
.txt-img-dl.student dd .list-a .img-box {
  width: 280px;
  margin: 0px auto;
  border-radius: 100%;
}
.txt-img-dl.student dd .list-a .img-box::after {
  padding-top: 100%;
}
.txt-img-dl.student dd .list-a .list-cont .name {
  font-size: 28px;
  text-align: center;
  margin: 40px 0px;
}
.txt-img-dl.student dd .list-a .list-cont .text {
  height: 125px;
  text-align: center;
}

.viewer-box .img-box img:hover {
  cursor: zoom-in !important;
}

.all-list-dl {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}
.all-list-dl dd {
  width: 50%;
  margin: 15px 0px;
}
.all-list-dl dd .list-a {
  display: flex;
  margin: 0px 15px;
  position: relative;
  transition: all 0.4s ease-out;
  overflow: hidden;
}
.all-list-dl dd .list-a .time-box {
  text-align: right;
  background: #e7f0f1;
  transition: all 0.4s ease-out;
  padding: 25px;
  overflow: hidden;
  border-radius: 5px 0px 0px 5px;
}
.all-list-dl dd .list-a .time-box .month-day {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  position: relative;
  transition: all 0.4s ease-out;
  font-family: "Georgia";
}
.all-list-dl dd .list-a .time-box .year {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  transition: all 0.4s ease-out;
  font-family: "Georgia";
}
.all-list-dl dd .list-a .img-box {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  border: 10px solid #eaeefa;
}
.all-list-dl dd .list-a .cont {
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s ease-out;
  border-radius: 0px 5px 5px 0px;
  overflow: hidden;
}
.all-list-dl dd .list-a .cont .name {
  position: relative;
  z-index: 3;
}
.all-list-dl dd .list-a .cont::after {
  display: block;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 0;
  background: url(../images/list-bg.png) no-repeat center center;
  background-size: cover;
  transition: all 0.4s ease-out;
  transform: scale(1.2);
}
.all-list-dl dd .list-a:hover .time-box {
  background: #297d79;
}
.all-list-dl dd .list-a:hover .time-box .month-day,
.all-list-dl dd .list-a:hover .time-box .year {
  color: #fff;
}
.all-list-dl dd .list-a:hover .cont {
  background: #297d79;
  border-radius: 0px 40px 5px 40px;
}
.all-list-dl dd .list-a:hover .cont::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.all-list-dl dd .list-a:hover .cont .name {
  color: #fff;
}
.all-list-dl dd:last-child .list-a {
  border-bottom: none;
}
.all-list-dl.teacher dd {
  width: 100%;
}
.all-list-dl.teacher dd .list-a {
  padding: 45px;
}
.all-list-dl.teacher dd .list-a .img-box {
  margin-right: 45px;
}
.all-list-dl.teacher dd .list-a .cont .text {
  height: auto;
}
.all-list-dl.teacher dd .list-a::after {
  display: none;
}
.all-list-dl.teacher dd .list-a:hover {
  box-shadow: none;
  background: #f4f7fe;
}

.ztjj-banner.row {
  padding-bottom: 0px;
}
.ztjj-banner .sub-banner-box {
  border-radius: 10px;
  overflow: hidden;
}
.ztjj-banner .sub-banner-box::after {
  display: none;
}
.ztjj-banner .sub-banner-box img {
  display: block;
  max-width: 100%;
}

.ztjj-dl {
  margin: 40px -10px 10px -10px;
  flex-wrap: wrap;
}
.ztjj-dl dd {
  width: 100%;
  margin: 10px 0px;
}
.ztjj-dl dd .list-a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  margin: 0px 10px;
}
.ztjj-dl dd .list-a .img-box::after {
  display: none;
}
.ztjj-dl dd .list-a .img-box img {
  display: block;
  position: relative;
  width: 100%;
  left: 0px;
  top: 0px;
  transform: translate(0, 0);
}
.ztjj-dl dd .list-a:hover .img-box::after {
  display: none;
}
.ztjj-dl dd .list-a:hover .img-box img {
  display: block;
  position: relative;
  width: 100%;
  left: 0px;
  top: 0px;
  transform: translate(0, 0) scale(1.01);
}

.page-box {
  margin-top: 60px;
}
.page-box .page-cont {
  font-size: 14px;
  color: #5f6166;
}
.page-box .page-cont a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 4px;
  background: #fff;
  transition: all 0.4s ease-out;
  border-radius: 40px;
  color: #999;
  border: 1px solid #cdcdcd;
}
.page-box .page-cont a span {
  color: #5f6266;
}
.page-box .page-cont a i {
  color: #c1c4cc;
}
.page-box .page-cont a.go, .page-box .page-cont a.active, .page-box .page-cont a.hover, .page-box .page-cont a:hover {
  background: #297d79;
  border-color: #297d79;
  color: #fff;
}
.page-box .page-cont a.go i, .page-box .page-cont a.go span, .page-box .page-cont a.active i, .page-box .page-cont a.active span, .page-box .page-cont a.hover i, .page-box .page-cont a.hover span, .page-box .page-cont a:hover i, .page-box .page-cont a:hover span {
  color: #fff;
}
.page-box .page-cont a.disabled {
  cursor: no-drop;
  background: #e3e3e3;
}
.page-box .page-cont a.disabled i, .page-box .page-cont a.disabled span {
  color: #999;
}
.page-box .page-cont .page-input {
  display: block;
  width: 40px;
  height: 30px;
  border: 1px solid #f4f4f6;
  border-radius: 2px;
  outline: none;
  text-align: center;
  margin: 0px 5px;
}
.page-box .page-cont .total {
  margin-right: 15px;
}
.page-box .page-cont .go {
  margin-left: 10px;
}
.page-box .page-cont .to {
  margin-left: 15px;
}
.page-box .pagination {
  display: flex;
  justify-content: center;
}
.page-box .pagination li {
  margin: 0px 5px;
  padding: 4px 9px;
  background: #d7d7d7;
  border-radius: 3px;
}
.page-box .pagination li a,
.page-box .pagination li span {
  font-size: 16px;
  color: #888;
}
.page-box .pagination li.disabled {
  pointer-events: none;
  background: #efefef;
}
.page-box .pagination li.disabled span {
  color: #a9a9a9;
}
.page-box .pagination li.active span {
  color: #297d79;
}

.customer-swiper-bt {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.customer-swiper-bt::after, .customer-swiper-bt::before {
  font-family: "iconfont" !important;
  font-size: 40px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #fff;
}
.customer-swiper-bt.customer-swiper-next::after {
  content: "\e612";
}
.customer-swiper-bt.customer-swiper-prev::after {
  content: "\e617";
}

.customer-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  opacity: 1;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s linear;
}
.customer-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
}
.customer-swiper-pagination.pagination-round .swiper-pagination-bullet {
  border-radius: 15px;
  background: rgb(255, 255, 255);
}
.customer-swiper-pagination.pagination-round .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #297d79;
  border-color: #297d79;
  width: 30px;
}
.customer-swiper-pagination.pagination-theme .swiper-pagination-bullet {
  border-radius: 15px;
  background: #297d79;
  border-color: #297d79;
}
.customer-swiper-pagination.pagination-theme .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
}

@keyframes titleMove {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes titleIconMove {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(40deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.row-title-box .row-title {
  position: relative;
}
.row-title-box .row-title .row-title-a {
  display: block;
  position: relative;
}
.row-title-box .row-title .row-title-a .row-title-cn {
  position: relative;
  z-index: 2;
  margin-left: 40px;
}
.row-title-box .row-title .row-title-a .row-title-cn span {
  display: block;
  position: relative;
  z-index: 3;
  font-size: 38px;
  height: 50px;
  line-height: 50px;
  color: #297d79;
  font-family: "BiaoTi";
  background: linear-gradient(to right, #fff, #449890);
  border-radius: 50px;
  padding: 0px 25px 0px 50px;
}
.row-title-box .row-title .row-title-a .row-title-cn::before, .row-title-box .row-title .row-title-a .row-title-cn::after {
  display: block;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50px;
}
.row-title-box .row-title .row-title-a .row-title-cn::before {
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  z-index: 2;
}
.row-title-box .row-title .row-title-a .row-title-cn::after {
  border: 1px solid #297d79;
}
.row-title-box .row-title .row-title-a .row-title-icon {
  z-index: 5;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.row-title-box .row-title .row-title-a .row-title-icon i {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: #fff;
  background: #449890;
  width: 68px;
  height: 68px;
  border-radius: 68px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-title-box .row-title .row-title-a .row-title-icon::after {
  display: block;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 100%;
  border: 1px solid rgba(109, 176, 171, 0.8);
  clip-path: ellipse(60% 100% at 0% 55%);
  animation: titleIconMove 4s linear infinite;
}
.row-title-box.row-title-white .row-title-a .row-title-cn span {
  color: #fff;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}
.row-title-box.row-title-white .row-title-a .row-title-cn::before, .row-title-box.row-title-white .row-title-a .row-title-cn::after {
  display: block;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50px;
}
.row-title-box.row-title-white .row-title-a .row-title-cn::before {
  display: none;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  z-index: 2;
}
.row-title-box.row-title-white .row-title-a .row-title-cn::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.row-title-box.row-title-white .row-title-a .row-title-icon i {
  color: #297d79;
  background: #fff;
}
.row-title-box.row-title-white .row-title-a .row-title-icon::after {
  border: 1px solid rgb(255, 255, 255);
}

.more-a {
  font-size: 14px;
  color: #297d79;
  display: flex;
  padding: 0px 20px;
  border: 1px solid #297d79;
  border-radius: 5px;
  height: 45px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-out;
}
.more-a i {
  font-size: 30px;
}
.more-a i,
.more-a span {
  transition: all 0.4s ease-out;
}
.more-a.hover {
  color: #297d79;
  border: 1px solid #297d79;
}
.more-a.hover i {
  color: #297d79;
}
.more-a:hover {
  background: #297d79;
}
.more-a:hover span {
  color: #fff;
}
.more-a:hover i {
  color: #fff;
}
.more-a span {
  margin-right: 10px;
}
.more-a.more-white {
  color: #fff;
  border: 1px solid #fff;
}
.more-a.more-white i {
  color: #fff;
}
.more-a.more-white:hover {
  background: #fff;
}
.more-a.more-white:hover span {
  color: #297d79;
}
.more-a.more-white:hover i {
  color: #297d79;
}

.form-select {
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding: 0px 10px;
}
.form-select.active .select-box {
  transition: all 0.3s ease-out;
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
}
.form-select input {
  display: block;
  width: 100%;
  height: 37px;
  line-height: 37px;
  background: none;
  outline: none;
  border: none;
  font-size: 14px;
  color: #666;
  font-family: PingFangSC-Light, "helvetica neue", "hiragino sans gb", arial, "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
}
.form-select input::placeholder {
  color: #9b9b9b;
}
.form-select input:read-only {
  cursor: pointer;
}
.form-select .select-box {
  width: 100%;
  position: absolute;
  left: 0px;
  top: calc(100% + 5px);
  z-index: 99;
  padding-top: 6px;
  transform: translateY(40px);
  visibility: hidden;
  opacity: 0;
}
.form-select .select-box::after {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 3;
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}
.form-select .select-box .select-ul {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
.form-select .select-box .select-ul::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0);
}
.form-select .select-box .select-ul::-webkit-scrollbar-thumb {
  border-radius: 0;
  width: 4px;
  height: 4px;
  background-color: #eaeaea;
}
.form-select .select-box .select-ul li {
  border-bottom: 1px solid #f0f0f0;
}
.form-select .select-box .select-ul li .select-a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  overflow: hidden;
  font-size: 14px;
  color: #999;
  padding: 0px 15px;
  transition: all 0s;
}
.form-select .select-box .select-ul li .select-a.active, .form-select .select-box .select-ul li .select-a:hover {
  color: #297d79;
}
.form-select.up .select-box {
  top: auto;
  bottom: calc(100% + 5px);
  padding-bottom: 6px;
  transform: translateY(-40px);
}
.form-select.up .select-box::after {
  bottom: 0px;
  top: auto;
}
.form-select.form-icon {
  position: relative;
  padding-right: 37px;
}
.form-select.form-icon .icon {
  width: 37px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-select.form-icon .icon i {
  color: #e6e6e6;
  font-size: 14px;
  transition: all 0.3s ease-out;
}
.form-select.form-icon.active .icon i {
  transform: rotate(-180deg);
}
.form-select.form-icon.active .select-box {
  opacity: 1;
  transition: all 0.3s ease-out;
  transform: translateY(0px);
  visibility: visible;
}

.form-box .form-dl {
  margin: 0px -15px;
}
.form-box .form-dl dd {
  width: 50%;
  margin: 15px 0px;
}
.form-box .form-dl dt {
  width: 100%;
  margin: 15px 0px;
}
.form-box .form-dl .form-item {
  margin: 0px 15px;
}
.form-box .form-dl .form-item .form-div {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  background: #fff;
  padding: 0px 10px;
  position: relative;
}
.form-box .form-dl .form-item .form-div input {
  display: block;
  width: 100%;
  height: 37px;
  line-height: 37px;
  background: none;
  outline: none;
  border: none;
  font-size: 14px;
  color: #666;
  font-family: PingFangSC-Light, "helvetica neue", "hiragino sans gb", arial, "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
}
.form-box .form-dl .form-item .form-div input::placeholder {
  color: #cccccc;
}
.form-box .form-dl .form-item .form-div input:read-only {
  cursor: pointer;
}
.form-box .form-dl .form-item .form-div textarea {
  display: block;
  width: 100%;
  line-height: 25px;
  min-height: 150px;
  background: none;
  outline: none;
  border: none;
  font-size: 14px;
  color: #666;
  resize: none;
  font-family: PingFangSC-Light, "helvetica neue", "hiragino sans gb", arial, "microsoft yahei ui", "microsoft yahei", simsun, sans-serif;
}
.form-box .form-dl .form-item .form-div textarea::placeholder {
  color: #9b9b9b;
}
.form-box .form-dl .form-item .form-div.form-icon {
  cursor: pointer;
  padding-right: 37px;
}
.form-box .form-dl .form-item .form-div.form-icon .icon {
  width: 37px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-box .form-dl .form-item .form-div.form-icon .icon i {
  transition: all 0.3s ease-out;
}
.form-box .form-dl .form-item .form-div.form-icon.active .icon i {
  transform: rotate(-180deg);
}
.form-box .form-dl .form-item .form-div.form-icon.active .select-box {
  transition: all 0.3s ease-out;
  transform: translateY(0px);
  visibility: visible;
}
.form-box .form-dl .form-item .form-name {
  font-size: 14px;
  color: #575757;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90px;
  position: relative;
}
.form-box .form-dl .form-item .form-name span {
  position: relative;
  padding-left: 5px;
}
.form-box .form-dl .form-item .form-name span::after {
  display: none;
  content: "*";
  font-size: 12px;
  color: #f14d4d;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
}
.form-box .form-dl .form-item .form-name.required span::after {
  display: block;
}
.form-box .form-dl .form-item .form-radio .form-radio-item {
  margin-right: 20px;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  color: #999;
}
.form-box .form-dl .form-item .form-radio .form-radio-item::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #297d79;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}
.form-box .form-dl .form-item .form-radio .form-radio-item::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.form-box .form-dl .form-item .form-radio .form-radio-item input {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form-box .form-dl .form-item .form-radio .form-radio-item.active {
  color: #297d79;
}
.form-box .form-dl .form-item .form-radio .form-radio-item.active::before {
  visibility: visible;
}
.form-box .form-dl .form-item .form-radio .form-radio-item.active::after {
  border-color: #297d79;
}
.form-box .form-dl .form-item .form-code {
  margin-left: 10px;
  border-radius: 3px;
  overflow: hidden;
}
.form-box .form-dl .form-item .form-code img {
  display: block;
  height: 37px;
}
.form-box .form-bt-box {
  margin: 25px -10px 0px -10px;
}
.form-box .form-bt-box .form-bt {
  margin: 0px 10px;
  overflow: hidden;
  height: 45px;
  border-radius: 3px;
  background: #297d79;
  font-size: 14px;
  color: #fff;
  padding: 0px 80px;
  border: none;
}
.form-box .form-tip {
  font-size: 12px;
  color: #999;
  padding-top: 15px;
}

.table {
  width: 100%;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  border-collapse: collapse;
}
.table th {
  height: 40px;
  line-height: 40px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  color: #424242;
  padding: 0px 15px;
  white-space: nowrap;
}
.table tbody tr {
  transition: all 0.3s linear;
}
.table tbody tr:hover {
  background: #f8f8f8;
}
.table td {
  border-top: 1px solid #e6e6e6;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  color: #828282;
  padding: 7px 15px;
  white-space: nowrap;
}

.loading-box {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 999;
}
.loading-box::before, .loading-box::after {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  transition: all 0.5s linear;
}
.loading-box::before {
  top: 0px;
}
.loading-box::after {
  bottom: 0px;
}
.loading-box .logo {
  position: relative;
  z-index: 3;
  margin-bottom: 50px;
}
.loading-box.hide {
  transition-delay: 0.3s;
  transition: all 0.2s linear;
  visibility: hidden;
}
.loading-box.hide::before, .loading-box.hide::after {
  height: 0px;
}
.loading-box.hide .logo,
.loading-box.hide .loader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

/* HTML: <div class="loader"></div> */
.loader {
  height: 60px;
  aspect-ratio: 2;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  background: linear-gradient(90deg, #297d79 50%, rgba(0, 0, 0, 0) 0) -25% 100%/50% 3px repeat-x border-box;
  position: relative;
  animation: l3-0 0.75s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  inset: auto 42.5% 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #297d79;
  animation: l3-1 0.75s cubic-bezier(0, 900, 1, 900) infinite;
}

@keyframes l3-0 {
  to {
    background-position: -125% 100%;
  }
}
@keyframes l3-1 {
  0%, 2% {
    bottom: 0%;
  }
  98%, to {
    bottom: 0.1%;
  }
}
.loader {
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}
.loader .dot {
  width: 24px;
  height: 24px;
  background: #3ac;
  border-radius: 100%;
  display: inline-block;
  animation: slide 1s infinite;
}
.loader .dot:nth-child(1) {
  animation-delay: 0.1s;
  background: #32aacc;
}
.loader .dot:nth-child(2) {
  animation-delay: 0.2s;
  background: #64aacc;
}
.loader .dot:nth-child(3) {
  animation-delay: 0.3s;
  background: #96aacc;
}
.loader .dot:nth-child(4) {
  animation-delay: 0.4s;
  background: #c8aacc;
}
.loader .dot:nth-child(5) {
  animation-delay: 0.5s;
  background: #faaacc;
}

@keyframes slide {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
.balls {
  width: 4em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.balls div {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: #297d79;
}

.balls div:nth-of-type(1) {
  transform: translateX(-100%);
  animation: left-swing 0.5s ease-in alternate infinite;
}

.balls div:nth-of-type(3) {
  transform: translateX(-95%);
  animation: right-swing 0.5s ease-out alternate infinite;
}

@keyframes left-swing {
  50%, 100% {
    transform: translateX(95%);
  }
}
@keyframes right-swing {
  50% {
    transform: translateX(-95%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media screen and (max-width: 1600px) {
  .main {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1366px) {
  .main {
    padding: 0px 20px;
  }
  .header .header-cont .logo img {
    height: 60px;
  }
  .header .header-cont .main .nav-box {
    margin: 0px -15px;
  }
  .header .header-cont .main .nav-box .nav-dl dd {
    padding: 0px 10px;
  }
  .header .header-cont .main .nav-box .nav-dl dd .nav-a {
    height: 60px;
    line-height: 60px;
  }
  .header .header-cont .main .nav-box .nav-dl dd .nav-a span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .row {
    padding: 40px 0px;
  }
  .header .header-cont .logo img {
    height: 50px;
  }
  .header .header-cont .main .nav-box {
    margin: 0px -15px;
  }
  .header .header-cont .main .nav-box .nav-dl dd {
    padding: 0px 5px;
  }
  .header .header-cont .main .nav-box .nav-dl dd .nav-a {
    height: 50px;
    line-height: 50px;
  }
  .header .header-cont .main .nav-box .nav-dl dd .nav-a span {
    font-size: 15px;
  }
  .row-title-box .row-title .row-title-text {
    font-size: 36px;
  }
  .locaiton-box {
    line-height: 55px;
  }
}
@media screen and (max-width: 768px) {
  body, html {
    right: 0px;
  }
  body.active, html.active {
    width: 100vw;
    overflow: hidden;
  }
  body {
    transition: right 0.4s ease-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  body.active {
    right: 80px;
  }
  body.active .header .header-cont {
    transform: translateX(-250px);
  }
  .customer-swiper-bt {
    display: flex;
  }
  .contain {
    flex: 1 0 0;
  }
  .row {
    padding: 30px 0px;
  }
  .main {
    padding: 0px 15px;
  }
  .header {
    height: 45px;
  }
  .header .header-cont {
    transition: all 0.4s ease-out;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
  }
  .header .header-cont .head-top .main {
    padding: 0px;
  }
  .header .header-cont .head-top .welcom {
    display: none;
  }
  .header .header-cont .head-top .top-right {
    flex: 1 0 0;
  }
  .header .header-cont .head-top .top-right .head-right-top-dl {
    flex: 1 0 0;
  }
  .header .header-cont .head-top .top-right .head-right-top-dl dd {
    flex: 1 0 0;
    display: flex;
    justify-content: center;
  }
  .header .header-cont .head-top .top-right .head-right-search-box {
    display: none;
  }
  .header .header-cont .head-center {
    padding: 0px;
  }
  .header .header-cont .head-center .main {
    height: 45px;
    padding: 0px 15px;
  }
  .header .header-cont .head-center .main .logo img {
    height: 30px;
  }
  .header .header-cont .head-center .main .logo .logo-white {
    opacity: 0;
  }
  .header .header-cont .head-center .main .logo .logo-local {
    opacity: 1;
  }
  .header .header-cont .head-center .main .handleNav {
    display: flex;
  }
  .header .header-cont .head-center .main .head-right {
    background: #fff;
    position: fixed;
    left: 100%;
    top: 0px;
    width: 250px;
    height: 100vh;
    z-index: 9;
    padding: 20px 0px;
    transition: all 0.4s ease-out;
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header .header-cont .head-center .main .head-right .head-user {
    display: none;
  }
  .header .header-cont .head-center .main .nav-box {
    flex: 1 0 0;
    margin: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl {
    display: block;
    flex: 1 0 0;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .nav-div {
    display: flex;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .nav-div .nav-a {
    flex: 1 0 0;
    height: 40px;
    display: flex;
    text-align: start;
    line-height: 40px;
    padding: 0px 15px;
    margin: 0px;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .nav-div .nav-a span {
    position: relative;
    color: #666;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .nav-div .mobile-nav-icon {
    display: flex;
    font-size: 20px;
    color: #999;
    transition: all 0.3s linear;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd.active .nav-div .nav-a span, .header .header-cont .head-center .main .nav-box .nav-dl dd.hover .nav-div .nav-a span {
    color: #297d79;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .sub-nav-box {
    display: none;
    position: relative;
    top: 0px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    padding-top: 0px;
    transition: none;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .sub-nav-box::after {
    display: none;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul {
    padding: 5px 0px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    border-top: none;
    background: none;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li {
    line-height: 30px;
    height: 30px;
    text-align: left;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a {
    padding-left: 25px;
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd.mobileSubNavShow .nav-div .mobile-nav-icon {
    transform: rotate(90deg);
  }
  .header .header-cont .head-center .main .nav-box .nav-dl dd.mobileSubNavShow .sub-nav-box .sub-nav-ul li.hover .sub-nav-a, .header .header-cont .head-center .main .nav-box .nav-dl dd.mobileSubNavShow .sub-nav-box .sub-nav-ul li.active .sub-nav-a {
    color: #297d79;
  }
  .header .header-cont .head-center .main .nav-box .nav-more-cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .header .header-cont .head-center .main .nav-box .head-user {
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    margin-bottom: 15px;
  }
  .header .header-cont .head-center .main .nav-box .search-box {
    padding: 0px 15px;
    margin: 0px;
    margin-bottom: 20px;
    display: block;
  }
  .header .header-cont .head-center .main .nav-box .search-box .search {
    display: none;
  }
  .header .header-cont .head-center .main .nav-box .search-box .search-cont {
    position: relative;
    right: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    padding-top: 0px;
    transform: translateY(0);
  }
  .header .header-cont .head-center .main .nav-box .search-box .search-cont .search-icon {
    display: none;
  }
  .header .header-cont .head-center .main .nav-box .search-box .search-cont .search-div {
    width: 100%;
    padding: 0px;
  }
  .header .header-cont .head-center .main .nav-box .search-box:hover {
    transform: translateY(0);
  }
  .header .header-cont .head-center .main .mobile-nav-bg.active {
    opacity: 1;
    visibility: visible;
  }
  .header.index-header .header-cont {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
  }
  .header.index-header .header-cont .logo .logo-white {
    opacity: 0;
  }
  .header.index-header .header-cont .logo .logo-local {
    opacity: 1;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .nav-a span {
    color: #297d79;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .nav-a i {
    background: #297d79;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a {
    color: #666;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li .sub-nav-a span i {
    background: #297d79;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.avtive .sub-nav-a, .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.hover .sub-nav-a {
    color: #297d79;
  }
  .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.avtive .sub-nav-a span i, .header.index-header .header-cont .nav-box .nav-dl dd .sub-nav-box .sub-nav-ul li.hover .sub-nav-a span i {
    background: #297d79;
  }
  .header.index-header .header-cont .nav-box .search-box .search i {
    color: #fff;
  }
  .header.show .header-cont .logo {
    animation: logo 1s ease-out forwards;
  }
  .header.show .header-cont .head-right {
    animation: navAmimation 1s ease-out forwards;
  }
  .header.show .header-cont .handleNav {
    animation: navAmimation 1s ease-out forwards;
  }
  .list-a .name {
    font-size: 16px;
  }
  .list-a .keywords {
    font-size: 12px;
  }
  .row-title-box .row-title .row-title-a .row-title-cn span {
    height: 40px;
    line-height: 40px;
    font-size: 22px;
    padding-left: 35px;
  }
  .row-title-box .row-title .row-title-a .row-title-icon i {
    width: 58px;
    height: 58px;
  }
  .row-title-box .more {
    display: none;
  }
  .row-title-box.row-title-white .row-title {
    background-size: auto 80%;
  }
  .footer {
    overflow: hidden;
  }
  .footer .footer-bottom .main .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 0px;
    text-align: center;
  }
  .footer .footer-bottom .main .footer-bottom::after {
    display: none;
  }
  .footer .footer-center,
  .footer .footer-top {
    display: none;
  }
  .sub-banner-box::after {
    padding-top: 56.25%;
  }
  .sub-banner-box .cont {
    bottom: 20px;
  }
  .sub-banner-box .cont .name {
    font-size: 20px;
  }
  .sub-banner-box .cont .location a {
    font-size: 14px;
  }
  .sub-banner-box .cont .location i {
    font-size: 16px;
  }
  .local-nav-box::after {
    height: 100%;
    left: 0px;
    top: 0px;
    transform: skew(0deg);
  }
  .local-nav-box .sub-nav {
    top: 0px;
  }
  .local-nav-box .sub-nav .main .sub-nav-dl {
    overflow-y: hidden;
    overflow-x: auto;
  }
  .local-nav-box .sub-nav .main .sub-nav-dl dd .sub-nav-a {
    white-space: nowrap;
    font-size: 14px;
    line-height: 45px;
  }
  .row-title-box .row-title {
    font-size: 24px;
  }
  .form-box .form-dl {
    margin: 0px -10px;
  }
  .form-box .form-dl dd {
    width: 100%;
    margin: 10px 0px;
  }
  .form-box .form-dl dt {
    width: 100%;
    margin: 10px 0px;
  }
  .form-box .form-dl .form-item {
    margin: 0px 10px;
  }
  .form-box .form-bt-box {
    margin: 25px -10px 0px -10px;
  }
  .form-box .form-bt-box .form-bt {
    flex: 1 0 0;
  }
  .form-box .form-tip {
    font-size: 12px;
    color: #999;
    padding-top: 15px;
  }
  .channel-title-box {
    justify-content: center;
  }
  .channel-title-box .channel-title span {
    font-size: 20px;
  }
  .channel-title-box .channel-title::before {
    background-size: auto 18px;
    left: -10px;
  }
  .channel-title-box .channel-title::after {
    background-size: auto 15px;
    right: -17px;
  }
  .more {
    width: 100%;
  }
  .more .more-a {
    padding: 0px 15px;
    display: flex;
    justify-content: center;
    height: 38px;
  }
  .more .more-a span {
    margin-right: 5px;
  }
  .page-box {
    margin-top: 40px;
  }
  .all-list-dl dd {
    width: 100%;
    margin: 7px 0px;
  }
  .all-list-dl dd .list-a .time-box {
    padding: 15px;
  }
  .all-list-dl dd .list-a .time-box .month-day {
    width: 60px;
  }
  .all-list-dl dd .list-a .cont .name {
    margin-bottom: 5px;
  }
  .txt-img-dl {
    margin: -7px -7px -8px -7px;
  }
  .txt-img-dl dd {
    margin: 7px 0px 8px 0px;
  }
  .txt-img-dl dd .list-a {
    margin: 0px 7px;
  }
  .txt-img-dl.row-1 dd .list-a {
    padding: 10px;
  }
  .txt-img-dl.row-1 dd .list-a .img-box {
    width: 110px;
    margin-right: 15px;
    border-radius: 3px;
  }
  .txt-img-dl.row-1 dd .list-a .time {
    display: none;
  }
  .txt-img-dl.row-1 dd .list-a .more-icon {
    display: none;
  }
  .txt-img-dl.row-1 dd .list-a .text {
    height: 25px;
    -webkit-line-clamp: 1 !important;
  }
  .txt-img-dl.row-3 dd {
    width: 100%;
  }
  .txt-img-dl.row-3 dd .list-a {
    padding: 15px;
  }
  .txt-img-dl.row-3 dd .list-a .list-cont {
    padding: 0px;
  }
  .txt-img-dl.honor dd {
    width: 100%;
  }
  .txt-img-dl.honor dd .list-a {
    padding: 15px;
  }
  .txt-img-dl.honor dd .list-a .img-box img {
    position: relative;
    left: 0px;
    top: 0px;
    transform: translate(0px, 0px);
  }
  .txt-img-dl.honor dd .list-a .img-box::after {
    display: none;
  }
  .txt-img-dl.honor dd .list-a .list-cont {
    margin-top: 15px;
  }
  .txt-img-dl.video dd .list-a .list-cont {
    padding: 0px;
    padding-top: 15px;
  }
  .txt-img-dl.img-list {
    margin: -7px;
  }
  .txt-img-dl.img-list dd {
    margin: 7px 0px;
    width: 50%;
  }
  .txt-img-dl.img-list dd .list-a {
    margin: 0px 7px;
  }
  .txt-img-dl.student dd .list-a {
    padding: 15px;
  }
  .txt-img-dl.student dd .list-a .list-cont .name {
    margin: 15px 0px;
  }
  .txt-img-dl.student dd .list-a .list-cont .text {
    height: auto;
    max-height: 125px;
  }
  .text-img-hot {
    display: block;
    margin-bottom: 15px;
  }
  .text-img-hot .hot-left {
    width: 100%;
  }
  .text-img-hot .hot-left .swiper-slide {
    border-radius: 0px;
  }
  .text-img-hot .hot-left .swiper-slide .list-a .img-box {
    border-radius: 0px;
  }
  .text-img-hot .hot-left .swiper-slide .list-a .list-cont {
    display: block;
    padding: 15px;
  }
  .text-img-hot .hot-right {
    display: none;
  }
  .ztjj-banner.row {
    padding-bottom: 0px;
  }
  .ztjj-banner .sub-banner-box {
    border-radius: 5px;
  }
  .locaiton-box {
    line-height: 45px;
  }
  .locaiton-box .main {
    justify-content: center;
    padding: 0px;
  }
  .locaiton-box .main .location {
    display: none;
  }
  .locaiton-box .main .sub-nav {
    overflow: hidden;
    padding: 0px 0px 0px 15px;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl {
    display: block;
    margin: 0px -5px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd {
    display: inline-block;
    margin: 0px 5px;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd .sub-nav-a {
    font-size: 14px;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd .sub-nav-a span {
    white-space: nowrap;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd::after {
    width: 100%;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd .sub-nav-box {
    position: fixed;
    right: 10px;
    left: auto;
    transform: translate(0px, 10px);
    min-width: auto;
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd .sub-nav-box::after {
    left: auto;
    right: 10px;
    transform: translateX(0px) rotate(45deg);
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd.thirdNavShow .sub-nav-box {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
  }
  .locaiton-box .main .sub-nav .sub-nav-dl dd:hover .sub-nav-box {
    visibility: hidden;
    opacity: 0;
  }
  .locaiton-box .main .third-nav-bt {
    display: flex;
  }
  .locaiton-box .main .third-nav-bt i {
    padding: 0px 12px;
    font-size: 20px;
    color: #999;
  }
  .sub-page {
    min-height: auto;
  }
}