﻿
/*初始化样式*/
/*@font-face{
     font-family: 'My_font';
     src: url('font/My_font.eot');
     src:url('font/My_font.woff') format('woff'),
         url('font/My_font.ttf') format('truetype'),
         url('font/My_font.svg') format('svg');
}*/
html {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  /*height: 100%;*/
  font-size: 14px;
  overflow-x: hidden;
}
body {
  margin: 0 auto;
  padding: 100px 0 0;
  /*height: 100%!important;*/
  width: 100%;
  zoom: 1;
  font-size: 14px;
  line-height: 24px;
  font-family: "Arial", "微软雅黑", "sans-serif", "宋体";
  color: #333;
  /*设置宽度*/
  background-color: #fff;
}
@media (max-width: 1200px) {
  body {
    padding-top: 66px;
  }
}
@media (max-width: 992px) {
  body {
    padding-top: 0;
  }
}
ul,
li,
form,
dl,
dt,
dd,
div {
  padding: 0;
  margin: 0;
}
.ul,
.ul li {
  list-style: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.p {
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
b,
strong {
  font-weight: bold;
}
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
  color: #414446;
  font-family: "Arial", "微软雅黑", "sans-serif", "宋体";
  -webkit-appearance: none;
}
input:focus {
  outline: none;
}
body.hide {
  overflow: hidden;
}
/*强制去除表单自带的样式*/
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
}
/*强制去除textarea自带的样式*/
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
}
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*html5设置*/
article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
  display: block;
}
figure,
figcaption {
  margin: 0;
  padding: 0;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
img {
  border: none;
  border: 0;
  vertical-align: top;
  max-width: 100%;
}
span {
  outline: none;
}
a {
  color: #333333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
a:link,
a:visited,
a:focus {
  outline: none;
  text-decoration: none;
  -moz-outline: none;
}
a:hover {
  text-decoration: none;
  color: #22735e;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}
.animate5s {
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}
.animate3s {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.animate6_1s {
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.5, 2), opacity 0.6s cubic-bezier(0.42, 0, 0.58, 1);
}
.animate6_2s {
  transition: transform 0.6s 0.2s cubic-bezier(0.25, 0, 0.5, 2), opacity 0.6s 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.animate6_3s {
  transition: transform 0.6s 0.4s cubic-bezier(0.25, 0, 0.5, 2), opacity 0.6s 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.textover {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textovers {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.x-half {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.y-half {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.xy-half {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.o-hide {
  overflow: hidden;
}
.img-box {
  overflow: hidden;
}
.img-box img {
  display: block;
  transform: scale(1);
  transition: all 0.3s;
}
.imgh:hover .img-box img,
.img-box .imgh:hover img,
.img-box.imgh:hover img {
  transform: scale(1.08);
}
.vmd {
  display: inline-block;
  vertical-align: middle;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.i-flex {
  display: inline-flex;
  flex-wrap: wrap;
}
.jb-flex {
  justify-content: space-between;
}
.jc-flex {
  justify-content: center;
}
.ac-flex {
  align-items: center;
}
/*清楚浮动*/
.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  font-size: 0;
}
.clearfix {
  zoom: 1;
}
/*初始化样式*/
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.wrap {
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .wrap {
    max-width: 1230px;
  }
  .wrap.type-a {
    max-width: 1170px;
  }
}
@media (min-width: 1430px) {
  .wrap {
    max-width: 1430px;
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: 992px;
  }
}
@media (max-width: 992px) {
  .wrap {
    width: 768px;
  }
}
@media (max-width: 768px) {
  .wrap {
    width: 100%;
  }
}
/**动画**/
[data-animation] {
  opacity: 0;
}
[data-animation].animated {
  opacity: 1;
}
a:hover {
  color: #22735e;
}
.bg0 {
  background-color: #ffffff;
}
.bg1 {
  background-color: #f8f8f8;
}
.bg2 {
  background-color: #f6f6f6;
}
.bg3 {
  background-color: #f9f9f9;
}
.bg4 {
  background-color: #1e2b38;
}
.bg5 {
  background-color: #f7f8f8;
}
.bg6 {
  background-color: #f4f4f4;
}
.colr_main {
  color: #22735e;
}
.colr_main2 {
  color: #ff3076;
}
.colrf {
  color: #fff;
}
.colr0 {
  color: #000;
}
.colr3 {
  color: #333;
}
.colr6 {
  color: #666;
}
.colr9 {
  color: #999;
}
.fill_colorA {
  fill: #22735e;
}
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #a1a1a1;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #a1a1a1;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #a1a1a1;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a1a1a1;
}
.input-color1::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #999;
}
.input-color1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
}
.input-color1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
}
.input-color1:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
}
.input-color2::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #555555;
}
.input-color2:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555555;
}
.input-color2::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555555;
}
.input-color2:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555555;
}
.input-color3::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #b3b3b3;
}
.input-color3:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #b3b3b3;
}
.input-color3::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #b3b3b3;
}
.input-color3:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #b3b3b3;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 4px;
  background-color: #dddddd;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #dddddd;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #015ba7;
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover {
  border-radius: 4px;
  background-color: #015ba7;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.scroll-type-a::-webkit-scrollbar {
  width: 4px;
  background-color: #e1e1e1;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-type-a::-webkit-scrollbar-track {
  border-radius: 2px;
  background-color: #e1e1e1;
}
/*定义滑块 内阴影+圆角*/
.scroll-type-a::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #989898;
}
/*滑块效果*/
.scroll-type-a::-webkit-scrollbar-thumb:hover {
  border-radius: 2px;
  background-color: #989898;
}
[flex] {
  display: flex;
}
[flex][flex~="i"] {
  display: inline-flex;
}
[flex][flex~="wrap"] {
  flex-wrap: wrap;
}
[flex][flex~="no-wrap"] {
  flex-wrap: nowrap;
}
[flex][flex~="ja"] {
  justify-content: space-around;
}
[flex][flex~="jb"] {
  justify-content: space-between;
}
[flex][flex~="jc"] {
  justify-content: center;
}
[flex][flex~="as"] {
  align-items: flex-start;
}
[flex][flex~="ac"] {
  align-items: center;
}
[flex][flex~="ae"] {
  align-items: flex-end;
}
.lw-w-1 {
  width: 8.33333333%;
}
.lw-w-2 {
  width: 16.66666667%;
}
.lw-w-3 {
  width: 25%;
}
.lw-w-4 {
  width: 33.33333333%;
}
.lw-w-5 {
  width: 41.66666667%;
}
.lw-w-6 {
  width: 50%;
}
.lw-w-7 {
  width: 58.33333333%;
}
.lw-w-8 {
  width: 66.66666667%;
}
.lw-w-9 {
  width: 75%;
}
.lw-w-10 {
  width: 83.33333333%;
}
.lw-w-11 {
  width: 91.66666667%;
}
.lw-w-12 {
  width: 100%;
}
.lw-5w {
  width: 20%;
}
@media (max-width: 1200px) {
  .lw-xw-1 {
    width: 8.33333333%;
  }
  .lw-xw-2 {
    width: 16.66666667%;
  }
  .lw-xw-3 {
    width: 25%;
  }
  .lw-xw-4 {
    width: 33.33333333%;
  }
  .lw-xw-5 {
    width: 41.66666667%;
  }
  .lw-xw-6 {
    width: 50%;
  }
  .lw-xw-7 {
    width: 58.33333333%;
  }
  .lw-xw-8 {
    width: 66.66666667%;
  }
  .lw-xw-9 {
    width: 75%;
  }
  .lw-xw-10 {
    width: 83.33333333%;
  }
  .lw-xw-11 {
    width: 91.66666667%;
  }
  .lw-xw-12 {
    width: 100%;
  }
  .lw-5xw {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .lw-mw-1 {
    width: 8.33333333%;
  }
  .lw-mw-2 {
    width: 16.66666667%;
  }
  .lw-mw-3 {
    width: 25%;
  }
  .lw-mw-4 {
    width: 33.33333333%;
  }
  .lw-mw-5 {
    width: 41.66666667%;
  }
  .lw-mw-6 {
    width: 50%;
  }
  .lw-mw-7 {
    width: 58.33333333%;
  }
  .lw-mw-8 {
    width: 66.66666667%;
  }
  .lw-mw-9 {
    width: 75%;
  }
  .lw-mw-10 {
    width: 83.33333333%;
  }
  .lw-mw-11 {
    width: 91.66666667%;
  }
  .lw-mw-12 {
    width: 100%;
  }
  .lw-5mw {
    width: 20%;
  }
}
@media (max-width: 992px) {
  .lw-nw-1 {
    width: 8.33333333%;
  }
  .lw-nw-2 {
    width: 16.66666667%;
  }
  .lw-nw-3 {
    width: 25%;
  }
  .lw-nw-4 {
    width: 33.33333333%;
  }
  .lw-nw-5 {
    width: 41.66666667%;
  }
  .lw-nw-6 {
    width: 50%;
  }
  .lw-nw-7 {
    width: 58.33333333%;
  }
  .lw-nw-8 {
    width: 66.66666667%;
  }
  .lw-nw-9 {
    width: 75%;
  }
  .lw-nw-10 {
    width: 83.33333333%;
  }
  .lw-nw-11 {
    width: 91.66666667%;
  }
  .lw-nw-12 {
    width: 100%;
  }
  .lw-5nw {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .lw-sw-1 {
    width: 8.33333333%;
  }
  .lw-sw-2 {
    width: 16.66666667%;
  }
  .lw-sw-3 {
    width: 25%;
  }
  .lw-sw-4 {
    width: 33.33333333%;
  }
  .lw-sw-5 {
    width: 41.66666667%;
  }
  .lw-sw-6 {
    width: 50%;
  }
  .lw-sw-7 {
    width: 58.33333333%;
  }
  .lw-sw-8 {
    width: 66.66666667%;
  }
  .lw-sw-9 {
    width: 75%;
  }
  .lw-sw-10 {
    width: 83.33333333%;
  }
  .lw-sw-11 {
    width: 91.66666667%;
  }
  .lw-sw-12 {
    width: 100%;
  }
  .lw-5sw {
    width: 20%;
  }
}
.mb-fot {
  margin-bottom: 35px;
}
.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: all 0.3s;
}
.imgh:hover img {
  transform: scale(1.02);
}
.auto-title {
  padding: 82px 0 50px;
  text-align: center;
}
.auto-title .auto-title-h1 {
  font-size: 36px;
  line-height: 1.2em;
  color: #222222;
}
.auto-title .auto-title-h1 .word {
  margin-left: 5px;
  font-weight: 600;
}
.auto-title-a {
  padding: 45px 0;
}
.auto-title-a .auto-title-h1 {
  font-size: 46px;
  line-height: 1.2em;
}
.auto-title-a .auto-title-text {
  margin: 25px 0 40px;
  font-size: 15px;
  line-height: 30px;
}
.auto-title-a .auto-title-more {
  display: inline-block;
  position: relative;
  vertical-align: top;
  border: solid 1px #ffffff;
  width: 252px;
  max-width: 100%;
  overflow: hidden;
  padding: 0 15px;
  text-align: center;
  font-size: 15px;
  line-height: 42px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.auto-title-a .auto-title-more::before,
.auto-title-a .auto-title-more::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.auto-title-a .auto-title-more::before {
  left: -10%;
}
.auto-title-a .auto-title-more::after {
  right: -10%;
}
.auto-title-a .auto-title-more .word {
  display: block;
  position: relative;
  z-index: 1;
}
.auto-title-a .auto-title-more:hover {
  color: #22735e;
}
.auto-title-a .auto-title-more:hover::before,
.auto-title-a .auto-title-more:hover::after {
  width: 65%;
}
.auto-title-b {
  padding-top: 50px;
  padding-bottom: 45px;
  color: #222222;
}
.auto-title-b .auto-title-h1 {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.3em;
}
.auto-title-b .auto-title-h2 {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
  opacity: 0.25;
}
@media (max-width: 1400px) {
  .auto-title {
    padding: 55px 0 35px;
  }
  .auto-title .auto-title-h1 {
    font-size: 30px;
  }
  .auto-title-a {
    padding: 30px 0;
  }
  .auto-title-a .auto-title-h1 {
    font-size: 40px;
  }
  .auto-title-a .auto-title-text {
    margin: 10px 0 25px;
    font-size: 14px;
    line-height: 26px;
  }
  .auto-title-a .auto-title-more {
    font-size: 14px;
    line-height: 38px;
  }
  .auto-title-b {
    padding-bottom: 35px;
  }
  .auto-title-b .auto-title-h1 {
    margin-bottom: 5px;
    font-size: 30px;
  }
  .auto-title-b .auto-title-h2 {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .auto-title {
    padding: 45px 0 30px;
  }
  .auto-title .auto-title-h1 {
    font-size: 24px;
  }
  .auto-title-a {
    padding: 20px 0;
  }
  .auto-title-a .auto-title-h1 {
    font-size: 30px;
  }
  .auto-title-a .auto-title-text {
    margin: 5px 0 20px;
    line-height: 24px;
  }
  .auto-title-a .auto-title-more {
    line-height: 36px;
  }
  .auto-title-b {
    padding: 45px 0 30px;
  }
  .auto-title-b .auto-title-h1 {
    margin-bottom: 3px;
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .auto-title {
    padding: 35px 0 20px;
  }
  .auto-title .auto-title-h1 {
    font-size: 20px;
  }
  .auto-title-a {
    padding: 15px 0;
  }
  .auto-title-a .auto-title-h1 {
    font-size: 20px;
  }
  .auto-title-a .auto-title-text {
    margin: 10px 0 10px;
    line-height: 24px;
  }
  .auto-title-a .auto-title-more {
    line-height: 36px;
  }
  .auto-title-b {
    padding: 35px 0 20px;
  }
  .auto-title-b .auto-title-h1 {
    font-size: 20px;
  }
}
/***箭头***/
.jt-a-css {
  position: relative;
}
.jt-a-css::before,
.jt-a-css::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(51, 51, 51, 0.6);
  transition: all 0.3s;
}
.jt-a-css::before {
  transform: translate(-85%, 0) rotate(45deg);
}
.jt-a-css::after {
  transform: translate(-15%, 0) rotate(-45deg);
}
.jt-a-on-css::before {
  transform: translate(-85%, 0) rotate(-45deg);
}
.jt-a-on-css::after {
  transform: translate(-15%, 0) rotate(45deg);
}
.jt-a-on-css.on::before {
  transform: translate(-85%, 0) rotate(-45deg);
}
.jt-a-on-css.on::after {
  transform: translate(-15%, 0) rotate(45deg);
}
.jt-a {
  width: 22px;
  height: 10px;
  position: relative;
}
.jt-a::before,
.jt-a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(51, 51, 51, 0.6);
  transition: all 0.3s;
}
.jt-a::before {
  transform: translate(-85%, 0) rotate(45deg);
}
.jt-a::after {
  transform: translate(-15%, 0) rotate(-45deg);
}
.jt-a-on.on .jt-a::before {
  transform: translate(-85%, 0) rotate(-45deg);
}
.jt-a-on.on .jt-a::after {
  transform: translate(-15%, 0) rotate(45deg);
}
.jt-a-on.on .jt-a.on::before {
  transform: translate(-85%, 0) rotate(-45deg);
}
.jt-a-on.on .jt-a.on::after {
  transform: translate(-15%, 0) rotate(45deg);
}
.jt-d-css {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 40px;
}
.jt-d-css::before,
.jt-d-css::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  width: 8px;
  height: 30px;
  background: #06558f;
}
.jt-d-css.left::before {
  transform: translate(-35%, -70%) rotate(45deg);
}
.jt-d-css.left::after {
  transform: translate(-35%, -15%) rotate(-45deg);
}
.jt-d-css.right::before {
  transform: translate(-35%, -15%) rotate(45deg);
}
.jt-d-css.right::after {
  transform: translate(-35%, -70%) rotate(-45deg);
}
.jt-d-on-css::before,
.jt-d-on-css::after {
  background: #ff3076;
}
.jt-d {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 40px;
}
.jt-d::before,
.jt-d::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 4px;
  width: 8px;
  height: 30px;
  background: #06558f;
}
.jt-d.left::before {
  transform: translate(-35%, -70%) rotate(45deg);
}
.jt-d.left::after {
  transform: translate(-35%, -15%) rotate(-45deg);
}
.jt-d.right::before {
  transform: translate(-35%, -15%) rotate(45deg);
}
.jt-d.right::after {
  transform: translate(-35%, -70%) rotate(-45deg);
}
.jt-d-hover:hover .jt-d::before,
.jt-d-on .jt-d::before,
.jt-d-hover:hover .jt-d::after,
.jt-d-on .jt-d::after {
  background: #ff3076;
}
.jt-d:hover::before,
.jt-d:hover::after {
  background: #ff3076;
}
@media (max-width: 1200px) {
  .jt-d-css {
    width: 16px;
    height: 30px;
  }
  .jt-d-css::before,
  .jt-d-css::after {
    border-radius: 2px;
    width: 4px;
    height: 20px;
  }
  .jt-d {
    width: 16px;
    height: 30px;
  }
  .jt-d::before,
  .jt-d::after {
    border-radius: 2px;
    width: 4px;
    height: 20px;
  }
}
/**视频弹框**/
.tank-video-box {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  cursor: pointer;
}
.tank-video-box .flex-box {
  height: 100%;
  width: 100%;
}
.tank-video-box .video-box {
  position: relative;
  height: auto;
  width: auto;
}
.tank-video-box .video-box video {
  border: 7px solid #fff;
  display: block;
  width: auto;
  max-width: 94vw;
  max-height: 96vh;
  border-radius: 4px;
}
.tank-video-box .exit {
  position: absolute;
  right: -15px;
  top: -15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: url(../image/btn-close.png) no-repeat center / 100%;
  z-index: 5;
}
/**表单**/
.form-type-a {
  display: flex;
  border: 1px solid #e5e5e5;
}
.form-type-a .key {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 40px;
  color: #666;
}
.form-type-a .submit {
  flex-shrink: 0;
  width: 40px;
  background: url(../image/icon3.png) no-repeat center;
  cursor: pointer;
  transition: all 0.3s;
}
.form-type-a .submit:hover {
  background-color: #f1f1f1;
}
/**头部导航**/
#header {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 9;
  background: #fff;
  transition: all 0.3s ease-in;
}
#header .logo {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
#header .logo img {
  width: auto;
  height: 40px;
  transition: all 0.3s;
}
#header .menu {
  vertical-align: middle;
}
#header .menu .menu-box {
  display: flex;
}
#header .menu .menu-son {
  transition: all 0.3s;
}
#header .menu .menu-title {
  display: block;
  padding: 0 15px;
  font-size: 16px;
  line-height: 20px;
  color: #222222;
  transition: all 0.3s;
}
#header .right-box .language-block {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
#header .right-box .language-block img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#header .right-box .language-block .tips {
  padding-right: 20px;
  background: url(../image/icon_jt_1_1.png) no-repeat right center;
}
#header .right-box .language-block .ul {
  position: absolute;
  top: 100%;
  right: 20px;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
#header .right-box .language-block:hover .ul {
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
}
#header .right-box .search-check {
  display: block;
  height: 24px;
  width: 24px;
  background: url(../image/icon_search_1.png) no-repeat center;
  cursor: pointer;
}
#header .right-box .search-check:hover {
  background-image: url(../image/icon_search_1_2.png);
}
#header .right-box .line {
  display: inline-block;
  margin: 0 24px;
  width: 1px;
  height: 14px;
  background-color: #222222;
  opacity: 0.15;
}
#header .right-box .phone-menu {
  margin-left: 20px;
}
.phone-menu {
  display: none;
  position: relative;
  order: 2;
  border-radius: 5px;
  height: 32px;
  width: 36px;
  flex-wrap: wrap;
  background: #22735e;
}
.phone-menu .phone-menu-i {
  display: block;
  position: absolute;
  left: 15%;
  top: 50%;
  margin-top: -1.5px;
  border-radius: 1.5px;
  width: 70%;
  height: 3px;
  background: #fff;
  opacity: 1;
  transform: rotate(0);
  transition: all 0.3s;
}
.phone-menu .phone-menu-i.i1 {
  margin-top: -9.5px;
}
.phone-menu .phone-menu-i.i3 {
  margin-top: 6.5px;
}
.menu-show .phone-menu .phone-menu-i.i1 {
  margin-top: -1.5px;
  transform: rotate(45deg);
}
.menu-show .phone-menu .phone-menu-i.i2 {
  opacity: 0;
}
.menu-show .phone-menu .phone-menu-i.i3 {
  margin-top: -1.5px;
  transform: rotate(-45deg);
}
.small-header #header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 1201px) {
  #header .wrap {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
  #header .logo img {
    height: 72px;
  }
  #header .menu {
    text-align: center;
  }
  #header .menu .menu-box {
    margin: 0 auto;
    width: auto;
  }
  #header .menu .menu-title {
    position: relative;
    padding: 0 35px;
    line-height: 100px;
  }
  #header .menu .pc-hide {
    display: none !important;
  }
  #header .menu-son {
    display: flex;
    align-items: center;
  }
  #header .menu-son.on .menu-title,
  #header .menu-son:hover .menu-title {
    color: #22735e;
  }
  #header .menu-son.on .menu-title::after,
  #header .menu-son:hover .menu-title::after {
    left: 0;
    width: 100%;
  }
  #header .menu-son .menu-lib-btn {
    display: none;
  }
  #header .menu-son:hover .lib-box {
    margin-top: 0;
    opacity: 1;
    pointer-events: auto;
  }
  #header .lib-box {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    margin-top: -10px;
    opacity: 0;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    transition: margin 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    overflow: hidden;
  }
  #header .lib-box::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -100vw;
    border-top: 1px solid #ededed;
    height: 100%;
    width: 200vw;
    background: #fafafa;
  }
  #header .menu-lib-title {
    display: inline-block;
  }
  #header .menu-lib-title .a {
    display: block;
    position: relative;
    padding: 8px 10px;
    font-size: 15px;
    line-height: 1.4em;
    color: #333;
  }
  #header .menu-lib-title .a:hover {
    color: #22735e;
  }
  #header .product-box .wrap {
    position: relative;
    padding-bottom: 50px;
    text-align: left;
  }
  #header .product-box .product-title {
    margin-bottom: 12px;
    border-bottom: 1px solid #ededed;
    padding: 17px 0;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
  }
  #header .product-box .flex-left {
    flex-shrink: 0;
    margin-right: 4.51%;
    width: 245px;
  }
  #header .product-box .flex-left .title-word {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    line-height: 22px;
    color: #777777;
  }
  #header .product-box .flex-left .title-word:hover {
    color: #222222;
  }
  #header .product-box .flex-right {
    width: 100%;
  }
  #header .product-box .flex-right .cont-box {
    padding-top: 16px;
  }
  #header .product-box .flex-right .box {
    display: block;
  }
  #header .product-box .flex-right .box:hover .title {
    color: #22735e;
  }
  #header .product-box .flex-right .img-box {
    margin-bottom: 20px;
    background: transparent;
    transition: all 0.3s;
  }
  #header .product-box .flex-right .img-box::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  #header .product-box .flex-right .list-li {
    width: 13.65%;
    text-align: center;
  }
  #header .product-box .flex-right .title {
    white-space: break-spaces;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
  }
  #header .product-box .flex-right .box {
    color: #222222;
  }
  #header .product-box .flex-right .box:hover .img-box {
    background: #fff;
    box-shadow: 0px 13px 24px 0px rgba(99, 99, 99, 0.13);
    border-radius: 20px;
  }
  .small-header #header .logo img {
    height: 54px;
  }
  .small-header #header .menu .menu-title {
    padding: 0 25px;
    line-height: 74px;
  }
  .small-header #header .lib-box {
    padding: 10px 0;
  }
  .small-header #header .menu-lib-title .a {
    font-size: 14px;
  }
  .small-header #header .product-box .wrap {
    padding-bottom: 10px;
  }
  .small-header #header .product-box .product-title {
    margin-bottom: 8px;
    padding: 14px 0;
  }
  .small-header #header .product-box .flex-left .title-word {
    padding: 6px 0;
  }
  .small-header #header .product-box .flex-right .cont-box {
    padding-top: 10px;
  }
  .small-header #header .product-box .flex-right .img-box {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1600px) {
  #header .menu .menu-title {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  #header .menu .menu-title {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1300px) {
  #header .menu .menu-title {
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  #header .logo {
    height: 66px;
  }
  #header .logo img {
    height: 50px;
  }
  #header .mid-box {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    flex-flow: column;
    top: 60px;
    left: 0;
    height: calc(100% - 66px);
    width: 100%;
    padding: 0;
    background: #fafafa;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
    transform: scale(0.99) translateY(5%);
    transition: transform 0.2s ease-in-out, opacity 0.3s;
  }
  #header .mid-box .menu {
    margin: 0 auto;
    max-width: 100%;
    width: 992px;
    padding: 0 15px;
  }
  #header .mid-box .menu-box {
    flex-wrap: wrap;
    width: 100%;
  }
  #header .mid-box .menu-son {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  #header .mid-box .menu-son .menu-title {
    display: flex;
    position: relative;
    border-bottom: 1px solid #eee;
    height: auto;
    width: 100%;
    padding: 5px 10px;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 38px;
  }
  #header .mid-box .menu-son .menu-title .menu-lib-btn {
    height: 100%;
  }
  #header .mid-box .menu-lib {
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    padding: 7px 0;
    background: rgba(0, 0, 0, 0.05);
  }
  #header .mid-box .menu-lib .menu-lib-title {
    display: block;
    width: 100%;
  }
  #header .mid-box .menu-lib .menu-lib-title .a {
    display: block;
    padding: 5px 25px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
  }
  #header .mid-box .product-box .wrap {
    padding: 0;
  }
  #header .mid-box .product-box .product-title {
    display: none;
  }
  #header .mid-box .product-box .flex-left {
    width: 100%;
    margin: 0;
  }
  #header .mid-box .product-box .flex-left .title-word {
    display: block;
    padding: 5px 25px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
  }
  #header .mid-box .product-box .flex-right {
    display: none;
  }
  #header .right-box .line {
    margin: 0 18px;
  }
  #header .right-box .phone-menu {
    display: block;
  }
  .menu-show #header .mid-box {
    pointer-events: auto;
    z-index: 999;
    opacity: 1;
    transform: scale(1) translateY(0);
    background: #fafafa;
  }
}
@media (max-width: 992px) {
  #header {
    position: sticky;
    top: 0;
  }
  #header .logo img {
    height: 40px;
  }
  #header .mid-box .menu {
    width: 768px;
  }
}
@media (max-width: 768px) {
  #header .logo img {
    height: 30px;
  }
  #header .right-box .phone-block .phone {
    border-radius: 15px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 30px;
  }
  #header .right-box .phone-block .phone img {
    margin-right: 5px;
    width: 12px;
  }
  #header .right-box .phone-menu {
    width: 32px;
    height: 28px;
    margin-left: 15px;
  }
  #header .right-box .phone-menu .phone-menu-i.i1 {
    margin-top: -7.5px;
  }
  #header .right-box .phone-menu .phone-menu-i.i3 {
    margin-top: 4.5px;
  }
  .menu-show #header .right-box .phone-menu .phone-menu-i {
    margin-top: -1.5px;
  }
}
.head-form {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background-color: rgba(0, 0, 0, 0.6);
}
.head-form .form-box {
  display: flex;
  width: 100%;
  padding: 45px 40px;
}
.head-form .form {
  display: flex;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #22735e;
  border-radius: 4px;
  width: 1200px;
  max-width: 100%;
  font-size: 0;
  background: #ffffff;
}
.head-form .form .key {
  display: inline-flex;
  position: relative;
  width: 100%;
  height: 52px;
  padding: 0 30px;
  line-height: 50px;
  font-size: 16px;
  color: #333;
}
.head-form .form .key:focus {
  border-color: #fff;
}
.head-form .form .key:placholder-show {
  color: #c4cbd4;
}
.head-form .form .submit {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 4px;
  height: 100%;
  width: 50px;
  padding: 0;
  background: #f1f1f1 url(../image/icon_search_1.png) no-repeat center;
  cursor: pointer;
}
.head-form .form .submit:hover {
  background-color: #dedede;
}
.head-form .exit {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0 none;
  cursor: pointer;
}
.search-show .head-form {
  pointer-events: auto;
  opacity: 1;
  margin-top: 1px;
  z-index: 9999;
}
/***底部***/
.footer {
  background: #f1f1f1;
  font-size: 14px;
  line-height: 20px;
  color: #898989;
}
.footer a {
  color: #898989;
}
.footer a:hover {
  color: #22735e;
}
.footer .foot-top {
  padding: 55px 0 25px;
}
.footer .foot-top .left {
  width: 950px;
  max-width: 70%;
}
.footer .foot-top .ul .li {
  padding-right: 10px;
}
.footer .foot-top .title {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 22px;
  color: #222222;
}
.footer .foot-top .a-box {
  font-size: 14px;
}
.footer .foot-top .a-box .a {
  padding: 5px 0;
  transform: translateX(0);
  transition: all 0.3s;
}
.footer .foot-top .a-box .a:hover {
  transform: translateX(2px);
}
.footer .foot-top .cont .p-cont {
  line-height: 22px;
}
.footer .foot-top .cont .p-cont .p {
  padding: 2px 0;
}
.footer .foot-top .cont .p-cont + .p-cont {
  margin-top: 13px;
}
.footer .foot-top .cont .contact-btn {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 15px;
  height: 14px;
  cursor: pointer;
  background: url(../image/icon1.png) no-repeat center / contain;
}
.footer .foot-top .cont .contact-btn:hover {
  background-image: url(../image/icon1_1.png);
}
.footer .foot-top .right {
  text-align: center;
}
.footer .foot-top .right .code-box img {
  display: block;
}
.footer .foot-top .right .code-box .txt {
  padding: 12px 0 22px;
}
.footer .foot-top .friend-link {
  padding-top: 65px;
}
.footer .foot-top .friend-link .friend-title {
  flex-shrink: 0;
}
.footer .foot-top .friend-link a {
  margin: 2px 13px;
}
.footer .foot-bot {
  border-top: 1px solid #dfdfdf;
  padding: 15px 0;
}
.footer .foot-bot .others {
  margin-left: 32px;
}
.footer .foot-bot .others .line {
  margin: 0 16px;
}
.footer .foot-bot .language-block {
  position: relative;
  border: solid 1px #dfdfdf;
  padding: 0 18px;
  font-size: 14px;
  line-height: 38px;
  color: #888888;
}
.footer .foot-bot .language-block img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.footer .foot-bot .language-block .tips {
  padding-right: 22px;
  background: url(../image/icon_jt_1_2.png) no-repeat right center;
}
.footer .foot-bot .language-block .ul {
  position: absolute;
  right: 18px;
  bottom: 100%;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.footer .foot-bot .language-block .ul .word {
  padding-right: 22px;
}
.footer .foot-bot .language-block:hover .ul {
  margin-bottom: 0;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .footer .foot-top {
    padding: 30px 0 25px;
  }
  .footer .foot-top .left {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer .foot-top .ul .li {
    display: none;
    width: 100%;
    padding: 0;
  }
  .footer .foot-top .ul .li:last-child {
    display: block;
  }
  .footer .foot-top .right {
    width: 100%;
    max-width: 100%;
    padding-top: 15px;
  }
  .footer .foot-top .right .code-box {
    text-align: center;
  }
  .footer .foot-top .right .code-box img {
    margin: 0 auto;
    width: 110px;
    height: auto;
  }
  .footer .foot-top .right .code-box .txt {
    padding: 8px 0;
  }
  .footer .foot-top .title {
    margin-bottom: 6px;
  }
  .footer .foot-top .cont .p-cont .p {
    padding: 1px 0;
  }
  .footer .foot-top .cont .p-cont + .p-cont {
    margin-top: 5px;
  }
  .footer .foot-top .friend-link {
    padding-top: 20px;
  }
  .footer .foot-bot .copy {
    width: 100%;
    text-align: center;
  }
  .footer .foot-bot .others {
    display: flex;
    margin-left: 0;
    padding-top: 6px;
    justify-content: center;
  }
  .footer .foot-bot .language-block {
    display: none;
  }
}
/**返回顶部**/
.return-top {
  position: fixed;
  right: 40px;
  bottom: 70px;
  z-index: 9;
}
@media (max-width: 1200px) {
  .return-top {
    right: 20px;
    bottom: 40px;
  }
  .return-top img {
    width: 40px;
    height: auto;
  }
}
@media (max-width: 992px) {
  .return-top {
    right: 15px;
    bottom: 34px;
  }
  .return-top img {
    width: 30px;
  }
}
.menu-map-block {
  position: relative;
}
.menu-map-block .site-map {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 17px;
  z-index: 2;
  width: 100%;
  font-size: 15px;
  line-height: 48px;
  color: #ffffff;
}
.menu-map-block .site-map .wrap {
  justify-content: flex-end;
}
.menu-map-block .site-map a {
  display: inline-block;
  color: #ffffff;
}
.menu-map-block .site-map a:hover {
  color: #22735e;
}
.menu-map-block .site-map .jt {
  margin: 0 15px;
  color: #ffffff;
}
.menu-map-block .site-map .icon {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 3px;
  height: 18px;
  width: 18px;
  background: url(../image/icon2.png) no-repeat center / contain;
}
/***二级菜单***/
.next-menu {
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
}
.next-menu.no-line {
  border-bottom-color: transparent;
}
.next-menu .swiper-container {
  display: block;
  margin-bottom: -1px;
}
.next-menu .swiper-slide {
  width: auto;
}
.next-menu .link {
  display: block;
  position: relative;
  margin: 0 20px;
  padding: 25px 5px;
  font-size: 16px;
  color: #333333;
}
.next-menu .link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: #22735e;
  transition: all 0.3s;
}
.next-menu .link:hover {
  color: #22735e;
}
.next-menu .link.on {
  color: #22735e;
}
.next-menu .link.on::after {
  height: 2px;
}
@media (max-width: 1400px) {
  .menu-map-block .site-map {
    margin-bottom: 10px;
    line-height: 40px;
  }
  .menu-map-block .site-map .jt {
    margin: 0 10px;
  }
  .menu-map-block .site-map .icon {
    margin-right: 10px;
  }
  .next-menu .link {
    margin: 0 15px;
    padding: 20px 5px;
  }
}
@media (max-width: 1200px) {
  .menu-map-block .site-map {
    position: static;
    margin-bottom: 0;
    border-bottom: 1px solid #e7e7e7;
    font-size: 14px;
    color: #222222;
  }
  .menu-map-block .site-map .wrap {
    justify-content: flex-start;
  }
  .menu-map-block .site-map a {
    color: #222222;
  }
  .menu-map-block .site-map .jt {
    color: #222222;
  }
  .menu-map-block .site-map .icon {
    margin-bottom: 2px;
    height: 14px;
    background-image: url(../image/icon2_1.png);
  }
  .next-menu .link {
    margin: 0 10px;
    padding: 15px 5px;
  }
}
@media (max-width: 992px) {
  .next-menu .link {
    font-size: 15px;
  }
}
.third-menu {
  padding: 35px 0;
}
.third-menu .swiper-slide {
  width: auto;
}
.third-menu .swiper-slide + .swiper-slide {
  display: flex;
  align-items: center;
}
.third-menu .swiper-slide + .swiper-slide::before {
  content: '';
  display: block;
  height: 12px;
  width: 1px;
  background: #e3e3e3;
}
.third-menu .link {
  display: block;
  position: relative;
  margin: 0 35px;
  padding: 18px 5px;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}
.third-menu .link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background: #22735e;
  transition: all 0.3s;
}
.third-menu .link:hover {
  color: #22735e;
}
.third-menu .link.on {
  color: #22735e;
}
.third-menu .link.on::after {
  height: 2px;
}
@media (max-width: 1400px) {
  .third-menu {
    padding: 30px 0;
  }
  .third-menu .link {
    margin: 0 25px;
    padding: 20px 5px;
  }
}
@media (max-width: 1200px) {
  .third-menu {
    padding: 25px 0 30px;
  }
  .third-menu .link {
    margin: 0 10px;
    padding: 15px 5px;
  }
}
@media (max-width: 992px) {
  .third-menu {
    padding: 20px 0 25px;
  }
  .third-menu .link {
    padding: 10px 5px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .third-menu {
    padding: 15px 0 25px;
  }
  .third-menu .link {
    font-size: 14px;
  }
}
/***详情页分享***/
.share-box-a {
  font-size: 0;
}
.share-box-a .btn {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  vertical-align: middle;
  background: #bdbdbd no-repeat center / contain;
}
.share-box-a .btn + .btn {
  margin-left: 16px;
}
.share-box-a .btn:hover {
  background-color: #22735e;
}
.share-box-a .btn:hover .code-box {
  margin-bottom: 0;
  opacity: 1;
  pointer-events: auto;
}
.share-box-a .wechat {
  background-image: url(../image/icon_share_1.png);
}
.share-box-a .sina {
  background-image: url(../image/icon_share_2.png);
}
.share-box-a .contact {
  background-image: url(../image/icon_share_3.png);
}
.share-box-a .qq {
  background-image: url(../image/icon_share_4.png);
}
.share-box .btn:hover {
  background-color: #22735e;
}
.share-box .btn:hover .code-box {
  margin-bottom: 0;
  opacity: 1;
  pointer-events: auto;
}
.share-box .code-box {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-left: -66px;
  margin-bottom: -10px;
  width: 122px;
  padding: 6px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: margin 0.3s, opacity 0.3s;
}
@media (max-width: 992px) {
  .share-box-a .a {
    width: 36px;
    height: 36px;
  }
}
/**列表翻页**/
.page-btn-box {
  display: flex;
  padding: 65px 15px 80px;
  text-align: center;
}
.page-btn-box .page-btn {
  margin: 2.5px;
  border: 1px solid transparent;
  min-width: 62px;
  padding: 0 10px;
  font-size: 15px;
  line-height: 42px;
  color: #555555;
  background: #ffffff;
  transition: all 0.3s;
}
.page-btn-box .page-btn:hover {
  border-color: transparent;
  background: #e2e2e2;
}
.page-btn-box .page-btn.on {
  border-color: transparent;
  background: #22735e;
  color: #fff;
}
.page-btn-box.line .page-btn {
  border-color: #e5e5e5;
}
.page-btn-box.line .page-btn:hover {
  border-color: transparent;
}
.page-btn-box.line .page-btn.on {
  border-color: transparent;
}
@media (max-width: 1570px) {
  .page-btn-box {
    padding: 40px 15px 60px;
  }
}
@media (max-width: 1200px) {
  .page-btn-box {
    padding: 35px 10px 45px;
  }
}
@media (max-width: 992px) {
  .page-btn-box {
    padding: 30px 0 35px;
  }
  .page-btn-box .page-btn {
    min-width: 52px;
    font-size: 14px;
    line-height: 38px;
  }
}
