.more {
  background-color: #004bbc;
  width: 300px;
  height: 64px;
  border-radius: 60px;
}
.more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.more a p {
  font-size: 18px;
  color: #fff;
  line-height: 64px;
  font-weight: 100;
  text-align: center;
}
.more a img {
  margin-left: 20px;
  width: initial;
}
@media screen and (max-width: 1440px) {
  .more {
    width: 240px;
    height: 56px;
  }
  .more a p {
    line-height: 56px;
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .more {
    width: 190px;
    height: 46px;
  }
  .more a p {
    line-height: 46px;
    font-size: 16px;
  }
}
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.1);
}
header.active {
  background-color: #ffffff;
}
header.active > div .left nav ul li a {
  color: #333;
}
header.active > div .right .message i {
  color: #333;
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .left {
  width: 76%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .left .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div .left .logo .logo_img {
  margin-right: 20px;
}
header > div .left .logo .logo_img a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .left .logo .logo_img a img {
  height: 57px;
}
header > div .left .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
header > div .left .logo .logo_text a p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div .left nav {
  width: calc(100% - 120px);
  line-height: inherit;
}
header > div .left nav ul {
  width: 100%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .left nav ul li {
  line-height: inherit;
  position: relative;
  z-index: 999;
  transition: all 1s;
}
header > div .left nav ul li::after {
  display: block;
  content: "";
  width: 0%;
  height: 3px;
  background-color: #004bbc;
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: all 0.5s ease;
}
header > div .left nav ul li:hover::after {
  width: 100%;
}
header > div .left nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div .left nav ul li a {
  display: block;
  font-size: 20px;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div .left 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 .left nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div .left nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div .left nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div .left nav ul li .menu .menu_item:hover {
  background-color: #004bbc;
}
header > div .left nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .right .message {
  margin-right: 20px;
}
header > div .right .message i {
  color: #fff;
  font-size: 24px;
}
header > div .right .tel {
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #004bbc;
}
header > div .right .tel h3 {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  header {
    height: 90px;
    line-height: 90px;
  }
  header > div .left nav ul li a {
    font-size: 16px;
  }
  header > div .right .tel {
    padding: 12px 20px;
  }
  header > div .right .tel h3 {
    font-size: 14px;
  }
  header > div .right .message i {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer {
  width: 100%;
  height: 784px;
  background-color: #1c1c1c;
  position: relative;
}
footer .top {
  width: 100%;
  position: absolute;
  top: -60px;
  left: 0;
}
footer .top .w84 {
  height: inherit;
  background-color: #f8fbff;
  padding: 90px;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #e6f2f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left {
  width: 44%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .logo {
  margin-bottom: 50px;
}
footer .top .w84 .left .l_sub1 .tel .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .tel .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #c60000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .tel .t_top .t_icon i {
  color: #fff;
  font-size: 14px;
}
footer .top .w84 .left .l_sub1 .tel .t_top .txt {
  margin-left: 6px;
}
footer .top .w84 .left .l_sub1 .tel .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w84 .left .l_sub1 .tel .t_bottom {
  margin-top: 8px;
}
footer .top .w84 .left .l_sub1 .tel .t_bottom h1 {
  font-size: 30px;
  color: #c60000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w84 .left .l_sub1 .p_e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .p_e .email {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #c60000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_top .t_icon i {
  color: #fff;
  font-size: 12px;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_top .txt {
  margin-left: 6px;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_bottom {
  margin-left: 10px;
}
footer .top .w84 .left .l_sub1 .p_e .email .t_bottom p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
footer .top .w84 .left .l_sub1 .add {
  margin-top: 30px;
}
footer .top .w84 .left .l_sub1 .add .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .add .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #c60000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .left .l_sub1 .add .t_top .t_icon i {
  color: #fff;
  font-size: 13px;
}
footer .top .w84 .left .l_sub1 .add .t_top .txt {
  margin-left: 6px;
}
footer .top .w84 .left .l_sub1 .add .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w84 .left .l_sub1 .add .t_bottom {
  margin-top: 8px;
}
footer .top .w84 .left .l_sub1 .add .t_bottom p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  opacity: 0.8;
}
footer .top .w84 .left .l_sub1 .add .t_bottom p span {
  display: block;
  min-width: 220px;
}
footer .top .w84 .left .l_sub2 .item {
  margin-bottom: 16px;
}
footer .top .w84 .left .l_sub2 .item .img img {
  width: initial;
}
footer .top .w84 .left .l_sub2 .item .txt {
  margin-top: 6px;
}
footer .top .w84 .left .l_sub2 .item .txt p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .top .w84 .right {
  width: 48%;
}
footer .top .w84 .right .title {
  margin-bottom: 20px;
}
footer .top .w84 .right .title h2 {
  font-size: 36px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w84 .right .title h2::after {
  margin-top: 16px;
  display: block;
  content: "";
  width: 68px;
  height: 1px;
  background-color: #c60000;
}
footer .top .w84 .right .item {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w84 .right .item input {
  width: 49%;
  border-bottom: 1px solid #dfdfdf;
  font-size: 15px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  background: none;
}
footer .top .w84 .right .item button {
  width: 218px;
  height: 50px;
  background-color: #004bbc;
  font-size: 15px;
  color: #fff;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
  border-radius: 6px;
}
footer .top .w84 .right .item:nth-of-type(3) input {
  width: 100%;
}
footer .top .w84 .right .item:nth-of-type(4) input {
  width: 100%;
}
footer .top .w84 .right .item:nth-of-type(5) {
  margin-top: 40px;
}
footer .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 236px;
}
footer .bottom .w84 {
  background-image: url(/images/footer_line.jpg);
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
footer .bottom .w84 .b_left {
  width: 50%;
}
footer .bottom .w84 .b_left .b_l_top {
  width: 100%;
}
footer .bottom .w84 .b_left .b_l_top ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w84 .b_left .b_l_top ul li a {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.4;
}
footer .bottom .w84 .b_left .b_l_bottom {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w84 .b_left .b_l_bottom .share {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100px;
  padding: 14px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
footer .bottom .w84 .b_left .b_l_bottom .share i {
  color: #fff;
  font-size: 18px;
}
footer .bottom .w84 .b_left .b_l_bottom .share p {
  margin-left: 8px;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .bottom .w84 .b_left .b_l_bottom .share_icons a {
  margin-left: 20px;
}
footer .bottom .w84 .b_right button {
  position: fixed;
  bottom: 120px;
  right: 8.4%;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
footer .bottom .w84 .b_right button:hover {
  background-color: #004bbc;
}
footer .bottom .w84 .b_right button:hover i {
  color: #fff;
}
footer .bottom .w84 .b_right button i {
  color: #000;
  display: block;
  transform: rotate(-90deg);
}
footer .bottom .w84 .b_right p {
  margin-bottom: 20px;
  opacity: 0.4;
}
footer .bottom .w84 .b_right p a {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  footer {
    height: 664px;
  }
  footer .top .w84 {
    padding: 40px;
  }
  footer .top .w84 .left {
    width: 46%;
  }
  footer .top .w84 .left .l_sub1 .email .t_bottom p {
    font-size: 14px;
  }
  footer .top .w84 .left .l_sub1 .add .t_bottom p {
    font-size: 14px;
  }
  footer .top .w84 .left .l_sub1 .email .t_top .txt h3 {
    font-size: 16px;
  }
  footer .top .w84 .left .l_sub1 .add .t_top .txt h3 {
    font-size: 16px;
  }
  footer .top .w84 .left .l_sub2 .item .txt p {
    font-size: 12px;
  }
  footer .top .w84 .right .title h2 {
    font-size: 22px;
  }
  footer .top .w84 .right .item input {
    font-size: 13px;
  }
  footer .top .w84 .right .item button {
    width: 178px;
    height: 46px;
  }
  footer .bottom .w84 .b_left .b_l_top ul li a {
    font-size: 14px;
  }
  footer .bottom .w84 .b_left .b_l_bottom {
    margin-top: 30px;
  }
  footer .bottom .w84 .b_right p a {
    font-size: 14px;
  }
  footer .top .w84 .left .l_sub1 .tel .t_top .txt h3 {
    font-size: 16px;
  }
  footer .top .w84 .left .l_sub2 .item .img img {
    width: 76px;
  }
  footer .top .w84 .right {
    width: 48%;
  }
  footer .bottom .w84 .b_left .b_l_bottom a {
    font-size: 13px;
  }
  footer .top .w84 .left .l_sub1 .logo {
    margin-bottom: 30px;
  }
  footer .top .w84 .left .l_sub1 .logo img {
    width: 240px;
  }
  footer .top .w84 .left .l_sub1 .tel .t_bottom h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 992px) {
  footer {
    height: auto;
    overflow: hidden;
  }
  footer .top {
    position: static;
    margin-top: 60px;
    padding-bottom: 30px;
  }
  footer .bottom {
    position: static;
  }
  footer .top .w84 {
    padding: 24px;
  }
  footer .top .w84 .left {
    width: 100%;
  }
  footer .top .w84 .right {
    width: 100%;
    margin-top: 40px;
  }
  footer .top .w84 .left .l_sub1 {
    width: 100%;
  }
  footer .top .w84 .left .l_sub2 {
    display: none;
  }
  footer .bottom .w84 {
    padding-top: 40px;
  }
  footer .bottom {
    display: none;
  }
  footer .top .w84 .left .l_sub1 .email .t_bottom p span {
    margin-bottom: 8px;
  }
  footer .top .w84 .right .title h2 {
    font-size: 18px;
  }
}
.index .part01 {
  background-image: url(/images/indexPartBg1.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 160px;
  padding-bottom: 160px;
  overflow: hidden;
}
.index .part01 .w84 {
  overflow: visible;
}
.index .part01 .w84 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w84 .top .title {
  width: 60%;
  padding-left: 60px;
}
.index .part01 .w84 .top .title h2 {
  font-size: 90px;
  color: #004bbc;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
  font-family: "MyFont";
}
.index .part01 .w84 .top .title p {
  font-size: 20px;
  color: #333;
  line-height: 1.3;
  font-weight: 100;
  text-align: left;
}
.index .part01 .w84 .bottom {
  margin-top: 60px;
  background-color: #004bbc;
  padding: 72px 60px;
  box-sizing: border-box;
  border-radius: 30px;
  height: 600px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part01 .w84 .bottom .left {
  width: 23%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
}
.index .part01 .w84 .bottom .left .l_h3 h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .w84 .bottom .left .l_title {
  padding-bottom: 30px;
  border-bottom: 1px solid #c60000;
}
.index .part01 .w84 .bottom .left .l_title h2 {
  font-size: 60px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .w84 .bottom .left .l_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w84 .bottom .left .l_btn > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w84 .bottom .left .l_btn > div i {
  color: #333;
  font-size: 16px;
}
.index .part01 .w84 .bottom .left .l_btn > div.p_left_btn {
  transform: rotate(180deg);
  margin-right: 14px;
}
.index .part01 .w84 .bottom .left .l_btn > div.p_right_btn {
  background-color: #c60000;
}
.index .part01 .w84 .bottom .left .l_btn > div.p_right_btn i {
  color: #fff;
}
.index .part01 .w84 .bottom .right {
  width: 66%;
  position: relative;
}
.index .part01 .w84 .bottom .right .txtBoxs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w84 .bottom .right .txtBoxs .l_txtboxs p {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  font-weight: 100;
  text-align: left;
  opacity: 0.36;
}
.index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn:nth-last-of-type(1) {
  margin-left: 48px;
}
.index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn.active::after {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #c60000;
  position: absolute;
  top: 16px;
  left: -8px;
  z-index: -1;
}
.index .part01 .w84 .bottom .right .proBoxs {
  position: absolute;
  left: 0;
  top: 80px;
  width: 150%;
}
.index .part01 .w84 .bottom .right .proBoxs > div.pro1 {
  transform: translateY(0%);
  opacity: 0;
}
.index .part01 .w84 .bottom .right .proBoxs > div.pro1.active {
  opacity: 1;
}
.index .part01 .w84 .bottom .right .proBoxs > div.pro2 {
  transform: translateY(-100%);
  opacity: 0;
  z-index: -1;
  position: relative;
}
.index .part01 .w84 .bottom .right .proBoxs > div.pro2.active {
  opacity: 1;
  z-index: 3;
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li {
  overflow: hidden;
  border-radius: 30px;
  opacity: 1;
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li:hover a img {
  transform: scale(1.1);
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li:hover a p {
  background-color: #c60000;
  color: #fff;
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li a {
  position: relative;
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li a p {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 50px;
  line-height: 50px;
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.index .part01 .w84 .bottom .right .proBoxs > div > div ul li a img {
  width: 100%;
  display: block;
  transition: all 1s ease;
}
.index .part02 .w84 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 820px;
  background-image: url(/images/indexPartBg2.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 120px;
}
.index .part02 .w84 .left {
  width: 34%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
}
.index .part02 .w84 .left .p02_title {
  width: 100%;
  background-image: url(/images/aboutTxtBg1.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top right;
}
.index .part02 .w84 .left .p02_title h4 {
  font-size: 86px;
  color: #707070;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  letter-spacing: 2px;
}
.index .part02 .w84 .left .p02_title h3 {
  font-size: 96px;
  color: #c60000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  font-family: "MyFont";
  letter-spacing: 2px;
}
.index .part02 .w84 .left .p02_img {
  width: 100%;
  padding-bottom: 52px;
  border-bottom: 1px solid #004bbc;
}
.index .part02 .w84 .left .p02_img .img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.index .part02 .w84 .left .p02_img .img img {
  width: 100%;
  display: block;
}
.index .part02 .w84 .right {
  width: 54%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  justify-content: space-between;
  /* 平均分布 */
}
.index .part02 .w84 .right .p02_smail_title h4 {
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.index .part02 .w84 .right .p02_smail_title p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.index .part02 .w84 .right .m_r_content {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w84 .right .m_r_content .im {
  width: 40%;
  padding-left: 30px;
  background-image: url(/images/message_icon.png);
  background-position: top left;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.index .part02 .w84 .right .m_r_content .im:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}
.index .part02 .w84 .right .m_r_content .im h3 {
  font-size: 60px;
  color: #004bbc;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 12px;
  margin-top: -20px;
}
.index .part02 .w84 .right .m_r_content .im h4 {
  font-size: 18px;
  color: #000;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.index .part03 {
  background-image: url(/images/index_part03_bg.jpg);
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 760px;
  background-attachment: fixed;
}
.index .part03 .w84 .title {
  margin-top: 200px;
}
.index .part03 .w84 .title .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w84 .title .t_top .t_left h1 {
  font-size: 90px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  font-family: "MyFont";
}
.index .part03 .w84 .title .t_top .t_right {
  margin-left: 20px;
}
.index .part03 .w84 .title .t_top .t_right p {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.5;
}
.index .part03 .w84 .title .t_top .t_right p:nth-of-type(1) {
  margin-top: 4px;
  margin-bottom: 10px;
}
.index .part03 .w84 .title .t_top .t_right h4 {
  margin-top: 16px;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.5;
}
.index .part03 .w84 .title .t_bottom {
  margin-top: 10px;
}
.index .part03 .w84 .content {
  margin-top: 60px;
}
.index .part03 .w84 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w84 .content ul li {
  width: 31%;
}
.index .part03 .w84 .content ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w84 .content ul li a .line {
  height: 150px;
  width: 4px;
  border-radius: 2px;
  background-color: #c60000;
}
.index .part03 .w84 .content ul li a .text {
  width: calc(100% - 26px);
  margin-left: 20px;
}
.index .part03 .w84 .content ul li a .text p {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part03 .w84 .content ul li a .text h2 {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .part03 .w84 .content ul li a .text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.3;
}
.index .part03 .w84 .content ul li a .text span i {
  margin-top: 0px;
  margin-left: 10px;
  display: block;
  font-size: 24px;
  font-weight: 100;
  transform: rotate(145deg);
}
@media screen and (max-width: 1440px) {
  .index .part01 .w84 .top .title h2 {
    font-size: 68px;
  }
  .index .part01 .w84 .top .title p {
    font-size: 16px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn h3 {
    font-size: 18px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .l_txtboxs p {
    font-size: 14px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn:nth-last-of-type(1) {
    margin-left: 28px;
  }
  .index .part01 .w84 .bottom .right {
    width: 72%;
  }
  .index .part01 .w84 .bottom .left .l_h3 h3 {
    font-size: 24px;
  }
  .index .part01 .w84 .bottom .left .l_title h2 {
    font-size: 42px;
  }
  .index .part01 .w84 .bottom {
    height: 520px;
  }
  .index .part02 .w84 .left .p02_title h4 {
    font-size: 62px;
  }
  .index .part02 .w84 .left .p02_title h3 {
    font-size: 72px;
  }
  .index .part02 .w84 .right .p02_smail_title h4 {
    font-size: 18px;
  }
  .index .part02 .w84 .right .p02_smail_title p {
    font-size: 14px;
    line-height: 1.5;
  }
  .index .part02 .w84 .right .m_r_content .im h3 {
    font-size: 34px;
  }
  .index .part02 .w84 .right .m_r_content .im h4 {
    font-size: 16px;
  }
  .index .part02 .w84 .right .m_r_content .im {
    width: 42%;
  }
  .index .part02 .w84 {
    height: 660px;
  }
  .index .part02 .w84 .right .m_r_content {
    margin-top: 0;
  }
  .index .part03 .w84 .title .t_top .t_left h1 {
    font-size: 68px;
  }
  .index .part03 .w84 .title .t_top .t_right p {
    font-size: 20px;
  }
  .index .part03 .w84 .title .t_top .t_right p:nth-of-type(1) {
    margin-bottom: 6px;
  }
  .index .part03 .w84 .title {
    margin-top: 140px;
  }
  .index .part03 {
    height: 640px;
  }
  .index .part03 .w84 .content ul li a .text h2 {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .index .part01 .w84 .top .title {
    padding-left: 0;
  }
  .index .part01 .w84 .top .title {
    width: 100%;
  }
  .index .part01 .w84 .top .title h2 {
    font-size: 42px;
  }
  .index .part01 .w84 .top .more {
    margin-top: 30px;
  }
  .index .part01 .w84 .bottom .left {
    display: none;
  }
  .index .part01 .w84 .bottom {
    padding: 42px 20px;
  }
  .index .part01 .w84 .bottom .right {
    width: 100%;
  }
  .index .part01 .w84 .bottom .right .txtBoxs > div {
    width: 100%;
  }
  .index .part01 .w84 .bottom .right .proBoxs {
    position: static;
    width: 100%;
    margin-top: 40px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn h3 {
    font-size: 16px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs {
    margin-top: 30px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn:nth-last-of-type(1) {
    margin-left: 0px;
  }
  .index .part01 .w84 .bottom .right .txtBoxs .r_txtboxs .i_btn.active::after {
    height: 6px;
    top: 24px;
    left: 0;
  }
  .index .part02 .w84 {
    height: auto;
  }
  .index .part02 .w84 .left {
    width: 100%;
    height: auto;
  }
  .index .part02 .w84 .right {
    width: 100%;
    margin-top: 60px;
  }
  .index .part02 .w84 .left .p02_title h4 {
    font-size: 36px;
  }
  .index .part02 .w84 .left .p02_title h3 {
    font-size: 56px;
  }
  .index .part02 .w84 .left .p02_title {
    background-size: contain;
    margin-bottom: 40px;
  }
  .index .part02 .w84 .right .m_r_content {
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .index .part03 {
    background-size: cover;
    height: 800px;
  }
  .index .part03 .w84 .title .t_top .t_left {
    width: 100%;
  }
  .index .part03 .w84 .title .t_top .t_right {
    width: 100%;
    margin-left: 0;
  }
  .index .part03 .w84 .title .t_top .t_right p {
    font-size: 18px;
  }
  .index .part03 .w84 .title .t_top .t_left h1 {
    font-size: 48px;
  }
  .index .part03 .w84 .content ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .part03 .w84 .title {
    margin-top: 80px;
  }
  .index .part02 .w84 .right .m_r_content .im h4 {
    font-size: 12px;
  }
}
.chanpin.shucai .main {
  background-image: url(/images/productBg2.jpg);
}
.chanpin.youzha .main {
  background-image: url(/images/productBg3.jpg);
}
.chanpin .main {
  overflow: hidden;
  background-image: url(/images/productBg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
.chanpin .main .w84 {
  padding-top: 160px;
  padding-bottom: 60px;
}
.chanpin .main .w84 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.chanpin .main .w84 .top .title2 {
  position: relative;
  margin-bottom: 50px;
  margin-top: 50px;
  margin-left: 70px;
}
.chanpin .main .w84 .top .title2::after {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(-135deg, #004bbc 18%, #c60000 70%);
}
.chanpin .main .w84 .top .title2::before {
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #fff;
}
.chanpin .main .w84 .top .title2 h2 {
  font-size: 64px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  position: relative;
  font-family: "MyFont";
  z-index: 5;
  margin-left: 0px;
  letter-spacing: 2px;
}
.chanpin .main .w84 .top .bigSize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.chanpin .main .w84 .top .bigSize h1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.chanpin .main .w84 .top .bigSize i {
  margin-left: 20px;
  font-size: 20px;
}
.chanpin .main .w84 .c {
  margin-top: 50px;
}
.chanpin .main .w84 .c ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.chanpin .main .w84 .c ul li {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 26px;
  transition: all 0.5s ease;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 8px 12px #e6f2f8;
  background-color: #fff;
}
.chanpin .main .w84 .c ul li:hover a .li_box .img img {
  transform: scale(1.06);
}
.chanpin .main .w84 .c ul li:hover a .li_box .mask {
  opacity: 1;
}
.chanpin .main .w84 .c ul li:hover a .txt p {
  color: #fff;
}
.chanpin .main .w84 .c ul li:hover a::after {
  height: 100%;
}
.chanpin .main .w84 .c ul li a {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #efefef;
}
.chanpin .main .w84 .c ul li a .li_box {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 20px auto 0;
  box-sizing: border-box;
}
.chanpin .main .w84 .c ul li a .li_box .img {
  width: 100%;
}
.chanpin .main .w84 .c ul li a .li_box .img img {
  width: 100%;
  position: relative;
  z-index: 5;
  transition: all 0.5s ease;
}
.chanpin .main .w84 .c ul li a .li_box .mask {
  position: absolute;
  top: 0%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.chanpin .main .w84 .c ul li a .li_box .mask .m_c {
  text-align: center;
}
.chanpin .main .w84 .c ul li a .li_box .mask .m_c i {
  font-size: 42px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.chanpin .main .w84 .c ul li a .li_box .mask .m_c p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.chanpin .main .w84 .c ul li a .txt {
  padding: 20px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 3;
}
.chanpin .main .w84 .c ul li a .txt p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.chanpin .main .w84 .c ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #004bbc;
  transition: all 0.5s ease;
}
.chanpin .main .w84 .c ul li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1440px) {
  .chanpin .main .w84 .top .title2 h2 {
    font-size: 48px;
  }
  .chanpin .main .w84 .top .title2::after {
    width: 100px;
    height: 100px;
  }
  .chanpin .main .w84 .top .title2::before {
    width: 80px;
    height: 80px;
  }
  .chanpin .main .w84 .top .title2 {
    margin-bottom: 26px;
    margin-top: 26px;
  }
  .chanpin .main .w84 .top {
    padding-bottom: 30px;
  }
  .chanpin .main .w84 .c ul li a .txt .left {
    font-size: 14px;
  }
  .chanpin .main .w84 {
    padding-top: 120px;
    padding-bottom: 20px;
  }
  .chanpin .main .w84 .c ul li a .txt p {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .chanpin .main .w84 {
    padding-top: 100px;
  }
  .chanpin .main .w84 .c ul li {
    width: 100%;
  }
  .chanpin .main .w84 .c ul li a .txt .right p {
    font-size: 12px;
  }
  .chanpin .main .w84 .top {
    display: block;
  }
  .chanpin .main .w84 .top .title2 {
    margin-top: 18px;
    margin-bottom: 18px;
    margin-left: 36px;
  }
  .chanpin .main .w84 .top .title2::after {
    width: 70px;
    height: 70px;
  }
  .chanpin .main .w84 .top .title2::before {
    width: 56px;
    height: 56px;
  }
  .chanpin .main .w84 .top .title2 h2 {
    font-size: 36px;
  }
  .chanpin .main .w84 .top .bigSize {
    display: none;
  }
}
.proDetailed .main {
  overflow: hidden;
  padding-bottom: 200px;
  padding-top: 100px;
  background-color: #e6f2f8;
}
.proDetailed .main > div .top {
  margin-top: 60px;
  margin-bottom: 40px;
}
.proDetailed .main > div .top h4 a {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.proDetailed .main > div .pro_box {
  padding: 80px;
  box-sizing: border-box;
  background-color: #fff;
}
.proDetailed .main > div .pro_box::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box::before {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.proDetailed .main > div .pro_box .m_proDetailed_left {
  float: left;
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e5e5;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .bigImg img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg {
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft {
  width: 30px;
  height: 66px;
  background-color: #e6f2f8;
  margin-left: 20px;
  line-height: 66px;
  text-align: center;
  cursor: pointer;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft i {
  display: block;
  transform: rotate(180deg);
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnRight {
  width: 30px;
  height: 66px;
  background-color: #e6f2f8;
  margin-left: 20px;
  line-height: 66px;
  text-align: center;
  cursor: pointer;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li {
  cursor: pointer;
  width: 14%;
  border: 1px solid #dfdfdf;
  margin: 0 1%;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li img {
  width: 100%;
}
.proDetailed .main > div .pro_box .m_proDetailed_left .smailImg ul li:hover {
  border: 1px solid #004bbc;
}
.proDetailed .main > div .pro_box .m_proDetailed_right {
  float: right;
  width: 45%;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle {
  overflow: hidden;
  border-bottom: 1px solid #dcdcdc;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
  display: block;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  line-height: 28px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle p {
  font-size: 18px;
  line-height: 24px;
  color: #666;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
  margin-bottom: 20px;
  padding-top: 30px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
  list-style: none;
  margin-bottom: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
  margin-bottom: 60px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(4) > div {
  border-radius: 60px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p i {
  width: 90px;
  line-height: 40px;
  font-size: 14px;
  color: #000;
  border-radius: 30px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.08);
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
  width: calc(100% - 100px);
  font-size: 16px;
  line-height: 40px;
  padding-left: 5px;
  color: #999;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
  background-color: #004bbc;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  padding: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
  font-size: 24px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan {
  margin-top: 40px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title {
  margin-top: 0;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_title h3 {
  font-size: 15px;
  font-weight: bold;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt {
  margin-top: 12px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .fenxiang .fenxiang_txt a {
  display: inline-block;
  margin-right: 20px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre {
  margin-top: 20px;
  padding: 16px;
  width: 100%;
  background-color: #f6f6f6;
  box-sizing: border-box;
  border-radius: 60px;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .pre a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next {
  margin-top: 12px;
  padding: 16px;
  width: 100%;
  border-radius: 60px;
  background-color: #f6f6f6;
  box-sizing: border-box;
}
.proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent .qiehuan .next a {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.proDetailed .main > div .pro_box .pro_content {
  margin-top: 60px;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title {
  border-bottom: 1px solid #dfdfdf;
}
.proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  background-color: #004bbc;
  padding: 15px 40px;
}
.proDetailed .main > div .pro_box .pro_content .pro_details {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .pro_content .pro_details p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
  box-sizing: border-box;
  padding-left: 20px;
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .pro_box .pro_content .pro_details p:nth-of-type(2n + 1) {
  background-color: #e6f2f8;
  font-weight: 700;
  border-right: none;
  text-align: center;
}
.proDetailed .main > div .pro_box .pro_content .pro_details h2 {
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 24px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.proDetailed .main > div .pro_box .pro_content .pro_details table tr:nth-of-type(2n + 1) {
  background-color: #e6f2f8;
}
.proDetailed .main > div .other {
  overflow: hidden;
  margin-top: 60px;
}
.proDetailed .main > div .other .title {
  margin-bottom: 20px;
}
.proDetailed .main > div .other .title h3 {
  font-size: 24px;
}
.proDetailed .main > div .other ul li {
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url(/images/proBg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.proDetailed .main > div .other ul li .img img {
  width: 100%;
}
.proDetailed .main > div .other ul li .txt {
  width: 100%;
  padding: 20px 30px 30px 30px;
  box-sizing: border-box;
  border-top: 1px solid #e6f2f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.proDetailed .main > div .other ul li .txt p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.proDetailed .main > div .other ul li .txt .d {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(45deg, #2d3e75, #38519e);
  position: relative;
}
.proDetailed .main > div .other ul li .txt .d i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: block;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .proDetailed .main {
    padding-top: 60px;
  }
  .n_title3::before {
    font-size: 72px;
    top: 20px;
  }
  .n_title3 h3 {
    font-size: 32px;
    margin-bottom: -4px;
  }
  .n_title3 p {
    font-size: 14px;
  }
  .n_title3 {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedTitle h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li {
    margin-bottom: 10px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent {
    padding-top: 20px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li p span {
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
    padding: 0 14px;
    font-size: 15px;
    line-height: 40px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div:nth-of-type(2) {
    display: none;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div i {
    font-size: 18px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li:nth-of-type(3) {
    margin-bottom: 24px;
  }
  .proDetailed .main > div .pro_box .pro_content {
    margin-top: 30px;
  }
  .proDetailed .main > div .pro_box .pro_content .proDetails_title h3 {
    padding: 12px 34px;
    font-size: 14px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnLeft {
    margin-left: 10px;
    width: 22px;
    height: 50px;
    line-height: 50px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg .btnRight {
    margin-left: 10px;
    width: 22px;
    height: 50px;
    line-height: 50px;
  }
  .proDetailed .main > div .pro_box {
    padding: 30px;
  }
  .proDetailed .main > div .top {
    margin-bottom: 30px;
  }
  .proDetailed .main > div .other ul li .txt p {
    font-size: 14px;
  }
  .proDetailed .main > div .other ul li .txt {
    padding: 20px 14px 30px 14px;
  }
  .proDetailed .main > div .pro_box .pro_content .pro_details p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .proDetailed .main > div .pro_box .m_proDetailed_left .bigImg {
    padding: 0;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left .smailImg {
    display: none;
  }
  .proDetailed .main > div .pro_box {
    padding: 10px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_left {
    width: 100%;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right {
    width: 100%;
    margin-top: 30px;
  }
  .proDetailed .main > div .pro_box .m_proDetailed_right .m_proDetailedContent ul li > div {
    font-size: 14px;
  }
  .proDetailed .main > div .other .title h3 {
    font-size: 18px;
    font-weight: 700;
  }
  .proDetailed .main > div .pro_box .pro_content .pro_details p {
    width: 50%;
  }
  .proDetailed .main {
    padding-bottom: 120px;
  }
}
.news .main {
  min-height: 500px;
  padding-bottom: 100px;
}
.news .main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 140px;
}
.news .main .top .title2 {
  position: relative;
  margin-bottom: 50px;
  margin-top: 50px;
  margin-left: 70px;
}
.news .main .top .title2::after {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(-135deg, #004bbc 18%, #c60000 70%);
}
.news .main .top .title2::before {
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #fff;
}
.news .main .top .title2 h2 {
  font-size: 64px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  position: relative;
  font-family: "MyFont";
  z-index: 5;
  margin-left: 0px;
  letter-spacing: 2px;
}
.news .main .top .bigSize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .top .bigSize h1 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.news .main .top .bigSize i {
  margin-left: 20px;
  font-size: 20px;
}
.news .main .part01 {
  margin-top: 40px;
}
.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: 8%;
}
.news .main .part01 ul li a .date h2 {
  font-size: 92px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.news .main .part01 ul li a .date p {
  font-size: 24px;
  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: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 100;
  line-height: 46px;
  width: 180px;
  border-radius: 60px;
  background-color: #004bbc;
}
.news .main .part01 ul li a .text span img {
  margin-left: 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 .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: 18px;
  }
  .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%;
  }
  .news .main .btn ul li a {
    line-height: 46px;
  }
  .news .main .top .title2::after {
    width: 100px;
    height: 100px;
  }
  .news .main .top .title2::before {
    width: 80px;
    height: 80px;
  }
  .news .main .top .title2 h2 {
    font-size: 48px;
  }
  .news .main .top .title2 {
    margin-top: 26px;
    margin-bottom: 26px;
  }
  .news .main .top {
    margin-top: 120px;
  }
  .news .main {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  .news .main .title {
    margin-top: 100px;
  }
  .news .main .btn {
    display: none;
  }
  .news .main .part01 ul li {
    margin-bottom: 30px;
  }
  .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: 100%;
    padding-bottom: 220px;
    margin-top: 30px;
  }
  .news .main .part01 ul li a .text span {
    height: 46px;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 18px;
    font-weight: 700;
  }
  .news .main .top .title2 {
    margin-top: 18px;
    margin-bottom: 18px;
    margin-left: 36px;
  }
  .news .main .top .title2::after {
    width: 70px;
    height: 70px;
  }
  .news .main .top .title2::before {
    width: 56px;
    height: 56px;
  }
  .news .main .top .title2 h2 {
    font-size: 36px;
  }
  .news .main .top .bigSize {
    display: none;
  }
  .news .main .part01 ul li a .text {
    width: 100%;
  }
  .news .main .part01 ul li a .img {
    width: 100%;
  }
  .news .main .part01 ul li a .text p {
    display: block;
  }
  .news .main .top {
    margin-top: 90px;
  }
  .news .main .part01 {
    margin-top: 16px;
  }
}
.news_details .main {
  padding-bottom: 90px;
}
.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: 30px;
  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: 30px;
  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 {
  padding: 20px 0;
  font-size: 16px;
  color: #000;
  line-height: 1.3;
  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;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news_details .main .n_center .w84 .detailed {
    margin-top: 100px;
  }
  .news_details .mt-100 {
    margin-top: 70px;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
  }
  .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;
  }
  .news_details .main .n_center .ct .detailed .sub2 .share p:nth-last-of-type(1) {
    display: none;
  }
}
.about .page_content {
  width: 100%;
  min-height: 600px;
}
.about .page_content .pt01 {
  width: 100%;
  background-image: url(/images/aboutBg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 120px;
  height: 800px;
  overflow: hidden;
}
.about .page_content .pt01 .w84 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 160px;
  padding-top: 10px;
}
.about .page_content .pt01 .w84 .left {
  width: 40%;
}
.about .page_content .pt01 .w84 .left h1 {
  font-size: 84px;
  color: #004bbc;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-family: "MyFont";
  margin-bottom: 30px;
  position: relative;
  right: 0;
  transition: all 0.5s linear;
  margin-top: -10px;
}
.about .page_content .pt01 .w84 .left h2 {
  font-size: 40px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 30px;
  font-family: "MyFont";
  position: relative;
  right: 0;
  transition: all 0.5s linear;
}
.about .page_content .pt01 .w84 .left h3 {
  font-size: 84px;
  color: #004bbc;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-family: "MyFont";
  position: relative;
  right: 0;
  transition: all 0.5s linear;
}
.about .page_content .pt01 .w84 .left .video {
  width: 64%;
  position: relative;
  float: right;
  margin-top: 110px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.5s linear;
}
.about .page_content .pt01 .w84 .left .video .video_box {
  width: 100%;
}
.about .page_content .pt01 .w84 .left .video .video_box img {
  width: 100%;
  display: block;
}
.about .page_content .pt01 .w84 .center .img {
  overflow: hidden;
}
.about .page_content .pt01 .w84 .center .img img {
  width: initial;
  float: left;
}
.about .page_content .pt01 .w84 .center .line {
  margin: 0 auto;
  width: 1px;
  height: 680px;
  background-color: #dbdbdb;
  position: relative;
}
.about .page_content .pt01 .w84 .center .line .line_sub1 {
  width: 1px;
  height: 50px;
  background-color: #004bbc;
  position: absolute;
  top: 0;
  transition: all 0.5s linear;
}
.about .page_content .pt01 .w84 .right {
  width: 50%;
}
.about .page_content .pt01 .w84 .right .r1 h1 {
  font-size: 36px;
  color: #004bbc;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 26px;
}
.about .page_content .pt01 .w84 .right .r1 h3 {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.about .page_content .pt01 .w84 .right .r1 h3::after {
  display: block;
  content: "";
  width: 60px;
  height: 4px;
  margin-top: 20px;
  background-color: #c60000;
}
.about .page_content .pt01 .w84 .right .r1 p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  margin-bottom: 20px;
}
.about .page_content .pt02 {
  height: 860px;
  position: relative;
  background-color: #004bbc;
}
.about .page_content .pt02 canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.7;
}
.about .page_content .pt02 .w84 {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.about .page_content .pt02 .w84 > div {
  width: 100%;
}
.about .page_content .pt02 .w84 > div .title h2 {
  font-size: 72px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  font-family: "MyFont";
}
.about .page_content .pt02 .w84 > div .title h4 {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
  opacity: 0.5;
}
.about .page_content .pt02 .w84 > div .c {
  width: 100%;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .page_content .pt02 .w84 > div .c .item {
  width: 24%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.about .page_content .pt02 .w84 > div .c .item .i_box img {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 6px solid #004bbc;
  border-radius: 8px;
  margin: 0 auto 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
.about .page_content .pt02 .w84 > div .c .item .i_box h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.about .page_content .pt02 .w84 > div .c .item .i_box p {
  font-size: 18px;
  color: #fff;
  line-height: 2;
  font-weight: 400;
  text-align: center;
}
.about .page_content .pt03 {
  min-height: 700px;
}
.about .page_content .pt03 .w84 {
  padding-top: 160px;
  padding-bottom: 160px;
}
.about .page_content .pt03 .w84 .title h2 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  font-family: "MyFont";
}
.about .page_content .pt03 .w84 .title h4 {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: center;
  opacity: 0.5;
}
.about .page_content .pt03 .w84 .content {
  margin-top: 50px;
}
.about .page_content .pt03 .w84 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .page_content .pt03 .w84 .content ul li {
  width: 31%;
  border: 8px solid #e6f2f8;
  box-sizing: border-box;
  border-radius: 20px;
  margin-bottom: 30px;
}
.about .page_content .pt03 .w84 .content ul li .img {
  border-radius: 14px;
  overflow: hidden;
}
.about .page_content .pt03 .w84 .content ul li .img img {
  width: 100%;
}
.about .page_content .pt03 .w84 .content ul li .txt h4 {
  font-size: 20px;
  color: #333;
  line-height: 3;
  font-weight: 700;
  text-align: center;
}
.about .page_content .pt04 {
  background-image: url(/images/fazhanBg.jpg);
  background-size: 100%;
  background-position: bottom center;
}
.about .page_content .pt04 .w84 {
  padding-top: 60px;
  padding-bottom: 160px;
}
.about .page_content .pt04 .w84 .title h2 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.about .page_content .pt04 .w84 .title::after {
  display: block;
  content: "";
  width: 60px;
  height: 4px;
  background-color: #c60000;
  margin: 20px auto;
}
.about .page_content .pt04 .w84 .content {
  margin-top: 50px;
}
.about .page_content .pt04 .w84 .content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
  text-indent: 2em;
}
@media screen and (max-width: 1440px) {
  .about .page_content .pt01 .w84 .left h1 {
    font-size: 64px;
    margin-bottom: 16px;
  }
  .about .page_content .pt01 .w84 .left h3 {
    font-size: 64px;
  }
  .about .page_content .pt01 .w84 .left h2 {
    font-size: 32px;
    margin: 16px;
  }
  .about .page_content .pt01 .w84 .right .r1 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  }
  .about .page_content .pt01 .w84 {
    margin-top: 120px;
  }
  .about .page_content .pt01 {
    height: 700px;
    padding-bottom: 100px;
  }
  .about .page_content .pt01 .w84 .center .line {
    height: 560px;
  }
  .about .page_content .pt02 .w84 > div .title h2 {
    font-size: 52px;
  }
  .about .page_content .pt02 .w84 > div .title h4 {
    font-size: 16px;
  }
  .about .page_content .pt02 {
    height: 620px;
  }
  .about .page_content .pt02 .w84 > div .c .item .i_box h3 {
    font-size: 16px;
  }
  .about .page_content .pt02 .w84 > div .c {
    margin: 30px auto 0;
  }
  .about .page_content .pt02 .w84 > div .c .item .i_box img {
    margin: 0 auto 18px;
  }
  .about .page_content .pt03 .w84 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about .page_content .pt03 .w84 .title h2 {
    font-size: 52px;
  }
  .about .page_content .pt03 .w84 .title h4 {
    font-size: 16px;
  }
  .about .page_content .pt03 .w84 .content ul li .txt h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 992px) {
  .about .page_content .pt01 {
    height: auto;
    padding-bottom: 70px;
  }
  .about .page_content .pt01 .w84 .left {
    width: 100%;
  }
  .about .page_content .pt01 .w84 .center {
    display: none;
    width: 100%;
  }
  .about .page_content .pt01 .w84 .right {
    width: 100%;
    margin-top: 40px;
  }
  .about .page_content .pt01 .w84 .left h1 {
    text-align: left;
    font-size: 48px;
  }
  .about .page_content .pt01 .w84 .left h2 {
    text-align: left;
    font-size: 24px;
    margin: 16px 0;
  }
  .about .page_content .pt01 .w84 .left h3 {
    text-align: left;
    font-size: 48px;
  }
  .about .page_content .pt01 .w84 .left .video {
    width: 100%;
    margin-top: 40px;
  }
  .about .page_content .pt01 .w84 {
    margin-top: 100px;
  }
  .about .page_content .pt01 .w84 .right .r1 h1 {
    font-size: 20px;
  }
  .about .page_content .pt02 .w84 > div .title h2 {
    font-size: 32px;
  }
  .about .page_content .pt02 .w84 > div .c .item {
    width: 100%;
  }
  .about .page_content .pt02 {
    height: auto;
    padding: 80px 0;
  }
  .about .page_content .pt03 .w84 .title h2 {
    font-size: 36px;
  }
  .about .page_content .pt03 .w84 .content ul li {
    width: 48%;
    border: 3px solid #e6f2f8;
  }
  .about .page_content .pt03 .w84 .content ul li .txt h4 {
    font-size: 12px;
  }
}
.contact .main {
  background-color: #f8fbff;
  padding-top: 160px;
  padding-bottom: 80px;
}
.contact .main .w84 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .w84 .left {
  width: 50%;
}
.contact .main .w84 .left .title2 {
  position: relative;
  margin-bottom: 120px;
  margin-top: 50px;
  margin-left: 70px;
}
.contact .main .w84 .left .title2::after {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(-135deg, #004bbc 18%, #c60000 70%);
}
.contact .main .w84 .left .title2::before {
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #fff;
}
.contact .main .w84 .left .title2 h2 {
  font-size: 64px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  position: relative;
  font-family: "MyFont";
  z-index: 5;
  margin-left: 0px;
  letter-spacing: 2px;
}
.contact .main .w84 .left .l_item {
  margin-top: 40px;
}
.contact .main .w84 .left .l_item .i1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.contact .main .w84 .left .l_item .i1 i {
  color: #c60000;
  font-size: 24px;
  margin-right: 8px;
}
.contact .main .w84 .left .l_item .i2 {
  margin-top: 10px;
}
.contact .main .w84 .left .l_item .i2 h3 {
  font-size: 42px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .w84 .left .l_item:nth-of-type(3) .i2 h3 {
  font-size: 28px;
}
.contact .main .w84 .left .l_item:nth-of-type(4) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .w84 .left .l_item:nth-of-type(4) .liBox {
  width: 48%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #e6f2f8;
}
.contact .main .w84 .left .l_item:nth-of-type(4) .liBox span {
  display: block;
  font-size: 18px;
  color: #fff;
  line-height: 36px;
  font-weight: 100;
  text-align: center;
  margin: 0 auto;
  width: 160px;
  background-color: #004bbc;
  border-radius: 60px;
}
.contact .main .w84 .left .l_item:nth-of-type(4) .liBox p {
  margin-top: 14px;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: center;
}
.contact .main .w84 .right {
  width: 30%;
}
.contact .main .w84 .right .img img {
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .contact .main .w84 .left {
    width: 54%;
  }
  .contact .main .w84 .left .title2 h2 {
    font-size: 48px;
  }
  .contact .main .w84 .left .title2::before {
    width: 80px;
    height: 80px;
  }
  .contact .main .w84 .left .title2::after {
    width: 100px;
    height: 100px;
  }
  .contact .main .w84 .left .title2 {
    margin-left: 50px;
    margin-bottom: 80px;
  }
  .contact .main .w84 .left .l_item .i2 h3 {
    font-size: 30px;
  }
  .contact .main .w84 .left .l_item {
    margin-top: 40px;
  }
  .contact .main .w84 .left .l_item:nth-of-type(3) .i2 h3 {
    font-size: 18px;
  }
  .contact .main {
    padding-top: 110px;
  }
  .contact .main .w84 .left .l_item {
    margin-top: 30px;
  }
  .contact .main .w84 .left .l_item:nth-of-type(4) .liBox {
    padding: 20px;
  }
  .contact .main .w84 .left .l_item:nth-of-type(4) .liBox span {
    font-size: 14px;
  }
}
