@import url(./search.css);
@import url(./mobile.css);
.container {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
}

.header {
  background: url(../img/header_top_bg.png) repeat-x;
  height: 3rem;
  background-size: 100% 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  pointer-events: none;
}
.header .header-top {
  pointer-events: all;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.26rem;
  width: 100%;
}
.header .header-top .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header .header-top .container .top-wrap {
  margin-top: 0.34rem;
}
.header .header-top .container .top-wrap .logo a img {
  height: 0.8rem;
}
.header .header-top .container .top-right-wrap {
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-top .container .top-right-wrap ul li {
  margin-left: 0.2rem;
}
.header .header-top .container .top-right-wrap ul li a {
  color: #fff;
  font-size: 0.16rem;
  padding: 0.07rem 0.18rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.15rem;
  -webkit-border-radius: 0.15rem;
  -moz-border-radius: 0.15rem;
  -ms-border-radius: 0.15rem;
  -o-border-radius: 0.15rem;
}
.header .header-top .container .top-right-wrap ul li a:hover {
  color: #025394;
  background: #fff;
}
.header .header-top .container .top-right-wrap .search-wrap1 {
  margin-left: 0.2rem;
}

.nav {
  width: 100%;
  padding: 0 1.4rem;
  pointer-events: all;
}

.nav ul {
  margin-top: 0.21rem;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav li {
  padding: 0 0.3rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav li:hover > a {
  position: relative;
}
.nav li:hover > a::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0.04rem;
  content: "";
  position: absolute;
  background: #e8c689;
  top: -0.23rem;
}
.nav li.active > a {
  position: relative;
}
.nav li.active > a::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 0.04rem;
  content: "";
  position: absolute;
  background: #e8c689;
  top: -0.23rem;
}
.nav li:last-child {
  padding-right: 0;
}


.nav li:first-child {
  padding-left: 0;
}

.nav li a {
  font-size: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.nav li:last-child .sub-nav{
  left:calc(50% + .15rem)
}

.nav li .sub-nav {
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 50%;
  z-index: 99;
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  min-width: 1.2rem;
}

.nav ul li:hover > a {
  padding-bottom: 0.14rem;
}

.nav ul li:hover .sub-nav {
  opacity: 1;
  visibility: inherit;
  -webkit-transform: scaleY(1) translateX(-50%);
          transform: scaleY(1) translateX(-50%);
}

.nav ul li .sub-nav .sub-nav-h {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 0 0 5px 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.nav ul li .sub-nav .sub-nav-h a {
  font-size: 16px;
}
.nav ul li .sub-nav .sub-nav-h a:hover {
  background: #025394;
  color: white;
}

.nav ul li .sub-nav .sub-nav-double-h {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  left: -50%;
  width: 200%;
}
.nav ul li .sub-nav .sub-nav-double-h a {
  float: left;
  width: 50% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav ul li .sub-nav .sub-nav-h a {
  display: block;
  color: #333;
  padding: 0.1rem;
  white-space: nowrap;
  text-align: center;
}

.img-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.img-hover img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.img-hover:hover img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.right-link-list {
  height: 100%;
}
.right-link-list .right-link-swiper-container {
  height: 100%;
}
.right-link-list .right-link-swiper-container .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.right-link-list .mobile-right-link-swiper-container {
  display: none;
  overflow: hidden;
}
.right-link-list .swiper-wrapper .swiper-slide {
  width: 2.5rem;
  height: 1.9rem;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(1) {
  background: #025394;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(2) {
  background: #0563cd;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(3) {
  background: #0c97d1;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(4) {
  background: #00a671;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(5) {
  background: #d4bb8c;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(6) {
  background: #f6a05b;
}
.right-link-list .swiper-wrapper .swiper-slide:nth-child(7) {
  background: #f05858;
}
.right-link-list .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.right-link-list .swiper-wrapper .swiper-slide a:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.right-link-list .swiper-wrapper .swiper-slide a .icon-wrap {
  background: white;
  width: 0.85rem;
  height: 0.85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.right-link-list .swiper-wrapper .swiper-slide a .icon-wrap img {
  max-height: 0.5rem;
}
.right-link-list .swiper-wrapper .swiper-slide a .title {
  margin-top: 0.2rem;
  font-weight: bold;
  color: white;
    padding: 0 .26rem;
    text-align: center;
}

.news-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.22rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid rgba(2, 83, 148, 0.2);
}
.news-list ul li a .title {
  height: 0.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 0.22rem;
  position: relative;
}
.news-list ul li a .title::before {
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  background: #025394;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.news-list ul li a .date {
  margin-left: 0.25rem;
  font-size: 0.16rem;
  color: #025394;
  line-height: 0.28rem;
}

footer {
  background: #025394;
  color: white;
}
footer a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
footer a:hover {
  color: white;
  border-bottom: 1px solid white;
}
footer .bottom-links {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
footer .bottom-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .bottom-links ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0.4rem;
  position: relative;
}
footer .bottom-links ul li a::after {
  content: "|";
  position: absolute;
  right: -0.4rem;
}
footer .bottom-links ul li:last-child a::after {
  display: none;
}
footer .bq {
  padding: 0.52rem 0;
  color: white;
  line-height: 0.42rem;
  text-align: center;
}

@media screen and (max-width: 1800px) {
  .container {
    width: 98%;
  }
}
@media screen and (max-width: 1024px) {
  #main .main-section .right-wrap {
    width: 100% !important;
  }
  .right-link-list .right-link-swiper-container {
    display: none;
  }
  .right-link-list .mobile-right-link-swiper-container {
    display: block;
    margin-top: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  footer .bottom-links ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}/*# sourceMappingURL=common.css.map */