html {
  height: 100%;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
}

body {
  min-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;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.headerBox {
  height: 140px;
  border-bottom: 1px solid #eee;
}
.headerBox .navBox {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1600px;
  margin: 0 auto;
}
.headerBox .navBox .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.headerBox .navBox .listBox .childMenu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  background-color: #fff;
  display: none;
  -webkit-box-shadow: 0 1px 3px #ccc;
          box-shadow: 0 1px 3px #ccc;
}
.headerBox .navBox .listBox .childMenu .elem {
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  display: block;
  color: #333;
}
.headerBox .navBox .listBox .childMenu .elem:hover {
  color: #047E41;
  background-color: #eee;
}
.headerBox .navBox .listBox .item {
  line-height: 100px;
  width: 120px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.headerBox .navBox .listBox .item > span > a:hover {
  color: #047E41;
}
.headerBox .navBox .listBox .item.active {
  color: #047E41;
}
.headerBox .navBox .listBox .item.active::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #047E41;
  border-radius: 2px;
}
.headerBox .navBox .listBox .item:hover > a {
  color: #047E41;
}
.headerBox .navBox .logo {
  width: 235px;
  height: 72px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.headerBox .navBox .logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.headerBox .navBox a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
}
.headerBox .statusBarBox {
  height: 40px;
  background: url(../image/statusbar.png) no-repeat right center;
  background-size: 50% 100%;
}
.headerBox .statusBarBox .wrapper {
  width: 1600px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.headerBox .statusBarBox .welcome {
  color: #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.headerBox .statusBarBox .language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerBox .statusBarBox .language .item {
  width: 42px;
  height: 24px;
  border-radius: 20px;
  background-color: #F3F8FE;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  color: #787D84;
  margin-left: 10px;
  cursor: pointer;
}
.headerBox .statusBarBox .language .item.active {
  background-color: #047E41;
  color: #fff;
}
.headerBox .statusBarBox .phone {
  color: #047E41;
  padding-left: 26px;
  background: url(../image/phone.png) no-repeat left center;
  background-size: 24px 24px;
  margin-right: 160px;
}
.headerBox .statusBarBox .right {
  width: 50%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footerBox {
  height: 350px;
  background-color: #191919;
  color: #fff;
}
.footerBox .barBox {
  height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
.footerBox .codeBox {
  position: absolute;
  left: 666px;
  bottom: -80px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footerBox .codeBox img {
  width: 120px;
  height: 120px;
}
.footerBox .codeBox .label {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 20px;
}
.footerBox .rightBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 40px;
  height: 100%;
  position: relative;
}
.footerBox .rightBox .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footerBox .rightBox .listBox .item {
  margin-right: 72px;
}
.footerBox .rightBox .listBox .elem {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footerBox .rightBox .listBox .elem:hover {
  color: #fff;
}
.footerBox .leftBox {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 40px;
  height: 100%;
}
.footerBox .leftBox .title {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 16px;
}
.footerBox .leftBox .phone {
  font-size: 18px;
  padding-left: 36px;
  background: url(../image/phone2.png) no-repeat left center;
  background-size: 28px 28px;
  letter-spacing: 1px;
  margin-top: 20px;
}
.footerBox .leftBox .phone span {
  font-size: 26px;
}
.footerBox .leftBox .email {
  font-size: 18px;
  padding-left: 36px;
  margin-top: 20px;
  background: url(../image/email.png) no-repeat left center;
  background-size: 28px 28px;
  letter-spacing: 1px;
}
.footerBox .leftBox .address {
  font-size: 18px;
  padding-left: 36px;
  margin-top: 20px;
  background: url(../image/address.png) no-repeat left center;
  background-size: 28px 28px;
  letter-spacing: 1px;
}
.footerBox .wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 0;
}

.h5-menu-mark {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.h5-menu-mark .closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: url(../image/m_close.png) no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.h5-menu-mark .containerBox {
  width: 220px;
  height: 100%;
  background-color: #333;
}
.h5-menu-mark .containerBox .childMenu {
  display: none;
  padding-bottom: 10px;
}
.h5-menu-mark .containerBox .childMenu a {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  color: #fff;
}
.h5-menu-mark .containerBox .item {
  min-height: 56px;
  line-height: 56px;
  color: #f9f9f9;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}
.h5-menu-mark .containerBox .item > a, .h5-menu-mark .containerBox .item > span {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.h5-menu-mark .containerBox .item .parents-menu {
  position: relative;
  height: 56px;
}
.h5-menu-mark .containerBox .item .parents-menu .jiantou {
  position: absolute;
  right: 0;
  top: 20px;
  width: 16px;
  height: 16px;
  background: url(../image/jiantou_rt2.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.7;
}
.h5-menu-mark .containerBox .item .parents-menu.active .jiantou {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.h5-menu-mark .containerBox .item .parents {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.h5-menu-mark .containerBox .item.active {
  color: #047E41;
  background-color: rgba(0, 0, 0, 0.1);
}

.backToTop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}
.backToTop img {
  width: 100%;
  height: 100%;
}

.h5-loadMore .la-ball-clip-rotate,
.h5-loadMore .la-ball-clip-rotate > div {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.h5-loadMore .la-ball-clip-rotate {
  display: none;
  font-size: 0;
  color: #047E41;
}
.h5-loadMore .la-ball-clip-rotate.la-dark {
  color: #047E41;
}
.h5-loadMore .la-ball-clip-rotate > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.h5-loadMore .la-ball-clip-rotate {
  width: 32px;
  height: 32px;
}
.h5-loadMore .la-ball-clip-rotate > div {
  width: 32px;
  height: 32px;
  background: transparent;
  border-width: 2px;
  border-bottom-color: transparent;
  border-radius: 100%;
  -webkit-animation: ball-clip-rotate 0.75s linear infinite;
  animation: ball-clip-rotate 0.75s linear infinite;
}
.h5-loadMore .la-ball-clip-rotate.la-sm {
  width: 16px;
  height: 16px;
}
.h5-loadMore .la-ball-clip-rotate.la-sm > div {
  width: 16px;
  height: 16px;
  border-width: 1px;
}
@-webkit-keyframes ball-clip-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ball-clip-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* flex */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-sk {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.al-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.al-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.al-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.jt-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jt-bet {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.text-over1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-over2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-over3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-btn {
  width: 160px;
  height: 44px;
  line-height: 44px;
  border: 1px solid #047E41;
  font-size: 16px;
  color: #047E41;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.public-btn:hover {
  opacity: 0.7;
}

.public-box {
  width: 1600px;
  margin: 0 auto;
}

.h5-codeBox,
.h5-menuIcon,
.h5-rongyu,
.h5-menu-mark,
.h5-loadMore,
.h5-logo {
  display: none;
}

.pager{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;

}
.pager .layui-btn{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #aa0406;
    margin: 0 5px;
    border: 1px solid #aa0406;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}
.pager .layui-btn-primary{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #666!important;
    margin: 0 5px;
    border: 1px solid #666!important;
    border-radius: 5px;
    display: inline-block;
}
.pager .layui-btn-disabled{
    width: 40px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #cccccc;
    margin: 0 5px;
    border: 1px solid #cccccc!important;
    border-radius: 5px;
    display: inline-block;
}