header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 100px;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header.active {
  background-color: #ffffff;
}
header.active > div .logo .logo_text a h3 {
  color: #000;
}
header.active > div nav ul li a {
  color: #000;
}
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: 57px;
}
header > div .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
header > div nav {
  width: 46%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 80px);
  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;
  width: 15%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #e6f2f8;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
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: #77cee9;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 30px;
  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;
  display: block;
  border-radius: 30px;
  background-color: #77cee9;
  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: 84px;
    line-height: 84px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 22px;
  }
  header > div .logo .logo_img {
    margin-right: 14px;
  }
  header > div .logo .logo_img a img {
    height: 40px;
  }
  header > div nav ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
.more a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.more a .quan {
  position: relative;
}
.more a .quan::after {
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #cb0101;
}
.more a .quan .q1 {
  background-color: #cb0101;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.more a .quan .q1 img {
  width: initial;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.more a .t {
  margin-left: 16px;
}
.more a .t p {
  font-size: 18px;
  color: #333;
  line-height: inherit;
  font-weight: 100;
  text-align: left;
}
.more a .l {
  margin-left: 20px;
  width: 168px;
  height: 1px;
  background-color: #333;
}
@media screen and (max-width: 1440px) {
  .more a .quan .q1 {
    width: 36px;
    height: 36px;
  }
  .more a .quan::after {
    width: 44px;
    height: 44px;
  }
  .more a .quan .q1 img {
    width: 18px;
  }
  .more a .t p {
    font-size: 15px;
  }
  .more a .l {
    width: 132px;
  }
}
footer .f_top {
  background-image: url(/images/footBg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 40px;
}
footer .f_top .w90 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .f_top .w90 .f_txt {
  width: 72%;
}
footer .f_top .w90 .f_txt .f_t_nav {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_logo img {
  width: 50px;
  margin-right: 10px;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_logo h2 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  letter-spacing: 1px;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_ul ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_ul ul li {
  margin-left: 60px;
}
footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_ul ul li a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .f_top .w90 .f_txt .f_t_contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 40px 0;
}
footer .f_top .w90 .f_txt .f_t_contact .f_c_item h4 {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .f_top .w90 .f_txt .f_t_contact .f_c_item h4::after {
  display: block;
  content: "";
  width: 20px;
  height: 2px;
  margin-top: 14px;
  margin-bottom: 20px;
  background-color: #77cee9;
}
footer .f_top .w90 .f_txt .f_t_contact .f_c_item p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-top: 14px;
}
footer .f_top .w90 .f_img img {
  width: 150px;
}
footer .f_top .w90 .f_img p {
  font-size: 13px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  padding-top: 14px;
}
footer .f_top .w90 .f_img h4 {
  padding-top: 10px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
footer .f_bottom {
  background-color: #16435a;
}
footer .f_bottom .w90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .f_bottom .w90 .f_bq a {
  font-size: 14px;
  color: #fff;
  line-height: 60px;
  font-weight: 100;
  text-align: left;
}
footer .f_bottom .w90 .f_ba a {
  font-size: 14px;
  color: #fff;
  line-height: 60px;
  font-weight: 100;
  text-align: left;
  margin: 0 20px;
}
@media screen and (max-width: 1440px) {
  footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_logo img {
    width: 42px;
  }
  footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_logo h2 {
    font-size: 22px;
  }
  footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_ul ul li a {
    font-size: 14px;
  }
  footer .f_top .w90 .f_txt .f_t_contact .f_c_item h4 {
    font-size: 15px;
  }
  footer .f_top .w90 .f_txt .f_t_contact .f_c_item p {
    font-size: 14px;
  }
  footer .f_bottom .w90 .f_ba a {
    font-size: 13px;
  }
  footer .f_bottom .w90 .f_bq a {
    font-size: 13px;
  }
}
@media screen and (max-width: 992px) {
  footer .f_top .w90 .f_txt {
    width: 100%;
  }
  footer .f_top .w90 .f_txt .f_t_nav .f_t_nav_ul {
    display: none;
  }
  footer .f_top .w90 .f_txt .f_t_contact .f_c_item {
    width: 48%;
    margin-bottom: 40px;
  }
  footer .f_bottom .w90 {
    justify-content: center;
  }
  footer .f_bottom .w90 .f_ba {
    display: none;
  }
  footer .f_bottom .w90 .f_bq a {
    text-align: center;
  }
}
.index .main .part01 {
  padding-top: 140px;
  padding-bottom: 140px;
  background-image: url(/images/part01Bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
.index .main .part01 .w90 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part01 .w90 .top .t1 {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
}
.index .main .part01 .w90 .top .t1 .title h2 {
  font-size: 52px;
  color: #0c3c64;
  line-height: inherit;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .main .part01 .w90 .top .t1 .title p {
  font-size: 24px;
  color: #333;
  line-height: inherit;
  font-weight: 100;
  text-align: left;
  letter-spacing: 1px;
}
.index .main .part01 .w90 .top .t1 .desc {
  width: calc(100% - 240px);
}
.index .main .part01 .w90 .top .t1 .desc p {
  font-size: 18px;
  color: #0c3c64;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.index .main .part01 .w90 .bottom {
  margin-top: 90px;
}
.index .main .part01 .w90 .bottom > div {
  padding-bottom: 50px;
}
.index .main .part01 .w90 .bottom > div ul li {
  flex-wrap: wrap;
  background: none;
}
.index .main .part01 .w90 .bottom > div ul li:hover a .img {
  border: 8px solid #cb0101;
}
.index .main .part01 .w90 .bottom > div ul li:hover a .img img {
  transform: scale(1);
}
.index .main .part01 .w90 .bottom > div ul li:hover a .img .mask {
  background-color: rgba(0, 0, 0, 0.5);
}
.index .main .part01 .w90 .bottom > div ul li:hover a .img .mask .m_icon {
  opacity: 1;
  transform: translateY(0);
}
.index .main .part01 .w90 .bottom > div ul li a .img {
  border: 8px solid #77cee9;
  border-radius: 30px;
  overflow: hidden;
  transition: all 1s ease;
  position: relative;
}
.index .main .part01 .w90 .bottom > div ul li a .img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 1s ease;
}
.index .main .part01 .w90 .bottom > div ul li a .img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0);
  transition: all 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part01 .w90 .bottom > div ul li a .img .mask .m_icon {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.index .main .part01 .w90 .bottom > div ul li a .img .mask .m_icon i {
  font-size: 42px;
  color: #cb0101;
}
.index .main .part01 .w90 .bottom > div ul li a .img .mask .m_icon p {
  margin-top: 8px;
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.index .main .part01 .w90 .bottom > div ul li a .text {
  margin-top: 20px;
  line-height: 1.3;
}
.index .main .part01 .w90 .bottom > div ul li a .text h3 {
  font-size: 20px;
  color: #0c3c64;
  line-height: inherit;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.index .main .part01 .w90 .bottom > div ul li a .text h3::after {
  display: block;
  content: "";
  margin: 6px auto;
  width: 30px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
}
.index .main .part01 .w90 .bottom > div ul li a .text p {
  height: 40px;
  font-size: 16px;
  color: #333;
  line-height: inherit;
  font-weight: 100;
  text-align: center;
}
.index .main .part01 .w90 .bottom > div .swiper-pagination-progressbar {
  height: 2px;
  top: auto;
  bottom: 0;
}
.index
  .main
  .part01
  .w90
  .bottom
  > div
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #0c3c64;
}
.index .main .part02 {
  padding-top: 140px;
  padding-bottom: 140px;
  background-image: url(/images/part02Bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
}
.index .main .part02 .w90 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .main .part02 .w90 .top .left {
  width: 42%;
}
.index .main .part02 .w90 .top .left .title h2 {
  font-size: 48px;
  color: #0c3c64;
  line-height: inherit;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .main .part02 .w90 .top .left .title p {
  font-size: 26px;
  color: #333;
  line-height: inherit;
  font-weight: 100;
  text-align: left;
  letter-spacing: 4px;
}
.index .main .part02 .w90 .top .left .more {
  margin-top: 90px;
  margin-left: 8px;
}
.index .main .part02 .w90 .top .right {
  width: 50%;
}
.index .main .part02 .w90 .top .right p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  margin-bottom: 30px;
}
.index .main .part02 .w90 .bottom {
  margin-top: 100px;
}
.index .main .part02 .w90 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part02 .w90 .bottom ul li {
  position: relative;
  width: 23%;
  height: 320px;
  border-radius: 20px;
  border: 10px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  overflow: hidden;
}
.index .main .part02 .w90 .bottom ul li .box {
  width: 100%;
  height: 100%;
  background-image: url(/images/i_aboutBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.index .main .part02 .w90 .bottom ul li .box .a_icon {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #77cee9;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part02 .w90 .bottom ul li .box .a_icon img {
  width: 50%;
}
.index .main .part02 .w90 .bottom ul li .box .text {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.index .main .part02 .w90 .bottom ul li .box .text .t1 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .main .part02 .w90 .bottom ul li .box .text .t1 h2 {
  font-size: 48px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
}
.index .main .part02 .w90 .bottom ul li .box .text .t1 h5 {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  margin-left: 6px;
  margin-bottom: 4px;
}
.index .main .part02 .w90 .bottom ul li .box .text .t2 {
  margin-top: 8px;
}
.index .main .part02 .w90 .bottom ul li .box .text .t2 p {
  font-size: 15px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  letter-spacing: 2px;
}
.index .main .part03 {
  padding-top: 150px;
  padding-bottom: 134px;
}
.index .main .part03 .w90 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .top .title h2 {
  font-size: 48px;
  color: #0c3c64;
  line-height: inherit;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.index .main .part03 .w90 .top .title p {
  font-size: 26px;
  color: #333;
  line-height: inherit;
  font-weight: 100;
  text-align: left;
  letter-spacing: 2px;
}
.index .main .part03 .w90 .top .btn {
  background-color: #0c3c64;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .top .btn .b_left {
  width: 86px;
  height: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .top .btn .b_left i {
  display: block;
  color: #fff;
  transform: rotate(180deg);
}
.index .main .part03 .w90 .top .btn .b_right {
  width: 86px;
  height: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .top .btn .b_right i {
  display: block;
  color: #fff;
}
.index .main .part03 .w90 .top .btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.index .main .part03 .w90 .bottom {
  margin-top: 80px;
}
.index .main .part03 .w90 .bottom > div ul li {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 70px 30px;
  box-sizing: border-box;
  margin-left: -1px;
}
.index .main .part03 .w90 .bottom > div ul li:nth-of-type(1) {
  margin-left: 0;
}
.index .main .part03 .w90 .bottom > div ul li:hover {
  background-color: #77cee9;
  transition: all 1s ease;
}
.index .main .part03 .w90 .bottom > div ul li:hover .type {
  background-color: #0c3c64;
  transition: all 1s ease;
}
.index .main .part03 .w90 .bottom > div ul li:hover .name p {
  color: #fff;
}
.index .main .part03 .w90 .bottom > div ul li:hover .img img {
  transform: scale(1);
  transition: all 1s ease;
}
.index .main .part03 .w90 .bottom > div ul li:hover .date p {
  color: #fff;
  transition: all 1s ease;
}
.index .main .part03 .w90 .bottom > div ul li:hover .date span {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 1s ease;
}
.index .main .part03 .w90 .bottom > div ul li:hover .date span i {
  color: #0c3c64;
}
.index .main .part03 .w90 .bottom > div ul li a .type {
  width: 40%;
  background-color: #77cee9;
  border-radius: 20px;
  overflow: hidden;
}
.index .main .part03 .w90 .bottom > div ul li a .type h4 {
  font-size: 14px;
  color: #fff;
  line-height: 30px;
  font-weight: 100;
  text-align: center;
}
.index .main .part03 .w90 .bottom > div ul li a .name {
  margin-top: 22px;
  margin-bottom: 60px;
  height: 50px;
}
.index .main .part03 .w90 .bottom > div ul li a .name p {
  font-size: 20px;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.index .main .part03 .w90 .bottom > div ul li a .img {
  width: 100%;
  height: 0;
  padding-bottom: 224px;
  border-radius: 16px;
  overflow: hidden;
}
.index .main .part03 .w90 .bottom > div ul li a .img img {
  width: 100%;
  transform: scale(1.1);
}
.index .main .part03 .w90 .bottom > div ul li a .date {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .bottom > div ul li a .date p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.6;
}
.index .main .part03 .w90 .bottom > div ul li a .date span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(12, 60, 100, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w90 .bottom > div ul li a .date span i {
  font-size: 15px;
  display: block;
  color: #fff;
  transform: rotate(-45deg);
}
.index .main .part04 {
  width: 100%;
  height: 630px;
  background-image: url(/images/contactBg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .left {
  width: 64%;
}
.index .main .part04 .w90 .left .l_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .left .l_top .l_logo {
  width: 88px;
}
.index .main .part04 .w90 .left .l_top .l_logo img {
  width: 100%;
}
.index .main .part04 .w90 .left .l_top .l_text {
  width: calc(100% - 100px);
}
.index .main .part04 .w90 .left .l_top .l_text h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.index .main .part04 .w90 .left .l_top .l_text p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .main .part04 .w90 .left .l_bottom {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .left .l_bottom .l_item {
  width: 42%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .left .l_bottom .l_item:nth-of-type(2) {
  width: 54%;
}
.index .main .part04 .w90 .left .l_bottom .l_item .l_icon {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .left .l_bottom .l_item .l_icon i {
  display: block;
  color: #fff;
  font-size: 32px;
}
.index .main .part04 .w90 .left .l_bottom .l_item .l_txt {
  width: calc(100% - 90px);
}
.index .main .part04 .w90 .left .l_bottom .l_item .l_txt p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 10px;
}
.index .main .part04 .w90 .left .l_bottom .l_item .l_txt h4 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .main .part04 .w90 .right {
  width: 30%;
}
.index .main .part04 .w90 .right .r_title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .main .part04 .w90 .right .r_content {
  margin-top: 30px;
}
.index .main .part04 .w90 .right .r_content form .form-group {
  width: 100%;
  margin-bottom: 16px;
}
.index .main .part04 .w90 .right .r_content form .form-group:nth-of-type(3) {
  margin-top: 40px;
}
.index .main .part04 .w90 .right .r_content form .form-group input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  padding: 16px 30px;
}
.index
  .main
  .part04
  .w90
  .right
  .r_content
  form
  .form-group
  input::placeholder {
  color: #fff;
}
.index .main .part04 .w90 .right .r_content form .form-group button {
  width: 50%;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part04 .w90 .right .r_content form .form-group button i {
  margin-left: 10px;
}
@media screen and (max-width: 1440px) {
  .index .main .part01 .w90 .top .t1 .title h2 {
    font-size: 38px;
  }
  .index .main .part01 .w90 .top .t1 .title p {
    font-size: 18px;
  }
  .index .main .part01 .w90 .top .t1 .desc {
    width: calc(100% - 190px);
  }
  .index .main .part01 .w90 .top .t1 .desc p {
    font-size: 16px;
    line-height: 1.8;
  }
  .index .main .part01 .w90 .bottom > div ul li a .img {
    border: 6px solid #77cee9;
    border-radius: 16px;
  }
  .index .main .part01 .w90 .bottom > div ul li a .text h3 {
    font-size: 16px;
  }
  .index .main .part01 .w90 .bottom > div ul li a .text p {
    font-size: 14px;
  }
  .index .main .part02 {
    padding-top: 60px;
  }
  .index .main .part02 .w90 .top .left .title h2 {
    font-size: 38px;
  }
  .index .main .part02 .w90 .top .left .title p {
    font-size: 19px;
  }
  .index .main .part02 .w90 .top .right {
    width: 52%;
  }
  .index .main .part02 .w90 .top .right p {
    font-size: 15px;
    font-weight: 100;
  }
  .index .main .part02 .w90 .bottom {
    margin-top: 40px;
  }
  .index .main .part02 .w90 .bottom ul li {
    height: 210px;
  }
  .index .main .part02 .w90 .bottom ul li .box .a_icon {
    width: 50px;
    height: 50px;
  }
  .index .main .part02 .w90 .bottom ul li .box .text .t1 h2 {
    font-size: 36px;
  }
  .index .main .part03 {
    padding-top: 130px;
  }
  .index .main .part03 .w90 .top .title h2 {
    font-size: 38px;
  }
  .index .main .part03 .w90 .top .title p {
    font-size: 18px;
  }
  .index .main .part03 .w90 .top .btn .b_left {
    height: 54px;
  }
  .index .main .part03 .w90 .top .btn .b_right {
    height: 54px;
  }
  .index .main .part03 .w90 .bottom {
    margin-top: 60px;
  }
  .index .main .part03 .w90 .bottom > div ul li {
    padding: 50px 20px;
  }
  .index .main .part03 .w90 .bottom > div ul li a .img {
    padding-bottom: 176px;
  }
  .index .main .part03 .w90 .bottom > div ul li a .name {
    margin-bottom: 30px;
  }
  .index .main .part03 .w90 .bottom > div ul li a .name p {
    font-size: 18px;
  }
  .index .main .part04 {
    height: 500px;
  }
  .index .main .part04 .w90 .left .l_top .l_logo {
    width: 62px;
  }
  .index .main .part04 .w90 .left .l_top .l_text h3 {
    font-size: 24px;
  }
  .index .main .part04 .w90 .left .l_top .l_text p {
    font-size: 15px;
  }
  .index .main .part04 .w90 .left .l_top .l_text {
    width: calc(100% - 90px);
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_txt h4 {
    font-size: 18px;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_txt p {
    font-size: 14px;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_icon {
    width: 54px;
    height: 54px;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_icon i {
    font-size: 28px;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_txt {
    width: calc(100% - 70px);
  }
  .index .main .part04 .w90 .left .l_bottom {
    margin-top: 60px;
  }
  .index .main .part04 .w90 .right .r_content {
    margin-top: 20px;
  }
  .index .main .part04 .w90 .right .r_content form .form-group input {
    padding: 12px 30px;
  }
  .index .main .part04 .w90 .right .r_content form .form-group {
    margin-bottom: 12px;
  }
  .index .main .part04 .w90 .right .r_content form .form-group:nth-of-type(3) {
    margin-top: 22px;
  }
  .index .main .part04 .w90 .right .r_content form .form-group button {
    line-height: 46px;
    border-radius: 4px;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .index .main .part01 {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .index .main .part01 .w90 .top .t1 {
    width: 100%;
  }
  .index .main .part01 .w90 .top .t1 .title {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .main .part01 .w90 .top .t1 .desc {
    width: 100%;
  }
  .index .main .part01 .w90 .top .t1 .title h2 {
    font-size: 24px;
  }
  .index .main .part01 .w90 .top .t1 .title p {
    font-size: 15px;
  }
  .index .main .part01 .w90 .top .t2 {
    display: none;
  }
  .index .main .part01 .w90 .bottom {
    margin-top: 40px;
  }
  .index .main .part02 .w90 .top .left {
    width: 100%;
  }
  .index .main .part02 .w90 .top .right {
    width: 100%;
    margin-top: 40px;
  }
  .index .main .part02 .w90 .top .left .title h2 {
    font-size: 24px;
  }
  .index .main .part02 .w90 .top .left .title p {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .index .main .part02 .w90 .top .left .more {
    display: none;
  }
  .index .main .part02 .w90 .bottom ul li {
    width: 48%;
    height: 190px;
    border: 1px solid #77cee9;
    margin-bottom: 20px;
  }
  .index .main .part02 .w90 .bottom ul li .box .text .t1 h2 {
    font-size: 24px;
  }
  .index .main .part02 .w90 .bottom ul li .box .a_icon {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
  .index .main .part02 .w90 .bottom ul li .box .text {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 80%;
    bottom: 20px;
  }
  .index .main .part02 .w90 .bottom ul li .box .text .t1 {
    justify-content: center;
  }
  .index .main .part02 .w90 .bottom ul li .box .text .t2 p {
    text-align: center;
  }
  .index .main .part03 .w90 .top .title h2 {
    font-size: 24px;
    margin-bottom: 2px;
  }
  .index .main .part03 .w90 .top .title p {
    font-size: 14px;
  }
  .index .main .part03 .w90 .top .btn .b_left {
    width: 60px;
    height: 44px;
    line-height: 44px;
  }
  .index .main .part03 .w90 .top .btn .b_right {
    width: 60px;
    height: 44px;
    line-height: 44px;
  }
  .index .main .part03 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .index .main .part04 {
    background-size: cover;
  }
  .index .main .part04 .w90 .left {
    width: 100%;
  }
  .index .main .part04 .w90 .right {
    width: 100%;
    display: none;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item {
    width: 100%;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item:nth-of-type(2) {
    width: 100%;
    margin-top: 40px;
  }
  .index .main .part04 .w90 .left .l_bottom .l_item .l_icon {
    width: 50px;
    height: 50px;
  }
  .index .main .part04 .w90 .left .l_top .l_logo {
    width: 72px;
  }
  .index .main .part04 .w90 .left .l_top .l_text h3 {
    font-size: 20px;
    font-weight: 700;
  }
  .index .main .part04 .w90 .left .l_top .l_text p {
    font-size: 14px;
    line-height: 1.2;
  }
}
.page .main {
  padding-top: 160px;
  padding-bottom: 140px;
}
.page .main .part01 {
  padding-bottom: 100px;
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.page .main .part01 .w90 .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: left;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 2%, #0c3c64 10%);
  /* 应用线性渐变 */
}
.page .main .part01 .w90 .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.page .main .part01 .w90 .num {
  margin-top: 100px;
}
.page .main .part01 .w90 .num ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .part01 .w90 .num ul li {
  position: relative;
  width: 23%;
  height: 260px;
  border-radius: 20px;
  border: 8px solid rgba(12, 60, 100, 0.1);
  box-sizing: border-box;
  overflow: hidden;
}
.page .main .part01 .w90 .num ul li .box {
  width: 100%;
  height: 100%;
  background-image: url(/images/i_aboutBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.page .main .part01 .w90 .num ul li .box .a_icon {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #77cee9;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .part01 .w90 .num ul li .box .a_icon img {
  width: 50%;
}
.page .main .part01 .w90 .num ul li .box .text {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.page .main .part01 .w90 .num ul li .box .text .t1 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
.page .main .part01 .w90 .num ul li .box .text .t1 h2 {
  font-size: 48px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
}
.page .main .part01 .w90 .num ul li .box .text .t1 h5 {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  margin-left: 6px;
  margin-bottom: 4px;
}
.page .main .part01 .w90 .num ul li .box .text .t2 {
  margin-top: 8px;
}
.page .main .part01 .w90 .num ul li .box .text .t2 p {
  font-size: 15px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  letter-spacing: 2px;
}
.page .main .part01 .w90 .txt {
  margin-top: 100px;
}
.page .main .part01 .w90 .txt p {
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  padding-bottom: 26px;
}
.page .main .part02 .w90 .img ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.page .main .part02 .w90 .img ul li {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}
.page .main .part02 .w90 .img ul li img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .page .main {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  .page .main .part01 {
    padding-bottom: 60px;
  }
  .page .main .part01 .w90 .title h1 {
    font-size: 36px;
  }
  .page .main .part01 .w90 .title p {
    font-size: 16px;
  }
  .page .main .part01 .w90 .num ul li {
    height: 200px;
  }
  .page .main .part01 .w90 .num ul li .box .a_icon {
    width: 60px;
    height: 60px;
  }
  .page .main .part01 .w90 .num ul li .box .text .t1 h2 {
    font-size: 32px;
  }
  .page .main .w90 .num .n_item h5 {
    font-size: 16px;
  }
  .page .main .w90 .num .n_item {
    padding: 46px 24px;
  }
  .page .main .w90 .num .n_item h3 {
    font-size: 40px;
  }
  .page .main .w90 .num {
    margin-top: 70px;
  }
  .page .main .part01 .w90 .txt {
    margin-top: 70px;
  }
  .page .main .part01 .w90 .txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .page .main {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .page .main .part01 .w90 .title h1 {
    font-size: 22px;
  }
  .page .main .part01 .w90 .title p {
    font-size: 15px;
    line-height: 1.3;
  }
  .page .main .part01 .w90 .num .n_item {
    width: 100%;
    padding: 32px 14px;
    margin-bottom: 20px;
  }
  .page .main .part01 .w90 .num .n_item h5 {
    font-size: 15px;
    text-align: center;
  }
  .page .main .part01 .w90 .num .n_item h3 {
    font-size: 34px;
  }
  .page .main .part01 .w90 .img {
    margin-top: 40px;
  }
  .page .main .part01 .w90 .num {
    margin-top: 70px;
  }
  .page .main .part01 .w90 .txt {
    margin-top: 50px;
  }
  .page .main .part01 .w90 .num ul li {
    width: 48%;
    margin-bottom: 16px;
    height: 230px;
  }
  .page .main .part01 .w90 .num ul li .box .text .t1 h2 {
    font-size: 26px;
  }
  .page .main .part01 .w90 .num ul li .box .a_icon {
    width: 60px;
    height: 60px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .page .main .part01 .w90 .num ul li .box .text .t2 p {
    font-size: 14px;
  }
  .page .main .part01 .w90 .num ul li .box .text {
    width: 80%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .page .main .part01 .w90 .num ul li .box .text .t1 {
    justify-content: center;
  }
  .page .main .part01 .w90 .num ul li .box .text .t2 p {
    text-align: center;
    line-height: 1.3;
  }
  .page .main .part01 .w90 .txt p {
    font-size: 16px;
  }
  .page .main .part01 {
    padding-bottom: 30px;
  }
}
.cultrue .main {
  padding-top: 160px;
  padding-bottom: 140px;
  background-image: url(/images/part01Bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.cultrue .main .w90 .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: left;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 2%, #0c3c64 10%);
  /* 应用线性渐变 */
}
.cultrue .main .w90 .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.cultrue .main .w90 .content {
  margin-top: 60px;
}
.cultrue .main .w90 .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.cultrue .main .w90 .content ul li {
  position: relative;
  width: 32%;
  height: 260px;
  margin-right: 2%;
  border-radius: 20px;
  border: 8px solid rgba(12, 60, 100, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 30px;
}
.cultrue .main .w90 .content ul li:nth-of-type(3) {
  margin-right: 0;
}
.cultrue .main .w90 .content ul li .box {
  width: 100%;
  height: 100%;
  background-image: url(/images/i_aboutBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 20px 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cultrue .main .w90 .content ul li .box .b1 .a_icon {
  background-color: #77cee9;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cultrue .main .w90 .content ul li .box .b1 .a_icon img {
  width: 50%;
}
.cultrue .main .w90 .content ul li .box .b1 .text {
  margin-top: 10px;
}
.cultrue .main .w90 .content ul li .box .b1 .text .t1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cultrue .main .w90 .content ul li .box .b1 .text .t1 h2 {
  font-size: 22px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
}
.cultrue .main .w90 .content ul li .box .b1 .text .t1 h5 {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  margin-left: 6px;
  margin-bottom: 4px;
}
.cultrue .main .w90 .content ul li .box .b1 .text .t2 p {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  letter-spacing: 2px;
}
.zizhi .main {
  width: 100%;
  background-image: url(/images/honor_bg3.jpg);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 140px;
  background-size: cover;
}
.zizhi .main .w90 {
  padding-top: 140px;
}
.zizhi .main .w90 .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: center;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 40%, #0c3c64 50%);
  /* 应用线性渐变 */
}
.zizhi .main .w90 .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.zizhi .main .w90 .content {
  margin-top: 60px;
}
.zizhi .main .w90 .content .swiper-container .swiper-wrapper .swiper-slide {
  flex-wrap: wrap;
  background: none;
}
.zizhi
  .main
  .w90
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide.swiper-slide-active
  .txt {
  display: block;
}
.zizhi
  .main
  .w90
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .img
  img {
  width: 100%;
}
.zizhi
  .main
  .w90
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .txt {
  margin-top: 30px;
  display: none;
}
.zizhi
  .main
  .w90
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .txt
  p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .zizhi .main .w90 .title h1 {
    font-size: 36px;
  }
  .zizhi .main .w90 .title p {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .zizhi .main .w90 .title h1 {
    font-size: 22px;
  }
  .zizhi .main .w90 .title p {
    font-size: 15px;
  }
}
.product .main {
  padding-top: 140px;
  background-image: url(/images/part01Bg.jpg);
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.product .main .w90 .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: center;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 46%, #0c3c64 50%);
  /* 应用线性渐变 */
}
.product .main .w90 .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.product .main .w90 .content {
  margin-top: 80px;
}
.product .main .w90 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .w90 .content ul li {
  width: 23%;
  margin-bottom: 60px;
}
.product .main .w90 .content ul li:nth-last-child(-n + 4) {
  margin-bottom: 0;
}
.product .main .w90 .content ul li:hover a .img {
  border: 8px solid #cb0101;
}
.product .main .w90 .content ul li:hover a .img img {
  transform: scale(1);
}
.product .main .w90 .content ul li:hover a .img .mask {
  background-color: rgba(0, 0, 0, 0.4);
}
.product .main .w90 .content ul li:hover a .img .mask .m_icon {
  opacity: 1;
  transform: translateY(0);
}
.product .main .w90 .content ul li a .img {
  border: 8px solid #77cee9;
  border-radius: 14px;
  overflow: hidden;
  transition: all 1s ease;
  position: relative;
}
.product .main .w90 .content ul li a .img img {
  width: 100%;
  transform: scale(1.1);
  transition: all 1s ease;
}
.product .main .w90 .content ul li a .img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0);
  transition: all 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .w90 .content ul li a .img .mask .m_icon {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  text-align: center;
}
.product .main .w90 .content ul li a .img .mask .m_icon h3 {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: center;
}
.product .main .w90 .content ul li a .img .mask .m_icon h3 i {
  font-size: 18px;
  color: #cb0101;
  margin-left: 8px;
}
.product .main .w90 .content ul li a .img .mask .m_icon p {
  margin-top: 8px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: center;
}
.product .main .w90 .content ul li a .text {
  margin-top: 20px;
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product .main .w90 .content ul li a .text h3 {
  font-size: 18px;
  color: #0c3c64;
  line-height: inherit;
  font-weight: 700;
  text-align: center;
}
.product .main .w90 .content ul li a .text p {
  font-size: 15px;
  color: #000;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .product .main .w90 .title h1 {
    font-size: 36px;
  }
  .product .main .w90 .title p {
    font-size: 16px;
  }
  .product .main .w90 .content ul li a .text h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .product .main {
    padding-top: 100px;
  }
  .product .main .w90 .title h1 {
    font-size: 22px;
  }
  .product .main .w90 .title p {
    font-size: 15px;
  }
  .product .main .w90 .content ul li {
    width: 100%;
  }
  .product .main .w90 .content ul li a .img {
    border: 6px solid #77cee9;
  }
  .product .main .w90 .content {
    margin-top: 60px;
  }
  .product .main .w90 .content ul li a .text h3 {
    font-size: 16px;
  }
}
.product_details {
  background-color: #e6f2f8;
}
.product_details .main {
  margin-top: 180px;
  margin-bottom: 120px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.product_details .main .left {
  width: 64vw;
  padding: 30px;
  margin-right: 6vw;
  box-sizing: border-box;
  background-color: #fff;
  margin-left: 5vw;
  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%;
  background-color: #e6f2f8;
  padding: 20px;
  box-sizing: border-box;
  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: 24px;
  color: #000;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}
.product_details .main .left .part01 .l_box2 .p_des {
  padding-top: 14px;
  padding-bottom: 14px;
  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: 90px;
  background-color: #cb0101;
  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: 40px;
}
.product_details .main .left .part01 .l_box2 .btn .btn1 {
  margin-bottom: 16px;
}
.product_details .main .left .part01 .l_box2 .btn .btn1 a {
  font-size: 15px;
  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 p {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.product_details .main .left .part02 .p02_content p strong {
  font-size: 18px;
}
.product_details .main .left .part02 .p02_content img {
  width: initial;
  display: block;
  margin: 0 auto;
}
.product_details .main .left .part02 .p02_content img.w100 {
  width: 100% !important;
}
.product_details .main .left .part02 .p02_content img.m0 {
  margin: 0;
}
.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: 5vw;
  top: 0px;
  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: 250px;
  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 .main .left {
    width: 64vw;
  }
  .product_details .w90.n .left .part03 .p03_content ul li .text p {
    font-size: 16px;
  }
  .product_details .main .left .part01 .l_box2 .l_title h3 {
    font-size: 18px;
  }
  .product_details .main .left .part01 .l_box2 .p_tel h4 {
    font-size: 16px;
    line-height: 42px;
    text-align: left;
  }
  .product_details .main .left .part01 .l_box2 .p_des p {
    font-size: 16px;
  }
  .product_details .main .left .part01 .l_box2 .p_tel {
    margin-top: 40px;
  }
  .product_details .main .left .part01 .l_box2 .l_title {
    margin-bottom: 20px;
  }
  .product_details .main .left .part01 .l_box2 .p_des {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .product_details .main .right .r_list ul li a .img {
    height: 160px;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main .left {
    width: 90%;
    margin-left: 5%;
    padding: 20px;
  }
  .product_details .main .right {
    width: 100%;
    margin: 5%;
    box-sizing: border-box;
    position: static;
  }
  .product_details .main .left .part01 .l_box1 {
    width: 100%;
    padding: 10px;
  }
  .product_details .main .left .part01 .l_box2 {
    width: 100%;
    margin-top: 20px;
  }
  .product_details .main .left .part02 .p02_title h3 span {
    font-size: 18px;
  }
  .product_details .main .right .r_title h2 {
    font-size: 18px;
  }
  .product_details .main {
    margin-top: 100px;
  }
}
.news .main {
  min-height: 500px;
}
.news .main .title {
  padding-top: 140px;
  padding-bottom: 60px;
}
.news .main .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: center;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 46%, #0c3c64 50%);
  /* 应用线性渐变 */
}
.news .main .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.news .main .part01 ul li {
  border-bottom: 1px solid #dfdfdf;
  padding: 30px 0;
  transition: all 1s ease;
}
.news .main .part01 ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .date {
  width: 6%;
}
.news .main .part01 ul li a .date h2 {
  font-size: 68px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.news .main .part01 ul li a .date p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news .main .part01 ul li a .text {
  width: 46%;
}
.news .main .part01 ul li a .text h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.news .main .part01 ul li a .text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 60px;
}
.news .main .part01 ul li a .text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 20px;
  font-size: 16px;
  font-family: "lianwei";
  color: #0c3c64;
}
.news .main .part01 ul li a .text span i {
  margin-right: 8px;
}
.news .main .part01 ul li a .img {
  width: 32%;
  height: 0;
  overflow: hidden;
  padding-bottom: 300px;
}
.news .main .part01 ul li a .img img {
  width: 100%;
  transition: all 2s ease;
}
.news .main .part01 ul li:hover {
  background-color: #e6f2f8;
}
.news .main .part01 ul li:hover a .img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1440px) {
  .news .main .title h1 {
    font-size: 36px;
  }
  .news .main .title p {
    font-size: 16px;
  }
  .news .main .part01 ul li a .img {
    padding-bottom: 234px;
    width: 32%;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .news .main .part01 ul li a .text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .news .main .part01 ul li a .text span {
    font-size: 12px;
    width: 180px;
    height: 40px;
  }
  .news .main .part01 ul li a .text span img {
    width: 50px;
  }
  .news .main .part01 ul li a .text span::after {
    background-size: contain;
  }
  .news .main .part01 ul li {
    padding: 24px 0;
  }
  .news .main .part01 ul li a .date {
    width: 7%;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 52px;
  }
  .news .main .part01 ul li a .date p {
    font-size: 15px;
  }
  .news .main .part01 ul li a .text {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .news .main .title {
    padding-top: 100px;
  }
  .news .main .title h1 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .news .main .title p {
    font-size: 15px;
    line-height: 1.3;
    width: 80%;
    margin: 0 auto;
  }
  .news .main .part01 ul li a .text p {
    display: none;
  }
  .news .main .part01 ul li a .date {
    display: none;
  }
  .news .main .part01 ul li a .img {
    width: 44%;
    padding-bottom: 120px;
  }
  .news .main .part01 ul li a .text span {
    height: 18px;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 16px;
    font-weight: 400;
  }
}
.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;
  }
  .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 .w90 .c_top {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w90 .c_top .title h1 {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 12px;
  text-align: left;
  color: transparent;
  /* 设置文字颜色为透明 */
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #77cee9 2%, #0c3c64 10%);
  /* 应用线性渐变 */
}
.contact .main .w90 .c_top .title p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.contact .main .w90 .c_top .c_icon a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w90 .c_top .c_icon a i {
  font-size: 24px;
  color: #0c3c64;
  margin-right: 10px;
}
.contact .main .w90 .c_top .c_icon a p {
  font-size: 18px;
  color: #0c3c64;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .w90 .c_center {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w90 .c_center .item {
  width: 48%;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding: 20px 0;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.5s ease;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w90 .c_center .item::after {
  content: "";
  display: block;
  width: 0%;
  height: 100%;
  background-color: #0c3c64;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.5s ease;
}
.contact .main .w90 .c_center .item:hover {
  padding: 20px 30px;
}
.contact .main .w90 .c_center .item:hover::after {
  width: 100%;
}
.contact .main .w90 .c_center .item:hover .left i {
  color: #fff;
}
.contact .main .w90 .c_center .item:hover .left h3 {
  color: #fff;
}
.contact .main .w90 .c_center .item:hover .left h4 {
  color: #fff;
}
.contact .main .w90 .c_center .item:hover .right i {
  color: #fff;
}
.contact .main .w90 .c_center .item .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w90 .c_center .item .left i {
  font-size: 30px;
  margin-right: 10px;
}
.contact .main .w90 .c_center .item .left h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 16px;
}
.contact .main .w90 .c_center .item .left h4 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .w90 .c_center .item .right i {
  font-size: 24px;
}
.contact .main .c_information {
  margin-top: 100px;
  background-color: #e6f2f8;
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.contact .main .c_information .w90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .c_information .w90 .item {
  width: 32%;
  height: 160px;
  padding: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(119, 206, 233, 0.3);
  background-image: url(/images/c_contactBg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
.contact .main .c_information .w90 .item h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}
.contact .main .c_information .w90 .item h3::after {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  margin: 6px 0;
  background-color: #77cee9;
}
.contact .main .c_information .w90 .item p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.contact .main .c_bottom {
  margin-top: 120px;
  margin-bottom: 120px;
}
.contact .main .c_bottom .w90 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .c_bottom .w90 .left {
  width: 42%;
  position: relative;
}
.contact .main .c_bottom .w90 .left .img {
  margin-left: 100px;
  position: relative;
  z-index: 6;
  border-radius: 30px 0 0 0;
  overflow: hidden;
}
.contact .main .c_bottom .w90 .left .img img {
  width: 100%;
}
.contact .main .c_bottom .w90 .left .box {
  position: absolute;
  top: 50%;
  margin-top: -130px;
  width: 260px;
  height: 260px;
  animation: move 2s linear infinite;
}
.contact .main .c_bottom .w90 .left .box .box1 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #e6f2f8;
}
.contact .main .c_bottom .w90 .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: #77cee9;
}
.contact .main .c_bottom .w90 .right {
  width: 54%;
}
.contact .main .c_bottom .w90 .right .sub1 p {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
}
.contact .main .c_bottom .w90 .right .sub1 h3 {
  font-size: 32px;
  color: #333;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.contact .main .c_bottom .w90 .right .sub2 {
  margin-top: 60px;
}
.contact .main .c_bottom .w90 .right .sub2 .sub2_item {
  margin-bottom: 14px;
}
.contact .main .c_bottom .w90 .right .sub2 .sub2_item:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact
  .main
  .c_bottom
  .w90
  .right
  .sub2
  .sub2_item:nth-of-type(1)
  .sub2_item_box1 {
  width: 33%;
}
.contact
  .main
  .c_bottom
  .w90
  .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
  .c_bottom
  .w90
  .right
  .sub2
  .sub2_item:nth-of-type(2)
  .sub2_item_box2 {
  width: 100%;
}
.contact
  .main
  .c_bottom
  .w90
  .right
  .sub2
  .sub2_item:nth-of-type(2)
  .sub2_item_box2
  textarea {
  width: 100%;
  height: 100px;
  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 .c_bottom .w90 .right .sub2 .sub2_item button {
  width: 100%;
  height: 50px;
  border: none;
  font-size: 18px;
  background-color: #77cee9;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .contact .main .w90 .c_top .title h1 {
    font-size: 36px;
    margin-bottom: 0;
  }
  .contact .main .w90 .c_top .title p {
    font-size: 16px;
  }
  .contact .main .w90 .c_center .item .left h3 {
    font-size: 16px;
  }
  .contact .main .w90 .c_center .item .left h4 {
    font-size: 16px;
  }
  .contact .main .w90 .c_center .item .left i {
    font-size: 24px;
  }
  .contact .main .w90 .c_center .item .right i {
    font-size: 20px;
  }
  .contact .main .c_information {
    margin-top: 60px;
  }
  .contact .main .c_information .w90 .item {
    margin-bottom: 20px;
  }
  .contact .main .c_information .w90 .item h3 {
    font-size: 16px;
  }
  .contact .main .c_information .w90 .item:nth-of-type(n + 4) {
    margin-bottom: 0;
  }
  .contact .main .c_bottom .w90 .right .sub1 p {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .contact .main .c_bottom .w90 .right .sub1 h3 {
    font-size: 20px;
  }
  .contact .main .c_bottom .w90 .right .sub2 {
    margin-top: 30px;
  }
  .contact
    .main
    .c_bottom
    .w90
    .right
    .sub2
    .sub2_item:nth-of-type(1)
    .sub2_item_box1
    input {
    line-height: 42px;
  }
  .contact .main .c_bottom .w90 .left {
    width: 48%;
  }
  .contact .main .c_bottom .w90 .right {
    width: 48%;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .w90 .c_top {
    margin-top: 110px;
  }
  .contact .main .w90 .c_top .title h1 {
    font-size: 22px;
  }
  .contact .main .w90 .c_top .c_icon {
    margin-top: 40px;
  }
  .contact .main .w90 .c_top .c_icon a p {
    font-size: 16px;
  }
  .contact .main .w90 .c_center .item {
    width: 100%;
  }
  .contact .main .w90 .c_center .item .right {
    display: none;
  }
  .contact .main .w90 .c_center .item .left h4 {
    width: 100%;
    margin-top: 10px;
  }
  .contact .main .c_information .w90 .item {
    width: 100%;
  }
  .contact .main .c_information .w90 .item:nth-of-type(n + 4) {
    margin-bottom: 20px;
  }
  .contact .main .c_information {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .contact .main .c_bottom .w90 .left {
    display: none;
  }
  .contact .main .c_bottom .w90 .right {
    width: 100%;
  }
  .contact
    .main
    .c_bottom
    .w90
    .right
    .sub2
    .sub2_item:nth-of-type(1)
    .sub2_item_box1 {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact
    .main
    .c_bottom
    .w90
    .right
    .sub2
    .sub2_item:nth-of-type(2)
    .sub2_item_box2
    textarea {
    height: 200px;
  }
  .contact .main .c_bottom .w90 .right .sub2 .sub2_item {
    margin-bottom: 0;
  }
  .contact .main .c_bottom .w90 .right .sub1 h3 {
    font-size: 18px;
  }
  .contact
    .main
    .c_bottom
    .w90
    .right
    .sub2
    .sub2_item:nth-of-type(1)
    .sub2_item_box1
    input {
    font-size: 14px;
    padding: 0 20px;
  }
  .contact
    .main
    .c_bottom
    .w90
    .right
    .sub2
    .sub2_item:nth-of-type(2)
    .sub2_item_box2
    textarea {
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
}
