@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: normal;
  outline: none;
}

@font-face {
  font-family: sys;
  src: url("../fonts/sySong.woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: estre;

  font-weight: normal;
  font-style: normal;
}

html,
body {
  color: #222;
  font-family: "syh-r", "微软雅黑";
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}

html {
  font-size: 100px;
  font-size: 5.2083333333333vw;
}

body {
  font-size: 0.16rem;
  background-color: #f6f9fc;
}

.m-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.index::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 4px;
  height: 8px;
  background-color: #f5f5f5;
}

.index::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e2e2e2;
}

.index::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #333;
}

/* rem */

/* @media screen and (min-width: 2000px) {
  html {
    font-size: 110px !important;
  }
}

@media screen and (max-width: 1940px) {
  html {
    font-size: 100px !important;
  }
}

@media screen and (max-width: 1800px) {
  html {
    font-size: 95px !important;
  }
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 90px !important;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 90px !important;
  }
} */

@media screen and (max-width: 1024px) {
  html {
    font-size: 85px !important;
  }
}

/* 
@media screen and (max-width: 900px) {
  html {
    font-size: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  html {
    font-size: 80px !important;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 80px !important;
  }
}

@media screen and (max-width: 375px) {
  html {
    font-size: 75px !important;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 70px !important;
  }
}

@media screen and (max-width: 350px) {
  html {
    font-size: 65px !important;
  }
} */

/* rem */

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

img,
input {
  border: 0;
  outline: none;
}

body .clear {
  clear: both;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.clearfix {
  zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.line1 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.wp {
  width: 16rem;
  max-width: 94%;
  margin: 0 auto;
}

.pic {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}

.pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
object-fit:cover;
  transition: all 1s;
}

.pich:hover .pic img {
  transform: scale(1.1);
}

.pic::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: 0.25;
  pointer-events: none;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 53) 50%,
      rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 53) 50%,
      rgba(255, 255, 255, 0) 70%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;
}

.pich:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.pic div.a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  transition: all 0.8s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.pich:hover .pic div.a {
  width: 110%;
  height: 110%;
}

@keyframes icon-yh {
  0% {
    transform: rotateZ(0);
  }

  10% {
    transform: rotateZ(10deg);
  }

  20% {
    transform: rotateZ(0);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  40% {
    transform: rotateZ(0);
  }

  50% {
    transform: rotateZ(10deg);
  }

  60% {
    transform: rotateZ(0);
  }

  70% {
    transform: rotateZ(-10deg);
  }

  80% {
    transform: rotateZ(0);
  }

  90% {
    transform: rotateZ(10deg);
  }

  100% {
    transform: rotateZ(0);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes play {
  0% {
    -webkit-transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(360deg)
  }
}

@keyframes play2 {
  0% {
    -webkit-transform: rotate(0deg)
  }

  100% {
    -webkit-transform: rotate(-360deg)
  }
}

em {
  font-style: normal;
  position: relative;
  background-image: linear-gradient(#fff, #fff);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s;
}

a:hover em {
  color: #fff;
  font-weight: bold;
  background-size: 100% 1px;
}

.wap {
  display: none !important;
}

/*search*/

.search-con {
  display: block;
  margin-left: 0.24rem;
  font-size: 0;
}

.search-con button {
  text-align: center;
  background: none;
  cursor: pointer;
  font-size: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.search-con button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.search-con button img {
  vertical-align: middle;
  width: 0.15rem;
  height: 0.16rem;
}

.search {
  width: 500px;
  height: 50px;
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 99999;
}

input,
button {
  border: none;
  outline: none;
}

.search .text {
  width: 500px;
  padding-left: 15px;
  padding-right: 80px;
  height: 50px;
  font-size: 14px;
  background: none;
  color: #333;
}

.search .button {
  width: 80px;
  height: 50px;
  background: #044dac url(../images/fdj.png) no-repeat center;
  background-size: 15px auto;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  text-align: center;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

/* 定位搜索框 */

.yc-search {
  line-height: 40px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}

.yc-search-bg {
  position: fixed;
  z-index: 99998;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

/*头部*/
.pc {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  opacity: 1;
  transition: all 0.7s ease-out 0s;
}

.pc.show {
  transform: translateY(-100%);
  opacity: 0;
}

.pc.on {
  background: linear-gradient(180deg, rgba(34, 86, 115, 1) 0%, rgba(0, 0, 0, 0) 100%);

}

.head {
  padding: 0.18rem 1.6rem 0.18rem 0.96rem;
  position: relative;
  z-index: 999;
  transition: all 0.5s;
}

.logo a {
  display: block;
  font-size: 0;
}

.logo img {
  display: block;
  width: 3.26rem;
}

.g-navk {
  position: fixed;
  right: 0;
  top: 0.1rem;
  width: 1.1rem;
  height: 0.8rem;
  border-radius: 0.4rem 0px 0 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0;
  z-index: 999;
}

.g-nav {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.g-nav img {
  vertical-align: middle;
  width: 100%;
}

.g-nav img.close-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.head-r {}

.head-r.on {
  flex: none;
}

.head-r .xiaoxun {
  display: block;
  width: 3.6rem;
  display: none;
}

.head-rt {
  display: flex;
  justify-content: flex-end;
}

.head-rtlink {
  font-size: 0.16rem;
  color: #fff;
  line-height: 0.28rem;
  display: flex;
  align-items: center;
}

.head-rtlink a {
  display: inline-block;
  color: #fff;
  margin-left: 0.24rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}


.head-rtlink a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  opacity: 0.8;
  transform: scaleX(0);
  transition: all 0.5s;
}

.head-rtlink a:first-child::before {
  content: none;
}

.head-rtlink a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.12rem;
  height: 0.16rem;
  border-left: 1px solid #fff;
  opacity: 0.2;
}

.head-rtlink a:hover {
  opacity: 1;
}

.head-rtlink a:hover::after {
  transform: none;
  opacity: 1;
}

.head-rtlink .r {
  display: flex;
  align-items: center;
  margin-left: 0.43rem;
}

.head-rtlink .r .a:first-child a::before {
  content: none;
}

.head-rtlink .r .a a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.12rem;
  height: 0.16rem;
  border-left: 1px solid #fff;
  opacity: 0.2;
}

.head-rtlink .r .a.kstd {
  position: relative;
  z-index: 2;
}

.head-rtlink .r .a.kstd>a>img {
  vertical-align: middle;
  width: 0.09rem;
  margin-left: 0.05rem;
}

.head-rtlink .r .a.kstd>ul {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 1rem;
  margin-left: -0.35rem;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  background-color: #fff;
  background: linear-gradient(180deg, #095885 40%, rgba(0, 0, 0, 0) 100%);
  padding: 0.05rem 0.1rem 0.2rem 0.1rem;
  transition: all 0.5s;

}

.head-rtlink .r .a.kstd:hover>ul {
  z-index: 9999;
  opacity: 1;
  transform: none;
  visibility: visible;
}

.head-rtlink .r .a.kstd>ul li {
  text-align: center;
}

.head-rtlink .r .a.kstd>ul li a {
  font-size: 0.14rem;
  line-height: 0.22rem;
  padding: 0.05rem 0;
  color: #fff;
  margin-left: 0;
  transition: all 0.5s;
}

.head-rtlink .r .a.kstd>ul li a::before {
  content: none;
}

.head-rtlink .r .a.kstd>ul li a::after {
  border-bottom-color: #e1ccba;
}

.head-rtlink .r .a.kstd>ul li a:hover {
  color: #e1ccba;
}

.head-ren a {
  display: block;
  font-size: 0.14rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 0.3rem;
  background: no-repeat left center;
  background-size: 0.21rem 0.21rem;
  padding-left: 0.31rem;
  margin-left: 0.2rem;
  transition: all 0.5s;
}

.head-ren a:hover {
  color: #fff;
}

.head-rd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.1rem;
}

/* nav */
.nav {
  line-height: 0.4rem;
}

.nav>ul {
  font-size: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav>ul>li {
  display: inline-block;
  text-align: center;
  position: relative;
  margin-left: 0.33rem;
}

.nav>ul>li:first-child {
  margin-left: 0;
}

.nav>ul>li>a {
  display: block;
  font-size: 0.22rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nav>ul>li>div {
  position: absolute;
  top: 100%;
  line-height: normal;
  min-width: 1.65rem;
  left: 50%;
  margin-left: -0.7rem;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  transition: all 0.5s;
  z-index: -9;
}

.nav>ul>li>div>ul {
  margin-top: 0.1rem;
  border-top: 0.04rem solid #fff;
  background: linear-gradient(180deg, #095885 20%, rgba(0, 0, 0, 0)100%);
  padding: 0.1rem 0 0.4rem 0;
  position: relative;
  z-index: 1;
}

.nav>ul>li>div>ul::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 4px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.nav>ul>li>div>ul>li {}

.nav>ul>li>div>ul>li a {
  display: block;
  font-size: 0.18rem;
  line-height: 0.26rem;
  padding: 0.1rem;
  transition: all 0.5s;
  color: #fff;
  text-shadow: 0.02rem 0 0 rgba(0, 0, 0, 0.57);
}

.nav>ul>li>div>ul>li a:hover {
  color: #e1ccba;
  /* background-image: -ms-linear-gradient(left,
      rgb(3, 84, 214) 0%,
      rgb(83, 138, 227) 98%);
  background-image: -webkit-linear-gradient(0deg,
      rgb(3, 84, 214) 0%,
      rgb(83, 138, 227) 98%); */
}

.nav>ul>li:hover>div {
  z-index: 9999;
  opacity: 1;
  transform: none;
  visibility: visible;
}

/*隐藏导航*/

.top-yc {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  border-top: 2px solid #0674b7;
  z-index: 998;
  display: none;
}

.top-nav {
  position: absolute;
  top: 1.22rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.5rem;
  overflow-y: hidden;
}

.top-nav>ul {
  padding: 0 6%;
  align-items: flex-start;
}

.top-nav>ul>li {
  text-align: center;
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transform: translateX(1rem);
  transition-timing-function: ease;
}

.top-yc.on .top-nav>ul>li {
  opacity: 1;
  transform: none;
}

.top-nav>ul>li>a {
  color: #fff;
  font-size: 0.24rem;
}

.top-nav>ul>li>div {
  padding-top: 0.1rem;
}

.top-nav>ul>li>div>ul>li>a {
  display: block;
  line-height: 0.3rem;
  padding: 0.1rem 0;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.65);
}

.top-nav>ul>li>div>ul>li:hover>a {
  color: #fff;
}

/*底部*/
.foot {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 0.4rem;
  color: #fff;
  position: relative;
}

.foot a {
  color: #fff;
}

.foot a:hover {
  /* opacity: 0.8; */
}

.foot-t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.11rem;
}

.foot-logo {
  width: 1.82rem;
}

.foot-logo a {
  display: block;
}

.foot-logo a img {
  display: block;
  width: 100%;
}

.foot-dz {
  /* margin-left: 1rem; */
}

.foot-dz p {
  font-size: 0.16rem;
  line-height: 0.28rem;
}

.foot-dz p:nth-child(2) {
  margin-top: 0.35rem;
}

.foot-kslj {
  padding: 0 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.18rem;
}

.foot-kslj p a {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.foot-kslj p a::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 0.18rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-kslj p:first-child a {
  margin-left: 0.7rem;
}

.foot-kslj p:first-child a::before {
  left: -0.35rem;
}

.foot-kslj p:nth-child(2) a {
  margin-left: 0.3rem;
}

.foot-kslj p:nth-child(2) {
  margin-top: 0.35rem;
}

.foot-kslj p:nth-child(2) a::before {
  left: -0.15rem;
}

.foot-kslj p a:first-child {
  margin-left: 0;
}

.foot-kslj p a:first-child:before {
  content: none;
}

.foot-kslj p a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.foot-wx {
  text-align: center;
}

.foot-wx img {
  display: inline-block;
  width: 1.3rem;
}

.foot-wx p {
  font-size: 0.14rem;
  margin-top: 0.15rem;
}

.foot-bq {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.18rem 0.1rem;
}

.foot-bq .wp {
  display: flex;
  align-self: center;
  justify-content: space-between;
}

.foot-bq p {
  font-size: 0.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 0.26rem;
}

.foot-bq p a {
  color: rgba(255, 255, 255, 0.6);
}

.foot-bq p.l {
  padding-top: 0.09rem;
}

.foot-bq p.m a {
  display: inline-block;
  margin-left: 0.05rem;
}

.foot-bq p.m a img {
  vertical-align: middle;
  width: 0.36rem;
}

/* 返回顶部 */
.goTop {}

.goTop a {
  display: block;
  line-height: 0.44rem;
  background-image: url(../images/gotop.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.16rem auto;
  padding-right: 0.26rem;
  font-size: 0.16rem;
  color: #fff;
  opacity: 0.6;
  transition: all 0.5s;
}

.goTop a:hover {
  opacity: 1;
}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1560px) {}

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1300px) {}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 1024px) {
  .wp {
    width: auto;
    max-width: inherit;
    padding-left: 0.2rem !important;
    padding-right: 0.2rem !important;
  }

  body {
    /* padding-top: 60px !important; */
  }

  .pc {
    display: none !important;
  }

  .banner .slick-slide a:before {
    display: none;
  }

  .m-top {
    max-width: 19.2rem;
    margin: 0 auto;
    position: fixed;
    right: 0;
    top: 0;
    width: 70px;
    height: 60px;
    background: #0a699f;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
    z-index: 9999;
  }

  .wap {
    display: block !important;
  }

  .wap-menu {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 25px;
    height: 25px;
    z-index: 99999;
    font-size: 0;
  }

  .wap-menu img {
    height: 25px;
  }

  .close-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
  }

  .m-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(34, 86, 115, 0.9) 20%, rgba(0, 0, 0, 0) 100%);
    z-index: 999;
    padding: 10px 20px;
  }

  .m-logo {
    font-size: 0;
    position: relative;
    z-index: 9991;
  }

  .m-logo a {
    font-size: 0;
    line-height: 40px;
    display: block;
  }

  .m-logo img {
    max-height: 40px;
    max-width: 100%;
    vertical-align: middle;
  }

  .m-tlink {
    font-size: 12px;
    padding: 10px 15px 0 15px;
    color: rgba(255, 255, 255, 0.5);
  }

  .m-tlink a {
    font-size: 12px;
    margin: 0 8px;
    color: #fff;
    display: inline-block;
    line-height: 24px;
    /*background: #fff;*/
    line-height: 24px;
    border-radius: 5px;
  }

  .m-tlink a img {
    vertical-align: -2px;
    padding-right: 5px;
    height: 14px;
  }

  .m-search {
    margin: 0 15px;
    padding-right: 50px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    line-height: 35px;
    /* background: #fff; */
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #fff;
  }

  .m-search input[type="text"] {
    display: block;
    width: 100%;
    line-height: 25px;
    background: none;
    color: #fff;
    font-size: 12px;
  }

  .m-search input[type="text"]::placeholder {
    color: #fff;
  }

  .m-search input[type="image"] {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 15px;
  }

  .m-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 999;
    background: #095885;
    padding-top: 80px;
    overflow-y: scroll;
    width: 100%;
  }

  .m-nav .top-r {
    color: #fff;
    padding-left: 15px;
  }

  .m-nav ul {
    padding: 0 15px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
  }

  .m-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .m-nav ul li>span.on {
    transform: rotateZ(90deg);
  }

  .m-nav ul li ul {
    display: none;
  }

  .m-nav ul li ul li {
    border: none;
  }

  .m-nav>ul>li a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 0;
    position: relative;
    color: #fff;
  }

  .m-nav>ul>li ul li a {
    padding: 10px 0;
  }

  .m-nav>ul>li>span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/m-nav_down.png) no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    right: 0;
    top: 15px;
    cursor: pointer;
    display: block;
    color: #fff;
    transition: all 0.3s;
  }

  .m-kstd {
    margin-top: 50px;
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 40px;
    position: relative;
  }

  .m-kstd>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 0;
    position: relative;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .m-kstd ul {
    display: none;
  }

  .m-kstd ul li a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    position: relative;
    color: #fff;
    opacity: 0.8;
  }

  .foot-t {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0.3rem;
  }

  .foot-logo {
    margin: 0 auto;
  }

  .foot-dz {
    margin-top: 0.1rem;
  }

  .foot-dz {
    width: 100%;
    text-align: center;
  }

  .foot-dz p {
    margin-top: 0.2rem !important;
  }

  .foot-kslj {
    border-left: 0;
    border-right: 0;
    padding: 0;
    margin-top: 0.3rem;
  }

  .foot-kslj p:nth-child(2) {
    margin-top: 0.2rem;
  }

  .foot-wx {
    margin-top: 0.3rem;
  }

  .foot-wx img {
    width: 0.8rem;
  }

  .foot-wx p {
    font-size: 12px;
    margin-top: 0.1rem;
  }

  .foot-bq .wp {
    display: block;
  }

  .foot-bq p {
    text-align: center;
  }

  .foot-bq p.m a img {
    width: 0.26rem;
  }

  .goTop {
    width: 78px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 640px) {
  .foot-kslj {
    font-size: 0.16rem;
    line-height: 0.28rem;
  }

  .foot-kslj p {
    text-align: center;
  }

  .foot-kslj p:first-child a {
    margin-left: 0.2rem;
  }

  .foot-kslj p:first-child a::before {
    left: -0.1rem;
  }
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}