@keyframes yun {
  0% {
    right: 0;
    top: 0;
    opacity: 0;
  }
  10% {
    right: 10%;
    top: 20px;
    opacity: 0.5;
  }
  20% {
    right: 20%;
    top: 0px;
    opacity: 1;
  }
  30% {
    right: 30%;
    top: 20px;
    opacity: 1;
  }
  40% {
    right: 40%;
    top: 0px;
    opacity: 1;
  }
  50% {
    right: 50%;
    top: 20px;
    opacity: 1;
  }
  60% {
    right: 60%;
    top: 0px;
    opacity: 1;
  }
  70% {
    right: 70%;
    top: 20px;
    opacity: 1;
  }
  80% {
    right: 80%;
    top: 0px;
    opacity: 0.5;
  }
  90% {
    right: 90%;
    top: 20px;
    opacity: 0;
  }
  100% {
    right: 0%;
    top: 0px;
    opacity: 0;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 92px;
  height: 92px;
  transition: all 0.5s ease;
}
header.active {
  background-color: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}
header.active > div .logo .logo_text a h3 {
  color: #333;
}
header.active > div nav ul li a {
  color: #333;
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 46%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img {
  margin-right: 20px;
}
header > div .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a img {
  height: 80px;
}
header > div .logo .logo_text a h3 {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
header > div .logo .logo_text a p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 42%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 100%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  position: relative;
  z-index: 999;
  transition: all 1s;
  padding: 0 20px;
  box-sizing: border-box;
  transition: all 0.5s ease;
  background-position: center;
  background-repeat: no-repeat;
}
header > div nav ul li:hover {
  background-image: url(/images/nav_bg.png);
  background-position: center;
  background-repeat: no-repeat;
}
header > div nav ul li:hover a {
  color: #3ab08c;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 112px;
  left: 0;
  background-color: #e6f2f8;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #3ab08c;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 150px;
  border-left: 1px solid #dfdfdf;
  padding-left: 20px;
}
header > div nav .tool > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool > div i {
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #3ab08c;
  line-height: 30px;
  text-align: center;
}
header > div nav .tool > div h3 {
  margin-left: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
}
header > div nav .tool > p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  header {
    height: 90px;
    line-height: 90px;
  }
  header > div nav ul li {
    padding: 0 10px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer {
  width: 100%;
  height: 564px;
}
footer .footer_top {
  width: 100%;
  height: 504px;
  background-image: url(/images/foot_bg.jpg);
}
footer .footer_top .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_top .w80 .left {
  margin-top: 200px;
  width: 72%;
}
footer .footer_top .w80 .left .top {
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff40;
}
footer .footer_top .w80 .left .top ul {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_top .w80 .left .top ul li.line {
  height: 20px;
  width: 1px;
  background-color: #fff;
}
footer .footer_top .w80 .left .top ul li a {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .footer_top .w80 .left .bottom {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_top .w80 .left .bottom .b_l_item {
  width: 82%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_top .w80 .left .bottom .b_l_item .b_item {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_top .w80 .left .bottom .b_l_item .b_item:nth-of-type(1) p {
  font-size: 30px;
}
footer .footer_top .w80 .left .bottom .b_l_item .b_item:nth-of-type(4) {
  margin-bottom: 0;
}
footer .footer_top .w80 .left .bottom .b_l_item .b_item span {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-right: 10px;
}
footer .footer_top .w80 .left .bottom .b_l_item .b_item p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .footer_top .w80 .left .bottom .b_r_item .img img {
  width: initial;
}
footer .footer_top .w80 .left .bottom .b_r_item .text {
  margin-top: 10px;
}
footer .footer_top .w80 .left .bottom .b_r_item .text p {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
footer .footer_top .w80 .right {
  margin-top: 180px;
}
footer .footer_bottom {
  width: 100%;
  height: 60px;
  background-color: #fde400;
}
footer .footer_bottom .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_bottom .w80 .f_b_left a {
  font-size: 15px;
  color: #000;
  line-height: 60px;
  font-weight: 100;
  text-align: left;
}
footer .footer_bottom .w80 .f_b_right a {
  font-size: 15px;
  color: #000;
  line-height: 60px;
  font-weight: 100;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  footer {
    height: 434px;
  }
  footer .footer_top {
    background-size: cover;
    height: 376px;
  }
  footer .footer_top .w80 .left {
    margin-top: 130px;
  }
  footer .footer_top .w80 .left .bottom .b_l_item .b_item:nth-of-type(1) p {
    font-size: 24px;
  }
  footer .footer_top .w80 .left .bottom .b_l_item .b_item:nth-of-type(4) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  footer .footer_top .w80 .left .bottom .b_l_item .b_item:nth-of-type(4) p {
    width: calc(100% - 60px);
  }
  footer .footer_top .w80 .left .bottom .b_l_item .b_item p {
    font-size: 16px;
  }
  footer .footer_top .w80 .left .bottom .b_l_item .b_item span {
    font-weight: 700;
  }
  footer .footer_top .w80 .left .bottom .b_r_item .img img {
    width: 100px;
  }
  footer .footer_top .w80 .right img {
    width: 160px;
  }
}
@media screen and (max-width: 992px) {
  footer .footer_top .w80 .left {
    width: 100%;
  }
  footer .footer_top .w80 .right {
    display: none;
  }
  footer .footer_top .w80 .left .top {
    display: none;
  }
  footer .footer_top .w80 .left .bottom .b_l_item {
    width: 100%;
  }
  footer .footer_top .w80 .left .bottom .b_r_item {
    display: none;
  }
  footer .footer_bottom .w80 .f_b_left {
    display: none;
  }
}
.index .part01 {
  height: 98vh;
  overflow: hidden;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img {
  width: 85%;
  position: absolute;
  left: 7.5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_1 {
  width: 50%;
  margin-right: 8%;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_1 img {
  width: 100%;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 {
  width: 44%;
  display: none;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub1 {
  position: relative;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub1 img {
  width: 200px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  animation: yun 8s linear infinite;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 {
  margin-top: 180px;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 .i_i_img {
  text-align: left;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 .i_i_img img {
  width: 100%;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 .i_i_text p {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-left: 20px;
  margin-top: 30px;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92px;
  background-image: url(/images/mask_img.png);
  background-position: left bottom;
  z-index: 9;
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .bg {
  width: 100%;
  -webkit-filter: url(#water);
  filter: url(#water);
}
.index .part01 .swiper-container .swiper-wrapper .swiper-slide .bg img {
  width: 102%;
}
.index .part02 {
  width: 100%;
  background-image: url(/images/index_part01_bg.jpg);
  background-size: cover;
  background-position: left top;
  padding-bottom: 70px;
}
.index .part02 .w80 .title {
  margin-top: 60px;
  text-align: center;
}
.index .part02 .w80 .title img {
  width: initial;
}
.index .part02 .w80 .title p {
  margin-top: 22px;
  margin-bottom: 58px;
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .part02 .w80 .part02_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px;
  box-sizing: border-box;
}
.index .part02 .w80 .part02_list ul li {
  width: 31%;
  box-sizing: border-box;
  border-radius: 6px;
  box-shadow: -8px 8px 0px #3ab08c;
  margin-bottom: 10px;
  overflow: hidden;
}
.index .part02 .w80 .part02_list ul li::after {
  display: block;
}
.index .part02 .w80 .part02_list ul li a .img {
  text-align: center;
  height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .part02_list ul li a .img img {
  width: initial;
}
.index .part02 .w80 .part02_list ul li a .text {
  border-top: 1px solid #fff;
}
.index .part02 .w80 .part02_list ul li a .text .i_text {
  margin-top: 4px;
  background-color: #fff;
}
.index .part02 .w80 .part02_list ul li a .text .i_text p {
  font-size: 24px;
  color: #000;
  line-height: 68px;
  font-weight: 100;
  text-align: center;
}
.index .part03 {
  width: 100%;
  height: 1000px;
  background-image: url(/images/index_part02_bg.jpg);
  background-size: cover;
  background-position: left top;
  overflow: hidden;
}
.index .part03 .w80 {
  margin-top: 270px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part03 .w80 .left {
  padding-left: 20px;
  width: 46%;
}
.index .part03 .w80 .left .img {
  margin-top: 40px;
  padding-bottom: 30px;
  width: 100%;
}
.index .part03 .w80 .left .img video {
  width: inherit;
  box-shadow: -20px 30px 0 #3ab08c;
  border-radius: 34px;
}
.index .part03 .w80 .right {
  width: 46%;
}
.index .part03 .w80 .right .title {
  margin-top: 140px;
}
.index .part03 .w80 .right .title .img {
  margin-left: -10px;
}
.index .part03 .w80 .right .title .img img {
  width: initial;
}
.index .part03 .w80 .right .text {
  margin-top: 30px;
}
.index .part03 .w80 .right .text h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 .w80 .right .text p {
  margin-top: 30px;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.index .part03 .w80 .right .text a {
  margin-top: 66px;
  display: block;
  width: 214px;
  height: 56px;
  border-radius: 30px;
  background-color: #3ab08c;
  font-size: 18px;
  color: #fff;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
}
.index .part04 {
  margin-top: 70px;
  width: 100%;
  height: 1200px;
  background-image: url(/images/index_part04_bg.jpg);
  background-size: cover;
  background-position: left top;
  overflow: hidden;
}
.index .part04 .w80 .title {
  text-align: center;
}
.index .part04 .w80 .title img {
  margin: 0 auto;
}
.index .part04 .w80 .pro_nav {
  margin-top: 30px;
}
.index .part04 .w80 .pro_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .pro_nav ul li {
  width: auto;
  height: 56px;
  padding: 0 40px;
  background-color: #e4e8ec;
  border-radius: 30px;
  margin: 0 10px;
}
.index .part04 .w80 .pro_nav ul li.active {
  background-color: #3ab08c;
}
.index .part04 .w80 .pro_nav ul li.active a {
  color: #fff;
}
.index .part04 .w80 .pro_nav ul li a {
  font-size: 24px;
  color: #000;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
}
.index .part04 .w80 .pro_list {
  margin-top: 70px;
  position: relative;
}
.index .part04 .w80 .pro_list ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.index .part04 .w80 .pro_list ul.active {
  opacity: 1;
  position: static;
  transition: all 1s ease;
}
.index .part04 .w80 .pro_list ul li {
  width: 24%;
  margin-right: 1.3%;
  margin-bottom: 26px;
}
.index .part04 .w80 .pro_list ul li:nth-of-type(4n) {
  margin-right: 0;
}
.index .part04 .w80 .pro_list ul li a .img {
  border: 1px solid #dfdfdf;
  width: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin-bottom: 3px;
  box-sizing: border-box;
}
.index .part04 .w80 .pro_list ul li a .img img {
  width: 100%;
}
.index .part04 .w80 .pro_list ul li a .text {
  background-color: #e4e8ec;
  height: 60px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
}
.index .part04 .w80 .pro_list ul li a .text p {
  font-size: 18px;
  color: #000;
  line-height: 60px;
  font-weight: 100;
  text-align: center;
}
.index .part04 .w80 .pro_list .more {
  text-align: center;
  margin-top: 40px;
}
.index .part04 .w80 .pro_list .more a {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.index .part04 .w80 .pro_list .more a i {
  font-size: 18px;
  margin-right: 8px;
}
.index .part05 {
  padding-top: 120px;
  margin-bottom: 60px;
  background-image: url(/images/index_part05_bg.jpg);
  background-size: 100%;
  background-position: left bottom;
}
.index .part05 .w80 .title {
  text-align: center;
}
.index .part05 .w80 .title img {
  margin: 0 auto;
}
.index .part05 .w80 .bottom {
  margin-top: 70px;
}
.index .part05 .w80 .bottom .b_item1 {
  padding-bottom: 30px;
  border-bottom: 1px solid #dfdfdf;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.index .part05 .w80 .bottom .b_item1:hover {
  background-color: #e6f2f8;
  padding: 30px;
}
.index .part05 .w80 .bottom .b_item1 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_left {
  width: 70%;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_left span {
  font-size: 20px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_left h3 {
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 30px;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_left p {
  font-size: 18px;
  color: #333;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
  margin-bottom: 56px;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_right {
  width: 26%;
}
.index .part05 .w80 .bottom .b_item1 a .b_item1_right img {
  width: 100%;
}
.index .part05 .w80 .bottom .b_item2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #dfdfdf;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left {
  width: 48%;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left:hover {
  background-color: #e6f2f8;
  padding: 0 30px;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left a {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_title i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #000;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_title span {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  padding-left: 10px;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_date p {
  font-size: 20px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_line {
  width: 1px;
  height: 40px;
  background-color: #dfdfdf;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right {
  width: 48%;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right:hover {
  background-color: #e6f2f8;
  padding: 0 30px;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right a {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #000;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title span {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  padding-left: 10px;
}
.index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_date p {
  font-size: 20px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part06 {
  margin-top: 110px;
  margin-bottom: 50px;
}
.index .part06 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part06 .w80 .left {
  width: 22%;
  height: auto;
  margin-left: 20px;
  margin-bottom: 10px;
  background-color: #ffffe3;
  padding: 10px 40px;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: -6px 8px 0px #3ab08c;
}
.index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide {
  flex-wrap: wrap;
  background-color: #ffffe3;
}
.index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide .img {
  height: 340px;
}
.index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide .img img {
  height: inherit;
}
.index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide .text {
  margin-top: 10px;
}
.index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part06 .w80 .right {
  width: 74%;
}
.index .part06 .w80 .right .swiper-container .swiper-wrapper .swiper-slide {
  border-radius: 10px;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.index .part06 .w80 .right .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 82%;
}
.index .part06 .w80 .right .swiper-container .swiper-wrapper .swiper-slide .text {
  background-color: #3ab08c;
  width: 100%;
}
.index .part06 .w80 .right .swiper-container .swiper-wrapper .swiper-slide .text p {
  font-size: 18px;
  color: #fff;
  line-height: 3;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .index .part05 {
    padding-top: 50px;
  }
  .index .part01 {
    height: 86vh;
  }
  .index .part06 {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_1 {
    width: 34%;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_1 img {
    width: 100%;
  }
  .index .part06 .w80 .left .swiper-container .swiper-wrapper .swiper-slide .img {
    height: 250px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 20px;
  }
  header > div .logo .logo_img a img {
    height: 62px;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 .i_i_img img {
    width: 70%;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 .i_i_text p {
    font-size: 26px;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub2 {
    margin-top: 140px;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_2 .img_2_sub1 img {
    width: 140px;
  }
  .index .part02 .w80 .title {
    margin-top: 0px;
  }
  .index .part02 .w80 .title p {
    font-size: 20px;
    margin-bottom: 38px;
    margin-top: 12px;
  }
  .index .part02 .w80 .part02_list ul li a .img {
    height: 350px;
  }
  .index .part02 .w80 .part02_list ul li a .text .i_text p {
    font-size: 18px;
  }
  .index .part03 {
    height: 910px;
  }
  .index .part03 .w80 .left {
    width: 40%;
    padding-left: 40px;
  }
  .index .part03 .w80 .left .img {
    width: 100%;
  }
  .index .part03 .w80 .left .img img {
    width: 100%;
  }
  .index .part03 .w80 .right {
    width: 50%;
  }
  .index .part03 .w80 .right .title {
    margin-top: 40px;
  }
  .index .part03 .w80 .right .text h3 {
    font-size: 24px;
  }
  .index .part02 .w80 .title img {
    width: 384px;
  }
  .index .part03 .w80 .right .title .img img {
    width: 427px;
  }
  .index .part03 .w80 .right .text {
    margin-top: 20px;
  }
  .index .part04 .w80 .title img {
    width: 467px;
  }
  .index .part04 {
    height: 1020px;
  }
  .index .part05 .w80 .title img {
    width: 449px;
  }
  .index .part04 .w80 .pro_nav ul li {
    height: 50px;
  }
  .index .part04 .w80 .pro_nav ul li a {
    line-height: 52px;
    font-size: 18px;
  }
  .index .part05 .w80 .bottom .b_item1 a .b_item1_left h3 {
    font-size: 18px;
  }
  .index .part05 .w80 .bottom .b_item1 a .b_item1_left p {
    font-size: 16px;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title span {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 .swiper-container {
    height: 200px;
    margin-top: 50px;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .mask {
    background-size: contain;
    background-repeat: no-repeat;
  }
  .index .part01 .swiper-container .swiper-button-prev {
    display: none;
  }
  .index .part01 .swiper-container .swiper-button-next {
    display: none;
  }
  .index .part01 .swiper-container .swiper-wrapper .swiper-slide .img .img_1 {
    width: 62%;
  }
  .index .part01 {
    height: 36vh;
  }
  .index .part02 .w80 .title img {
    width: 70%;
  }
  .index .part02 .w80 .title p {
    font-size: 18px;
    line-height: 1.3;
  }
  .index .part02 .w80 .part02_list ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .index .part02 .w80 .part02_list ul li a .img img {
    width: 100%;
  }
  .index .part02 .w80 .part02_list ul li a .img {
    height: 320px;
    overflow: hidden;
  }
  .index .part02 .w80 .part02_list ul li a .text .i_text {
    margin-top: 0;
  }
  .index .part03 {
    background-size: cover;
  }
  .index .part03 .w80 .left {
    width: 100%;
    padding-left: 10px;
  }
  .index .part03 .w80 {
    margin-top: 0;
  }
  .index .part03 .w80 .left .img {
    margin-top: 0;
  }
  .index .part03 .w80 .left .img video {
    box-shadow: -10px 10px 0 #3ab08c;
    border-radius: 12px;
  }
  .index .part03 .w80 .right {
    width: 100%;
  }
  .index .part03 .w80 .right .title .img img {
    width: 70%;
  }
  .index .part03 .w80 .right .title .img {
    margin-left: 0;
  }
  .index .part03 .w80 .right .text h3 {
    font-size: 20px;
  }
  .index .part03 .w80 .right .text p {
    line-height: 1.6;
  }
  .index .part03 .w80 .right .text a {
    height: 50px;
    line-height: 50px;
  }
  .index .part04 .w80 .title img {
    width: 80%;
  }
  .index .part04 .w80 .pro_nav ul li {
    padding: 0 20px;
    margin-bottom: 10px;
  }
  .index .part04 .w80 .pro_list ul li {
    width: 100%;
  }
  .index .part04 {
    height: auto;
  }
  .index .part05 .w80 .title img {
    width: 80%;
  }
  .index .part05 .w80 .bottom .b_item1 a .b_item1_right {
    width: 100%;
  }
  .index .part05 .w80 .bottom .b_item1 a .b_item1_left {
    width: 100%;
    margin-top: 20px;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_left {
    width: 100%;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_right {
    width: 100%;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_line {
    display: none;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_title i {
    display: none;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_date {
    display: none;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title i {
    display: none;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_date {
    display: none;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_left a .b_item2_left_title span {
    padding-left: 0;
  }
  .index .part05 .w80 .bottom .b_item2 .b_item2_right a .b_item2_right_title span {
    padding-left: 0;
  }
  .index .part05 .w80 .bottom {
    margin-top: 50px;
  }
  .index .part06 {
    display: none;
  }
}
.product .main .part01 .n_title {
  margin-top: 100px;
}
.product .main .part01 .n_title h3 {
  text-align: center;
}
.product .main .part01 .n_title .line {
  width: 100px;
  height: 6px;
  background-color: #3ab08c;
  margin: 20px auto;
  position: relative;
  display: none;
}
.product .main .part01 .n_title .line::before {
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  background-color: #3ab08c;
  position: absolute;
}
.product .main .part01 .n_title p {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product .main .part01 .pro_content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product .main .part01 .pro_content .left {
  width: 26%;
}
.product .main .part01 .pro_content .left .left_01 .left_01_title {
  background-color: #3ab08c;
  box-sizing: border-box;
  padding-left: 20px;
}
.product .main .part01 .pro_content .left .left_01 .left_01_title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .pro_content .left .left_01 .left_01_title h3 i {
  font-size: 24px;
  margin-right: 10px;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item {
  border-bottom: 1px solid #ededed;
  background-color: #eef9ff;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item.on .f_a i {
  transform: rotate(90deg);
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item.on ul li {
  height: 54px;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item .f_a {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item .f_a a {
  font-size: 18px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
  padding-left: 22px;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item .f_a i {
  font-size: 20px;
  color: #3ab08c;
  transition: all 0.5s ease;
  display: inline-block;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item ul {
  background-color: #fbfbfb;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item ul li {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item ul li a {
  font-size: 16px;
  color: #666;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  padding-left: 20px;
}
.product .main .part01 .pro_content .left .left_02 {
  margin-top: 80px;
}
.product .main .part01 .pro_content .left .left_02 .left_02_title {
  background-color: #3ab08c;
  box-sizing: border-box;
  padding-left: 20px;
}
.product .main .part01 .pro_content .left .left_02 .left_02_title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .pro_content .left .left_02 .left_02_title h3 i {
  font-size: 24px;
  margin-right: 10px;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item {
  margin: 10px 0;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item:hover {
  background-color: #e6f2f8;
  padding: 10px;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item:hover a .text p {
  font-weight: 700;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item:hover a .text span {
  background-color: #3ab08c;
  border: none;
  color: #fff;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item:nth-of-type(1) {
  margin-top: 40px;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .img {
  width: 32%;
  border: 1px solid #efefef;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .img img {
  width: 100%;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .text {
  width: 60%;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .text p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .text span {
  margin-top: 30px;
  display: inline-block;
  border: 1px solid #818181;
  padding: 6px 8px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  transition: all 0.5s ease;
}
.product .main .part01 .pro_content .right {
  width: 70%;
}
.product .main .part01 .pro_content .right ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .pro_content .right ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 36px;
  transition: all 0.5s ease;
}
.product .main .part01 .pro_content .right ul li:hover {
  transform: translateY(-10px);
}
.product .main .part01 .pro_content .right ul li:hover a .img {
  box-shadow: 0 0 10px rgba(0, 76, 121, 0.582);
}
.product .main .part01 .pro_content .right ul li:hover a .img .mask {
  height: 100%;
}
.product .main .part01 .pro_content .right ul li:hover a .text .t1 h3 {
  color: #3ab08c;
}
.product .main .part01 .pro_content .right ul li:hover a .text .t2 {
  background-color: #3ab08c;
}
.product .main .part01 .pro_content .right ul li:nth-of-type(3n) {
  margin-right: 0;
}
.product .main .part01 .pro_content .right ul li a .img {
  width: 100%;
  border: 1px solid #dbdbdb;
  transition: all 0.5s ease;
  position: relative;
}
.product .main .part01 .pro_content .right ul li a .img img {
  width: 100%;
}
.product .main .part01 .pro_content .right ul li a .img .mask {
  overflow: hidden;
  transition: all 0.5s ease;
  width: 100%;
  height: 0%;
  background-color: rgba(42, 179, 116, 0.8);
  position: absolute;
  left: 0;
  top: 0;
}
.product .main .part01 .pro_content .right ul li a .img .mask .m_box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.product .main .part01 .pro_content .right ul li a .img .mask .m_box i {
  color: #fff;
  font-size: 54px;
  line-height: 1;
}
.product .main .part01 .pro_content .right ul li a .img .mask .m_box p {
  color: #fff;
  font-size: 18px;
}
.product .main .part01 .pro_content .right ul li a .text {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .part01 .pro_content .right ul li a .text .t1 {
  width: 100%;
}
.product .main .part01 .pro_content .right ul li a .text .t1 h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.product .main .part01 .pro_content .right ul li a .text .t1 p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .main .part01 .pro_content .right ul li a .text .t2 {
  display: none;
  width: 0%;
  padding: 12px 8px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  background-color: #3ab08c;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1440px) {
  .product .main .part01 .n_title h3 img {
    width: 480px;
  }
  .product .main .part01 .n_title {
    margin-top: 90px;
  }
  .product .main .part01 .n_title p {
    font-size: 18px;
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_title h3 {
    font-size: 18px;
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_title h3 i {
    font-size: 16px;
    margin-right: 8px;
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item .f_a {
    height: 62px;
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item .f_a a {
    font-size: 15px;
    display: block;
    width: calc(100% - 50px);
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item:nth-last-of-type(1) .f_a a {
    line-height: 1;
  }
  .product .main .part01 .pro_content .left .left_01 .left_01_list .left_01_list_item ul li a {
    font-size: 13px;
  }
  .product .main .part01 .pro_content .left .left_02 .left_02_title h3 {
    font-size: 18px;
  }
  .product .main .part01 .pro_content .left .left_02 .left_02_title h3 i {
    font-size: 16px;
    margin-right: 8px;
  }
  .product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .text p {
    font-size: 16px;
  }
  .product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item a .text span {
    margin-top: 12px;
  }
  .product .main .part01 .pro_content .left .left_02 .left_02_list .left_02_list_item:nth-of-type(1) {
    margin-top: 20px;
  }
  .product .main .part01 .pro_content .right ul li a .text .t1 h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
  }
  .product .main .part01 .pro_content .right ul li a .text .t1 p {
    font-size: 13px;
  }
  .product .main .part01 .pro_content .right ul li a .text .t2 {
    width: 34%;
    font-size: 12px;
    display: none;
  }
  .product .main .part01 .pro_content .right ul li a .text .t1 {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .product .main .part01 .n_title h3 img {
    width: 80%;
  }
  .product .main .part01 .n_title p {
    margin-top: 20px;
  }
  .product .main .part01 .pro_content .left .left_01 {
    display: none;
  }
  .product .main .part01 .pro_content .left .left_02 {
    display: none;
  }
  .product .main .part01 .pro_content .right {
    width: 100%;
  }
  .product .main .part01 .pro_content .right ul li {
    width: 100%;
  }
}
.product_details .main {
  margin-top: 120px;
  margin-bottom: 70px;
}
.product_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product_details .main > div .left {
  width: 68%;
}
.product_details .main > div .left .n_title {
  margin-top: 100px;
}
.product_details .main > div .left .n_title h3 {
  text-align: left;
}
.product_details .main > div .left .n_title .line {
  width: 100px;
  height: 6px;
  background-color: #3ab08c;
  margin: 20px 0;
  position: relative;
}
.product_details .main > div .left .n_title .line::before {
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  background-color: #3ab08c;
  position: absolute;
}
.product_details .main > div .left .pd_title {
  margin-top: 80px;
}
.product_details .main > div .left .pd_title h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .pd_img {
  margin-top: 40px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product_details .main > div .left .pd_img .img_list {
  width: 10%;
  margin-right: 4%;
}
.product_details .main > div .left .pd_img .img_list .pre {
  width: 100%;
  text-align: center;
}
.product_details .main > div .left .pd_img .img_list .pre i {
  font-size: 32px;
  display: inline-block;
  transform: rotate(-90deg);
}
.product_details .main > div .left .pd_img .img_list .next {
  width: 100%;
  text-align: center;
}
.product_details .main > div .left .pd_img .img_list .next i {
  font-size: 32px;
  display: inline-block;
  transform: rotate(90deg);
}
.product_details .main > div .left .pd_img .img_list ul li {
  border: 1px solid #efefef;
  margin-bottom: 10px;
}
.product_details .main > div .left .pd_img .img_list ul li img {
  width: 100%;
}
.product_details .main > div .left .pd_img .img {
  width: 76%;
  text-align: center;
}
.product_details .main > div .left .pd_img .img img {
  width: 600px;
}
.product_details .main > div .left .details {
  background-color: #e6f2f8;
  box-sizing: border-box;
  padding: 40px;
}
.product_details .main > div .left .details .d_title.mt50 {
  margin-top: 50px;
}
.product_details .main > div .left .details .d_title h3 {
  font-size: 26px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .details .d_item {
  margin-top: 30px;
  margin-bottom: 20px;
}
.product_details .main > div .left .details .d_item h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
}
.product_details .main > div .left .details .d_item p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .left .details .d_item table {
  margin-top: 30px;
}
.product_details .main > div .left .details .d_item table tr th {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  line-height: 3;
  font-weight: 700;
  text-align: center;
}
.product_details .main > div .left .details > p img {
  width: 100%;
}
.product_details .main > div .left .details .download {
  margin-top: 24px;
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .details .download .icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .details .download .icon img {
  width: 50px;
}
.product_details .main > div .left .details .download .icon p {
  padding-left: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .details .download .tool a {
  padding: 0 10px;
}
.product_details .main > div .left .details .download .tool a img {
  width: 22px;
}
.product_details .main > div .right {
  width: 26%;
  margin-top: 100px;
}
.product_details .main > div .right .search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .search input {
  border: 1px solid #dadada;
  font-size: 18px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  height: 50px;
  width: calc(100% - 50px);
  padding-left: 20px;
}
.product_details .main > div .right .search button {
  border: none;
  width: 50px;
  height: 50px;
  background-color: #3ab08c;
}
.product_details .main > div .right .search button i {
  font-size: 24px;
  color: #fff;
}
.product_details .main > div .right .right_01 {
  margin-top: 50px;
}
.product_details .main > div .right .right_01 .right_01_title {
  background-color: #3ab08c;
  box-sizing: border-box;
  padding-left: 20px;
}
.product_details .main > div .right .right_01 .right_01_title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .right_01 .right_01_title h3 i {
  font-size: 24px;
  margin-right: 10px;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item {
  border-bottom: 1px solid #ededed;
  background-color: #eef9ff;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item.on .f_a i {
  transform: rotate(90deg);
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item.on ul li {
  height: 54px;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a a {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  padding-left: 22px;
  display: block;
  width: calc(100% - 50px);
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a i {
  font-size: 20px;
  color: #3ab08c;
  transition: all 0.5s ease;
  display: inline-block;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul {
  background-color: #fbfbfb;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li a {
  font-size: 16px;
  color: #666;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
  box-sizing: border-box;
  padding-left: 20px;
}
.product_details .main > div .right .right_02 {
  margin-top: 50px;
}
.product_details .main > div .right .right_02 .right_02_title {
  background-color: #3ab08c;
  box-sizing: border-box;
  padding-left: 20px;
}
.product_details .main > div .right .right_02 .right_02_title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .right_02 .right_02_title h3 i {
  font-size: 24px;
  margin-right: 10px;
}
.product_details .main > div .right .right_02 .right_02_list {
  margin-top: 30px;
}
.product_details .main > div .right .right_02 .right_02_list .right_02_list_item {
  margin: 0px 2px 6px 0;
  display: inline-block;
  background-color: #eef9ff;
  padding: 14px 18px;
}
.product_details .main > div .right .right_02 .right_02_list .right_02_list_item a {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .tel {
  margin-top: 60px;
  background-image: url(/images//message_bg.jpg);
  background-size: 100%;
  height: 440px;
  box-sizing: border-box;
  padding: 20px;
}
.product_details .main > div .right .tel h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}
.product_details .main > div .right .tel p {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.product_details .main > div .right .tel h2 {
  margin-top: 60px;
  font-size: 32px;
  color: #fde400;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.product_details .main > div .right .tel h1 {
  margin-top: 18px;
  font-size: 22px;
  color: #fde400;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .product_details .main > div .left .n_title h3 img {
    width: 360px;
  }
  .product_details .main > div .left .n_title h3 {
    margin-top: 90px;
    text-align: center;
  }
  .product_details .main > div .left .pd_title {
    margin-top: 60px;
  }
  .product_details .main > div .left .pd_title h3 {
    font-size: 30px;
  }
  .product_details .main > div .right .search input {
    font-size: 15px;
  }
  .product_details .main > div .right .right_01 {
    margin-top: 30px;
  }
  .product_details .main > div .right .right_01 .right_01_title h3 i {
    font-size: 18px;
  }
  .product_details .main > div .right .right_01 .right_01_title h3 {
    font-size: 18px;
  }
  .product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a a {
    font-size: 15px;
  }
  .product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li a {
    font-size: 13px;
  }
  .product_details .main > div .right .right_02 .right_02_title h3 i {
    font-size: 18px;
  }
  .product_details .main > div .right .right_02 .right_02_title h3 {
    font-size: 18px;
  }
  .product_details .main > div .right .right_02 .right_02_list .right_02_list_item a {
    font-size: 15px;
  }
  .product_details .main > div .left .details .d_item h3 {
    font-size: 18px;
  }
  .product_details .main > div .left .details .d_item p {
    font-size: 15px;
  }
  .product_details .main > div .right .tel h3 {
    font-size: 26px;
    margin-top: 20px;
  }
  .product_details .main > div .right .tel p {
    font-size: 15px;
  }
  .product_details .main > div .right .tel h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .product_details .main > div .right .tel h1 {
    font-size: 18px;
    margin-top: 10px;
  }
  .product_details .main > div .right .tel {
    height: 310px;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main {
    margin-top: 10px;
  }
  .product_details .main > div .right {
    display: none;
  }
  .product_details .main > div .left {
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img img {
    width: 100%;
  }
  .product_details .main > div .left .n_title h3 img {
    width: 80%;
  }
  .product_details .main > div .left .pd_img .img {
    width: 86%;
  }
  .product_details .main > div .left .details {
    padding: 20px;
  }
}
.about .main .part01 {
  margin-top: 120px;
}
.about .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .left {
  width: 40%;
}
.about .main .part01 .w80 .left .img {
  width: 100%;
  padding-left: 30px;
  box-sizing: border-box;
  padding-bottom: 30px;
}
.about .main .part01 .w80 .left .img img {
  width: 100%;
  box-shadow: -20px 30px 0 #3ab08c;
  border-radius: 34px;
}
.about .main .part01 .w80 .right {
  width: 54%;
}
.about .main .part01 .w80 .right h2 {
  margin-bottom: 30px;
}
.about .main .part01 .w80 .right h3 {
  font-size: 26px;
  color: #3ab08c;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .part01 .w80 .right p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .aboutImg .swiper-container ul li img {
  width: 100%;
}
.about .main .part02 img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .about .main .part01 .w80 .right h2 img {
    width: 427px;
  }
  .about .main .part01 .w80 .right p {
    line-height: 1.4;
    font-size: 16px;
    margin-bottom: 16px;
  }
  .about .main .part01 .w80 .right h2 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 992px) {
  .about .main .part01 {
    margin-top: 80px;
  }
  .about .main .part01 .w80 .left {
    width: 100%;
  }
  .about .main .part01 .w80 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about .main .part01 .w80 .right h2 img {
    width: 80%;
  }
  .about .main .part01 .w80 .left .img img {
    box-shadow: -12px 12px 0 #3ab08c;
    border-radius: 20px;
  }
  .about .main .part01 .w80 .left .img {
    padding-left: 14px;
  }
  .about .main .part01 .w80 .right h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.news2 .main {
  padding-bottom: 80px;
}
.news2 .main > div:first-of-type {
  margin-top: 80px;
  overflow: hidden;
}
.news2 .main > div:first-of-type .newsBoxTitle {
  margin-bottom: 40px;
}
.news2 .main > div:first-of-type .newsBoxTitle h3 {
  text-align: center;
}
.news2 .main > div:first-of-type .newsBoxTitle h3 img {
  margin: 0 auto;
}
.news2 .main > div:first-of-type .newsBoxTitle p {
  margin-top: 30px;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.news2 .main > div:first-of-type .newsBoxTitle p img {
  padding-left: 16px;
}
.news2 .main > div:first-of-type .news_part02 ul li {
  float: left;
  width: 23%;
  margin-right: 2.6%;
  background: #fff;
  transition: 0.5s ease;
  margin-bottom: 40px;
  border-bottom: 3px solid #cecdcf;
  box-shadow: 3px 4px 8px #e6f2f8;
}
.news2 .main > div:first-of-type .news_part02 ul li:nth-of-type(4n) {
  margin-right: 0;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText {
  background-color: #3ab08c;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .tit {
  color: #fff;
  opacity: 0.6;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .desc p {
  color: #fff;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .date {
  color: #fff;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  background-color: #3ab08c;
}
.news2 .main > div:first-of-type .news_part02 ul li a:hover .n_newsImg .n_newsImg_box img {
  transform: calc(1.1);
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText {
  background-color: #e6f2f8;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
  padding: 24px;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 140px;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .tit {
  font-size: 14px;
  line-height: 1;
  height: 14px;
  color: #cccccc;
  overflow: hidden;
  margin: 0 0 6px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
  height: 60px;
  margin-bottom: 16px;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 {
  border-top: 1px solid #d5d5d5;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
  font-size: 15px;
  line-height: 20px;
  color: #a1a0a1;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon {
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  transition: 0.3s ease;
  padding: 6px;
  cursor: pointer;
  background-color: #3ab08c;
  border-radius: 50%;
}
.news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .n_icon img {
  width: 84%;
}
@media screen and (max-width: 1440px) {
  .news2 .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 24px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle h3 img {
    width: 236px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle h3::after {
    margin-top: 14px;
    height: 2px;
    width: 30px;
    background-color: #3ab08c;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p {
    font-size: 16px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p img {
    display: none;
  }
  .news2 .main > div:first-of-type .newsBoxTitle {
    margin-bottom: 30px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 190px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox {
    padding: 20px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 124px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 50px;
    margin-bottom: 10px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 14px;
  }
  .news2 .main {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 992px) {
  .news2 .main > div:first-of-type {
    margin-top: 50px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle h3 {
    font-size: 18px;
  }
  .news2 .main > div:first-of-type .newsBoxTitle p {
    font-size: 13px;
    margin-top: 14px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li {
    width: 100%;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsImg .n_newsImg_box {
    height: 200px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc p {
    font-size: 14px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .desc {
    height: 40px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center {
    padding-bottom: 114px;
  }
  .news2 .main > div:first-of-type .news_part02 ul li a .n_newsText .n_textBox .n_textBox_center .box2 .date {
    font-size: 12px;
  }
  .news2 .main {
    margin-bottom: 40px;
  }
}
.news_details .main {
  margin-bottom: 80px;
  margin-top: 120px;
}
.news_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news_details .main > div .left {
  width: 68%;
}
.news_details .main > div .left .news_title {
  border-bottom: 1px dashed #dfdfdf;
  padding-bottom: 24px;
}
.news_details .main > div .left .news_title h3 {
  font-size: 26px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.news_details .main > div .left .news_attribute {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news_details .main > div .left .news_attribute .attrItem {
  margin: 0 20px;
}
.news_details .main > div .left .news_attribute .attrItem:first-child {
  margin-left: 0;
}
.news_details .main > div .left .news_attribute .attrItem p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .left .news_attribute .attrItem p i {
  margin-right: 8px;
  color: #3ab08c;
}
.news_details .main > div .left .news_descrition {
  background-color: #e6f2f8;
  border: 1px solid #dfdfdf;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  margin-bottom: 40px;
}
.news_details .main > div .left .news_descrition p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .left .news_Content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.news_details .main > div .left .news_Content img {
  width: 100%;
}
.news_details .main > div .right {
  width: 28%;
}
.news_details .main > div .right .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.news_details .main > div .right .top .back {
  width: 48%;
}
.news_details .main > div .right .top .back a {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .top .share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news_details .main > div .right .top .share .tit {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-right: 10px;
}
.news_details .main > div .right .top .share .txt {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .top .share .txt a {
  margin-right: 10px;
}
.news_details .main > div .right .bottom {
  background-color: #e6f2f8;
  padding: 10px;
  margin-top: 40px;
}
.news_details .main > div .right .bottom > div {
  background-color: #fff;
  padding: 20px;
}
.news_details .main > div .right .bottom > div ul li {
  margin-bottom: 30px;
  margin-top: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dfdfdf;
}
.news_details .main > div .right .bottom > div ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.news_details .main > div .right .bottom > div ul li h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.news_details .main > div .right .bottom > div ul li p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.news_details .main > div .right .bottom > div ul li span {
  font-size: 14px;
  color: #3ab08c;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .right_list {
  margin-top: 80px;
}
.news_details .main > div .right .right_list .right_list_title {
  background-color: #3ab08c;
  box-sizing: border-box;
  padding-left: 20px;
}
.news_details .main > div .right .right_list .right_list_title h3 {
  font-size: 24px;
  color: #fff;
  line-height: 54px;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .right_list .right_list_title h3 i {
  font-size: 24px;
  margin-right: 10px;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item {
  margin: 10px 0;
  background-color: #e6f2f8;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item:nth-of-type(1) {
  margin-top: 40px;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a .img {
  width: 25%;
  border: 1px solid #efefef;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a .img img {
  width: 100%;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a .text {
  width: 70%;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a .text p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.news_details .main > div .right .right_list .right_list_list .right_list_list_item a .text span {
  margin-top: 16px;
  display: inline-block;
  border: 1px solid #818181;
  padding: 6px 8px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_details .main > div .right .right_list .right_list_title h3 {
    font-size: 18px;
  }
  .news_details .main > div .right .right_list .right_list_title h3 i {
    font-size: 18px;
  }
  .news_details .main > div .right .right_list .right_list_list .right_list_list_item a .text p {
    font-size: 14px;
    line-height: 1.2;
  }
  .news_details .main {
    margin-top: 70px;
  }
  .news_details .main > div .left .news_title h3 {
    font-size: 18px;
  }
  .news_details .main > div .left .news_attribute .attrItem p {
    font-size: 13px;
  }
  .news_details .main > div .left .news_descrition p {
    font-size: 13px;
  }
  .news_details .main > div .left .news_Content p {
    font-size: 14px;
  }
  .news_details .main > div .right .bottom > div ul li h3 {
    font-size: 16px;
  }
  .news_details .main > div .right .bottom > div ul li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(2) {
    display: none;
  }
  .news_details .main {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .news_details .main > div .left {
    width: 100%;
  }
  .news_details .main > div .right {
    width: 100%;
    margin-top: 20px;
  }
  .news_details .main > div .right .bottom > div ul li {
    margin-top: 0px;
    padding-bottom: 14px;
  }
  .news_details .main > div .right .bottom > div ul li:nth-of-type(2) {
    padding-bottom: 0;
  }
  .news_details .main > div .right .bottom > div ul li h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .news_details .main > div .right .bottom > div ul li p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .news_details .main > div .right .bottom > div ul li span {
    font-size: 13px;
    color: #3ab08c;
  }
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(3) {
    display: none;
  }
  .news_details .main > div .left .news_attribute .attrItem:nth-of-type(4) {
    display: none;
  }
  .news_details .main > div .left .news_title h3 {
    text-align: center;
    font-size: 16px;
  }
}
.contact .main > div .n_title {
  margin-top: 100px;
}
.contact .main > div .n_title h3 {
  text-align: center;
}
.contact .main > div .n_title .line {
  width: 100px;
  height: 6px;
  background-color: #3ab08c;
  margin: 20px auto;
  position: relative;
}
.contact .main > div .n_title .line::before {
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  background-color: #3ab08c;
  position: absolute;
}
.contact .main > div .n_title p {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.contact .main > div .contact_top {
  margin-top: 60px;
}
.contact .main > div .contact_top ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .contact_top ul li {
  width: 23.5%;
  height: 300px;
  box-sizing: border-box;
  padding: 30px;
  box-shadow: 1px 1px 2px #eaeaea;
  background-color: #e6f2f8;
  cursor: pointer;
}
.contact .main > div .contact_top ul li .contact_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cecece;
}
.contact .main > div .contact_top ul li .contact_icon i {
  text-align: center;
  font-size: 52px;
  margin-top: 10px;
  line-height: 1.4;
  display: block;
  color: #3ab08c;
  transition: all 0.5s ease;
}
.contact .main > div .contact_top ul li .contact_info {
  margin-top: 20px;
  text-align: center;
}
.contact .main > div .contact_top ul li .contact_info h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.contact .main > div .contact_top ul li .contact_info p {
  font-size: 18px;
  color: #333;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}
.contact .main > div .contact_bottom {
  margin-top: 80px;
  margin-bottom: 120px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .contact_bottom .left {
  width: 42%;
  position: relative;
}
.contact .main > div .contact_bottom .left .img {
  margin-left: 130px;
  position: relative;
  z-index: 6;
}
.contact .main > div .contact_bottom .left .box {
  position: absolute;
  top: 50%;
  margin-top: -130px;
  width: 260px;
  height: 260px;
  animation: move 2s linear infinite;
}
.contact .main > div .contact_bottom .left .box .box1 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #e6f2f8;
}
.contact .main > div .contact_bottom .left .box .box2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #3ab08c;
}
.contact .main > div .contact_bottom .right {
  width: 54%;
}
.contact .main > div .contact_bottom .right .sub1 p {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
}
.contact .main > div .contact_bottom .right .sub1 h3 {
  font-size: 36px;
  color: #333;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.contact .main > div .contact_bottom .right .sub2 {
  margin-top: 60px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item {
  margin-bottom: 14px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 {
  width: 49%;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 {
  width: 49%;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 {
  width: 49%;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 {
  width: 49%;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main > div .contact_bottom .right .sub2 .sub2_item button {
  width: 100%;
  height: 50px;
  border: none;
  background-color: #3ab08c;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .contact .main > div .contact_top ul li .contact_info p {
    font-size: 14px;
  }
  .contact .main > div .contact_top ul li .contact_info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contact .main > div .contact_top ul li .contact_icon i {
    font-size: 42px;
  }
  .contact .main > div .contact_top ul li {
    padding: 20px;
    height: 250px;
  }
  .contact .main > div .contact_bottom .left .img img {
    width: 100%;
  }
  .contact .main > div .contact_bottom .left .img {
    margin-left: 70px;
  }
  .contact .main > div .contact_bottom .left .box {
    width: 160px;
    height: 160px;
  }
  .contact .main > div .contact_bottom .left .box .box1 {
    width: 160px;
    height: 160px;
  }
  .contact .main > div .contact_bottom .left .box .box2 {
    width: 80px;
    height: 80px;
  }
  .contact .main > div .contact_bottom .right .sub1 h3 {
    font-size: 24px;
  }
  .contact .main > div .contact_bottom .right .sub1 p {
    margin-bottom: 22px;
  }
  .contact .main > div .n_title h3 img {
    width: 394px;
  }
  .contact .main > div .n_title p {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main > div .n_title h3 img {
    width: 80%;
  }
  .contact .main > div .contact_top ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact .main > div .contact_bottom .left {
    display: none;
  }
  .contact .main > div .contact_bottom .right {
    width: 100%;
  }
}
