* {
  box-sizing: border-box;
  outline: 0;
}
@font-face {
  font-family: "myfont";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oswald-Regular";
  src: url("../fonts/Oswald-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OPPOSANS-B";
  src: url("../fonts/OPPOSANS-B.TTF");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'myfont4';
  src: url('../fonts/PPOPPINS-REGULAR.TTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Bold.ttf');
  src: url('../fonts/Oswald-Bold.eot');
  src: url('../fonts/Oswald-Bold.woff');
  src: url('../fonts/Oswald-Bold.woff2');
  font-weight: normal;
  font-style: normal
  
  /* IE9 Compat Modes */
}
@font-face {
  font-family: "OPPOSANS-B";
  src: url("../fonts/OPPOSANS-B.TTF");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
div,
p,
span,
i,
em {
  white-space: inherit !important;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #00a348;
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #ca8189;
  outline: none;
}
html {
  font-size: 100px;
}
@media (max-width: 1600px) {
  html {
    font-size: 80px!important;
  }
}
@media (max-width: 1450px) {
  html {
    font-size: 75px!important;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 72px!important;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 68px!important;
  }
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
          animation-name: fadeInUp2;
}
@-webkit-keyframes fadeInUp3 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  -webkit-animation-name: fadeInUp3;
          animation-name: fadeInUp3;
}
@-webkit-keyframes fadeInDown2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
            transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
            transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  -webkit-animation-name: fadeInDown3;
          animation-name: fadeInDown3;
}
@-webkit-keyframes fadeInDown3 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  -webkit-animation-name: fadeInDown2;
          animation-name: fadeInDown2;
}
@-webkit-keyframes fadeInLeft2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
            transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
          animation-name: fadeInLeft2;
}
@-webkit-keyframes fadeInRight2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  -webkit-animation-name: fadeInRight2;
          animation-name: fadeInRight2;
}
.scrollArrow1 {
  -webkit-animation-name: scrollArrow1;
          animation-name: scrollArrow1;
}
.scrollArrow {
  -webkit-animation-name: scrollArrow;
          animation-name: scrollArrow;
}
@-webkit-keyframes bmove1 {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bmove1 {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scrollArrow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scrollArrow1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes xuanzhuan {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@keyframes xuanzhuan {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.xuanzhuan {
  -webkit-animation-name: xuanzhuan;
          animation-name: xuanzhuan;
}
@-webkit-keyframes xuanzhuan2 {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes xuanzhuan2 {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
.xuanzhuan {
  -webkit-animation-name: xuanzhuan2;
          animation-name: xuanzhuan2;
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 0.16rem;
  position: relative;
  line-height: 1.5;
  min-width: 1259px;
  font-family: "微软雅黑", "arial";
}
@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.3);
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}
.container-2 {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1430px) {
  .container-2 {
    max-width: 1200px;
  }
}
.dw {
  z-index: -1;
  top: -1.7rem;
  position: absolute;
}
.header {
  height: 1rem;
  background: #fff;
  position: relative;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
  box-shadow: 0 0 0.2rem rgba(189, 223, 204, 0.5);
}
.header .logo {
  margin-top: 0.1rem;
  position: relative;
  display: inline-block;
}
.header .logo img {
  max-height: 0.8rem;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.header .tel {
  color: #fff;
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0.28rem;
  border-left: solid 1px rgba(255, 255, 255, 0.26);
  line-height: 0.94rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.24rem;
}
.header .tel img {
  max-height: 0.26rem;
}
.header .nav {
  width: 70%;
  float: right;
}
.header .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .nav li {
  font-size: 0.18rem;
  line-height: 1rem;
  position: relative;
}
.header .nav li > a {
  color: #333;
  display: block;
  position: relative;
}
.header .nav li > a:after {
  content: "";
  width: 0%;
  bottom: 0;
  left: 50%;
  opacity: 0;
  height: 0.02rem;
  position: absolute;
  background: #eb4100;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.header .nav li .subnav {
  z-index: 100;
  left: 50%;
  width: 100%;
  display: none;
  width: 1.8rem;
  top: 1rem;
  padding: 0.3rem 0;
  position: absolute;
  line-height: 0.3rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
}
.header .nav li .subnav a {
  display: block;
  text-align: center;
  font-size: 0.16rem;
  padding: 0 0.1rem;
}
.header .nav li:hover > a,
.header .nav .active > a {
  color: #00a348;
}
.header .nav li:hover > a:after,
.header .nav .active > a:after {
  left: 0;
  width: 100%;
  opacity: 1;
}
.fixed {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  position: fixed;
}
.header-search {
  float: right;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  padding-left: 0;
  margin-top: 0.2rem;
}
.header-search a {
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.header-search a:hover {
  opacity: 0.7;
}
.header-search img {
  vertical-align: middle;
  max-height: 0.2rem;
}
.header-search a {
  display: block;
  width: 0.54rem;
  height: 0.54rem;
  line-height: 0.48rem;
  text-align: center;
  background: #00a348;
  border-radius: 50%;
}
.header-search a img {
  max-height: 0.24rem;
}
.header .header-search .search {
  z-index: 19;
  position: relative;
}
.header-search .search .btn-search-max {
  z-index: 2;
  -webkit-transition: All 0.2s ease-in-out;
  transition: All 0.2s ease-in-out;
  position: relative;
}
.header-search .search .btn-search-max * {
  display: inline-block;
  vertical-align: middle;
}
.header-search .search .search-main {
  top: 0px;
  right: -20px;
  z-index: 9;
  width: 340px;
  display: none;
  padding: 20px;
  position: absolute;
}
@media (max-width: 640px) {
  .header-search .search .search-main {
    right: -140px;
    width: 280px;
  }
}
.header-search .search-container {
  background-color: #fff;
  padding-left: 0;
  overflow: hidden;
  position: relative;
  height: 42px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.header-search .search-container .form-control {
  text-align: left;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  height: 42px;
  vertical-align: top;
  padding: 10px 86px 10px 10px;
  -webkit-appearance: none;
  background-color: #ffffff;
}
.header-search .search-container .btn {
  top: 0;
  right: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  background: #00a348;
}
.header-search #search-closed {
  right: 0;
  top: 15px;
  max-width: 30px;
  position: absolute;
  cursor: pointer;
}
.banner {
  height: 90vh;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner img {
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.banner li {
  float: left;
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
}
.banner .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
  height: 90vh;
  position: relative;
}
.banner .textbox {
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  top: 50%;
  color: #fff;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner .tit {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 0.7rem;
}
.banner .txt {
  font-size: 0.2rem;
  padding-top: 0.3rem;
}
.banner .more {
  margin-top: 0.6rem;
  text-align: center;
}
.banner .more a {
  color: #fff;
  height: 0.5rem;
  line-height: 0.5rem;
  min-width: 1.4rem;
  display: inline-block;
  background: #eb4100;
  border-radius: 0.05rem;
  -webkit-transition: color .5s;
          transition: color .5s;
}
.banner .more:hover a {
  background: #00a348;
}
.banner .swiper-pagination {
  width: 100%;
  opacity: 1;
  text-align: center;
  bottom: 0.5rem;
}
.banner .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 0.15rem;
  height: 0.15rem;
  -webkit-transition: all 335ms ease;
          transition: all 335ms ease;
  margin-right: 0.3rem;
}
.banner .swiper-pagination-bullet-active {
  background: #eb4100;
}
@media (max-width: 1300px) {
  .banner {
    height: 560px;
  }
  .banner .box {
    height: 560px;
  }
  .banner .pic {
    height: 560px;
  }
}
.index-title {
  position: relative;
  text-align: center;
}
.index-title .en {
  color: #888888;
  opacity: 0.07;
  line-height: 1rem;
  font-size: 1rem;
  font-family: "Oswald";
  text-transform: uppercase;
  margin-top: -0.85rem;
  position: relative;
}
.index-title .cn {
  z-index: 2;
  color: #212529;
  position: relative;
  font-size: 0.42rem;
  font-weight: 700;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.index-arrow {
  width: 1.4rem;
  position: relative;
}
.index-arrow img {
  max-height: 1.4rem;
  -webkit-animation: 4s spin infinite linear;
          animation: 4s spin infinite linear;
}
.index-arrow:after {
  content: ">";
  top: 50%;
  left: 50%;
  font-size: 0.24rem;
  font-weight: 700;
  font-family: "宋体";
  color: #00d65d;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index-product {
  overflow: hidden;
  padding: 1rem 0;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.index-product2 {
  padding-top:0;
}
.index-product .list .index-title:after {
  left: 50%;
  content: "";
  bottom: 0.1rem;
  width: 0.5rem;
  height: 2px;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #00a348;
}
.index-product .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  margin: 0 -0.17rem;
}
.index-product .list li:first-child {
  width: 66.6666%;
}
.index-product .list li:first-child .item {
  width: 100%;
}
.index-product .list li:first-child .text {
  width: 35%;
  float: left;
  text-align: left;
  padding-top: 0.5rem;
}
.index-product .list li:first-child .more {
  margin-top: 0.7rem;
}
.index-product .list li:first-child .pic {
  width: 50%;
  float: right;
}
.index-product .list li {
  width: 33.3333%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.17rem;
  padding-top: 0.34rem;
}
.index-product2 .list li {
  width: 33.3333%!important;
}
.index-product .list li .item {
  min-height: 100%;
  width: 100%;
  padding: 0.5rem;
  padding-bottom: 0.1rem;
  background-repeat: no-repeat;
  background-image: url(../images/pro1-bg.jpg);
  background-position: top left;
  background-size: cover;
}
.index-product2 .list li .item {
  padding: 0;
  background: none;
}
.index-product .list li .tit {
  color: #333;
  font-size: 0.22rem;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
}
.index-product .list li .txt {
  color: #777;
  font-size: 0.18rem;
  max-height: 0.6rem;
  line-height: 0.3rem;
  overflow: hidden;
  margin-top: 0.1rem;
}
.index-product .list li .more {
  padding-top: 0.1rem;
  font-size: 0.14rem;
  color: #00a348;
  font-weight: lighter;
}
.index-product .list li .pic {
  overflow: hidden;
  position: relative;
}
.index-product .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 72.97297297%;
}
.index-product .list li .pic img {
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
}
.index-product .list li:hover .tit {
  color: #00a348;
}
.index-product .list li:hover .pic img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.index-product .list-2 {
  position: relative;
  margin-top: 0.8rem;
}
.index-product .list-2 .index-title {
  text-align: left;
}
.index-product .list-2 .line {
  top: 1rem;
  left: 0.9rem;
  height: 0.18rem;
  background: #e5f7f4;
  width: 83%;
  position: absolute;
}
.index-product .list-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-product .list-2 li {
  z-index: 3;
  min-width: 2rem;
  margin-top: 0.7rem;
  position: relative;
}
.index-product .list-2 li .item {
  width: 2.2rem;
  height: 0.8rem;
  padding: 0.06rem;
  border-radius: 0.6rem;
  background: #c7e9ca;
  -webkit-transition: background-color 500ms ease;
          transition: background-color 500ms ease;
}
.index-product .list-2 li .icon {
  top: 0.15rem;
  left: 0.15rem;
  width: 0.38rem;
  height: 0.38rem;
  background: #dcf5e7;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  border: solid 1px #519246;
}
.index-product .list-2 li .borderk {
  padding-left: 0.6rem;
  background: #fff;
  height: 100%;
  border-radius: 0.75rem;
  position: relative;
  border: solid 1px #00a348;
}
.index-product .list-2 li .tit {
  color: #264e0d;
  font-size: 0.2rem;
  padding-top: 0.18rem;
  -webkit-transition: color 500ms linear;
          transition: color 500ms linear;
}
.index-product .list-2 li i {
  left: -0.45rem;
  top: 50%;
  width: 0.32rem;
  height: 0.32rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-style: normal;
  position: absolute;
}
.index-product .list-2 li:nth-child(3) .borderk,
.index-product .list-2 li:nth-child(4) .borderk,
.index-product .list-2 li:nth-child(5) .borderk {
  padding-left: 0.8rem;
}
.index-product .list-2 li:nth-child(3) .icon,
.index-product .list-2 li:nth-child(4) .icon,
.index-product .list-2 li:nth-child(5) .icon {
  left: 0.3rem;
}
.index-product .list-2 li:hover .item {
  color: #fff;
  background: #00a348;
}
.index-product .list-2 li:hover .tit {
  color: #00a348;
}
.index-about {
  overflow: hidden;
  background-color: #f0f7ff;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.index-about .leftbox {
  width: 54.4%;
  float: left;
  padding-top: 1.3rem;
}
.index-about .leftbox .text {
  line-height: 0.3rem;
  padding-right: 1.5rem;
}
.index-about .leftbox .text h1 {
  color: #000;
  padding-bottom: 0.5rem;
  line-height: 0.7rem;
  font-size: 0.5rem;
  font-weight: normal;
}
.index-about .leftbox .text h1 strong {
  color: #00a348;
}
.index-about .leftbox .index-arrow {
  margin-top: 0.3rem;
}
.index-about .right {
  width: 45.6%;
  float: right;
  position: relative;
}
.index-about .right p {
  width: 123.5%;
}
.index-about .right .vbtn {
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  position: absolute;
  border-radius: 0.05rem;
  border-left: solid 0.7rem #ffffff;
  border-top: solid 0.4rem transparent;
  border-bottom: solid 0.4rem transparent;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-animation: scrollArrow  700ms linear infinite alternate;
          animation: scrollArrow  700ms linear infinite alternate;
}
.index-about .numlist {
  z-index: 4;
  margin-top: 0.6rem;
  position: relative;
}
.index-about .numlist ul {
  width: 115%;
  height: 2rem;
  background: #fff;
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.05);
}
.index-about .numlist li {
  width: 33.333%;
  float: left;
  padding-left: 0.6rem;
  height: 2rem;
  padding-top: 0.3rem;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
  border-left: solid 1px #eee;
}
.index-about .numlist li .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
  display: inline-block;
}
.index-about .numlist li .ic1 {
  -webkit-transition: all 400ms ease;
          transition: all 400ms ease;
}
.index-about .numlist li .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.index-about .numlist li .num {
  padding-top: 0.1rem;
  font-family: "myfont";
  color: #eb4100;
}
.index-about .numlist li .num span {
  font-size: 0.44rem;
  line-height: 0.44rem;
}
.index-about .numlist li .num em,
.index-about .numlist li .num i {
  font-style: normal;
}
.index-about .numlist li .bt {
  color: #333;
  margin-top: 0.1rem;
}
.index-about .numlist li:hover {
  background: #00a348;
}
.index-about .numlist li:hover .bt,
.index-about .numlist li:hover .num {
  color: #fff;
}
.index-about .numlist li:hover .ic1 {
  opacity: 0;
}
.index-about .numlist li:hover .ic2 {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.index-about .numlist li:first-child {
  border-left: 0;
}
.index-hyyy {
  padding: 1rem 0 0 0;
  position: relative;
}
.index-hyyy .index-title:after {
  left: 50%;
  content: "";
  bottom: 0.1rem;
  width: 0.5rem;
  height: 2px;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #00a348;
}
.index-hyyy .tabbox {
  margin-top: 0.6rem;
  height: 7.5rem;
  overflow: hidden;
  position: relative;
}
.index-hyyy .tabbox li {
  height: 7.5rem;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.index-hyyy .tabcot {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 7.5rem;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  -webkit-transition: all 2000ms linear;
          transition: all 2000ms linear;
}
.index-hyyy .tabcot.show {
  z-index: 2;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.index-hyyy .tabnav {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.index-hyyy .tabnav ul {
  height: 7.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  text-align: center;
}
.index-hyyy .tabnav li:hover:after,
.index-hyyy .tabnav .swiper-slide-thumb-active:after {
  opacity: 1;
}
.index-hyyy .tabnav li:hover .icon:after,
.index-hyyy .tabnav .swiper-slide-thumb-active .icon:after {
  opacity: 1;
  width: 0.76rem;
}
.index-hyyy .tabnav li:hover .tit,
.index-hyyy .tabnav .swiper-slide-thumb-active .tit {
  margin-top: 0.6rem;
}
.index-hyyy .tabnav li:hover .text,
.index-hyyy .tabnav .swiper-slide-thumb-active .text {
  bottom: 0.1rem;
}
.index-hyyy .tabnav li:hover .text .more,
.index-hyyy .tabnav .swiper-slide-thumb-active .text .more {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  margin-top: 1.8rem;
  margin-bottom: 1.1rem;
}
.index-hyyy .tabnav li {
  width: 14.28571429%;
  position: relative;
}
.index-hyyy .tabnav li:after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 3;
  -webkit-transition: all 1000ms ease;
          transition: all 1000ms ease;
  background: rgba(0, 163, 72, 0.8);
}
.index-hyyy .tabnav li .item {
  height: 100%;
  z-index: 4;
  width: 100%;
  text-align: center;
  bottom: 0rem;
  display: block;
  position: absolute;
}
.index-hyyy .tabnav li .text {
  left: 0;
  width: 100%;
  bottom: 0.1rem;
  position: absolute;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
}
.index-hyyy .tabnav li .icon {
  position: relative;
}
.index-hyyy .tabnav li .icon:after {
  content: "";
  bottom: -0.1rem;
  left: 50%;
  opacity: 0;
  background: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  height: 0.02rem;
  width: 0rem;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
}
.index-hyyy .tabnav li .icon img {
  max-height: 0.8rem;
}
.index-hyyy .tabnav li .tit {
  color: #fff;
  margin-top: 0.2rem;
  font-size: 0.24rem;
  line-height: 0.4rem;
  height: 0.4rem;
  overflow: hidden;
}
.index-hyyy .tabnav li .more {
  opacity: 0;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  margin-top: 0.3rem;
  position: relative;
}
.index-hyyy .tabnav li .more:before {
  content: "";
  left: 0.2rem;
  height: 0.02rem;
  width: 0.54rem;
  background: #fff;
  display: inline-block;
}
.index-hyyy .tabnav li .more:after {
  content: "";
  top: -0.08rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  height: 0.54rem;
  width: 0.02rem;
  background: #fff;
  position: absolute;
}
.index-news {
  padding: 1rem 0;
}
.index-news .index-title {
  position: relative;
  text-align: left;
}
.index-news .index-arrow {
  right: 0;
  top: -0.4rem;
  position: absolute;
}
.index-news .index-arrow a{
	display:block;
	position:relative;
	z-index:2;
}
.index-news ul {
  text-align: center;
  padding-top: 0.8rem;
}
.index-news li {
  text-align: left;
  width: 33.3333%;
}
.index-news li a {
  display: block;
}
.index-news li .year {
  font-family: "Poppins";
}
.index-news li .year span {
  line-height: 0.26rem;
  color: #00a348;
  min-width: 0.9rem;
  height: 0.32rem;
  text-align: center;
  padding: 0 0.05rem;
  margin-right: 0.1rem;
  border-radius: 0.15rem;
  border: solid 3px #00a348;
  display: inline-block;
}
.index-news li .tit {
  margin: 0.3rem 0;
  color: #2e2e2e;
  font-weight: 700;
  height: 0.64rem;
  -webkit-transition: color .5s;
          transition: color .5s;
  line-height: 0.32rem;
  font-size: 0.24rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-news li .pic {
  overflow: hidden;
  position: relative;
}
.index-news li .pic:after {
  content: "";
  display: block;
  padding-bottom: 61.99095023%;
}
.index-news li .pic img {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
}
.index-news li .more {
  font-size: 0.14rem;
  margin-top: 0.4rem;
  color: #141414;
}
.index-news li .more i {
  padding-right: 0.1rem;
  display: inline-block;
  font-style: normal;
  font-family: "宋体";
  font-weight: 700;
  font-size: 0.18rem;
}
.index-news li:hover .tit,
.index-news li:hover .more {
  color: #00a348;
}
.index-news li:hover .pic img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.footer {
  padding-top: 0.6rem;
  background: #1a2331;
}
.footer a {
  -webkit-transition: all 334ms ease;
          transition: all 334ms ease;
}
.footer a:hover {
  opacity: 0.8;
  color: #fff !important;
  text-decoration: underline;
}
.footer .input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.4rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.footer .input .h3 {
  width: 40%;
  font-size: 0.26rem;
  font-weight: bold;
  color: #ffffff;
}
.footer .input .list {
  width: 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 1.2rem;
  position: relative;
}
.footer .input .list .li {
  width: 33.33333333%;
  padding-left: 0.1rem;
}
.footer .input input {
  width: 100%;
  height: 0.45rem;
  padding: 0 0.1rem 0 0.16rem;
  background: #fff;
  font-size: 0.14rem;
  border: 0;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer .input a {
  width: 1.2rem;
  line-height: 0.45rem;
  text-align: center;
  background: #00a348;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: #fff;
}
.footer-bottom {
  padding-top: 0.65rem;
  padding-bottom: 0.56rem;
}
.footer-bottom .flogo {
  max-height: 0.8rem;
}
.footer-bottom .footer-left {
  float: left;
  width: 30%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.14rem;
}
.footer-bottom .footer-left .f1 {
  margin-top: 0.4rem;
  margin-bottom: 0.15rem;
  background: url(../images/f1.png) no-repeat 0 0px;
  background-size: 0.55rem;
  padding-left: 0.72rem;
}
.footer-bottom .footer-left .f1 span {
  display: block;
  color: #c3c3c3;
}
.footer-bottom .footer-left .f1 p {
  color: #fff;
  font-size: 0.3rem;
  line-height: 0.4rem;
  font-family: 'Oswald';
}
.footer-bottom .footer-left .f3 p {
  margin-top: 0.05rem;
}
.footer-bottom .footer-left .f3 .t1 {
  padding-left: 0.3rem;
  position: relative;
}
.footer-bottom .footer-left .f3 .t1 img {
  top: 0.04rem;
  left: 0;
  position: absolute;
  max-height: 0.17rem;
}
.footer-bottom .footer-left .f3 .t1 a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom .footer-left .f3 .add {
  padding-left: 0.95rem;
}
.footer-bottom .footer-left .f3 .yy a {
  color: #00a348;
}
.footer-bottom .footer-left .socialMedia {
  margin-top: 0.4rem;
}
.footer-bottom .footer-left .socialMedia .list li {
  display: inline-block;
  padding: 0 0.03rem 0 0;
}
.footer-bottom .footer-left .socialMedia .list .box {
  display: block;
  cursor: pointer;
  position: relative;
}
.footer-bottom .footer-left .socialMedia .list .icon {
  display: block;
  width: 0.39rem;
  height: 0.39rem;
  border-radius: 50%;
  border: solid 1px rgba(255, 255, 255, 0.2);
  background-size: 0.38rem !important;
}
.footer-bottom .footer-left .socialMedia .list .down {
  display: none;
  color: #666;
  font-size: 0.14rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.2rem;
  cursor: initial;
  padding-bottom: 0.2rem;
  position: absolute;
  top: -1.2rem;
  left: 50%;
  margin-left: -0.6rem;
}
.footer-bottom .footer-left .socialMedia .list .down .txt {
  margin-right: 0.1rem;
}
.footer-bottom .footer-left .socialMedia .list .down .ewm {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
.footer-bottom .footer-left .socialMedia .list .box:hover .icon {
  opacity: 1;
}
.footer-bottom .footer-left .socialMedia .list .box:hover .down {
  display: block;
}
.footer-bottom .footer-list {
  float: right;
  width: 68%;
}
.footer-bottom .footer-list ul {
  min-height: 1.9rem;
}
.footer-bottom .footer-list ul li {
  width: 14.8%;
  float: left;
}
.footer-bottom .footer-list ul li a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  max-width: 100%;
  font-size: 0.18rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  padding-right: 0.05rem;
  padding-bottom: 0.17rem;
}
.footer-bottom .footer-list ul li ul li {
  padding-left: 0.14rem;
  position: relative;
  width: 100% !important;
}
.footer-bottom .footer-list ul li ul li:before {
  top: 0.14rem;
  left: 0;
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  background: #eb4100;
  position: absolute;
}
.footer-bottom .footer-list ul li ul li a {
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #ffffff;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  position: relative;
}
.footer-bottom .footer-list ul li:nth-child(3) {
  width: 17%;
}
.footer-bottom .footer-list ul li:last-child {
  width: 8%;
}
.footer-copyright {
  text-align: left;
  padding: 0.2rem 0;
  font-size: 0.13rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.49);
}
.footer-copyright a {
  font-size: 0.13rem;
  color: rgba(255, 255, 255, 0.49);
}
.footer-copyright .fr {
  float: right;
}
.inside-banner {
  position: relative;
}
.inside-banner .pic img {
  width: 100%;
}
.inside-banner .textbox {
  top: 50%;
  left: 0;
  z-index: 2;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-70%);
      -ms-transform: translateY(-70%);
          transform: translateY(-70%);
}
.inside-banner .tit {
  color: #fff;
  font-size: 0.48rem;
  text-shadow: 2px 0 2px rgba(0, 0, 0, 0.75);
}
.inside-banner .textbox-2 {
  left: 0;
  z-index: 2;
  width: 100%;
  top: 1.4rem;
  position: absolute;
}
.inside-banner .textbox-2 .container {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-banner .textbox-2 .container h1 {
  width: 46%;
  padding-left: 0.4rem;
  font-size: 0.42rem;
  font-weight: normal;
  text-shadow: 0 0 1px #087ba9;
}
.inside-banner .textbox-2 .container h1 span {
  font-weight: 700;
  color: #00d65d;
}
.inside-menu {
  z-index: 10;
  height: 0.9rem;
  margin-top: -0.9rem;
  position: relative;
}
.inside-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
}
.inside-menu li {
  width: 50%;
  overflow: hidden;
  height: 0.6rem;
  text-align: center;
  position: relative;
  line-height: 0.6rem;
}
.inside-menu li:after {
  content: "";
  width: 0;
  bottom: 0;
  left: 50%;
  opacity: 0;
  position: absolute;
  height: 0.03rem;
  background: #00a348;
  -webkit-transition: all 500ms linear;
          transition: all 500ms linear;
}
.inside-menu li:hover:after,
.inside-menu .active:after {
  opacity: 1;
  width: 100%;
  left: 0;
}
.inside-menu .active a {
  color: #00a348;
}
.inside-bg {
  overflow: hidden;
  min-height: 6rem;
  position: relative;
  background: url(../images/nbg.jpg) no-repeat center top;
  background-size: cover;
}
.inside-bg .container-2 {
  z-index: 8;
  position: relative;
}
.inside-bg .topimg {
  top: 1.2rem;
  left: 0;
  position: absolute;
}
.inside-bg .topimg img {
  max-height: 8rem;
}
.inside-bg .botimg {
  bottom: 0;
  right: 0;
  position: absolute;
}
.inside-bg .botimg img {
  max-height: 5.7rem;
}
.inside-news .container-2 {
  overflow: hidden;
}
.inside-news ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
  margin: 0 -0.35rem;
  padding-top: 0;
  position: relative;
}
.inside-news ul:after {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.12rem;
  background: #fff;
  position: absolute;
}
.inside-news li {
  text-align: left;
  padding: 0.35rem;
  border-bottom: solid 0.12rem #f8f8f8;
}
.inside-news li .more {
  margin-top: 0.3rem;
}
.inside-newsshow {
  font-size: 0.18rem;
  line-height: 0.36rem;
  padding: 1rem 0;
  background: #f7f7f7;
}
.inside-newsshow .container-2 {
  background: #fff;
  padding: 0.6rem;
}
.inside-newsshow h1 {
  color: #2e2e2e;
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.5rem;
  position: relative;
}
.inside-newsshow h1:before {
  content: "";
  top: 0;
  left: -0.6rem;
  width: 0.06rem;
  height: 0.34rem;
  position: absolute;
  background: #00a348;
}
.inside-newsshow .info {
  color: #333;
  line-height: 0.2rem;
  padding: 0.4rem 0;
  font-size: 0.14rem;
  text-align: center;
  border-bottom: solid 1px #e5e5e5;
  font-family: "Poppins";
}
.inside-newsshow .info img {
  margin-top: 0rem;
  margin-right: 0.1rem;
  max-height: 0.19rem;
}
.inside-newsshow .info span {
  padding: 0 1.5rem;
  display: inline-block;
}
.inside-newsshow .f22 {
  color: #2e2e2e;
  text-align: center;
  font-size: 0.22rem;
  font-weight: 700;
  padding: 0.5rem 0 0.3rem 0;
}
.inside-newsshow dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-newsshow dt {
  width: 38%;
}
.inside-newsshow dd {
  width: 62%;
}
.inside-newsshow .share {
  font-size: 0.16rem;
  text-align: right;
  font-weight: lighter;
  padding-top: 1rem;
}
.inside-newsshow .share a {
  margin-left: 0.1rem;
  display: inline-block;
}
.inside-newsshow .share img {
  max-height: 0.31rem;
}
.inside-pagenews {
  padding-top: 0.6rem;
}
.inside-pagenews li {
  overflow: hidden;
  height: 0.4rem;
  line-height: 0.39rem;
  font-size: 0.16rem;
  border-top: dashed 1px #e8e8e8;
}
.inside-pagenews li a {
  color: #333;
  padding-left: 0.1rem;
}
.inside-pagenews li span {
  color: #fff;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  min-width: 0.6rem;
  background: #a2a2a2;
  display: inline-block;
}
.inside-pagenews li i {
  color: #666;
  font-style: normal;
  font-size: 0.14rem;
  float: right;
  padding-left: 0.2rem;
}
.inside-pagenews li:first-child {
  border-top: 0;
}
.inside-pagenews li:hover a {
  color: #00a348;
}
.inside-pagenews li:hover i {
  color: #00a348;
}
.inside-tag {
  color: #333;
  position: relative;
  margin-top: 0.2rem;
  font-size: 0.14rem;
  border-top: solid 1px #00a348;
}
.inside-tag a {
  color: #333;
  padding: 0 0.1rem;
  display: inline-block;
}
.inside-tag a:hover {
  color: #00a348;
}
.inside-tag .fanhui {
  right: 0;
  top: 0;
  color: #fff;
  font-size: 0.16rem;
  text-align: center;
  min-width: 0.86rem;
  -webkit-transition: color 500ms ease;
          transition: color 500ms ease;
  background: #00a348;
  position: absolute;
}
.inside-tag .fanhui a {
  color: #fff;
  display: block;
}
.inside-tag .fanhui:hover {
  background: #00b34f;
}
.inside-xg-news {
  padding-bottom: 0;
}
.inside-xg-news .container-2 {
  padding: 0;
  background: transparent;
}
.inside-application {
  padding: 1rem 0;
  background: none;
}
.inside-application li:first-child {
  margin-top: 0;
}
.inside-application li {
  position: relative;
  margin-top: 0.4rem;
}
.inside-application li .item {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.inside-application li .picbox {
  width: 48.8%;
  position: relative;
}
.inside-application li .picbox .arrow-2 {
  right: 0;
  bottom: 0.1rem;
  z-index: 2;
  position: absolute;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-application li .picbox .arrow-2 img {
  max-height: 0.41rem;
}
.inside-application li .pic {
  overflow: hidden;
  position: relative;
}
.inside-application li .pic img {
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.inside-application li .pic:after {
  content: "";
  display: block;
  padding-bottom: 54.3758967%;
}
.inside-application li .pic:before {
  top: 0;
  right: 0;
  z-index: 2;
  content: "";
  height: 100%;
  position: absolute;
  width: 0.76rem;
  background: rgba(0, 163, 72, 0.75);
}
.inside-application li .text {
  width: 51.2%;
  padding: 0.7rem;
  padding-bottom: 0;
  background: url(../images/application-bg.jpg);
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-application li .tit {
  overflow: hidden;
  font-size: 0.3rem;
  line-height: 0.4rem;
  height: 0.4rem;
  color: #2e2e2e;
  -webkit-transition: color 500ms linear;
          transition: color 500ms linear;
}
.inside-application li .txt {
  color: #666;
  overflow: hidden;
  height: 0.9rem;
  line-height: 0.3rem;
  margin-top: 0.3rem;
}
.inside-application li .arrow {
  width: 0.9rem;
  height: 0.28rem;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 0.2rem;
  vertical-align: middle;
  border: solid 1px #00a348;
}
.inside-application li .arrow img {
  vertical-align: middle;
}
.inside-application li:hover .pic img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.inside-application li:hover .tit {
  color: #00a348;
}
.inside-application li:hover .text {
  padding-top: 0.9rem;
}
.inside-application li:hover .picbox .arrow-2 {
  bottom: 0.5rem;
}
.inside-application li:nth-child(2n) .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.inside-application li:nth-child(2n) .picbox .arrow-2 {
  left: 0;
  right: auto;
  position: absolute;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.inside-application li:nth-child(2n) .picbox .arrow-2 img {
  max-height: 0.4rem;
}
.inside-application li:nth-child(2n) .pic:before {
  right: auto;
  left: 0;
}
.inside-product {
  padding: 1rem 0;
  background: none;
}
.inside-product li:first-child {
  margin-top: 0;
}
.inside-product li {
  background: #fff;
  margin-top: 0.56rem;
  -webkit-transition: background-color 500ms linear;
          transition: background-color 500ms linear;
  border: solid 1px rgba(255, 255, 255, 0);
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.1);
}
.inside-product li a {
  display: block;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.inside-product li .pic {
  width: 30.7%;
  overflow: hidden;
  position: relative;
}
.inside-product li .pic:after {
  content: "";
  display: block;
  padding-bottom: 61.36363636%;
}
.inside-product li .pic img {
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
}
.inside-product li .text {
  width: 69.3%;
  padding: 0.1rem 0.5rem;
}
.inside-product li .tit {
  color: #2e2e2e;
  overflow: hidden;
  height: 1rem;
  padding-right: 0.7rem;
  line-height: 0.99rem;
  font-size: 0.32rem;
  position: relative;
  border-bottom: solid 1px #eaeaea;
}
.inside-product li .tit:after {
  content: "";
  right: 0.25rem;
  top: 0.44rem;
  position: absolute;
  background: url(../images/arrow-5.png) no-repeat center center;
  width: 0.3rem;
  height: 0.2rem;
  background-size: cover;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-product li .txt {
  color: #666;
  height: 0.6rem;
  overflow: hidden;
  line-height: 0.3rem;
  margin-top: 0.3rem;
}
.inside-product li:hover {
  background: #00a348;
  border-color: #bbe2cc;
}
.inside-product li:hover .tit,
.inside-product li:hover .txt {
  color: #fff;
}
.inside-product li:hover .tit {
  border-color: rgba(255, 255, 255, 0.38);
}
.inside-product li:hover .tit:after {
  background: url(../images/arrow-6.png) no-repeat center center;
}
.inside-product li:hover .pic img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.inside-leftpro {
  width: 20.5%;
  float: left;
  padding-bottom: 0.2rem;
  min-height: 300px;
}
.inside-leftpro .bt {
  color: #fff;
  height: 0.9rem;
  padding: 0 0.25rem;
  padding-top: 0.3rem;
  font-size: 0.28rem;
  background: #00a348;
  font-weight: 700;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
}
.classifyPro .list {
  background: #fff;
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
}
.classifyPro li {
  position: relative;
}
.classifyPro .title {
  -webkit-transition: .3s;
          transition: .3s;
  height: 0.6rem;
  position: relative;
  line-height: 0.56rem;
}
.classifyPro .title a {
  display: block;
  position: relative;
  max-width: 100%;
  color: #333333;
  font-size: 0.2rem;
  font-weight: normal;
  vertical-align: middle;
  padding-left: 0.25rem;
  font-weight: 700;
  padding-right: 0.4rem;
  height: 0.6rem;
  overflow: hidden;
}
.classifyPro .title:before {
  top: 0;
  left: -0.06rem;
  content: "";
  opacity: 0;
  height: 0.6rem;
  width: 3.07rem;
  position: absolute;
  -webkit-transition: all 334ms ease;
          transition: all 334ms ease;
  background: url(../images/drop-hover.png) no-repeat center center;
  background-size: cover;
}
.classifyPro .title span {
  z-index: 2;
  display: block;
  position: relative;
}
.classifyPro .has > .title a {
  display: block;
}
.classifyPro .list .icon {
  text-align: center;
  border-radius: 50%;
  line-height: 0.16rem;
  border: solid 1px #383838;
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
  top: 0.2rem;
  right: 0.25rem;
  cursor: pointer;
  -webkit-transition: .3s;
          transition: .3s;
  font-family: "宋体";
  font-style: normal;
}
.classifyPro .active > .title a {
  color: #fff!important;
}
.classifyPro .active > .title:before {
  opacity: 1;
}
.classifyPro .active .icon {
  color: #fff;
  border: solid 1px #fff;
}
.classifyPro .down > .title a {
  color: #fff!important;
}
.classifyPro .down > .title a:before {
  opacity: 1;
}
.classifyPro .down > .title:before {
  opacity: 1;
}
.classifyPro .down .icon {
  color: #fff;
  border: solid 1px #fff;
}
.classifyPro .list .list {
  padding: 0.1rem 0px 0.2rem 0.3rem;
  display: none;
}
.classifyPro .list .list .title {
  padding: 0;
  line-height: 0.24rem;
  height: auto;
}
.classifyPro .list .list .title a {
  height: auto;
  color: #333;
  padding: 0;
  margin: 0.15rem !important;
  font-size: 0.16rem;
  font-weight: normal;
  padding-right: 0.4rem;
  position: relative;
}
.classifyPro .list .list .title a:before {
  display: none!important;
}
.classifyPro .list .list .title a:after {
  content: ">";
  color: #333;
  right: 0.15rem;
  top: 0;
  opacity: 1;
  font-family: "宋体";
  position: absolute;
  font-size: 0.18rem;
  font-weight: 600;
}
.classifyPro .list .list .title a:hover {
  color: #ee4001;
}
.classifyPro .list .list .title a:hover:after {
  color: #ee4001;
}
.classifyPro .list .list .title:before {
  display: none!important;
}
.classifyPro .list .list .cur a {
  color: #ee4001;
}
.classifyPro .list .list .cur a:after {
  color: #ee4001;
}
.classifyPro .list .list li:last-child .title {
  border: none;
}
.inside-proright {
  width: 73%;
  float: right;
}
.inside-proright .list {
  background: #fff;
  text-align: center;
  padding: 0.5rem 0.2rem;
}
.inside-proright .list .tu {
  max-width: 6.5rem;
  margin: 0 auto;
  position: relative;
}
.inside-proright .list .tu:after {
  content: "";
  display: block;
  padding-bottom: 61.53846154%;
}
.inside-proright .list .swiper-button-prev {
  left: 0.2rem;
}
.inside-proright .list .swiper-button-next {
  right: 0.3rem;
}
.inside-proright .list .swiper-button-prev:after,
.inside-proright .list .swiper-button-next:after {
  color: #3c3c3c;
  font-size: 0.3rem;
}
.inside-proright .list .swiper-pagination-bullets {
  bottom: 20px;
}
.inside-proright .list .swiper-pagination-bullet-active {
  background: #00a348;
}
.inside-proright .textbox {
  margin: 0 0.3rem;
  padding: 0.4rem 0.1rem;
  border-bottom: solid 0.12rem #ebebeb;
}
.inside-proright .textbox h1 {
  color: #2e2e2e;
  font-size: 0.36rem;
  font-weight: normal;
}
.inside-proright .textbox .button {
  margin-top: 0.3rem;
}
.inside-proright .textbox .button a {
  color: #fff;
  margin-left: 0.2rem;
  font-size: 0.2rem;
  border-radius: 0.1rem;
  text-align: center;
  height: 0.52rem;
  line-height: 0.52rem;
  min-width: 2.2rem;
  display: inline-block;
  background: #00a348;
  -webkit-transition: background-color 500ms ease;
          transition: background-color 500ms ease;
}
.inside-proright .textbox .button a:first-child {
  margin-left: 0;
}
.inside-proright .textbox .button img {
  margin-bottom: 0.05rem;
  margin-right: 0.1rem;
  vertical-align: middle;
  max-height: 0.31rem;
}
.inside-proright .textbox .button a:hover {
  background: #ee4001;
}
.inside-proright .box-2 {
  margin: 0 0.3rem;
  padding: 0.4rem 0.1rem;
  padding-top: 0;
  font-size: 0.18rem;
  line-height: 0.36rem;
}
.inside-proright .box-2 .f24 {
  padding: 0.3rem 0;
  padding-bottom: 0.2rem;
  color: #00a348;
  font-size: 0.24rem;
}
.inside-proright .box-3 {
  overflow: hidden;
  position: relative;
  margin-top: 0.6rem;
  background: #fff;
  margin: 0 0.4rem;
  border: solid 1px #00a348;
  border-bottom: solid 0.06rem #00a348;
}
.inside-proright .box-3 .pic {
  width: 44%;
  float: left;
}
.inside-proright .box-3 .mess {
  width: 56%;
  float: right;
  padding: 0.5rem 0.3rem;
}
.inside-proright .box-3 .mess .tag {
  padding-bottom: 0.3rem;
  font-size: 0.18rem;
  color: #333;
}
.inside-proright .box-3 .mess .tag img {
  margin-right: 0.1rem;
}
.inside-proright .box-3 .mess li:first-child {
  padding-top: 0;
}
.inside-proright .box-3 .mess li {
  padding-top: 0.2rem;
}
.inside-proright .box-3 .mess li p {
  width: 50%;
  float: left;
  text-align: left;
  padding: 0 0.15rem;
  position: relative;
}
.inside-proright .box-3 .mess li label {
  color: #080f15;
  display: block;
  margin-bottom: 0.1rem;
}
.inside-proright .box-3 .mess li em {
  color: #de021c;
  font-style: normal;
}
.inside-proright .box-3 .mess li input[type="text"],
.inside-proright .box-3 .mess li textarea,
.inside-proright .box-3 .mess li select {
  width: 100%;
  height: 0.52rem;
  line-height: 0.5rem;
  border-radius: 0.05rem;
  padding: 0 0.25rem;
  font-size: 0.16rem;
  color: #666;
  font-family: arial;
  background-color: #fff;
  border: solid 1px #cacaca;
  -webkit-transition: all 334ms ease;
          transition: all 334ms ease;
}
.inside-proright .box-3 .mess li input[type="text"]:focus,
.inside-proright .box-3 .mess li textarea:focus {
  border-color: #00a348;
}
.inside-proright .box-3 .mess li input[type="submit"] {
  color: #fff;
  border: 0;
  width: 1.7rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  font-size: 0.18rem;
  background: #00a348;
  margin-top: 0.2rem;
}
.inside-proright .box-3 .mess li input[type="submit"]:hover {
  background: #eb4100;
}
.inside-proright .box-3 .mess .textarea p {
  width: 100%;
  float: none;
}
.inside-proright .box-3 .mess .textarea textarea {
  height: 1.2rem;
}
.inside-product-show {
  padding: 1rem 0;
  background: #F7F7F7;
}
.inside-product-show .inside-title {
  text-align: left;
  padding-bottom: 0.5rem;
}
.inside-product-show .inside-xg-product {
  padding-top: 0.7rem;
  margin-top: 0.9rem;
  border-top: solid 0.12rem #ebebeb;
}
.inside-product-show .inside-xg-product li .pic {
  width: 42%;
}
.inside-product-show .inside-xg-product li .text {
  width: 58%;
}
.inside-job {
  padding: 1rem 0;
}
.inside-job .container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-job .textbox {
  width: 43%;
  padding-top: 0.5rem;
  font-size: 0.18rem;
  line-height: 0.36rem;
}
.inside-job .tit {
  color: #272727;
  font-size: 0.52rem;
  font-weight: normal;
  line-height: 0.6rem;
  padding-top: 0.15rem;
}
.inside-job .tit span {
  color: #00a348;
}
.inside-job .txt {
  margin-top: 0.4rem;
}
.inside-job .pic {
  width: 42%;
}
.inside-job-2 {
  color: #fff;
  height: 8.5rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-attachment: fixed;
  background-image: url(../images/join-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inside-job-2 .tit {
  font-size: 0.52rem;
  font-weight: normal;
  line-height: 0.6rem;
  padding-top: 0.15rem;
}
.inside-job-2 .tit span {
  color: #00a348;
}
.inside-job-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 15%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
}
.inside-job-2 li {
  width: 50%;
  text-align: center;
  border-left: solid 1px rgba(255, 255, 255, 0.48);
}
.inside-job-2 li .bt {
  font-size: 0.22rem;
  font-weight: 700;
  margin-top: 0.2rem;
}
.inside-job-2 li .button {
  padding-top: 0.5rem;
}
.inside-job-2 li .button a {
  color: #fff;
  border-radius: 0.3rem;
  height: 0.48rem;
  line-height: 0.46rem;
  display: inline-block;
  border: solid 1px #fff;
  min-width: 1.8rem;
  -webkit-transition: background-color 500ms ease;
          transition: background-color 500ms ease;
}
.inside-job-2 li .button:hover a {
  color: #fff;
  border-color: #00a348;
  background: #00a348;
}
.inside-job-2 li:first-child {
  border-left: 0;
}
.inside-title {
  color: #2e2e2e;
  font-weight: 700;
  line-height: 0.5rem;
  font-size: 0.42rem;
  text-align: center;
}
.inside-dzlc-1 {
  overflow: hidden;
  padding: 1rem 0;
}
.inside-dzlc-1 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -0.6rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-dzlc-1 li {
  width: 33.333%;
  padding: 0 0.6rem;
  line-height: 0.32rem;
  font-size: 0.18rem;
  text-align: center;
  padding-top: 0.6rem;
}
.inside-dzlc-1 li .icon img {
  max-height: 0.91rem;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-dzlc-1 li .tit {
  color: #f03e00;
  font-size: 0.24rem;
  padding-top: 0.2rem;
  padding-bottom: 0.1rem;
}
.inside-dzlc-1 li:hover .icon img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.inside-dzlc-2 {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 6.2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.18rem;
  background-attachment: fixed;
  background-image: url(../images/dzlc-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.inside-dzlc-2 .inside-title {
  color: #fff;
}
.inside-dzlc-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -0.35rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-dzlc-2 li:first-child:after {
  display: none;
}
.inside-dzlc-2 li:hover .item {
  background: rgba(142, 212, 149, 0.2);
}
.inside-dzlc-2 li {
  padding: 0 0.35rem;
  margin-top: 0.6rem;
  width: 16.66666667%;
  position: relative;
}
.inside-dzlc-2 li:after {
  content: "";
  top: 50%;
  left: -0.12rem;
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  background: url(../images/j1.png) no-repeat center center;
  background-size: cover;
}
.inside-dzlc-2 li .icon img {
  max-height: 0.81rem;
}
.inside-dzlc-2 li .item {
  padding: 0.08rem;
  text-align: center;
  width: 100%;
  border-radius: 0.3rem;
  background: rgba(142, 212, 149, 0.4);
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-dzlc-2 li .bg {
  height: 2rem;
  padding-top: 0.35rem;
  border-radius: 0.2rem;
  border: solid 1px #099a43;
  background: rgba(255, 255, 255, 0.9);
}
.inside-dzlc-2 li .tit {
  color: #333333;
  font-size: 0.22rem;
  margin-top: 0.15rem;
}
.inside-dzlc-2 .tel {
  margin-top: 0.7rem;
  color: #ee4000;
  text-align: center;
  font-family: arial;
  font-weight: 700;
  line-height: 0.4rem;
  font-size: 0.4rem;
}
.inside-dzlc-2 .tel img {
  margin-right: 0.2rem;
  max-height: 0.33rem;
}
.inside-dzlc-2 .bt {
  text-align: center;
  font-weight: 700;
  padding-top: 0.1rem;
  color: rgba(255, 255, 255, 0.78);
}
.inside-dzlc-3 {
  overflow: hidden;
  padding: 1rem 0;
}
.inside-dzlc-3 .container-2 {
  max-width: 1100px;
}
.inside-dzlc-3 .tag {
  text-align: center;
  padding-top: 0.2rem;
}
.inside-dzlc-3 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 0.3rem;
}
.inside-dzlc-3 li {
  width: 50%;
  padding: 0 0.45rem;
  margin-top: 0.2rem;
}
.inside-dzlc-3 li label {
  color: #1f1f1f;
}
.inside-dzlc-3 li em {
  color: #f30;
  font-style: normal;
}
.inside-dzlc-3 li input,
.inside-dzlc-3 li textarea {
  width: 100%;
  height: 0.42rem;
  line-height: 0.2rem;
  padding: 0.1rem;
  font-family: "微软雅黑";
  border: solid 1px #989898;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-dzlc-3 li input:focus,
.inside-dzlc-3 li textarea:focus {
  border-color: #00a348;
}
.inside-dzlc-3 li p {
  margin-top: 0.05rem;
}
.inside-dzlc-3 .itextarea {
  width: 100%;
}
.inside-dzlc-3 .itextarea textarea {
  height: 1.3rem;
}
.inside-dzlc-3 .button {
  width: 100%;
  margin-top: 0.4rem;
  text-align: center;
}
.inside-dzlc-3 .button input[type="button"] {
  color: #fff;
  width: 3.2rem;
  font-size: 0.18rem;
  border-color: #ef3500;
  background: #ef3500;
  -webkit-transition: color 500ms ease;
          transition: color 500ms ease;
}
.inside-dzlc-3 .button input[type="button"]:hover {
  background: #00a348;
  border-color: #00a348;
}
.inside-page {
  font-size: 12px;
  font-family: arial;
  text-align: center;
  padding-top: 0.9rem;
}
.inside-page a {
  width: 0.4rem;
  height: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 0.38rem;
  border-radius: 100%;
  margin: 0 0.05rem;
  font-size: 12px;
  color: #666;
  display: inline-block;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
  border: solid 1px #b5b5b5;
}
.inside-page a:hover,
.inside-page .cur {
  color: #fff;
  border-color: #00a348;
  background: #00a348;
}
.inside-page .prev,
.inside-page .next {
  width: 1.06rem;
  position: relative;
  border-radius: 30px;
}
.inside-page .prev:before {
  content: "<";
  margin-right: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-page .next:after {
  content: ">";
  margin-left: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-honor {
  min-height: 19.24rem;
  padding-bottom: 1rem;
  background: url(../images/honor-bg.jpg) no-repeat top center;
  background-size: cover;
}
.inside-honor ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -0.33rem;
  text-align: center;
}
.inside-honor li {
  width: 25%;
  padding: 0 0.33rem;
  padding-top: 0.95rem;
  padding-bottom: 0.45rem;
}
.inside-honor li .item {
  position: relative;
  padding: 0.1rem;
  background: #fff;
}
.inside-honor li .item:before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
  background: rgba(14, 154, 84, 0.82);
  z-index:9;
}

.inside-honor li .item .pic{
    overflow: hidden;
    position: relative;	
}

.inside-honor li .item .pic:after {
    content: "";
    display: block;
    padding-bottom: 143%;
}

.inside-honor li a {
  width: 100%;
  height: 100%;
  display: block;
}
.inside-honor li .text {
  top: 40%;
  left: 0;
  z-index: 8;
  width: 100%;
  opacity: 0;
  padding: 0.1rem;
  text-align: center;
  position: absolute;
  -webkit-transition: all 700ms ease;
          transition: all 700ms ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
	z-index:10;
}
.inside-honor li .icon img {
  max-height: 0.39rem;
}
.inside-honor li .tit {
  color: #fff;
  height: 0.32rem;
  overflow: hidden;
  font-size: 0.22rem;
  line-height: 0.32rem;
  margin-top: 0.3rem;
}
.inside-honor li:hover .item:before {
  opacity: 1;
}
.inside-honor li:hover .text {
  opacity: 1;
  top: 50%;
}
.fancybox__thumbs {
  display: none!important;
}
.inside-contact {
  padding: 1rem 0;
  background: #f6f6f6;
}
.inside-contact .box-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-contact .box-1 .leftbox {
  width: 49%;
  line-height: 0.4rem;
  font-weight: lighter;
  font-size: 0.2rem;
}
.inside-contact .box-1 .leftbox p {
  padding-top: 0.1rem;
}
.inside-contact .box-1 .leftbox p:first-child {
  padding-top: 0;
}
.inside-contact .box-1 .rightbox {
  width: 42%;
  color: #2e2e2e;
  font-size: 0.18rem;
}
.inside-contact .box-1 .rightbox h1 {
  font-size: 0.3rem;
}
.inside-contact .box-1 .rightbox .add1 {
  margin-top: 0.15rem;
  padding-left: 0.38rem;
  position: relative;
}
.inside-contact .box-1 .rightbox .add1 img {
  top: 0;
  left: 0;
  position: absolute;
  max-height: 0.25rem;
}
.inside-contact .box-1 .rightbox .add1 a {
  color: #2e2e2e;
}
.inside-contact .box-1 .rightbox .add1 a:hover {
  color: #00a348;
  text-decoration: underline;
}
.inside-contact .box-1 .rightbox .map {
  margin-top: 0.2rem;
  border: solid 1px #bfc4c7;
}
.inside-contact .inside-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  margin-top: 1.1rem;
  border-radius: 0.3rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-contact .inside-message .lefttext {
  width: 37%;
  color: #fff;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  padding: 0.9rem 0.6rem;
  background: -webkit-linear-gradient(top, #03a44b, #7eb8ab);
  background: linear-gradient(to bottom, #03a44b, #7eb8ab);
}
.inside-contact .inside-message .lefttext h2 {
  font-size: 0.36rem;
  font-weight: normal;
}
.inside-contact .inside-message .lefttext .tel {
  font-family: arial;
  font-weight: 700;
  font-size: 0.22rem;
  padding-top: 2.5rem;
}
.inside-contact .inside-message .lefttext .tig {
  opacity: 0.78;
  font-size: 0.14rem;
  padding-top: 0.1rem;
}
.inside-contact .inside-message .list {
  width: 63%;
  padding: 0.7rem 1.05rem;
}
.inside-contact .inside-message .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-contact .inside-message .list li {
  width: 100%;
  position: relative;
  margin-top: 0.15rem;
}
.inside-contact .inside-message .list li:first-child {
  margin-top: 0;
}
.inside-contact .inside-message .list label {
  left: 0.15rem;
  top: 0.24rem;
  position: absolute;
  color: #00a348;
}
.inside-contact .inside-message .list li:first-child {
  width: 49%;
}
.inside-contact .inside-message .list li:nth-child(2) {
  width: 49%;
  margin-top: 0;
}
.inside-contact .inside-message .list .input1,
.inside-contact .inside-message .list .itextarea {
  width: 100%;
  border: 0;
  color: #333;
  font-size: 0.16rem;
  padding: 0.2rem 0.23rem;
  line-height: 0.3rem;
  height: 0.7rem;
  border-radius: 0.1rem;
  background: #f8f8f8;
  font-family: "微软雅黑";
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
  border: solid 1px #f8f8f8;
}
.inside-contact .inside-message .list .input1:focus,
.inside-contact .inside-message .list .itextarea:focus {
  background: #fdfffe;
  border-color: #00a348;
}
.inside-contact .inside-message .list .input1::-webkit-input-placeholder,
.inside-contact .inside-message .list .itextarea::-webkit-input-placeholder {
  color: #333;
}
.inside-contact .inside-message .list .input1:-moz-placeholder,
.inside-contact .inside-message .list .itextarea:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.inside-contact .inside-message .list .input1::-moz-placeholder,
.inside-contact .inside-message .list .itextarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.inside-contact .inside-message .list .input1:-ms-input-placeholder,
.inside-contact .inside-message .list .itextarea:-ms-input-placeholder {
  color: #333;
}
.inside-contact .inside-message .list .itextarea {
  height: 1.4rem;
}
.inside-contact .inside-message .list .verify {
  height: 0.7rem;
  border-radius: 0.05rem;
  background-color: #f8f8f8;
  position: relative;
}
.inside-contact .inside-message .list .verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.05rem;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 0.2rem 0.2rem;
  z-index: 2;
  cursor: move;
}
.inside-contact .inside-message .list .verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 0.2rem 0.2rem;
}
.inside-contact .inside-message .list .verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 0.7rem;
  line-height: 0.68rem;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  text-align: center;
}
.inside-contact .inside-message .list .verify .fix-tips,
.inside-contact .inside-message .list .verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #999;
  z-index: 1;
  line-height: 0.7rem;
  padding-left: 0.5rem;
  text-align: center;
}
.inside-contact .inside-message .list .verify .verify-msg {
  padding-left: 0;
  padding-right: 0.5rem;
}
.inside-contact .inside-message .list .verify .verify-msg {
  background-color: #00a348;
  color: #fff!important;
  display: none;
}
.inside-contact .inside-message .list .tag {
  color: #999;
  line-height: 0.6rem;
  position: relative;
}
.inside-contact .inside-message .list .tag span {
  color: #333;
}
.inside-contact .inside-message .list .tag i {
  color: #f30;
  font-style: normal;
  padding-left: 0.1rem;
}
.inside-contact .inside-message .list .btn {
  color: #fff;
  border: 0;
  right: 0;
  top: 0;
  position: absolute;
  font-size: 0.16rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.1rem;
  min-width: 2rem;
  background: #00a348;
}
.inside-numlist {
  z-index: 4;
  width: 42%;
  position: relative;
}
.inside-numlist ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.inside-numlist li {
  width: 27%;
  padding-right: 0.2rem;
  position: relative;
  padding-top: 0.1rem;
  padding-left: 0.55rem;
  -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
}
.inside-numlist li:before {
  content: "";
  width: 1px;
  top: 50%;
  left: 0;
  position: absolute;
  height: 1.06rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: solid 1px rgba(231, 231, 231, 0.2);
}
.inside-numlist li .icon {
  position: relative;
  display: inline-block;
}
.inside-numlist li .icon img {
  max-height: 0.61rem;
  text-shadow: 0 0 2px #000000;
}
.inside-numlist li .num {
  padding-top: 0.1rem;
  font-family: "myfont";
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
}
.inside-numlist li .num span {
  font-size: 0.44rem;
  line-height: 0.44rem;
}
.inside-numlist li .num em,
.inside-numlist li .num i {
  font-style: normal;
}
.inside-numlist li .num em {
  font-size: 0.48rem;
}
.inside-numlist li .bt {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.inside-numlist li:nth-child(2) {
  width: 46%;
}
.inside-numlist li:first-child {
  padding-left: 0;
}
.inside-numlist li:first-child:before {
  display: none;
}
.inside-about-2 {
  line-height: 0.36rem;
  font-size: 0.2rem;
  font-weight: lighter;
  padding: 1rem 0 0 0;
}
.inside-about-2 dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 0.5rem;
}
.inside-about-2 dt {
  width: 48.2%;
  position: relative;
}
.inside-about-2 dt .arrow {
  top: 50%;
  left: 50%;
  z-index: 2;
  position: absolute;
  border-radius: 0.05rem;
  border-left: solid 0.38rem #ffffff;
  border-top: solid 0.26rem transparent;
  border-bottom: solid 0.26rem transparent;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: scrollArrow  1s linear infinite alternate;
          animation: scrollArrow  1s linear infinite alternate;
}
.inside-about-2 dd {
  width: 47%;
  padding-top: 0.1rem;
}
.inside-about-2 dd .f46 {
  color: #000;
  position: relative;
  margin-bottom: 0.5rem;
  padding-bottom: 0.2rem;
  line-height: 0.64rem;
  font-size: 0.46rem;
  font-weight: 500;
}
.inside-about-2 dd .f46 span {
  font-weight: 700;
  color: #00a348;
}
.inside-about-2 dd .f46:after {
  content: "";
  bottom: 0;
  left: 0;
  height: 0.05rem;
  width: 1.88rem;
  position: absolute;
  background: #00a348;
}
.slider-for {
  overflow: hidden;
  margin-bottom: 0.29rem;
}
.slider-for .slick-list {
  width: 130%;
  margin-left: -0.2rem;
}
.slider-for .item {
  float: left;
  display: block !important;
}
.slider-for .item .text {
  display: none;
}
.slider-for .bt {
  font-family: 'Oswald-Regular';
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.07rem;
  color: rgba(0, 163, 72, 0.2);
  text-stroke: 1px rgba(0, 163, 72, 0.2);
  -webkit-text-stroke: 1px rgba(0, 163, 72, 0.2);
  color: rgba(0, 163, 72, 0);
}
.slider-for .h3 {
  text-align: center;
  font-family: 'Oswald-Regular';
  font-size: 0.5rem;
  letter-spacing: 0.02rem;
  color: #225f90;
  font-weight: 700;
  background: url(../images/line2.png) no-repeat bottom center;
  padding-bottom: 0.22rem;
  margin-bottom: 0.48rem;
}
.slider-for .p {
  font-size: 0.28rem;
  line-height: 0.48rem;
  height: 1.44rem;
  overflow: hidden;
  text-align: center;
  color: #225f90;
}
.slider-for .slick-center .item {
  -webkit-transform: translateX(-36%);
      -ms-transform: translateX(-36%);
          transform: translateX(-36%);
}
.slider-for .slick-center .text {
  display: block;
}
.slider-for .slick-center .bt {
  display: none;
}
.slider-for .slick-next,
.slider-for .slick-prev {
  width: 0.2rem;
  height: 0.2rem;
  border-color: #00a348;
  z-index: 20;
  border-width: 2px;
  cursor: pointer;
  display: block !important;
  position: absolute;
  top: 50%;
  left: 7%;
  margin-top: -0.6rem;
}
.slider-for .slick-next:before,
.slider-for .slick-prev:before {
  content: '';
}
.slider-for .slick-prev {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.slider-for .slick-next {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1025px) {
  .slider-for .slick-next:hover,
  .slider-for .slick-prev:hover {
    border-color: #eb4100;
  }
}
.slider-for .slick-next {
  right: 7%;
  left: auto;
}
.slider-nav {
  text-align: center;
}
.slider-nav .item {
  position: relative;
  overflow: hidden;
  height: 1.6rem;
}
.slider-nav .item:after {
  content: '';
  display: block;
  height: 1px;
  background-color: #f3b29b;
  position: absolute;
  top: 50%;
  margin-top: 0.15rem;
  left: 50%;
  margin-left: 0.15rem;
  width: 100%;
}
.slider-nav .item:before {
  content: '';
  display: block;
  height: 1px;
  background-color: #f3b29b;
  position: absolute;
  top: 50%;
  margin-top: 0.15rem;
  right: 50%;
  margin-right: 0.15rem;
  width: 100%;
}
.slider-nav .item span {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.26rem;
  color: #000020;
  position: relative;
}
.slider-nav .item span:after {
  content: '';
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.48rem;
  margin-left: -0.03rem;
  background-color: #f03e00;
}
.slider-nav .slick-current .item:after {
  margin-left: 0.72rem;
}
.slider-nav .slick-current .item:before {
  margin-right: 0.72rem;
}
.slider-nav .slick-current .item span {
  color: #fff;
  padding-top: 0.4rem;
  margin-top: 0.55rem;
  position: relative;
  display: block;
}
.slider-nav .slick-current .item span:before {
  content: '';
  display: block;
  width: 1.29rem;
  height: 1.29rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: solid 1px #f5f5f5;
  border-radius: 50%;
  background: rgba(0, 163, 72, 0.68);
}
.slider-nav .slick-current .item span:after {
  background: #fff;
  margin-top: -0.1rem;
}
.about02 {
  padding: 1.03rem 0 0.93rem 0;
  background: url(../images/fzlc-bg.jpg) no-repeat bottom center;
  background-size: cover;
  position: relative;
}
.about02 .container {
  max-width: 19.2rem;
  margin: 0 auto;
}
.about02 .leftbox {
  padding-top: 0.7rem;
  position: relative;
}
.inside-team {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  margin: 0 auto;
  max-width: 19.2rem;
}
.inside-team .swiper-container-horizontal > .swiper-scrollbar {
  width: 8.3rem;
  left: 50%;
  height: 2px;
  background: #e0e0e0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.inside-team .swiper-scrollbar-drag {
  background: #ee4001;
  border-radius: 0;
}
.inside-team .swiper-container {
  position: relative;
  padding-bottom: 2rem;
  margin-top: 0.6rem;
}
.inside-team .swiper-container ul {
  margin-left: -3.9rem;
}
.inside-team .swiper-container:before {
  content: "";
  width: 14%;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 3;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
}
.inside-team .swiper-container:after {
  content: "";
  width: 10%;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 3;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
}
.inside-team .swiper-button-prev {
  left: 47%;
}
.inside-team .swiper-button-next {
  right: 47%;
}
.inside-team .swiper-button-prev,
.inside-team .swiper-button-next {
  top: auto;
  margin-top: auto;
  bottom: 0.75rem;
}
.inside-team .swiper-button-prev:after,
.inside-team .swiper-button-next:after {
  color: #606060;
  font-size: 14px;
}
.inside-team .swiper-button-prev:hover:after,
.inside-team .swiper-button-next:hover:after {
  color: #eb4100;
}
.inside-team .arrow {
  left: 50%;
  bottom: 0.3rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
}
.inside-team .arrow img {
  max-height: 0.94rem;
}
.inside-team .tit {
  z-index: 3;
  position: relative;
  text-align: right;
  font-weight: 700;
  font-size: 0.5rem;
  color: #00a348;
  margin-top: -0.4rem;
}
.videoWindow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}
.videoWindow video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13.2rem;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  max-height: 70%;
  max-width: 80%;
}
.videoWindow i {
  display: block;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.25rem;
  height: 0.25rem;
  background: url(../images/onlineClose.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.insider-job-4 {
  padding-top: 0.8rem;
  background-color: #f7f7f7;
  padding-bottom: 0.8rem;
}
.insider-job-4 li:first-child {
  color: #fff;
  padding: 0.1rem 0;
  font-size: 0.2rem;
  font-weight: 700;
  background: #00a348;
}
.insider-job-4 li:first-child span:nth-child(3) {
  text-align: center;
}
.insider-job-4 li:first-child:before {
  display: none;
}
.insider-job-4 li,
.insider-job-4 .tit {
  margin-top: 0.15rem;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.insider-job-4 li span,
.insider-job-4 .tit span {
  width: 15%;
  float: left;
  height: 0.65rem;
  line-height: 0.65rem;
  padding-left: 1.3rem;
  overflow: hidden;
}
.insider-job-4 li span:nth-child(3),
.insider-job-4 .tit span:nth-child(3) {
  width: 35%;
}
.insider-job-4 .bt {
  color: #333;
  padding: 0.3rem 0 0.15rem 0;
  font-weight: 700;
}
.insider-job-4 .txt {
  background: #fff;
  padding: 0.2rem 0.8rem 0.7rem 1.3rem;
  text-align: left;
  display: none;
  color: #666;
  line-height: 0.3rem;
}
.insider-job-4 .active {
  background: #effff7;
}
.insider-job-4 .btn {
  line-height: 0.5rem;
  height: 0.5rem;
  width: 1.7rem;
  text-align: center;
  background: #00a348;
  margin-top: 0.5rem;
}
.insider-job-4 .btn img {
  margin-top: 0.1rem;
  max-height: 0.3rem;
}
.insider-job-4 .btn a {
  color: #fff;
}
