@charset "UTF-8";
/* icon */
@font-face {
  font-family: 'iconfont';
  src: url("iconfont.ttf?t=1621331764272") format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 容器 */
.container {
  width: 14rem;
  margin: 0 auto;
}

.show {
  display: block !important;
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .h-logo {
  width: auto;
  height: .63rem;
  margin: .18rem 0;
  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;
}

.header .h-logo img {
  width: auto;
  height: 100%;
}

.header .h-nav {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .h-nav .nav-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 0 .4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.header .h-nav a {
  line-height: 2;
  color: #333;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.header .h-nav a:hover {
  color: #18973b;
}

.header .h-nav .cur {
  color: #18973b;
}

.header .h-menu {
  display: none;
}

.header .h-menu span {
  font-size: 30px;
}

.header .h-mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}

@media (max-width: 1250px) {
  .header .h-nav {
    display: none;
    width: 4.2rem;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    padding-top: 30px;
    z-index: 10;
  }
  .header .h-nav .nav-item {
    height: 40px;
    line-height: 40px;
  }
  .header .h-nav a {
    width: 100%;
    display: block;
  }
  .header .h-menu {
    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;
  }
  .header .h-mask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 700px) {
  .header .container {
    width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 450px) {
  .header .h-nav {
    width: 3.2rem;
  }
}

/* footer */
.footer {
  width: 100%;
  padding-top: .5rem;
  background-color: #18973b;
}

.footer .f-top {
  width: 100%;
}

.footer .f-top .container {
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .f-top .nav-title {
  color: #fff;
  line-height: 1.2;
  margin-bottom: .15rem;
}

.footer .f-top .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .f-top .nav-item {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.2;
  margin-right: .2rem;
  cursor: pointer;
}

.f-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .f-top .link-item {
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  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: .03rem;
  margin: 0 .1rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.footer .f-top .link-item:hover {
  border-radius: 50%;
}

.footer .f-top .link-item span {
  color: rgba(255, 255, 255, 0.4);
  font-size: calc(12px + 23 * 100vw / 1920);
}

.footer .f-center {
  width: 100%;
  padding: .4rem 0 .8rem;
}

.footer .f-center .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .f-center .block3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer .f-center .name {
  color: #fff;
  line-height: 1.2;
  margin-bottom: .2rem;
}

.footer .f-center .pos {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  display: block;
}

.footer .f-center .phone {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer .f-center .email {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer .f-center .icon {
  width: 1.24rem;
  margin: 0 auto;
}

.footer .f-center .icon img {
  width: 100%;
}

.footer .f-center .text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: .15rem;
  text-align: center;
}

.footer .f-bottom {
  width: 100%;
  background-color: #148433;
}

.footer .f-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: .35rem 0;
}

.footer .f-bottom .copyright, .footer .f-bottom .number {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .footer .f-top .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .f-center .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .f-center .block1 {
    width: 100%;
  }
  .footer .f-center .block2 {
    width: 50%;
    margin-top: .3rem;
  }
  .footer .f-bottom .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .footer .f-top .container {
    width: 100%;
    padding: .3rem 10px;
  }
  .f-link {
    margin-top: .2rem;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .f-link .link-item {
    margin: 0;
    margin-right: 10px;
  }
  .footer .f-center {
    padding: 10px 0;
  }
  .footer .f-center .container {
    width: 100%;
    padding: 0 10px;
  }
  .footer .f-center .block2 {
    width: 100%;
  }
  .footer .f-center .block3 {
    width: 100%;
    margin-top: .5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .f-bottom .container {
    width: 100%;
    padding: .35rem 10px;
  }
  .footer .f-bottom .copyright {
    width: 100%;
  }
  .footer .f-bottom .number {
    width: 100%;
    margin-top: .2rem;
  }
}

@media (max-width: 400px) {
  .footer .f-top .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: .1rem;
  }
  .footer .f-top .nav-list a {
    padding: 5px 0;
  }
}

/* 内页banner */
.banner {
  width: 100%;
  max-height: 5rem;
  overflow: hidden;
  position: relative;
}

.banner .banner-cont {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: 5;
}

.banner .banner-cont .text {
  color: #fff;
  font-weight: 700;
  margin-bottom: .3rem;
}

.banner .banner-cont .line {
  width: 100%;
  height: .03rem;
  font-size: 0;
}

.banner .banner-cont .line::before {
  content: "";
  width: 21%;
  height: 100%;
  background-color: #fff;
  vertical-align: middle;
  display: inline-block;
}

.banner .banner-cont .line::after {
  content: "";
  width: 79%;
  height: .01rem;
  background-color: #fff;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 1920px) {
  .banner .banner-cont .line {
    height: 3px;
  }
  .banner .banner-cont .line::after {
    height: 1px;
  }
}

.banner .banner-bg {
  width: 100%;
}

.banner .banner-bg img {
  width: 100%;
  height: 100%;
}

/* 面包屑 */
.crumbs {
  border-bottom: .01px solid #eaeaea;
  background-color: #fff;
}

@media (max-width: 1920px) {
  .crumbs {
    border-bottom-width: 1px;
  }
}

.crumbs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.crumbs .crumbs_l {
  padding: .31rem 0;
}

.crumbs .crumbs_l .icon {
  display: inline-block;
  color: #18973b;
  font-size: calc(18 * 100vw / 1920);
  margin-right: .06rem;
}

@media (max-width: 1920px) {
  .crumbs .crumbs_l .icon {
    font-size: 18px;
  }
}

.crumbs .crumbs_l a {
  cursor: pointer;
  line-height: 1.25;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin: 0 .14rem;
}

.crumbs .crumbs_l a:hover {
  color: #18973b;
}

.crumbs .crumbs_l span {
  line-height: 1.25;
}

.crumbs .crumbs_l .pos {
  color: #18973b;
}

.crumbs .crumbs_l .r_menu {
  display: none;
}

.crumbs .crumbs_l .r_title {
  display: none;
}

.crumbs .crumbs_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.crumbs .crumbs_r .cr_item {
  height: 100%;
  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;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: relative;
}

.crumbs .crumbs_r .cr_item .cr_item_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.crumbs .crumbs_r .cr_item .cr_item_a a {
  padding: 0 .65rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}

.crumbs .crumbs_r .cr_item .cr_item_a span {
  display: none;
}

.crumbs .crumbs_r .cr_item:hover {
  background-color: #18973b;
}

.crumbs .crumbs_r .cr_item:hover .cr_item_a {
  color: #fff;
}

.crumbs .crumbs_r .pos {
  background-color: #18973b;
}

.crumbs .crumbs_r .pos .cr_item_a {
  color: #fff;
}

.crumbs .crumbs_r .cr-tab {
  width: 100%;
  display: none;
  background-color: #fff;
}

.crumbs .crumbs_r .crt-item {
  display: block;
  width: 100%;
  padding: .2rem .75rem;
}

.crumbs .crumbs_r .isCrt {
  color: #18973b;
}

@media (max-width: 1200px) {
  .crumbs .container {
    width: 100%;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .crumbs .crumbs_r .cr_item .cr_item_a {
    width: 100%;
    padding: .31rem .55rem;
  }
  .crumbs .crumbs_r .cr_item .cr_item_a a {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .crumbs .crumbs_l .r_menu {
    display: block;
    float: right;
    height: 100%;
  }
  .crumbs .crumbs_l .r_menu span {
    vertical-align: middle;
    font-size: 18px;
  }
  .crumbs .crumbs_r {
    display: none;
    width: 100%;
  }
  .crumbs .crumbs_r .cr_item {
    display: block;
    text-align: left;
  }
  .crumbs .crumbs_r .cr_item .cr_item_a span {
    float: right;
    display: block;
  }
}

/* 视频放大 */
.video-lg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 11;
}

.video-lg .video-box {
  width: 80%;
  max-height: 8rem;
}

.video-lg .video-box video{
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@media (max-width: 700px) {
  .video-lg {
    padding: 0 10px;
  }
  .video-lg .video-box {
    width: 100%;
  }
}

.video-lg .video-close {
  width: .5rem;
  height: .5rem;
  line-height: .5rem;
  text-align: center;
  font-size: calc(24px + 6 * 100vw / 1920);
  color: #fff;
  position: absolute;
  top: 2%;
  right: 2%;
  cursor: pointer;
}

/* 页面按钮 */
.page-btn {
  margin-top: .5rem;
  text-align: center;
}

.page-btn a {
  display: inline-block;
  margin: 0 .17rem;
  cursor: pointer;
}

.page-btn .prev, .page-btn .next {
  padding: .23rem;
  background-color: #18973b;
  color: #fff;
  border-radius: 50%;
}

.page-btn .prev span, .page-btn .next span {
  font-size: calc(16 * 100vw / 1920);
}

@media (max-width: 1920px) {
  .page-btn .prev span, .page-btn .next span {
    font-size: 16px;
  }
}
/*# sourceMappingURL=common.css.map */