header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #00b1af;
  line-height: 90px;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header > div {
  line-height: inherit;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  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: 54px;
}
header > div .logo .logo_img a img:nth-of-type(1) {
  display: block;
}
header > div .logo .logo_img a img:nth-of-type(2) {
  display: none;
}
header > div .logo .logo_text a h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
header > div .logo .logo_text a p {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  line-height: inherit;
}
header > div nav ul {
  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 ease;
}
header > div nav ul li:hover {
  background-color: #ffffff;
}
header > div nav ul li:hover a {
  color: #00b1af;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
  transition: all 1s ease;
  padding: 0 28px;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 90px;
  left: 0;
  background-color: #e0f2f2;
}
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: #00b1af;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div .tool {
  background-image: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.4));
  padding-left: 20px;
  padding-right: 60px;
  height: 50px;
  border-radius: 25px 0 0 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .tool > div {
  line-height: 1;
  margin-right: 10px;
}
header > div .tool > div i {
  color: #00b1af;
  font-size: 26px;
  line-height: 1;
  margin-top: 4px;
  font-weight: 100;
}
header > div .tool > div p {
  font-size: 12px;
  color: #00b1af;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  letter-spacing: 4px;
  margin-bottom: 4px;
}
header > div .tool > div h3 {
  font-size: 18px;
  color: #00b1af;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
header.on {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
header.on > div .logo .logo_img a img {
  width: initial;
}
header.on > div .logo .logo_img a img:nth-of-type(1) {
  display: none;
}
header.on > div .logo .logo_img a img:nth-of-type(2) {
  display: block;
}
header.on > div .logo .logo_text a h3 {
  color: #333;
}
header.on > div .logo .logo_text a p {
  color: #333;
}
header.on > div nav ul li a {
  color: #333;
}
@media screen and (max-width: 1440px) {
  header {
    height: 80px;
    line-height: 80px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 20px;
  }
  header > div .logo .logo_text a p {
    font-size: 10px;
  }
  header > div nav ul li a {
    font-size: 15px;
  }
  header > div nav ul li {
    padding: 0px;
  }
  header > div .tool > div h3 {
    font-size: 16px;
  }
  header > div .tool > div p {
    font-size: 10px;
  }
  header > div .tool {
    padding-left: 18px;
  }
  header > div .logo .logo_img a img {
    height: 44px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
.title {
  height: 110px;
}
.title h1 {
  font-size: 92px;
  color: #00b1af;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: Impact;
  background: -webkit-linear-gradient(#00b1af, rgba(0, 177, 175, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 对于非WebKit浏览器 */
  background: linear-gradient(#00b1af, rgba(0, 177, 175, 0));
  background-clip: text;
  color: transparent;
  opacity: 0.3;
}
.title h3 {
  font-size: 48px;
  color: #00b1af;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 10px;
  margin-top: -30px;
}
@media screen and (max-width: 1440px) {
  .title {
    height: 78px;
  }
  .title h1 {
    font-size: 66px;
  }
  .title h3 {
    font-size: 32px;
    letter-spacing: 6px;
  }
}
@media screen and (max-width: 992px) {
  .title {
    height: 48px;
  }
  .title h1 {
    font-size: 38px;
  }
  .title h3 {
    font-size: 24px;
    letter-spacing: 6px;
    margin-top: -14px;
  }
}
footer {
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-image: url(/images/footBg.jpg);
  padding-bottom: 50px;
}
footer .w80 .top {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .left {
  margin-top: 60px;
}
footer .w80 .top .left .img {
  text-align: center;
}
footer .w80 .top .left .img img {
  width: initial;
  margin: 0 auto 40px;
}
footer .w80 .top .left .txt p {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .w80 .top .center a {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: block;
}
footer .w80 .top .center span {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 12px;
  opacity: 0.4;
  margin-top: 20px;
  margin-bottom: 20px;
}
footer .w80 .top .right h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 48px;
}
footer .w80 .top .right .r1 p {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 14px;
}
footer .w80 .top .right .r2 {
  margin-top: 40px;
}
footer .w80 .top .right .r2 p {
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  margin-bottom: 14px;
  opacity: 0.4;
}
footer .w80 .bottom {
  margin-top: 140px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .bottom a {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin: 0 12px;
}
@media screen and (max-width: 1440px) {
  footer .w80 .top {
    margin-top: 110px;
  }
  footer .w80 .bottom {
    margin-top: 60px;
  }
  footer .w80 .top .left .img img {
    width: 240px;
  }
  footer .w80 .top .center a {
    font-size: 16px;
  }
  footer .w80 .top .right h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  footer .w80 .top .right .r1 p {
    font-size: 14px;
  }
  footer .w80 .top .right .r2 p {
    font-size: 12px;
  }
  footer .w80 .bottom a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  footer .w80 .top .center {
    display: none;
  }
  footer .w80 .top .left {
    width: 100%;
  }
  footer .w80 .top .right {
    width: 100%;
    margin-top: 60px;
  }
  footer .w80 .top .left .img img {
    width: 240px;
    margin-bottom: 20px;
  }
  footer .w80 .top .left .txt p {
    font-size: 20px;
  }
  footer .w80 .top {
    margin-top: 80px;
  }
  footer .w80 .top .right h3 {
    display: none;
  }
  footer .w80 .bottom {
    margin-top: 40px;
  }
  footer .w80 .bottom a {
    margin-bottom: 10px;
  }
  footer {
    padding-bottom: 20px;
  }
}
.index .part01 {
  background-color: #e0f2f2;
  padding-top: 120px;
  padding-bottom: 160px;
}
.index .part01 .desc {
  margin-top: 20px;
}
.index .part01 .desc p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 .itemBox {
  margin-top: 60px;
}
.index .part01 .itemBox .item {
  padding-bottom: 4px;
  margin-bottom: 70px;
}
.index .part01 .itemBox .item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.index .part01 .itemBox .item .i_top {
  margin-bottom: 30px;
}
.index .part01 .itemBox .item .i_top h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .itemBox .item .i_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part01 .itemBox .item .i_bottom .i_b_f {
  width: 37.5%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  animation-delay: 0;
  z-index: 3;
}
.index .part01 .itemBox .item .i_bottom .i_b_f:hover a .text h4 {
  color: #ff6b00;
  text-shadow: 1px 1px 0px #fff;
}
.index .part01 .itemBox .item .i_bottom .i_b_f:hover a .text .more {
  background-color: #fff;
  color: #ff6b00;
}
.index .part01 .itemBox .item .i_bottom .i_b_f:hover a .img img {
  transform: scale(1.3);
}
.index .part01 .itemBox .item .i_bottom .i_b_f a {
  display: block;
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 3;
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .text h4 {
  font-size: 26px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 48px;
  transition: all 0.5s ease;
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .text .more {
  display: inline-block;
  background-color: #ff6b00;
  border-radius: 30px;
  padding: 0 50px;
  font-size: 14px;
  color: #fff;
  line-height: 42px;
  font-weight: 400;
  text-align: center;
  transition: all 0.5s ease;
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .img {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_f a .img img {
  height: 100%;
  float: left;
  transition: all 1.5s ease;
}
.index .part01 .itemBox .item .i_bottom .i_b_p {
  width: 19.7%;
  height: 344px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid #00b1af;
  box-shadow: 0px 4px 0 #00b1af;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:nth-of-type(2) {
  animation-delay: 1.5s;
  z-index: 2;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:nth-of-type(3) {
  animation-delay: 2.5s;
  z-index: 1;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover .border span:nth-of-type(1) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover .border span:nth-of-type(2) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover .border span:nth-of-type(3) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover .border span:nth-of-type(4) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover a .img img {
  transform: scale(1.1);
}
.index .part01 .itemBox .item .i_bottom .i_b_p:hover a .text p {
  font-weight: 700;
  font-size: 18px;
}
.index .part01 .itemBox .item .i_bottom .i_b_p .border span {
  position: absolute;
  z-index: 6;
}
.index .part01 .itemBox .item .i_bottom .i_b_p .border span:nth-of-type(1) {
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_p .border span:nth-of-type(2) {
  right: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_p .border span:nth-of-type(3) {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_p .border span:nth-of-type(4) {
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_p a {
  width: 100%;
  display: block;
}
.index .part01 .itemBox .item .i_bottom .i_b_p a .text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.index .part01 .itemBox .item .i_bottom .i_b_p a .text p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part01 .itemBox .item .i_bottom .i_b_p a .img {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_p a .img img {
  width: 100%;
  float: none;
  transition: all 1s ease;
}
.index .part01 .itemBox .item .i_bottom .i_b_l {
  width: 19.7%;
  animation-delay: 3.5s;
  z-index: 0;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l {
  width: 100%;
  height: 170px;
  background-color: #fff;
  padding: 14px 30px 0;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #00b1af;
  box-shadow: 0px 4px 0 #00b1af;
  position: relative;
  overflow: hidden;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover .border span:nth-of-type(1) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover .border span:nth-of-type(2) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover .border span:nth-of-type(3) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover .border span:nth-of-type(4) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover a .img img {
  transform: scale(1.1);
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l:hover a .text p {
  font-weight: 700;
  font-size: 18px;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l .border span {
  position: absolute;
  z-index: 6;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l .border span:nth-of-type(1) {
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l .border span:nth-of-type(2) {
  right: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l .border span:nth-of-type(3) {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l .border span:nth-of-type(4) {
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a .text {
  width: 40%;
  position: absolute;
  z-index: 6;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a .img {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a .img img {
  width: 100%;
  transition: all 1s ease;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r {
  margin-top: 14px;
  width: 100%;
  height: 160px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  border-radius: 8px;
  border: 1px solid #00b1af;
  box-shadow: 0px 4px 0 #00b1af;
  overflow: hidden;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover .border span:nth-of-type(1) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover .border span:nth-of-type(2) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover .border span:nth-of-type(3) {
  width: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover .border span:nth-of-type(4) {
  height: 100%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover a .img img {
  transform: scale(1.1);
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r:hover a .text p {
  font-weight: 700;
  font-size: 18px;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r .border span {
  position: absolute;
  z-index: 6;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r .border span:nth-of-type(1) {
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r .border span:nth-of-type(2) {
  right: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r .border span:nth-of-type(3) {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r .border span:nth-of-type(4) {
  left: 0;
  bottom: 0;
  width: 4px;
  height: 0%;
  background-color: #ff6b00;
  transition: all 0.5s;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a .text {
  width: 40%;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a .img {
  width: auto;
}
.index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a .img img {
  width: initial;
}
.index .part02 {
  background-image: url(/images/part02Bg.jpg);
}
.index .part02 .w80 {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .left {
  width: 48%;
}
.index .part02 .w80 .left .img {
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0);
}
.index .part02 .w80 .left .img img {
  width: 100%;
  float: left;
  transition: all 1.5s ease;
}
.index .part02 .w80 .left .img:hover {
  box-shadow: 6px 8px 6px #008d8b;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.index .part02 .w80 .left .img:hover img {
  transform: scale(1.2);
}
.index .part02 .w80 .right {
  width: 46%;
}
.index .part02 .w80 .right .text h2 {
  font-size: 44px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.index .part02 .w80 .right .text h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 20px;
  background-color: #ff6b00;
}
.index .part02 .w80 .right .text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.index .part02 .w80 .right .more {
  margin-top: 80px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
}
.index .part02 .w80 .right .more a {
  display: inline-block;
  padding: 16px 70px;
  font-size: 15px;
  color: #ff6b00;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 6;
}
.index .part02 .w80 .right .more::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #ff6b00;
  transition: all 0.5s ease;
}
.index .part02 .w80 .right .more:hover::after {
  width: 100%;
}
.index .part02 .w80 .right .more:hover a {
  color: #fff;
}
.index .part03 {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url(/images/part03Bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.index .part03 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.index .part03 .w80 .top .title h1 {
  text-align: left;
}
.index .part03 .w80 .top .title h3 {
  margin-top: -44px;
}
.index .part03 .w80 .top .btn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .top .btn ul li {
  transition: all 0.5s ease;
}
.index .part03 .w80 .top .btn ul li:hover {
  background-color: #00b1af;
  border-radius: 10px;
}
.index .part03 .w80 .top .btn ul li:hover a {
  color: #fff;
}
.index .part03 .w80 .top .btn ul li:nth-of-type(2) {
  margin: 0 30px;
}
.index .part03 .w80 .top .btn ul li a {
  padding: 0 26px;
  font-size: 20px;
  color: #333;
  line-height: 52px;
  font-weight: 400;
  text-align: left;
}
.index .part03 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .bottom ul li {
  width: 32.4%;
  box-shadow: 0px 4px 6px #ebebeb;
  border: 6px solid rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  box-sizing: border-box;
  border-radius: 14px 14px 0 0;
}
.index .part03 .bottom ul li:hover {
  border: 6px solid #ffffff;
}
.index .part03 .bottom ul li:hover .text {
  background-color: #00b1af;
}
.index .part03 .bottom ul li:hover .text h1 {
  color: #fff;
}
.index .part03 .bottom ul li:hover .text p {
  color: #fff;
}
.index .part03 .bottom ul li:hover .img img {
  transform: scale(1.1);
}
.index .part03 .bottom ul li .img {
  overflow: hidden;
}
.index .part03 .bottom ul li .img img {
  width: 100%;
  transition: all 1s ease;
}
.index .part03 .bottom ul li .text {
  width: 100%;
  height: 154px;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
}
.index .part03 .bottom ul li .text h1 {
  margin-top: 46px;
  margin-bottom: 16px;
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.index .part03 .bottom ul li .text p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 {
  background-image: url(/images/part04Bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.index .part04 .w80 {
  padding-top: 140px;
  padding-bottom: 160px;
}
.index .part04 .w80 .title h3 {
  color: #00b1af;
}
.index .part04 .w80 .desc {
  margin-top: 40px;
}
.index .part04 .w80 .desc p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.index .part04 .w80 .more {
  width: 240px;
  border-radius: 60px;
  border: 2px solid #00b1af;
  margin: 80px auto 0;
}
.index .part04 .w80 .more a {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #00b1af;
  line-height: 52px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .index .part01 {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .index .part01 .desc p {
    font-size: 16px;
  }
  .index .part01 .itemBox .item .i_top h3 {
    font-size: 24px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_f {
    height: 270px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_p {
    height: 264px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l {
    height: 126px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r {
    height: 126px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_l a .text p {
    font-size: 15px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_l .i_b_l_r a .text p {
    font-size: 15px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_f a .text h4 {
    font-size: 24px;
  }
  .index .part02 .w80 .right .text h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .index .part02 .w80 .right .text p {
    font-size: 14px;
  }
  .index .part02 .w80 .right .more {
    margin-top: 30px;
  }
  .index .part03 .w80 .top .btn ul li a {
    font-size: 20px;
    line-height: 42px;
  }
  .index .part03 .w80 .top {
    padding-bottom: 40px;
  }
  .index .part03 .bottom ul li .text {
    height: 134px;
  }
  .index .part03 .bottom ul li .text h1 {
    font-size: 18px;
    margin-top: 32px;
  }
  .index .part03 .bottom ul li .text p {
    font-size: 15px;
    padding: 0 30px;
    line-height: 1.2;
    box-sizing: border-box;
  }
  .index .part03 .w80 .top .title h3 {
    margin-top: -30px;
  }
  .index .part04 .w80 {
    padding: 80px 0;
  }
  .index .part04 .w80 .desc p {
    font-size: 16px;
  }
  .index .part04 .w80 .desc {
    margin-top: 26px;
  }
  .index .part04 .w80 .more {
    width: 200px;
    margin: 60px auto 0;
  }
  .index .part04 .w80 .more a {
    font-size: 16px;
    line-height: 46px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 .desc p {
    line-height: 1.4;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_p {
    display: none;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_l {
    display: none;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_f {
    width: 100%;
    height: 220px;
  }
  .index .part01 .itemBox .item .i_top h3 {
    font-size: 18px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_f a .text h4 {
    font-size: 20px;
  }
  .index .part01 .itemBox .item .i_bottom .i_b_f a .text .more {
    padding: 0 32px;
    line-height: 38px;
  }
  .index .part01 .itemBox .item {
    margin-bottom: 50px;
  }
  .index .part02 .w80 .left {
    width: 100%;
  }
  .index .part02 .w80 .right {
    width: 100%;
    margin-top: 40px;
  }
  .index .part02 .w80 .right .text h2 {
    font-size: 22px;
  }
  .index .part03 .w80 .top .btn {
    display: none;
  }
  .index .part03 .bottom ul {
    width: 90%;
    margin: 0 auto;
  }
  .index .part03 .bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .part03 .w80 .top .title h1 {
    font-size: 56px;
  }
  .index .part03 {
    padding-bottom: 80px;
  }
  .index .part04 .w80 .desc p {
    line-height: 1.4;
  }
}
.about .main .ct {
  margin-top: 160px;
  margin-bottom: 140px;
}
.about .main .ct .jianjie {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about .main .ct .jianjie .left {
  width: 35%;
  padding: 0 60px 40px 0;
  box-sizing: border-box;
  border-right: 1px solid #ededed;
}
.about .main .ct .jianjie .left .title h1 {
  font-size: 62px;
  text-align: left;
}
.about .main .ct .jianjie .left .title h3 {
  font-size: 36px;
  color: #00b1af;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-top: -18px;
}
.about .main .ct .jianjie .left p {
  font-size: 30px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 6px;
  margin-top: 40px;
}
.about .main .ct .jianjie .left p::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #ff6b00;
  position: absolute;
  bottom: -16px;
  left: 0;
}
.about .main .ct .jianjie .left span {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
}
.about .main .ct .jianjie .left .img {
  margin-top: 100px;
  width: 92%;
  overflow: hidden;
  border-radius: 0 60px;
}
.about .main .ct .jianjie .left .img img {
  width: 100%;
}
.about .main .ct .jianjie .right {
  width: 65%;
  box-sizing: border-box;
  padding: 0 0 0 60px;
}
.about .main .ct .jianjie .right h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .ct .jianjie .right .about_content p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  font-weight: normal;
  text-align: left;
  margin-bottom: 18px;
}
.about .main .cultrue {
  width: 100%;
  background: url(/images/cultrue_bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 90px 0;
}
.about .main .cultrue .ct ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about .main .cultrue .ct ul li {
  width: 31%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  height: 220px;
  position: relative;
  margin-bottom: 20px;
}
.about .main .cultrue .ct ul li h3 {
  font-size: 20px;
  color: #cd0000;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 16px;
}
.about .main .cultrue .ct ul li h3 i {
  font-size: 20px;
  color: #cd0000;
  line-height: 1;
  font-weight: normal;
  text-align: left;
  margin-right: 10px;
}
.about .main .cultrue .ct ul li p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.about .main .cultrue .ct ul li::after {
  display: block;
  content: "";
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  left: 40px;
  bottom: 40px;
}
.about .main .honor {
  margin-bottom: 100px;
}
.about .main .honor .w80 .title {
  margin-top: 150px;
  position: relative;
}
.about .main .honor .w80 .title h1 {
  font-size: 70px;
  color: #00b1af;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  opacity: 0.1;
  position: absolute;
  bottom: -10px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.about .main .honor .w80 .title h2 {
  font-size: 36px;
  color: #cd0000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.about .main .honor .w80 .dsc {
  margin-top: 20px;
}
.about .main .honor .w80 .dsc p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.about .main .honor .w80 .content {
  margin-top: 40px;
}
.about .main .honor .w80 .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .honor .w80 .content ul li {
  width: 24%;
  border: 1px solid #dfdfdf;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  margin-right: 1.3%;
}
.about .main .honor .w80 .content ul li:nth-of-type(4n) {
  margin-right: 0;
}
.about .main .honor .w80 .content ul li .img img {
  width: 100%;
}
.about .main .honor .w80 .content ul li .txt {
  margin-top: 30px;
}
.about .main .honor .w80 .content ul li .txt p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .about .main .ct .jianjie .left p {
    font-size: 30px;
  }
  .about .main .ct .jianjie .left span {
    font-size: 16px;
  }
  .about .main .ct .jianjie .left .img {
    width: 100%;
  }
  .about .main .ct .jianjie .left {
    padding: 0 40px 0 0;
  }
  .about .main .ct .jianjie .right {
    padding: 0 0 0 40px;
  }
  .about .main .ct .jianjie .right .about_content p {
    font-size: 14px;
  }
  .about .main .ct .jianjie .right h3 {
    font-size: 20px;
  }
  .about .main .ct .jianjie .left h3 {
    font-size: 34px;
  }
  .about .main .cultrue .ct ul li p {
    font-size: 14px;
  }
  .about .main .cultrue .ct ul li h3 {
    font-size: 18px;
  }
  .about .main .cultrue .ct ul li {
    height: 200px;
    padding: 24px;
  }
  .about .main .cultrue .ct ul li::after {
    left: 24px;
    width: calc(100% - 50px);
  }
  .about .main .honor .w80 .title h2 {
    font-size: 30px;
  }
  .about .main .honor .w80 .content ul li .txt p {
    font-size: 14px;
  }
  .about .main .honor .w80 .content ul li {
    padding: 10px;
  }
  .about .main .honor .w80 .title {
    margin-top: 130px;
  }
  .about .main .honor {
    margin-bottom: 70px;
  }
  .about .main .ct .jianjie .left .title h1 {
    font-size: 50px;
  }
  .about .main .ct .jianjie .left .title h3 {
    font-size: 30px;
  }
  .about .main .ct .jianjie .left p {
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 992px) {
  .about .main .ct .jianjie .left {
    width: 100%;
    border-right: 0;
    padding: 0;
  }
  .about .main .ct {
    margin-top: 90px;
    margin-bottom: 110px;
  }
  .about .main .ct .jianjie .left .title h1 {
    font-size: 38px;
  }
  .about .main .ct .jianjie .left .title h3 {
    font-size: 22px;
    margin-top: -14px;
  }
  .about .main .ct .jianjie .left p {
    font-size: 20px;
    letter-spacing: 2px;
  }
  .about .main .ct .jianjie {
    margin-top: 0px;
  }
  .about .main .ct .jianjie .left h3 {
    font-size: 32px;
  }
  .about .main .ct .jianjie .left .img {
    margin-top: 40px;
  }
  .about .main .ct .jianjie .right {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .about .main .ct .jianjie .right h3 {
    line-height: 1.2;
    font-size: 18px;
  }
  .about .main .ct .jianjie .right .about_content p {
    font-size: 15px;
    line-height: 1.6;
  }
  .about .main .cultrue .ct ul li {
    width: 100%;
  }
  .about .main .honor .w80 .title h2 {
    font-size: 20px;
  }
  .about .main .honor .w80 .title h1 {
    font-size: 42px;
    bottom: -6px;
  }
  .about .main .honor .w80 .title {
    margin-top: 100px;
  }
  .about .main .honor .w80 .dsc p {
    font-size: 16px;
  }
  .about .main .honor .w80 .content ul li {
    width: 100%;
  }
}
.product {
  background-color: #e0f2f2;
}
.product .title {
  margin-top: 150px;
  margin-bottom: 40px;
  height: auto;
}
.product .title h3 {
  letter-spacing: 4px;
}
.product .title p {
  margin-top: 30px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product .part01 {
  margin-top: 60px;
  margin-bottom: 100px;
}
.product .part01 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .part01 ul li {
  width: 49.8%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.product .part01 ul li:hover .bg img {
  transform: scale(1.1);
}
.product .part01 ul li .text {
  width: 52%;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.product .part01 ul li .text .name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .part01 ul li .text .name .n_img {
  width: 44px;
  border-radius: 8px;
  overflow: hidden;
}
.product .part01 ul li .text .name .n_img img {
  width: 100%;
}
.product .part01 ul li .text .name .n_text {
  width: calc(100% - 54px);
}
.product .part01 ul li .text .name .n_text p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-left: 10px;
}
.product .part01 ul li .text .t_content {
  margin-top: 16px;
}
.product .part01 ul li .text .t_content h2 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  letter-spacing: 2px;
}
.product .part01 ul li .text .t_more {
  margin-top: 50px;
  background-color: #000000;
  width: 180px;
  height: 42px;
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.product .part01 ul li .text .t_more::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #00b1af;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}
.product .part01 ul li .text .t_more:hover::after {
  width: 100%;
}
.product .part01 ul li .text .t_more a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #fff;
  line-height: 42px;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 3;
}
.product .part01 ul li .proNav {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  right: 20px;
  top: 50%;
  width: 30%;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
  transform: translateY(-50%);
  z-index: 3;
}
.product .part01 ul li .proNav .p_title {
  margin-bottom: 16px;
}
.product .part01 ul li .proNav .p_title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .part01 ul li .proNav ul {
  width: 100%;
}
.product .part01 ul li .proNav ul li {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff20;
  border-radius: 0;
}
.product .part01 ul li .proNav ul li:hover a .p_img img {
  transform: scale(1.2);
}
.product .part01 ul li .proNav ul li:hover a .p_text p {
  font-weight: 700;
}
.product .part01 ul li .proNav ul li:hover a .picon {
  transform: rotateZ(90deg);
}
.product .part01 ul li .proNav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .part01 ul li .proNav ul li a .p_img {
  width: 40px;
  border-radius: 4px;
  overflow: hidden;
}
.product .part01 ul li .proNav ul li a .p_img img {
  width: 100%;
  transition: all 0.5s ease;
}
.product .part01 ul li .proNav ul li a .p_text {
  width: calc(100% - 80px);
}
.product .part01 ul li .proNav ul li a .p_text p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product .part01 ul li .proNav ul li a .picon {
  transition: all 0.5s ease;
}
.product .part01 ul li .proNav ul li a .picon i {
  color: #fff;
}
.product .part01 ul li .bg {
  width: 100%;
}
.product .part01 ul li .bg img {
  width: 100%;
  transition: all 2s ease;
}
@media screen and (max-width: 1440px) {
  .product .part01 ul li .proNav {
    width: 40%;
    padding: 14px;
  }
  .product .part01 ul li .proNav ul li a .p_img {
    width: 30px;
  }
  .product .part01 ul li .text {
    left: 8%;
  }
  .product .part01 ul li .text .t_content h2 {
    font-size: 20px;
  }
  .product .part01 ul li .proNav .title h3 {
    font-size: 15px;
  }
  .product .part01 ul li .proNav ul li a .p_text p {
    font-size: 13px;
  }
  .product .part01 ul li .proNav ul li {
    margin-bottom: 6px;
    padding-bottom: 6px;
  }
}
@media screen and (max-width: 992px) {
  .product .part01 .w80.prolist h3 {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .product .part01 .w80.prolist ul li {
    width: 100%;
  }
  .product .part01 .w80.prolist ul li a .text p {
    font-size: 18px;
  }
}
.product2 .main {
  background-color: #e0f2f2;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 120px;
}
.product2 .main .title {
  margin-bottom: 60px;
  height: auto;
}
.product2 .main .title p {
  margin-top: 30px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product2 .main .w80 ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product2 .main .w80 ul li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 2rem;
  padding: 1.2rem 1.2rem 1.2rem;
  box-sizing: border-box;
  box-shadow: 0 10px 1.68rem rgba(46, 0, 2, 0.1);
  border-radius: 20px;
  background-color: #fff;
}
.product2 .main .w80 ul li:nth-of-type(3n) {
  margin-right: 0;
}
.product2 .main .w80 ul li:hover .img img {
  transform: scale(1.1);
}
.product2 .main .w80 ul li:hover .text h3 {
  color: #cd0000;
}
.product2 .main .w80 ul li .img {
  overflow: hidden;
}
.product2 .main .w80 ul li .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.product2 .main .w80 ul li .text {
  margin-top: 1rem;
}
.product2 .main .w80 ul li .text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  transition: all 0.5s ease;
}
.product2 .main .w80 ul li:nth-of-type(1) {
  animation-delay: 0.2s;
}
.product2 .main .w80 ul li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.product2 .main .w80 ul li:nth-of-type(3) {
  animation-delay: 0.6s;
}
.product2 .main .w80 ul li:nth-of-type(4) {
  animation-delay: 0.8s;
}
.product2 .main .w80 ul li:nth-of-type(5) {
  animation-delay: 1s;
}
.product2 .main .w80 ul li:nth-of-type(6) {
  animation-delay: 1.2s;
}
.product2 .main .w80 ul li:nth-of-type(7) {
  animation-delay: 1.4s;
}
.product2 .main .w80 ul li:nth-of-type(8) {
  animation-delay: 1.6s;
}
.product2 .main .w80 ul li:nth-of-type(9) {
  animation-delay: 1.8s;
}
.product2 .main .w80 ul li:nth-of-type(10) {
  animation-delay: 2s;
}
.product2 .main .w80 ul li:nth-of-type(11) {
  animation-delay: 2.2s;
}
.product2 .main .w80 ul li:nth-of-type(12) {
  animation-delay: 2.4s;
}
@media screen and (max-width: 1440px) {
  .product2 .main .w80 ul li .text h3 {
    font-size: 16px;
  }
  .product2 .main .w80 ul li {
    padding: 1.2rem;
  }
}
@media screen and (max-width: 992px) {
  .product2 .main {
    padding-top: 120px;
  }
  .product2 .main .w80 ul li {
    width: 100%;
    margin-right: 0;
    padding: 0.8rem;
  }
}
.product_details {
  background-color: #e0f2f2;
}
.product_details .main {
  margin-top: 180px;
  margin-bottom: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product_details .main .left {
  width: 54vw;
  padding: 30px;
  margin-right: 6vw;
  box-sizing: border-box;
  background-color: #fff;
  margin-left: 10vw;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 4px 12px #007a5e38;
}
.product_details .main .left .part01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .left .part01 .l_box1 {
  width: 62%;
}
.product_details .main .left .part01 .l_box1 .l_img {
  border-radius: 16px;
  overflow: hidden;
}
.product_details .main .left .part01 .l_box1 .l_img img {
  width: 100%;
  float: left;
}
.product_details .main .left .part01 .l_box2 {
  width: 32%;
}
.product_details .main .left .part01 .l_box2 .l_title {
  margin-bottom: 40px;
}
.product_details .main .left .part01 .l_box2 .l_title h3 {
  font-size: 28px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main .left .part01 .l_box2 .p_des {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.product_details .main .left .part01 .l_box2 .p_des p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.product_details .main .left .part01 .l_box2 .p_tel {
  margin-top: 60px;
  background-color: #ff6b00;
  width: 200px;
  border-radius: 28px;
}
.product_details .main .left .part01 .l_box2 .p_tel h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #fff;
  line-height: 48px;
  font-weight: 100;
  text-align: center;
}
.product_details .main .left .part01 .l_box2 .p_tel h4 i {
  font-size: 24px;
  margin-right: 10px;
}
.product_details .main .left .part01 .l_box2 .btn {
  margin-top: 70px;
}
.product_details .main .left .part01 .l_box2 .btn .btn1 {
  margin-bottom: 16px;
}
.product_details .main .left .part01 .l_box2 .btn .btn1 a {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main .left .part01 .l_box2 .btn .btn1 a span {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main .left .part02 {
  margin-top: 80px;
}
.product_details .main .left .part02 .p02_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details .main .left .part02 .p02_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  z-index: 3;
}
.product_details .main .left .part02 .p02_title h3 span i {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.6;
}
.product_details .main .left .part02 .p02_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.product_details .main .left .part02 .p02_content {
  margin-top: 20px;
}
.product_details .main .left .part02 .p02_content img {
  width: initial;
  display: block;
  margin: 0 auto;
}
.product_details .main .left .part02 .p02_content .d_item {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.product_details .main .left .part02 .p02_content .d_item .d_title {
  margin-bottom: 10px;
}
.product_details .main .left .part02 .p02_content .d_item .d_title h3 {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main .left .part02 .p02_content .d_item .d_content {
  margin-bottom: 20px;
}
.product_details .main .left .part02 .p02_content .d_item .d_content p {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}
.product_details .main .left .part02 .p02_content .d_item .d_img img {
  width: 100%;
}
.product_details .main .left .part03 {
  margin-top: 80px;
}
.product_details .main .left .part03 .p03_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details .main .left .part03 .p03_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  z-index: 3;
}
.product_details .main .left .part03 .p03_title h3 span i {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.6;
}
.product_details .main .left .part03 .p03_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.product_details .main .left .part03 .p03_content {
  margin-top: 20px;
}
.product_details .main .left .part03 .p03_content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .left .part03 .p03_content ul li {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 20px;
}
.product_details .main .left .part03 .p03_content ul li .img {
  margin-bottom: 10px;
}
.product_details .main .left .part03 .p03_content ul li .img img {
  width: 100%;
}
.product_details .main .left .part03 .p03_content ul li .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product_details .main .left .part04 {
  margin-top: 40px;
}
.product_details .main .left .part04 .p04_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details .main .left .part04 .p04_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  z-index: 3;
}
.product_details .main .left .part04 .p04_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #999;
}
.product_details .main .left .part04 .p04_content {
  margin-top: 20px;
}
.product_details .main .left .part04 .p04_content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .left .part04 .p04_content ul li {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 20px;
}
.product_details .main .left .part04 .p04_content ul li .img img {
  width: 100%;
}
.product_details .main .left .part04 .p04_content ul li .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product_details .main .right {
  width: 20vw;
  position: absolute;
  right: 10vw;
  top: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 10px;
  box-shadow: 6px 4px 12px #007a5e38;
}
.product_details .main .right .r_title {
  background-color: #000;
  height: 46px;
  box-sizing: border-box;
}
.product_details .main .right .r_title h2 {
  padding-left: 16px;
  font-size: 20px;
  color: #fff;
  line-height: 46px;
  font-weight: 700;
  text-align: left;
}
.product_details .main .right .r_list {
  width: 100%;
  background-color: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
}
.product_details .main .right .r_list ul {
  width: 100%;
}
.product_details .main .right .r_list ul li {
  width: 100%;
  background-color: #fff;
  padding: 16px;
  box-sizing: border-box;
}
.product_details .main .right .r_list ul li a {
  position: relative;
}
.product_details .main .right .r_list ul li a .img {
  height: 200px;
  overflow: hidden;
}
.product_details .main .right .r_list ul li a .img img {
  width: 100%;
}
.product_details .main .right .r_list ul li a .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 14px 0;
  box-sizing: border-box;
}
.product_details .main .right .r_list ul li a .text p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product_details .main .right .r_list ul li a .text span {
  font-size: 14px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .product_details .left .part03 .p03_content ul li .text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main {
    margin-top: 120px;
  }
  .product_details .main .right {
    display: none;
  }
  .product_details .main .left {
    width: 100%;
    margin-right: 5vw;
    margin-left: 5vw;
    padding: 14px;
  }
  .product_details .main .left .part01 .l_box2 .l_title h3 {
    font-size: 20px;
  }
  .product_details .main .left .part01 .l_box2 {
    margin-top: 30px;
  }
  .product_details .main .left .part01 .l_box2 .l_title {
    margin-bottom: 18px;
  }
  .product_details .main .left .part01 .l_box1 {
    width: 100%;
  }
  .product_details .main .left .part01 .l_box2 {
    width: 100%;
  }
  .product_details .main .left .part01 .l_box2 .p_des {
    padding: 10px 0;
  }
  .product_details .main .left .part01 .l_box2 .p_des p {
    font-size: 16px;
  }
  .product_details .main .left .part01 .l_box2 .p_tel h4 i {
    font-size: 18px;
  }
  .product_details .main .left .part01 .l_box2 .p_tel h4 {
    line-height: 42px;
  }
  .product_details .main .left .part03 .p03_title h3 span {
    font-size: 20px;
  }
  .product_details .main .left .part03 .p03_title h3 span i {
    font-size: 12px;
  }
  .product_details .main .left .part03 .p03_content ul li {
    width: 48%;
  }
  .product_details .main .left .part02 .p02_title h3 span {
    font-size: 20px;
  }
  .product_details .main .left .part02 .p02_title h3 span i {
    font-size: 12px;
  }
  .product_details .main .left .part02 .p02_content img {
    width: 100%;
  }
}
.product_details2 .w80.n {
  margin-top: 110px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product_details2 .w80.n .left {
  width: 60vw;
  padding-bottom: 120px;
}
.product_details2 .w80.n .left .part01 .l_title {
  margin-bottom: 40px;
}
.product_details2 .w80.n .left .part01 .l_title h3 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details2 .w80.n .left .part01 .l_img img {
  width: 100%;
}
.product_details2 .w80.n .left .part02 {
  margin-top: 40px;
}
.product_details2 .w80.n .left .part02 .p02_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details2 .w80.n .left .part02 .p02_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  z-index: 3;
}
.product_details2 .w80.n .left .part02 .p02_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #999;
}
.product_details2 .w80.n .left .part02 .p02_content {
  margin-top: 20px;
}
.product_details2 .w80.n .left .part02 .p02_content img {
  width: 100%;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item .d_title {
  margin-bottom: 10px;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item .d_title h3 {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item .d_content {
  margin-bottom: 20px;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item .d_content p {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}
.product_details2 .w80.n .left .part02 .p02_content .d_item .d_img img {
  width: 100%;
}
.product_details2 .w80.n .left .part03 {
  margin-top: 40px;
}
.product_details2 .w80.n .left .part03 .p03_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details2 .w80.n .left .part03 .p03_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  z-index: 3;
}
.product_details2 .w80.n .left .part03 .p03_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #999;
}
.product_details2 .w80.n .left .part03 .p03_content {
  margin-top: 20px;
}
.product_details2 .w80.n .left .part03 .p03_content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details2 .w80.n .left .part03 .p03_content ul li {
  width: 24%;
  margin-right: 1%;
}
.product_details2 .w80.n .left .part03 .p03_content ul li .img img {
  width: 100%;
}
.product_details2 .w80.n .left .part03 .p03_content ul li .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product_details2 .w80.n .left .part04 {
  margin-top: 40px;
}
.product_details2 .w80.n .left .part04 .p04_title h3 {
  position: relative;
  height: 40px;
  width: 100%;
}
.product_details2 .w80.n .left .part04 .p04_title h3 span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  z-index: 3;
}
.product_details2 .w80.n .left .part04 .p04_title h3::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #999;
}
.product_details2 .w80.n .left .part04 .p04_content {
  margin-top: 20px;
}
.product_details2 .w80.n .left .part04 .p04_content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details2 .w80.n .left .part04 .p04_content ul li {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 20px;
}
.product_details2 .w80.n .left .part04 .p04_content ul li .img img {
  width: 100%;
}
.product_details2 .w80.n .left .part04 .p04_content ul li .text p {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.product_details2 .w80.n .right {
  width: 20vw;
  position: static;
  right: 7.5%;
  top: 100px;
}
.product_details2 .w80.n .right.fl {
  position: fixed;
}
.product_details2 .w80.n .right .r_title {
  background-color: #000;
  height: 46px;
  box-sizing: border-box;
}
.product_details2 .w80.n .right .r_title h2 {
  padding-left: 16px;
  font-size: 20px;
  color: #fff;
  line-height: 46px;
  font-weight: 400;
  text-align: left;
}
.product_details2 .w80.n .right .r_list {
  width: 100%;
  background-color: #efefef;
  padding: 20px 10px;
  box-sizing: border-box;
}
.product_details2 .w80.n .right .r_list ul {
  width: 100%;
}
.product_details2 .w80.n .right .r_list ul li {
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 16px;
  box-sizing: border-box;
}
.product_details2 .w80.n .right .r_list ul li a .img {
  margin-bottom: 20px;
}
.product_details2 .w80.n .right .r_list ul li a .img img {
  width: 100%;
}
.product_details2 .w80.n .right .r_list ul li a .text p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.product_details2 .w80.n .right .r_list ul li a .text span {
  font-size: 14px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .product_details2 .w80.n .left .part03 .p03_content ul li .text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .product_details2 .w80.n .right {
    display: none;
  }
  .product_details2 .w80.n .left {
    width: 100%;
  }
  .product_details2 .w80.n .left .part01 .l_title h3 {
    font-size: 24px;
  }
  .product_details2 .w80.n .left .part03 .p03_title h3 span {
    font-size: 20px;
  }
  .product_details2 .w80.n .left .part04 .p04_title h3 span {
    font-size: 20px;
  }
  .product_details2 .w80.n .left .part02 .p02_title h3 span {
    font-size: 20px;
  }
}
.news .main {
  margin-bottom: 120px;
}
.news .main .content {
  margin-top: 100px;
}
.news .main .content ul li {
  padding-bottom: 40px;
  border-bottom: 1px solid #dfdfdf;
  padding: 50px 10%;
  box-sizing: border-box;
  transition: all 0.5s ease;
}
.news .main .content ul li:hover {
  background-color: #e0f2f2;
}
.news .main .content ul li:hover a .img img {
  transform: scale(1.1);
}
.news .main .content ul li:hover a .text > h3 {
  color: #ff6b00;
}
.news .main .content ul li:hover a .text > span {
  color: #ff6b00;
}
.news .main .content ul li:hover a .text .more::after {
  width: 100%;
}
.news .main .content ul li:hover a .text .more span {
  color: #fff;
}
.news .main .content ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .content ul li a .img {
  width: 36%;
  height: 0;
  padding-bottom: 330px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.news .main .content ul li a .img img {
  width: 100%;
  object-fit: cover;
  float: left;
  transition: all 0.5s ease;
}
.news .main .content ul li a .text {
  width: 58%;
}
.news .main .content ul li a .text h3 {
  font-size: 26px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.news .main .content ul li a .text span {
  font-size: 14px;
  color: #00b1af;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.news .main .content ul li a .text p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.news .main .content ul li a .text .more {
  margin-top: 40px;
  background-color: #e0f2f2;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  width: 220px;
}
.news .main .content ul li a .text .more span {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #00b1af;
  line-height: 56px;
  font-weight: 400;
  text-align: left;
}
.news .main .content ul li a .text .more span i {
  margin-left: 10px;
}
.news .main .content ul li a .text .more::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #ff6b00;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}
.news .main .content ul li:nth-of-type(1) {
  animation-delay: 0.2s;
}
.news .main .content ul li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.news .main .content ul li:nth-of-type(3) {
  animation-delay: 0.6s;
}
.news .main .content ul li:nth-of-type(4) {
  animation-delay: 0.8s;
}
.news .main .content ul li:nth-of-type(5) {
  animation-delay: 1s;
}
.news .main .content ul li:nth-of-type(6) {
  animation-delay: 1.2s;
}
@media screen and (max-width: 1440px) {
  .news .main .content ul li {
    padding: 34px 10%;
  }
  .news .main .content ul li a .img {
    width: 34%;
  }
  .news .main .content ul li a .text {
    width: 62%;
  }
  .news .main .content ul li a .text h3 {
    font-size: 22px;
  }
  .news .main .content ul li a .text .more span {
    line-height: 48px;
  }
  .news .main .content ul li a .text .more {
    width: 190px;
  }
}
@media screen and (max-width: 992px) {
  .news .main .content {
    margin-top: 70px;
  }
  .news .main .content ul li {
    padding: 34px 5%;
  }
  .news .main .content ul li a .img {
    padding-bottom: 200px;
    width: 100%;
  }
  .news .main .content ul li a .text {
    width: 100%;
    margin-top: 30px;
  }
  .news .main .content ul li a .text h3 {
    font-size: 18px;
  }
}
.news_details .main .n_center .ct .detailed > .n_title {
  display: block;
  visibility: visible;
}
.news_details .main .n_center .ct .detailed > .n_title h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
}
.news_details .main .n_center .ct .detailed .sub2 .share p {
  font-size: 14px;
  margin: 0 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content {
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content img {
  display: block;
  width: initial;
  margin: 0 auto;
}
.news_details .main .n_center .ct .detailed .sub2 .np {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div {
  width: 49.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(1) i {
  margin-right: 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div:nth-of-type(2) i {
  margin-left: 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div i {
  font-size: 24px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div a {
  font-size: 16px;
  color: #000;
  line-height: 60px;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news_details .main .ct .detailed > .n_title h3 {
    font-size: 24px;
  }
  .news_details .main .ct .detailed .sub2 .news_content p {
    font-size: 14px;
  }
  .news_details .main .ct .detailed .sub2 .np div a {
    font-size: 14px;
    line-height: 48px;
  }
  .news_details .main .ct .detailed .sub2 .np div {
    width: 49%;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 24px;
    font-weight: 700;
  }
  .news_details .main .n_center .ct .detailed .sub2 {
    margin-top: 10px;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    font-size: 14px;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news_details .mt-100 {
    margin-top: 70px;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 18px;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content img {
    width: 100%;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np {
    flex-wrap: wrap;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div i {
    display: none;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    line-height: 1;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 15px;
  }
}
.contact .main {
  background-color: #e0f2f2;
}
.contact .main > div {
  padding-top: 140px;
}
.contact .main > div .c_top {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .c_top .n_title {
  position: relative;
  margin-top: 40px;
  margin-left: 20px;
}
.contact .main > div .c_top .n_title h2 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  position: relative;
  z-index: 1;
}
.contact .main > div .c_top .n_title::before {
  position: absolute;
  top: -26px;
  left: -20px;
  display: block;
  content: "";
  width: 75px;
  height: 75px;
  background-image: url(/images/quanBg.png);
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 0;
}
.contact .main > div .c_top .n_title::after {
  margin-top: 22px;
  display: block;
  content: "";
  width: 48px;
  height: 6px;
  background-color: #00b1af;
}
.contact .main > div .c_top .en p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.contact .main > div .top {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left {
  width: 100%;
}
.contact .main > div .top .top_left ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left ul li {
  width: 24.2%;
  height: 200px;
  box-shadow: 0 10px 1.2rem rgba(46, 0, 2, 0.05);
  border-radius: 20px;
  padding: 30px 20px 10px;
  background-color: #fff;
  box-sizing: border-box;
}
.contact .main > div .top .top_left ul li:nth-of-type(4) {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_left ul li:nth-of-type(4) .img {
  text-align: center;
  padding-right: 20px;
}
.contact .main > div .top .top_left ul li:nth-of-type(4) .img img {
  height: 144px;
  margin: 0 auto;
}
.contact .main > div .top .top_left ul li:nth-of-type(4) .text h3 {
  font-size: 18px;
}
.contact .main > div .top .top_left ul li:nth-of-type(4) .text p {
  font-size: 14px;
}
.contact .main > div .top .top_left ul li .img {
  text-align: center;
}
.contact .main > div .top .top_left ul li .img img {
  width: initial;
  margin: 0 auto;
}
.contact .main > div .top .top_left ul li .text {
  margin-top: 20px;
}
.contact .main > div .top .top_left ul li .text h3 {
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.contact .main > div .top .top_left ul li .text p {
  margin-top: 10px;
  font-size: 20px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}
.contact .main > div .top .top_right {
  margin-top: 50px;
  width: 100%;
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 20px;
}
.contact .main > div .top .top_right h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main > div .top .top_right .message {
  margin-top: 20px;
}
.contact .main > div .top .top_right .message .ms1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 {
  width: 49%;
  height: 60px;
  background-color: #f2f5f5;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms1 .ms1_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f2f5f5;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms2 {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 {
  width: 49%;
  height: 60px;
  background-color: #f2f5f5;
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact .main > div .top .top_right .message .ms2 .ms2_sub1 input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #f2f5f5;
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main > div .top .top_right .message .ms3 {
  margin-top: 16px;
  background-color: #f2f5f5;
  height: 200px;
  box-sizing: border-box;
  padding: 20px;
}
.contact .main > div .top .top_right .message .ms3 textarea {
  width: 100%;
  height: 100%;
}
.contact .main > div .top .top_right .message .ms4 {
  margin-top: 20px;
  width: 100%;
}
.contact .main > div .top .top_right .message .ms4 button {
  width: 100%;
  height: 56px;
  background-color: #ff6b00;
  font-size: 16px;
  color: #fff;
  line-height: 56px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact .main > div {
    padding-top: 110px;
  }
  .contact .main > div .c_top .n_title h2 {
    font-size: 32px;
  }
  .contact .main > div .c_top .en p {
    line-height: 1.6;
    font-size: 16px;
  }
  .contact .main > div .c_top {
    padding-bottom: 32px;
    margin-bottom: 70px;
  }
  .contact .main > div .top .top_left ul li .text h3 {
    font-size: 16px;
  }
  .contact .main > div .top .top_left ul li .text p {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main > div .c_top .n_title h2 {
    font-size: 22px;
  }
  .contact .main > div .c_top .n_title {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .contact .main > div .c_top .n_title::after {
    margin-top: 14px;
    height: 3px;
  }
  .contact .main > div {
    padding-top: 100px;
  }
  .contact .main > div .top .top_left ul li {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
  }
  .contact .main > div .top .top_right {
    padding: 16px;
    padding-top: 28px;
  }
  .contact .main > div .top .top_right h3 {
    font-size: 20px;
  }
}
