/* 1.header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 100;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
  /* box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08); */
  /* border-bottom: 2px solid rgba(201, 207, 220, 1); */
}

header .top {
  width: 100%;
  height: 80px;
}

header .inside {
  height: 100%;
  overflow: hidden;
}

.header-shadow {
  /* background-color: #ffffff; */
  /* 阴影 */
  box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
}

header .logo {
  float: left;
  display: block;
  width: auto;
  height: 38px;
  line-height: 80px;
}

header .logo img {
  width: auto;
  height: 100%;
}

header .brand {
  float: left;
  height: 37px;
  margin-left: 15px;
  line-height: 80px;
}

header .brand img {
  width: auto;
  height: 100%;
}

.gation-box {
  width: 100%;
  height: 60px;
  border-top: 2px solid #f8f8f8;
}

header .gation {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 15px;
}

header .gation li {
  width: 140px;
  height: 50px;
  margin-top: 5px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li::before {
  content: "";
  display: none;
  width: 100%;
  height: 3px;
  background-color: #3e6926;
  position: absolute;
  bottom: 23px;
  left: 0;
  opacity: 0;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li.active::before,
header .gation li:hover::before {
  opacity: 1;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li:not(:last-child) {
  margin-right: 0;
}

header .gation li:not(:first-child) {
  margin-left: -5px;
}

header .gation li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  /* background-color: #3570ff; */
  color: #000000;
  text-align: center;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gation li.active a,
header .gation li:hover a {
  color: #ffffff;
  background-color: #3570ff;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

header .gatopen {
  display: none;
  float: right;
  width: 27px;
  height: 27px;
  cursor: pointer;
  line-height: 47px;
  cursor: pointer;
}

header .gatopen img {
  width: 100%;
  height: 100%;
}

header .tel {
  float: right;
  position: relative;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
}

header .tel img {
  width: 37px;
  height: 37px;
  margin-right: 10px;
}

header .tel span i,
header .tel span s {
  display: block;
}

header .tel span i {
  font-size: 15px;
}

header .tel span s {
  font-family: "Bahnschrift";
  font-size: 19px;
  margin-top: -3px;
}

@media (max-width: 1400px) {
  header {
    height: 90px;
  }
  header .top {
    height: 50px;
  }
  header .logo {
    height: 28px;
    line-height: 50px;
  }
  header .brand {
    height: 30px;
    line-height: 50px;
  }
  header .gation-box {
    height: 40px;
  }
  header .gation li {
    width: 90px;
    height: 30px;
  }
  header .gation li a {
    line-height: 30px;
  }
  header .tel img {
    width: 28px;
    height: 28px;
  }
  header .tel span s {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  header {
    height: auto;
    background-color: #ffffff;
    /* 阴影 */
    box-shadow: 3px 5px 13px 0px rgba(0, 0, 0, 0.08);
  }
  header .top {
    float: none;
    width: 100%;
    height: 47px;
    box-sizing: border-box;
  }
  header .gation-box {
    height: auto;
    border-top: 0;
  }
  header .brand {
    height: 24px;
    line-height: 47px;
    margin-left: 10px;
  }
  header .gatopen {
    display: block;
  }
  header .logo {
    height: 20px;
    line-height: 47px;
  }
  header .gation {
    display: none;
    float: none;
    width: 105%;
    margin-left: -3%;
    height: auto;
    box-sizing: border-box;
    padding: 13px 3% 20px;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 1);
    text-align: center;
  }
  header .gation li {
    display: block;
    width: 100%;
    height: 34px;
  }
  header .gation li:not(:last-child) {
    margin-right: 0;
  }
  header .gation li:not(:first-child) {
    margin-left: 0;
  }
  header .gation li a {
    width: 100%;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    color: #000000;
  }
  header .gation li:hover a,
  header .gation li.active a {
    color: #3570ff;
    border-bottom: 0;
    background-color: transparent;
  }
  header .gation li::before {
    display: none;
  }
  header .brand {
    display: none;
  }
  header .tel {
    margin-right: 20px;
  }
  header .tel img {
    width: 20px;
    height: 20px;
  }
  header .tel span i {
    font-size: 13px;
    display: none;
  }
  header .tel span s {
    font-size: 17px;
    vertical-align: middle;
    margin-top: 3px;
  }
}

/* 2.index-swiper */
.index-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 140px;
  position: relative;
}

.index-swiper .swiper-container,
.index-swiper .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.index-swiper a {
  display: block;
  width: 100%;
  height: 100%;
}

.index-swiper a img {
  width: 100%;
  height: 100%;
}

.index-swiper .swiper-button-next,
.index-swiper .swiper-button-prev {
  width: 30px;
  height: 80px;
}
.index-swiper .swiper-button-prev,
.index-swiper .swiper-container-rtl .swiper-button-next {
  background-image: url(./../img/index-lf.png);
  background-size: 100% 100%;
  left: 0;
  cursor: pointer;
}
.index-swiper .swiper-button-next,
.index-swiper .swiper-container-rtl .swiper-button-prev {
  background-image: url(./../img/index-rg.png);
  background-size: 100% 100%;
  right: 0;
  cursor: pointer;
}
.index-swiper .swiper-pagination {
  width: auto;
  height: auto;
  padding: 8px 20px;
  line-height: 0;
  text-align: center;
  bottom: 30px;
  background-color: rgba(0, 0, 0, 0.15);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 23px;
}
.index-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 0.5;
  background-color: #ffffff;
}
.index-swiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  opacity: 1;
}
.index-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

@media (max-width: 1400px) {
  .index-swiper {
    margin-top: 90px;
  }
}

@media (max-width: 1000px) {
  .index-swiper {
    margin-top: 47px;
  }
  .index-swiper .swiper-button-next,
  .index-swiper .swiper-button-prev {
    width: 20px;
    height: 50px;
  }
  .index-swiper .swiper-pagination {
    bottom: 10px;
    padding: 5px 10px;
  }
  .index-swiper .swiper-pagination-bullet {
    width: 4px;
    height: 4px;
  }
  .index-swiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}

@media (max-width: 480px) {
  .index-swiper {
    height: 205px;
  }
}

/* 3.banner */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-top: 140px;
}

.banner .img {
  width: 100%;
  height: auto;
}

.banner .img img {
  height: 100%;
}

.banner .sub {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0.1); */
  color: #ffffff;
  /* font-size: 48px; */
  /* padding-top: 90px; */
}

.banner-about .sub {
  background-color: rgba(0, 0, 0, 0.1);
}

.banner .sub .inside {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner .sub h2 {
  display: block;
  font-size: 50px;
}

.banner .sub span {
  display: block;
  font-size: 36px;
  margin-top: 7px;
}

@media (max-width: 1700px) {
  .banner .sub h2 {
    font-size: 40px;
  }
  .banner .sub span {
    font-size: 30px;
  }
}

@media (max-width: 1400px) {
  .banner {
    margin-top: 90px;
  }
  .banner .sub h2 {
    font-size: 30px;
  }
  .banner .sub span {
    font-size: 24px;
  }
}

@media (max-width: 1000px) {
  .banner {
    margin-top: 47px;
  }
  .banner .sub h2 {
    font-size: 24px;
  }
  .banner .sub span {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .banner .img {
    height: 180px;
  }
  .banner .sub h2 {
    font-size: 20px;
  }
  .banner .sub span {
    font-size: 15px;
  }
}

/* 4.crumbs */
.crumbs {
  line-height: 40px;
  font-size: 18px;
  margin: 50px 0 80px;
}

.crumbs img {
  width: 20px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.crumbs a,
.crumbs i {
  color: #626262;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.crumbs i {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.crumbs span {
  color: #626262;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .crumbs {
    font-size: 16px;
    line-height: 30px;
    margin: 30px 0 60px;
  }
  .crumbs img {
    margin-right: 7px;
    margin-bottom: 3px;
  }
  .crumbs i {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2px;
  }
}

@media (max-width: 1000px) {
  .crumbs {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 23px;
  }
  .crumbs img {
    width: 15px;
    margin-right: 3px;
  }
  .crumbs i {
    margin-left: 3px;
    margin-right: 3px;
  }
}

/* 5.footer */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #404040;
  padding: 60px 0 30px;
  color: #8d8d8d;
  font-size: 15px;
}

footer a {
  color: #8d8d8d;
}

footer a:hover,
footer a:focus {
  color: #8d8d8d;
}

footer .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 2px solid #707070;
  margin-bottom: 30px;
}

footer .copy {
  text-align: center;
  margin-top: 30px;
}

footer .copy span {
  display: block;
  line-height: 27px;
  font-size: 14px;
}

footer .copy a:not(:last-child) {
  margin-right: 10px;
}

footer .copy a:hover {
  text-decoration: underline;
}

footer .bom {
  display: flex;
}

footer .logo {
  display: block;
  width: 200px;
  height: auto;
}

footer .info {
  margin-left: 40px;
  font-size: 15px;
}

footer .info li img {
  width: 14px;
  height: auto;
  margin-right: 7px;
}

footer .info li:nth-child(3) img {
  width: 12px;
}

footer .info li:nth-child(1),
footer .info li:nth-child(2) {
  display: inline-block;
}

footer .info li:nth-child(2) {
  margin-left: 30px;
}

footer .info li:nth-child(3) {
  margin-top: 10px;
}

footer .code {
  width: 400px;
  text-align: right;
}

footer .code li {
  display: inline-block;
  text-align: center;
  font-size: 15px;
}

footer .code li:not(:last-child) {
  margin-right: 20px;
}

footer .code li img {
  width: 110px;
  height: 110px;
  margin-bottom: 10px;
}


footer .code #smjjfa canvas{
  box-sizing: border-box;
  border: 5px solid #ffffff;
}

footer .link {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 420px);
}

footer .link li {
  width: 18%;
}

footer .link li a,
footer .link li i {
  display: block;
  line-height: 35px;
  font-size: 15px;
}

footer .link li a:first-child {
  display: block;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 17px;
}

footer .link li a:hover {
  transform: scale(1.04);
}

@media (max-width: 1400px) {
  footer .top {
    padding-bottom: 30px;
  }
  footer .logo {
    width: 180px;
  }
  footer .link {
    width: calc(100% - 340px);
  }
  footer .code {
    width: 320px;
  }
  footer .code li img {
    width: 80px;
    height: 80px;
    margin-bottom: 7px;
  }
  footer .code li {
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  footer {
    padding: 50px 0 15px;
  }
  footer .top,
  footer .bom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .top {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  footer .link li {
    display: none;
  }
  footer .logo {
    width: 120px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  footer .code {
    width: 100%;
    text-align: center;
  }
  footer .code li {
    display: inline-block;
    text-align: center;
    font-size: 13px;
  }
  footer .code li:first-child {
    margin-right: 20px;
  }
  footer .code li img {
    width: 70px;
    height: 70px;
  }
  footer .link {
    margin: 0;
  }
  footer .link li:not(:last-child) {
    margin-right: 0;
  }
  footer .info {
    margin-left: 0;
    font-size: 13px;
  }
  footer .info li {
    line-height: 27px;
  }
  footer .info li:nth-child(1),
  footer .info li:nth-child(2) {
    display: block;
  }
  footer .info li:nth-child(2) {
    margin-left: 0;
    margin-top: 7px;
  }
  footer .info li:nth-child(3) {
    margin-top: 7px;
  }
  footer .info li img {
    width: 13px;
    margin-right: 5px;
  }
  footer .info li:nth-child(3) img {
    width: 10px;
  }
  footer .copy {
    margin-top: 20px;
  }
  footer .copy span {
    line-height: 25px;
    font-size: 12px;
  }
}

/* 6.aside */
aside {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 300;
  display: none;
  background-color: #3570ff;
  /* 阴影 */
  box-shadow: 0 2px 10px rgba(221, 227, 238, 0.02);
}

aside ul li {
  width: 70px;
  height: 70px;
  border-bottom: 1px solid #ffffff;
  position: relative;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

aside ul li:last-child {
  border-bottom: 0;
}

aside ul li a {
  width: 100%;
  height: 100%;
  color: #083e8f;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

aside ul li:hover a {
  color: #ffffff;
  background-color: #efa53d;
  /* 过渡 */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

aside ul li a img {
  width: 32px;
  height: auto;
}

aside ul li .cons {
  display: none;
  position: absolute;
  right: 70px;
  color: #ffffff;
  text-align: center;
  background-color: #3570ff;
  font-size: 15px;
}

aside ul li:hover .cons {
  display: block;
}

aside ul li .as-tel-cons {
  width: 130px;
  height: auto;
  padding: 10px 0;
  top: 50%;
  transform: translateY(-50%);
}

aside ul li .as-code-cons {
  width: 130px;
  height: auto;
  padding: 10px;
  bottom: 0;
}

aside ul li .as-code-cons img {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

aside ul li #qrcode canvas{
  box-sizing: border-box;
  border: 5px solid #ffffff;
}

aside ul li .cell {
  width: 100%;
  height: 100%;
  position: relative;
}

aside ul li .cell::after {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background: url(./../img/as-trig.png) no-repeat center/cover;
  position: absolute;
}

aside ul li .as-code-cons .cell::after {
  right: -25px;
  bottom: 10px;
}

aside ul li .as-tel-cons .cell::after {
  right: -15px;
  bottom: 50%;
  transform: translateY(50%);
}

@media (max-width: 1400px) {
  aside ul li {
    width: 50px;
    height: 50px;
  }
  aside ul li a img {
    width: 23px;
  }
  aside ul li .cons {
    right: 65px;
    font-size: 13px;
  }
  aside ul li .as-tel-cons {
    padding: 7px 0;
  }
  aside ul li .as-code-cons {
    width: 90px;
  }
  aside ul li .cell::after {
    width: 18px;
    height: 18px;
  }
  aside ul li .as-code-cons .cell::after {
    right: -23px;
  }
  aside ul li .as-tel-cons .cell::after {
    right: -13px;
  }
}

@media (max-width: 1000px) {
  aside ul li {
    width: 34px;
    height: 34px;
  }
  aside ul li a img {
    width: 17px;
  }
  aside ul li .cons {
    right: 35px;
    font-size: 12px;
  }
  aside ul li .as-tel-cons {
    width: 110px;
    padding: 5px 0;
  }
  aside ul li .as-code-cons {
    width: 80px;
  }
  aside ul li .cell::after {
    width: 15px;
    height: 15px;
  }
  aside ul li .as-code-cons .cell::after {
    right: -20px;
  }
  aside ul li .as-tel-cons .cell::after {
    right: -10px;
    bottom: 7px;
  }
}

/* 7.title */
.title {
  text-align: center;
  text-transform: uppercase;
}

.title h3 {
  font-size: 43px;
  font-weight: bold;
}

.title em {
  display: block;
  font-size: 24px;
  color: #999999;
  margin-top: 7px;
  font-weight: bold;
}

.title-w h3,
.title-w em {
  color: #ffffff;
}

.title-cular {
  text-align: center;
}

.title-cular h3 {
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
}

.title-cular h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #3570ff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1400px) {
  .title h3 {
    font-size: 34px;
  }
  .title em {
    font-size: 18px;
    margin-top: 5px;
  }
}

@media (max-width: 1000px) {
  .title h3 {
    font-size: 26px;
  }
  .title em {
    font-size: 14px;
    margin-top: 3px;
  }
  .title-cular h3 {
    font-size: 26px;
    padding-bottom: 10px;
  }
  .title-cular h3::before {
    width: 30px;
    height: 4px;
  }
}

/* 8.pager */
.pager {
  width: 100%;
  height: auto;
  text-align: center;
  color: #606266;
  margin-top: 70px;
}

.pager li {
  display: inline-block;
  padding: 9px 15px;
  color: #606266;
  background-color: #e5edee;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 3px;
}

.pager li:not(:last-child) {
  margin-right: 10px;
}

.pager li:hover,
.pager li.active {
  background-color: #3570ff;
  color: #ffffff;
  /* 过渡 */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1000px) {
  .pager {
    margin-top: 50px;
  }
  .pager li {
    padding: 5px 9px;
  }
  .pager li:not(:last-child) {
    margin-right: 7px;
  }
}
#fqrcode canvas{
  width: 110px;
  height: 110px;
  margin-bottom: 4px;
}
@media (max-width: 1400px) {
  #fqrcode canvas{
    width: 80px;
    height: 80px;
    margin-bottom: 1px;
  }
}
@media (max-width: 1000px) {
  #fqrcode canvas{
    width: 70px;
    height: 70px;
  }
}