* {
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

ul li {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #343434;
  padding: 0;
  margin: 0;
  border: 0 none;
}

img {
  border: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

ul li {
  list-style-type: none;
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

div, a, img, input, li, p, span, textarea, ul {
  box-sizing: border-box;
}

button {
  font-family: inherit;
  outline: none;
}

:root {
  --PRIMARY: #9EA700;
  --PRIMARY_LIGHT: #a0a701;
  --PRIMARY_DEEP: #828804;
  --YELLOW: #f1cf69;
  --GREEN: #9EA700;
  --BLACK: #343434;
  --BLACK_LIGHT: #687468;
  --GRAY: #767676;
  --GRAY_DEEP: #473237;
}

body {
  min-width: 1200px;
  font-family: 'PingFang SC', 'Simhei';
  color: var(--BLACK);
  background-color: #fff;
}

[class^='btn_'] {
  cursor: pointer;
}

.transition_none * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.swiper-lazy-preloader-green {
    --swiper-preloader-color:#9EA700
}

.page {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.disabled {
  background-color: #b2b2b2 !important;
  color: #767676 !important;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  height: 13px;
  bottom: 40px;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: .5;
  background: var(--PRIMARY);
}

.swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.module_con {
  width: 100%;
  height: auto;
}

.module_con .md_wrap {
  width: 1170px;
  margin: 0 auto;
  padding: 60px 0 80px 0;
}

input[type="radio"] {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

input[type="radio"] + label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

input[type="radio"] + label:before {
  content: ' ';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--BLACK);
  background-color: #fff;
  box-sizing: border-box;
}

input[type="radio"] + label:after {
  content: ' ';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--BLACK);
  opacity: 0;
}

input[type="radio"]:checked + label:after {
  opacity: 1;
}

.header_con {
  width: 100%;
  height: 80px;
}

.header_fixed {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid var(--LINE);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.header_fixed .hf_wrap {
  width: 100%;
  max-width: 1170px;
  height: 80px;
  margin: 0 auto;
  padding: 0 37px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_fixed .logo {
  height: 60px;
  display: block;
  flex-shrink: 0;
}

.header_fixed .logo img {
  width: 100%;
  display: block;
}

.header_fixed .nav_list {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

.header_fixed .nav_list > li a {
  height: 80px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.header_fixed .nav_list > li a span {
  font-size: 18px;
  color: var(--GRAY);
  display: block;
  line-height: 24px;
}

.header_fixed .nav_list > li a span.cn {
  font-size: 14px;
}

.header_fixed .nav_list > li a:after {
  content: ' ';
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header_fixed .nav_list > li.active a span {
  color: var(--GREEN);
}

.header_fixed .nav_list > li.active a:after {
  background-color: var(--GREEN);
}

.header_fixed .nav_list > li:hover a > span {
  color: var(--GREEN);
}

.fixed_menu {
  width: 60px;
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 100;
}

.fmenu_list {
  width: 100%;
  height: auto;
}

.fmenu_list > li {
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
}

.fmenu_list > li .icon_item {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  overflow: hidden;
  background-color: var(--YELLOW);
}

.fmenu_list > li .icon_item:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--PRIMARY);
  transform: scaleY(0.1);
  -webkit-transform: scaleY(0.1);
  -moz-transform: scaleY(0.1);
  -ms-transform: scaleY(0.1);
  -o-transform: scaleY(0.1);
  transform-origin: center top;
  opacity: .3;
  transition: all .3s ease-out;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
}

.fmenu_list > li .icon {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  position: relative;
  z-index: 1;
}
.fmenu_list > li a.icon {
    display: block;
}

.fmenu_list > li .icon.i_project {
    background-image: url(../img/i_project_green_60.png);
}  

.fmenu_list > li .icon.i_wechat {
  background-image: url(../img/i_wechat_green_60.png);
}

.fmenu_list > li .icon.i_tel {
  background-image: url(../img/i_tel_green_60.png);
}

.fmenu_list > li .icon.i_arr_top {
  background-size: 12px;
  background-image: url(../img/arr_top_green_6x10@2x.png);
}

.fmenu_list > li .menu_dt {
  width: auto;
  height: auto;
  height: auto;
  position: absolute;
  right: 80px;
  top: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: var(--PRIMARY);
  padding: 10px;
  font-size: 14px;
  color: #fff;
  display: none;
}

.fmenu_list > li .menu_dt:before {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid var(--PRIMARY);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: 100%;
  top: 24px;
}

.fmenu_list > li .menu_dt img {
  width: 100px;
  display: block;
}

.fmenu_list > li .menu_dt p {
  padding: 10px;
}

.fmenu_list > li:not(:last-child) {
  margin-bottom: 10px;
}

.fmenu_list > li.btn_scrollTop {
  display: none;
}

.fmenu_list > li.btn_scrollTop .menu_dt p {
  white-space: nowrap;
}

.fmenu_list > li:hover .icon_item:before {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.fmenu_list > li:hover .icon.i_project {
    background-image: url(../img/i_project_whit_60.png);
}

.fmenu_list > li:hover .icon.i_wechat {
  background-image: url(../img/i_wechat_whit_60.png);
}

.fmenu_list > li:hover .icon.i_tel {
  background-image: url(../img/i_tel_whit_60.png);
}

.fmenu_list > li:hover .icon.i_arr_top {
  background-image: url(../img/arr_top_white_6x10@2x.png);
}

.fmenu_list > li:hover .menu_dt {
  display: block;
}

.footer_con {
  width: 100%;
  height: auto;
  font-size: 14px;
  color: #fff;
  padding-top: 60px;
  background: url(../img/footer_bg.jpg?t=09150915) no-repeat;
  background-size: auto 100%;
  background-position: left center;
  background-color: #a0a701;
}

.footer_con .wrap {
  width: 1170px;
  margin: 0 auto;
  overflow-y: auto;
}

.footer_con .ftt_left {
  float: left;
  max-width: 330px;
  flex-shrink: 0;
}

.footer_con .logo {
  height: 40px;
  display: block;
  margin-bottom: 25px;
}

.footer_con .logo img {
  height: 100%;
  display: block;
}

.footer_con .subtitle {
  font-size: 16px;
  color: #fff;
}

.footer_con .contact_list {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 28px;
  padding-top: 28px;
}

.footer_con .contact_list > li {
  font-size: 15px;
  line-height: 36px;
  font-weight: bold;
  padding-left: 32px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}

.footer_con .contact_list > li.i_tel {
  line-height: 24px !important;
  background-image: url(../img/i_tel2.png);
}

.footer_con .contact_list > li.i_email {
  background-image: url(../img/i_email.png);
}

.footer_con .contact_list > li.i_addr {
  background-image: url(../img/i_addr.png);
}

.footer_con .contact_list > li a {
  color: #fff;
}

.footer_con .contact_list > li:hover a {
  color: var(--YELLOW);
}

.footer_con .qrcode_list {
  float: right;
  display: flex;
  padding-top: 70px;
}

.footer_con .qrcode_list > li {
  width: 150px;
  height: auto;
  text-align: center;
}

.footer_con .qrcode_list > li img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

.footer_con .qrcode_list > li:not(:last-child) {
  margin-right: 70px;
}

.copyright {
  width: 100%;
  padding: 60px 0 30px 0;
  text-align: center;
}
.copyright a {
  color: #fff;
  margin-left: 20px;
}

.title_style1 {
  font-size: 42px;
  text-align: center;
  color: var(--PRIMARY);
  font-weight: bold;
}

.title_style1.left {
  text-align: left;
}

.title_style2 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
}

.btn_style2 {
  width: 230px;
  height: 70px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: var(--GREEN);
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn_style2:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  opacity: .3;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transform: translateX(95%);
  -webkit-transform: translateX(95%);
  -moz-transform: translateX(95%);
  -ms-transform: translateX(95%);
  -o-transform: translateX(95%);
}

.btn_style2 span {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.btn_style2:hover:before {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.btn_style2:hover span {
  color: var(--GREEN);
}

.btn_style3 {
  min-width: 185px;
  height: 52px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 52px;
  font-weight: bold;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
  background-color: var(--PRIMARY);
}

.btn_style3:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn_style3 span {
  position: relative;
  z-index: 1;
}

.btn_style3:hover:before {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.btn_style3:hover span {
  color: var(--PRIMARY);
}

.title_style3 {
  font-size: 50px;
  text-align: center;
  color: var(--GREEN);
  font-weight: bold;
}

.title_style3 .en {
  font-size: 16px;
}

.title_style4 {
  font-size: 28px;
  color: var(--GREEN);
}

.title_style4 .en {
  font-size: 16px;
  color: var(--BLACK);
}

.banner_swiper {
  width: 100%;
  height: 625px;
}

.banner_swiper a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.banner_swiper a img {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.pg_home .module_con .md_wrap {
  padding-bottom: 0;
}

.pg_home .series_list {
  width: 100%;
  height: auto;
  display: flex;
}

.pg_home .series_list > li {
  width: 370px;
  height: 489px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.pg_home .series_list > li:not(:last-child) {
  margin-right: 30px;
}

.pg_home .series_list > li:before {
  content: ' ';
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.pg_home .series_list > li .thumb {
  width: 100%;
  height: 489px;
  overflow: hidden;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
}

.pg_home .series_list > li .thumb img {
  width: 100%;
  display: block;
}

.pg_home .series_list > li .infos {
  width: 330px;
  height: auto;
  padding: 35px 30px 10px 30px;
  font-size: 24px;
  line-height: 27px;
  color: var(--PRIMARY);
  text-align: center;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 20px;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

.pg_home .series_list > li .infos a {
  color: var(--PRIMARY);
}

.pg_home .series_list > li .infos a:hover {
  color: var(--YELLOW);
}

.pg_home .series_list > li:hover:before {
  animation: circleAni 0.4s linear;
  -webkit-animation: circleAni 0.4s linear;
}

.pg_home .series_list > li:hover .thumb {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.pg_home .md_abstract {
  background: url(../img/abstract_bg.png) no-repeat;
  background-size: 616px;
  background-position: right bottom;
  background-color: #fff;
  animation: abstractBgAni 2s linear infinite;
  -webkit-animation: abstractBgAni 2s linear infinite;
}

.pg_home .md_abstract .md_wrap {
  display: flex;
  padding-bottom: 52px;
}

.pg_home .md_abstract .md_left {
  width: 570px;
  height: auto;
  position: relative;
}

.pg_home .md_abstract .md_left:before {
  content: ' ';
  display: block;
  width: 100px;
  height: 50%;
  position: absolute;
  left: -30px;
  bottom: 0;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  background-color: var(--YELLOW);
}

.pg_home .md_abstract .md_right {
  width: 500px;
  height: auto;
  margin-left: 100px;
}

.pg_home .md_abstract .md_right h1 {
  line-height: 56px;
  font-size: 42px;
  color: var(--PRIMARY);
  font-weight: bold;
  margin-bottom: 50px;
}

.pg_home .md_abstract .md_right h2 {
  font-size: 24px;
  line-height: 26px;
  color: var(--PRIMARY_LIGHT);
  font-weight: bold;
}

.pg_home .md_abstract .md_right .abstract {
  font-size: 18px;
  line-height: 36px;
  text-align: justify;
  color: var(--BLACK_LIGHT);
  margin-top: 39px;
}

.pg_home .md_abstract .abstract_list {
    margin-top: 50px;
}
.pg_home .md_abstract .abstract_list > li {
    padding-left: 29px;
    font-size: 18px;
    line-height: 32px;
    color: var(--PRIMARY);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px 24px;
}
.pg_home .md_abstract .abstract_list > li:nth-child(1){
    background-image: url(/img/home_abstract_ico1.png);
}
.pg_home .md_abstract .abstract_list > li:nth-child(2){
    background-image: url(/img/home_abstract_ico2.png);
}
.pg_home .md_abstract .abstract_list > li:nth-child(3){
    background-image: url(/img/home_abstract_ico3.png);
}
.pg_home .md_abstract .abstract_list > li:nth-child(4){
    background-image: url(/img/home_abstract_ico4.png);
}
.pg_home .md_abstract .abstract_list > li:not(:last-child) {
    margin-bottom: 8px;
}

.pg_home .md_abstract .about_pic {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px 10px 10px 0;
  -webkit-border-radius: 10px 10px 10px 0;
  -moz-border-radius: 10px 10px 10px 0;
  -ms-border-radius: 10px 10px 10px 0;
  -o-border-radius: 10px 10px 10px 0;
  position: relative;
}

.pg_home .md_abstract .about_pic:before {
  content: ' ';
  display: block;
  width: 50%;
  height: 100%;
  transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  position: absolute;
  left: -100%;
  top: 0;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transform-origin: left center;
}

.pg_home .md_abstract .about_pic img {
  width: 100%;
  display: block;
}

.pg_home .md_abstract .about_pic:hover:before {
  animation: lightAni .3s linear;
  -webkit-animation: lightAni .3s linear;
}

.pg_home .md_abstract .tel_con {
  width: 490px;
  height: auto;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: var(--PRIMARY_LIGHT);
  position: absolute;
  bottom: -50px;
  left: 50%;
  margin-left: -245px;
}

.pg_home .md_abstract .tel_con .icon {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 30px;
}

.pg_home .md_abstract .tel_con .icon.i_tel {
  background-image: url(../img/i_tel.png);
}

.pg_home .md_abstract .tel_con .tel {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pg_home .md_abstract .tel_con .tel h4 {
  font-size: 30px;
  line-height: 45px;
}

.pg_home .md_abstract .tel_con .tel p {
  font-size: 16px;
  line-height: 30px;
}

.pg_home .md_abstract .video_con {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.pg_home .md_abstract .video_con .video_wrap {
  width: 160px;
  height: 81px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.pg_home .md_abstract .video_con .video_wrap .video_poster {
  width: 100%;
  height: 81px;
  background: url('../img/video_poster750x375.png?t=20241008') no-repeat;
  background-size: 100%;
  background-position: center;
}

.pg_home .md_abstract .video_con .video_wrap .video_poster:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.pg_home .md_abstract .video_con .video_wrap .btn_play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.pg_home .md_abstract .video_con .video_wrap .btn_play:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: circleAni2_1 3s linear infinite;
  -webkit-animation: circleAni2_1 3s linear infinite;
}

.pg_home .md_abstract .video_con .video_wrap .btn_play:after {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: circleAni2_2 3s linear infinite;
  -webkit-animation: circleAni2_2 3s linear infinite;
}

.pg_home .md_abstract .video_con .video_wrap .btn_play span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
  z-index: 1;
  background-color: var(--YELLOW);
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.pg_home .md_abstract .video_con .video_wrap .btn_play span:after {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid var(--PRIMARY);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -6px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.pg_home .md_abstract .video_con .video_wrap .btn_play:hover span {
  background-color: var(--PRIMARY);
}

.pg_home .md_abstract .video_con .video_wrap .btn_play:hover span:after {
  border-left-color: var(--YELLOW);
}

.pg_home .md_abstract .video_con .video_infos {
  margin-left: 30px;
  font-size: 14px;
  line-height: 24px;
  color: var(--BLACK_LIGHT);
}

.pg_home .md_abstract .video_con .video_infos h3 {
  font-size: 20px;
  line-height: 30px;
  color: var(--PRIMARY);
}

.pg_home .md_coop .md_wrap {
    padding-bottom: 0;
}

.pg_home .md_coop .coop_swiper {
  width: 100%;
  height: auto;
  margin: 20px 0;
  overflow: hidden;
}

.pg_home .md_coop .coop_swiper .coop_item {
  width: 100%;
  height: 135px;
  overflow: hidden;
  opacity: .5;
}

.pg_home .md_coop .coop_swiper .coop_item img {
  width: 100%;
  display: block;
}

.pg_home .md_coop .coop_swiper .swiper-slide:hover .coop_item {
  opacity: 1;
}

.pg_home .md_service {
  padding-bottom: 60px;
  background-color: #f6f4ec;
}

.pg_home .service_list {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 50px;
}

.pg_home .service_list > li {
  width: 270px;
  height: 470px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

.pg_home .service_list > li:not(:last-child) {
  margin-right: 30px;
}

.pg_home .service_list > li .thumb_con {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 5px;
}

.pg_home .service_list > li .thumb_con .thumb {
  width: 100%;
  height: 221px;
  overflow: hidden;
}

.pg_home .service_list > li .thumb_con .thumb img {
  width: 100%;
  display: block;
}

.pg_home .service_list > li .thumb_con .shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: center;
  -webkit-transform: center;
  -moz-transform: center;
  -ms-transform: center;
  -o-transform: center;
  background-color: rgba(51, 75, 53, 0.5);
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

.pg_home .service_list > li .thumb_con .shadow .line {
  width: 100%;
  height: 5px;
  background-color: var(--GREEN);
  position: absolute;
  bottom: 0;
  left: 0;
}

.pg_home .service_list > li .infos {
  width: 100%;
  height: auto;
  padding: 0 40px;
}

.pg_home .service_list > li .infos .icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
  background-color: #fff;
  margin: -55px auto 13px auto;
  position: relative;
}

.pg_home .service_list > li .infos .icon.i_service1 {
  background-image: url(../img/i_service1.png);
}

.pg_home .service_list > li .infos .icon.i_service2 {
  background-image: url(../img/i_service2.png);
}

.pg_home .service_list > li .infos .icon.i_service3 {
  background-image: url(../img/i_service3.png?t=09081030);
}

.pg_home .service_list > li .infos .icon.i_service4 {
  background-image: url(../img/i_service4.png?t=09081030);
}

.pg_home .service_list > li .infos h3 {
  font-size: 24px;
  line-height: 30px;
  color: var(--PRIMARY);
  text-align: center;
  margin-bottom: 15px;
}

.pg_home .service_list > li .infos h3 a {
  color: var(--PRIMARY);
}

.pg_home .service_list > li .infos p {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: var(--BLACK_LIGHT);
}

.pg_home .service_list > li .infos .btn_next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -25px;
  display: block;
  background-color: var(--YELLOW);
}

.pg_home .service_list > li .infos .btn_next:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  -moz-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  -ms-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  -o-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  background-color: var(--PRIMARY);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.pg_home .service_list > li .infos .btn_next:after {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/arr_right_green_6x10@2x.png) no-repeat;
  background-size: 10px;
  background-position: center;
}

.pg_home .service_list > li .infos .btn_next:hover:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.pg_home .service_list > li .infos .btn_next:hover:after {
  background-image: url(../img/arr_right_white_6x10@2x.png);
}

.pg_home .service_list > li:hover .thumb_con .shadow {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.pg_home .service_list > li:hover .icon {
  background-color: var(--GREEN);
}

.pg_home .service_list > li:hover .icon.i_service1 {
  background-image: url(../img/i_service1_a.png);
}

.pg_home .service_list > li:hover .icon.i_service2 {
  background-image: url(../img/i_service2_a.png);
}

.pg_home .service_list > li:hover .icon.i_service3 {
  background-image: url(../img/i_service3_a.png?t=09081030);
}

.pg_home .service_list > li:hover .icon.i_service4 {
  background-image: url(../img/i_service4_a.png?t=09081030);
}

.pg_home .md_freeact {
  height: 565px;
  background: url(../img/free_bg.jpg) no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.pg_home .md_freeact .md_wrap {
  padding: 115px 37px 60px 37px;
}

.pg_home .md_freeact .md_wrap h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: bold;
  color: #fff;
}

.pg_home .md_freeact .md_wrap p {
  font-size: 48px;
  line-height: 90px;
  font-weight: bold;
  color: #fff;
}

.pg_home .md_freeact .md_wrap .btn_style3 {
  margin-top: 26px;
}

.pg_home .prod_swiper_con {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 60px;
}

.pg_home .prod_swiper_con .pro_item {
  width: 370px;
  height: 408px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

.pg_home .prod_swiper_con .pro_item .thumb {
  width: 100%;
  height: 408px;
  overflow: hidden;
}

.pg_home .prod_swiper_con .pro_item .thumb img {
  width: 100%;
  display: block;
}

.pg_home .prod_swiper_con .pro_item .shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 75, 53, 0.5);
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.pg_home .prod_swiper_con .pro_item .infos {
  width: 298px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -149px;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.pg_home .prod_swiper_con .pro_item .infos p {
  font-size: 12px;
  color: var(--PRIMARY_DEEP);
  background-color: var(--YELLOW);
  line-height: 22px;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
}

.pg_home .prod_swiper_con .pro_item .infos h3 {
  padding: 25px 25px 27px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  border-top-right-radius: 10px;
  background-color: var(--PRIMARY_LIGHT);
  display: block;
}

.pg_home .prod_swiper_con .pro_item .infos h3 a {
  color: #fff;
}

.pg_home .prod_swiper_con .pro_item .infos h3 a:hover {
  color: var(--YELLOW);
}

.pg_home .prod_swiper_con .pro_item:hover .shadow,
.pg_home .prod_swiper_con .pro_item:hover .infos {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.pg_home .prod_swiper_dots {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pg_home .prod_swiper_dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--PRIMARY);
  opacity: .5;
  margin: 0 5px;
  cursor: pointer;
}

.pg_home .prod_swiper_dots span.active {
  opacity: 1;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.pg_home .md_custom_comment {
  padding-bottom: 60px;
  background: url(../img/comment_bg.jpg) no-repeat;
  background-size: auto 597px;
  background-position: left bottom;
  background-color: #f7f4ed;
}

.pg_home .md_custom_comment .md_wrap {
  display: flex;
}

.pg_home .md_custom_comment .md_left {
  width: 370px;
  margin-right: 30px;
  padding-top: 50px;
}

.pg_home .md_custom_comment .md_right {
  width: 770px;
}

.pg_home .md_custom_comment .btns_list {
  display: flex;
  margin-top: 50px;
}

.pg_home .md_custom_comment .btns_list > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid var(--PRIMARY);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  cursor: pointer;
  opacity: .5;
}

.pg_home .md_custom_comment .btns_list > div:not(:last-child) {
  margin-right: 10px;
}

.pg_home .md_custom_comment .btns_list > div.btn_prev {
  background-image: url(../img/arr_left_green_6x10@2x.png);
}

.pg_home .md_custom_comment .btns_list > div.btn_next {
  background-image: url(../img/arr_right_green_6x10@2x.png);
}

.pg_home .md_custom_comment .btns_list > div:hover {
  opacity: 1;
}

.pg_home .md_custom_comment .cus_comment_con {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.pg_home .md_custom_comment .cus_comment_con .cuscomm_item {
  width: 100%;
  height: 357px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.pg_home .md_custom_comment .cus_comment_con .cuscomm_item img {
  width: 100%;
}

.pg_home .md_custom_comment .cus_comment_con .leave_ani .cuscomm_item {
  animation: cusLevelAni 1s ease-out;
  -webkit-animation: cusLevelAni 1s ease-out;
}

.pg_home .md_factory {
  display: flex;
  position: relative;
}

.pg_home .md_factory .factory_left {
  width: 50%;
  height: 653px;
  background: url(../img/factory_pic_892x653.jpg?t=08021700) no-repeat;
  background-size: cover;
  background-position: left top;
}

.pg_home .md_factory .logo_circle_white {
  width: 140px;
  height: 140px;
  background: url(../img/logo_circle_white.png?t=08021659) no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -170px;
  margin-left: -70px;
  animation: circleRotate 10s linear infinite;
  -webkit-animation: circleRotate 10s linear infinite;
}

.pg_home .md_factory .factory_right {
  width: 50%;
  height: 653px;
  background: var(--GREEN);
  padding: 70px 0 0 120px;
}

.pg_home .md_factory .factory_right .factory_list {
  margin-top: 44px;
}

.pg_home .md_factory .factory_right .factory_list > li {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.pg_home .md_factory .factory_right .factory_list > li:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
}

.pg_home .md_factory .factory_right .factory_list > li .icon {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.pg_home .md_factory .factory_right .factory_list > li .icon.i_factory1 {
  background-image: url(../img/i_factory1.png);
}

.pg_home .md_factory .factory_right .factory_list > li .icon.i_factory2 {
  background-image: url(../img/i_factory2.png?t=09071636);
}

.pg_home .md_factory .factory_right .factory_list > li .icon.i_factory3 {
  background-image: url(../img/i_factory3.png);
}

.pg_home .md_factory .factory_right .factory_list > li .infos {
  margin-left: 40px;
  font-size: 18px;
  color: #DBE6D3;
  line-height: 34px;
}

.pg_home .md_factory .factory_right .factory_list > li .infos h3 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 11px;
}

.pg_home .md_factory .factory_right .factory_list > li:hover .icon {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
}

.pg_home .md_coopform {
  background: url(../img/home_form_bg.jpg) no-repeat;
  background-size: auto 100%;
  background-position: right center;
  background-color: #f2d06e;
}

.pg_home .md_coopform .md_wrap {
  padding: 40px 0;
}

.pg_home .md_coopform .coopform_con {
  width: 100%;
  display: flex;
}

.pg_home .md_coopform .coopform_con .form_con {
  width: 500px;
}

.pg_home .md_coopform .coopform_con .form_con:not(:last-child) {
  margin-right: 70px;
}

@keyframes circleAni {
  0% {
    opacity: 1;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
  }
}

@keyframes abstractBgAni {
  0% {
    background-position: right bottom 0;
  }
  50% {
    background-position: right bottom 20px;
  }
}

@keyframes lightAni {
  0% {
    transform: skewX(-25deg) translate(0, 0);
    -webkit-transform: skewX(-25deg) translate(0, 0);
    -moz-transform: skewX(-25deg) translate(0, 0);
    -ms-transform: skewX(-25deg) translate(0, 0);
    -o-transform: skewX(-25deg) translate(0, 0);
  }
  100% {
    transform: skewX(-25deg) translate(400%, 0);
    -webkit-transform: skewX(-25deg) translate(400%, 0);
    -moz-transform: skewX(-25deg) translate(400%, 0);
    -ms-transform: skewX(-25deg) translate(400%, 0);
    -o-transform: skewX(-25deg) translate(400%, 0);
  }
}

@keyframes circleAni2_1 {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  40% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
  }
  70% {
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
  }
  90% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@keyframes circleAni2_2 {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  20% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
  }
  55% {
    transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
  }
  65% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@keyframes cusLevelAni {
  0% {
    opacity: 1;
    transform-origin: left center;
  }
  90% {
    opacity: 0;
    transform: scale(0) translateX(-20%);
    -webkit-transform: scale(0) translateX(-20%);
    -moz-transform: scale(0) translateX(-20%);
    -ms-transform: scale(0) translateX(-20%);
    -o-transform: scale(0) translateX(-20%);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateX(-20%);
    -webkit-transform: scale(0) translateX(-20%);
    -moz-transform: scale(0) translateX(-20%);
    -ms-transform: scale(0) translateX(-20%);
    -o-transform: scale(0) translateX(-20%);
  }
}

@keyframes circleRotate {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.md_home_news{
    padding-bottom: 60px;
}
.news_list.style1 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.news_list.style1 > li {
  width: 370px;
  height: 420px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.news_list.style1 > li:not(:nth-child(3n)) {
  margin-right: 30px;
}

.news_list.style1 > li:not(:nth-child(-n+3)) {
  margin-top: 30px;
}

.news_list.style1 > li .thumb_con {
  width: 100%;
  height: 270px;
  overflow: hidden;
  position: relative;
}

.news_list.style1 > li .thumb_con .thumb {
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.news_list.style1 > li .thumb_con .thumb img {
  width: 100%;
  display: block;
}

.news_list.style1 > li .thumb_con .shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(51, 75, 53, 0.5);
  transition: all .5s ease;
  transform-origin: center top;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.news_list.style1 > li .thumb_con .link_detail {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  transition: all .5s ease;
  transform-origin: center top;
  transform: translateY(500%) scaleY(0);
  -webkit-transform: translateY(500%) scaleY(0);
  -moz-transform: translateY(500%) scaleY(0);
  -ms-transform: translateY(500%) scaleY(0);
  -o-transform: translateY(500%) scaleY(0);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.news_list.style1 > li .thumb_con .link_detail:before {
  content: ' ';
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
}

.news_list.style1 > li .thumb_con .link_detail:after {
  content: ' ';
  display: block;
  width: 3px;
  height: 30px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
}

.news_list.style1 > li .thumb_con .date {
  display: inline-block;
  padding: 3px 20px;
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  background-color: var(--YELLOW);
  font-size: 12px;
  color: var(--PRIMARY_DEEP);
  line-height: 22px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 40px;
  z-index: 1;
}

.news_list.style1 > li .infos {
  padding: 20px 40px 30px;
}

.news_list.style1 > li .infos h3 {
  max-height: 99px;
  font-size: 24px;
  line-height: 33px;
  font-weight: bold;
  color: var(--PRIMARY);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news_list.style1 > li .infos h3 a {
  color: var(--PRIMARY);
}

.news_list.style1 > li .infos h3 a:hover {
  color: var(--YELLOW);
}

.news_list.style1 > li:hover .shadow {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.news_list.style1 > li:hover .link_detail {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  -webkit-transform: translateY(0) scaleY(1);
  -moz-transform: translateY(0) scaleY(1);
  -ms-transform: translateY(0) scaleY(1);
  -o-transform: translateY(0) scaleY(1);
}

.form_con {
  width: 100%;
}

.form_con .tr {
  display: flex;
}

.form_con .tr:not(:last-child) {
  margin-bottom: 10px;
}

.form_con .tr.col_tr {
  flex-direction: column;
}

.form_con .tr.col_tr .td {
  width: 100%;
  margin-top: 10px;
}

.form_con .tr .th {
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--BLACK);
  font-weight: bold;
}

.form_con .tr .td {
  width: calc(100% - 160px);
}

.form_con .tr .radio_con {
  display: flex;
}

.form_con .tr .radio_con.vertical {
  flex-direction: column;
}

.form_con .tr .radio_con .radio_item {
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  color: var(--BLACK);
}

.form_con .tr .radio_con:not(.vertical) .radio_item:not(:last-child) {
  margin-right: 30px;
}

.form_con .tr .input_td {
  width: 100%;
  height: auto;
  border: 1px solid var(--GRAY);
}

.form_con .tr .input_td input {
  width: 100%;
  height: 40px;
  border: none;
  padding: 0 20px;
  outline: none;
  font-size: 14px;
  color: var(--BLACK);
}

.form_con .tr .textarea_td {
  width: 100%;
  height: auto;
  border: 1px solid var(--GRAY);
}

.form_con .tr .textarea_td textarea {
  width: 100%;
  height: 150px;
  resize: none;
  outline: none;
  border: none;
  outline: none;
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  color: var(--BLACK);
  line-height: 22px;
  font-family: 'PingFang SC', 'Simhei';
}

.about_intros {
  width: 914px;
  font-size: 16px;
  text-align: justify;
  color: var(--BLACK);
  line-height: 28px;
  margin: 54px auto 0 auto;
}

.about_intros video {
  width: 100%;
  display: block;
}

.about_intros p:not(:first-child) {
  margin-top: 28px;
}

.about_intros img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.pg_about .md_wrap {
  padding: 80px 0;
}

.pg_about .md_wrap img {
  width: 100%;
}

.news_menu {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.news_menu > li {
  font-size: 16px;
  cursor: pointer;
}

.news_menu > li:not(:last-child) {
  margin-right: 30px;
}

.news_menu > li span {
  color: var(--GRAY);
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}

.news_menu > li.active span {
  color: var(--GREEN);
  border-color: var(--GREEN);
}

.news_menu > li:hover span {
  color: var(--GREEN);
}

.news_list.style2 {
  margin-top: 50px;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.news_list.style2 > li {
  width: 370px;
  height: 271px;
  position: relative;
}

.news_list.style2 > li:not(:nth-child(3n)) {
  margin-right: 30px;
}

.news_list.style2 > li:not(:nth-child(-n+3)) {
  margin-top: 30px;
}

.news_list.style2 > li .thumb {
  width: 100%;
  height: 271px;
  overflow: hidden;
}

.news_list.style2 > li .thumb img {
  width: 100%;
  display: block;
}

.news_list.style2 > li .infos {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
}

.news_list.style2 > li .infos a {
  width: 100%;
  height: auto;
  display: block;
  padding: 20px 40px;
}

.news_list.style2 > li .infos h2 {
  height: 60px;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news_list.style2 > li .infos p {
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 10px;
}

.news_list.style2 > li .infos p.date {
  font-size: 12px;
  margin-top: 20px;
}

.news_list.style2 > li .infos p:not(.date) {
  height: 60px;
}

.news_list.style2 > li:hover .infos {
  transform: translateY(70px);
  -webkit-transform: translateY(70px);
  -moz-transform: translateY(70px);
  -ms-transform: translateY(70px);
  -o-transform: translateY(70px);
}



.pagination_con {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.pagination_con .pagination_wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.pagination_con .pagination_list {
  display: flex;
  justify-content: center;
}

.pagination_con .pagination_list > li {
  width: auto;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--GREEN);
}

.pagination_con .pagination_list > li:not(:last-child) {
  margin-right: 10px;
}

.pagination_con .pagination_list > li a {
  width: auto;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination_con .pagination_list > li span {
  min-width: 30px;
  font-size: 14px;
  color: var(--GREEN);
  line-height: 30px;
  padding: 0 5px;
  text-align: center;
}

.pagination_con .pagination_list > li:hover:not(.more), .pagination_con .pagination_list > li.active:not(.more) {
  background-color: var(--GREEN);
}

.pagination_con .pagination_list > li:hover:not(.more) span, .pagination_con .pagination_list > li.active:not(.more) span {
  color: #fff;
}

.pagination_con .pagination_list > li.more {
  background-color: transparent;
  border: 0;
  cursor: default;
}

.pagination_con .pagination_list > li.more span {
  color: var(--BLACK);
}

.pagination_con .pagination_list > li.more a {
  cursor: default;
}

.pagination_con .btn_prev,
.pagination_con .btn_next {
  width: auto;
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  display: block;
  background-color: var(--GREEN);
  margin-right: 10px;
}

.pagination_con .btn_prev a,
.pagination_con .btn_next a {
  padding: 0 10px;
}

.pagination_con .btn_prev span,
.pagination_con .btn_next span {
  font-size: 14px;
  color: #fff;
}

.pagination_con .btn_prev.disabled,
.pagination_con .btn_next.disabled {
  background-color: var(--GRAY);
  cursor: default;
}

.pagination_con .btn_next {
  margin-left: 10px;
  margin-right: 0;
}

.md_contact {
  background: url(../img/contact_bg.jpg?t=09082125) no-repeat;
  background-size: auto 100%;
  background-position: center;
  background-color: #fff;
}

.md_contact .contact_con {
  padding: 20px 0 40px 0;
  background-color: rgba(102, 102, 102, 0.1);
}

.md_contact .contact_con .title_style3 {
  margin-bottom: 50px;
}

.md_contact .contact_box {
  display: flex;
}

.md_contact .contact_box .cb_left {
  width: 500px;
  margin-right: 70px;
  padding-left: 100px;
}

.md_contact .contact_box .cb_left h4 {
  font-size: 24px;
  line-height: 36px;
}

.md_contact .contact_box .cb_left h5 {
  font-size: 18px;
  line-height: 36px;
}

.md_contact .contact_box .cb_left .contact_list {
  margin-top: 40px;
  font-size: 14px;
  line-height: 20px;
}

.md_contact .contact_box .cb_left .contact_list > li {
  padding-left: 32px;
  font-family: Arial, Helvetica, sans-serif;
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: left center;
}

.md_contact .contact_box .cb_left .contact_list > li:not(:last-child) {
  margin-bottom: 10px;
}

.md_contact .contact_box .cb_left .contact_list > li.i_addr {
  background-image: url(../img/ci_addr.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_fax {
  background-image: url(../img/ci_fax.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_email {
  background-image: url(../img/ci_email.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_wechat {
  background-image: url(../img/ci_wechat.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_msn {
  background-image: url(../img/ci_msn.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_skype {
  background-image: url(../img/ci_skype.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_app {
  background-image: url(../img/ci_app.png?t=09082128);
}

.md_contact .contact_box .cb_left .contact_list > li.i_qq {
    background-image: url(../img/ci_qq.png?t=09082128);
}
  

.md_contact .contact_box .cb_left .line {
  width: 100%;
  height: auto;
  border-top:  1px dashed #fff;
  margin-top: 40px;
}

.md_contact .contact_box .cb_right {
  width: 500px;
}

.md_contact .form_tip{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--GREEN);
}

.md_products {
  background: url(../img/contact_bg.jpg) no-repeat;
  background-position: center center;
  background-color: #fff;
}

.md_products .md_wrap {
  width: 1000px;
  display: flex;
  align-items: flex-start;
}

.md_products .md_wrap .md_left {
  width: 300px;
  min-height: 1265px;
  margin-right: 10px;
  background-color: rgba(102, 102, 102, 0.1);
  padding: 20px;
}

.md_products .md_wrap .md_left .title_style4 {
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}

.md_products .md_wrap .md_left .catelogue_list > li:not(:last-child) {
  margin-bottom: 10px;
}

.md_products .md_wrap .md_left .catelogue_list > li a {
  line-height: 20px;
  border-bottom: 1px solid transparent;
  display: inline-block;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.md_products .md_wrap .md_left .catelogue_list > li.active a {
  font-weight: bold;
  color: var(--GREEN);
  border-color: var(--GREEN);
}

.md_products .md_wrap .md_left .catelogue_list > li:hover a {
  color: var(--GREEN);
}

.md_products .md_wrap .md_right {
  width: 690px;
  min-height: 1265px;
  height: auto;
  background-color: rgba(102, 102, 102, 0.1);
  padding: 20px 25px;
}

.md_products .md_wrap .md_right .prod_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.md_products .md_wrap .md_right .prod_top .title_style3 {
  text-align: left;
}

.search_hottag a{
 font-weight: bold;
 color: var(--GREEN);
}

.search_con {
  width: 280px;
  height: auto;
  border: 1px solid #fff;
  border-radius: 5px;
  position: relative;
  background-color: #fff;
}

.search_con input {
  width: 100%;
  height: 40px;
  font-size: 14px;
  color: var(--BLACK);
  line-height: 40px;
  padding: 0 50px 0 10px;
  outline: none;
  border: 0;
  border-radius: 5px;
  background-color:transparent;
}

.search_con .btn_search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../img/search_icon.gif) no-repeat;
  background-size: 12px;
  background-position: center;
}

.search_con > ul{
	width: 280px; max-height: 186px; overflow-y: auto;
	position: absolute; right: -1px; top: 40px;
	border: 1px solid #473237; border-top: 1px solid #ddd;
	display: none;
	background-color: #fff;
}
.search_con > ul > li{
	border-bottom: 1px solid #ddd;
}
.search_con > ul > li > a{
	line-height: 20px; display: block; text-align: left;
	padding: 5px 10px;
	font-size: 14px !important; color: #473237;
}
.search_con > ul > li > a:hover{
	color:#9EA700;
}
.search_con > ul > li:last-child{
	border-bottom: 0;
}

.md_products .md_wrap .md_right .product_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.md_products .md_wrap .md_right .product_list > li {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 2px solid #ddd;
}

.md_products .md_wrap .md_right .product_list > li:not(:nth-child(3n)) {
  margin-right: 20px;
}

.md_products .md_wrap .md_right .product_list > li:not(:nth-child(-n+3)) {
  margin-top: 20px;
}

.md_products .md_wrap .md_right .product_list > li .thumb {
  width: 100%;
  height: 196px;
  overflow: hidden;
}

.md_products .md_wrap .md_right .product_list > li .thumb img {
  width: 100%;
  display: block;
}

.md_products .md_wrap .md_right .product_list > li:hover {
  border-color: var(--GREEN);
}

.pg_detail .md_newsdt .news_title {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: var(--GREEN);
}

.pg_detail .md_newsdt .news_date {
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

.pg_detail .md_newsdt .newsdt_intros {
  margin-top: 50px;
  font-size: 16px;
  color: var(--BLACK);
  text-align: justify;
  line-height: 28px;
}

.pg_detail .md_newsdt .newsdt_intros p:not(:last-child) {
  margin-bottom: 24px;
}

.pg_detail .md_newsdt .newsdt_intros img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.prodt_con {
  width: 100%;
  height: auto;
}

.prodt_con .prodt_pic {
  width: 500px;
  height: auto;
  margin-bottom: 50px;
}

.prodt_con .prodt_pic img {
  width: 100%;
  display: block;
}

.prodt_con .prodt_box {
  display: flex;
}

.prodt_con .prodt_box .pb_left {
  width: calc(100% - 200px);
}

.prodt_con .prodt_box .pb_right {
  width: 180px;
  margin-left: 20px;
}

.prodt_con .prodt_box .prodt_title {
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 15px;
}

.params_list {
  overflow-y: auto;
}

.params_list > li {
  width: 100%;
  display: flex;
}

.params_list > li:not(:last-child) {
  margin-bottom: 15px;
}

.params_list > li .label {
  font-size: 14px;
  line-height: 20px;
  margin-right: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.params_list > li .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.params_list > li .list > li {
  display: flex;
  margin-right: 5px;
  margin-bottom: 5px;
}

.params_list > li .list > li a {
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  background-color: var(--GREEN);
  color: #fff;
  display: block;
  font-size: 14px;
}

.prodt_con .prodt_box .qrcode {
  width: 180px;
  height: auto;
}

.prodt_con .prodt_box .qrcode img {
  width: 100%;
  display: block;
}

.container_lock{
  width: 100%;
  height: 100%;
  padding-top: 80px;
  box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
  position: fixed; left: 0; top: 0;
  overflow: hidden;
}
.page_tip_fixed{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed; left: 0; top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
}
.page_tip{
    margin: 0 auto;
    width: 1000px;
    height: 100%;
    margin-left: -500px;
    position: absolute; left: 50%; top: 0;
}
.page_tip p{
    width: 250px;
    height: 101px;
    position: absolute;
    cursor: pointer;
}
.page_tip .step1{
    left: 100px; top: 300px;
    background: url(/img/step1.png) no-repeat;
}
.page_tip .step2{
    left: 590px; top: 200px;
    display: none;
    background: url(/img/step2.png) no-repeat;
}
.page_tip .step3{
    left: 720px; top: 210px;
    display: none;
    background: url(/img/step3.png) no-repeat;
}

.popup_con {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.popup_con .shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup_con .btn_close {
  width: 50px;
  height: 50px;
  background: url(../img/i_close.png) no-repeat;
  background-size: 30px;
  background-position: center;
  position: absolute;
  right: -12px;
  top: -50px;
}

.popup_con .popup_wrap {
  width: 70%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.popup_con .video_con {
  width: 100%;
  height: auto;
}

.popup_con .video_con video {
  width: 100%;
  display: block;
}

.pagination_c{
    width: auto; max-width: 100%;
    display: table;
	margin: 20px auto 0 auto;
	overflow-y: auto;
}
.pagination_c .pagination_list{
    width: auto;
    overflow: hidden;
}
.pagination_c .pagination_list>li{
    margin: 0 4px;
    display: inline-block;
    text-align: center;
}
.pagination_c .pagination_list>li > a{
	height: 30px; line-height: 30px;
	display: block;
	font-size: 12px; font-family: Arial, Helvetica, sans-serif; color: #9EA700;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 0 10px;
    background-color: #fff;
}
.pagination_c .pagination_list>li.active > a{
	color: #fff;
	border-color: #9EA700;
	background-color: #9EA700;
}