.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.image-container img {
  display: block;
  transition: filter 0.3s ease;
}
.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  opacity: 0;
  transition: all 0.7s ease;
}
.image-container:hover::before {
  left: 150%;
  opacity: 0.9;
}
.image-container:hover img {
  filter: brightness(1.05);
}
@keyframes leftPulse {
  0% {
    left: 0;
    bottom: 0;
    opacity: 1;
  }
  50% {
    left: 30px;
    bottom: 30px;
    opacity: 0.4;
  }
  100% {
    left: 0;
    bottom: 0;
    opacity: 1;
  }
}
@keyframes rightPulse {
  0% {
    right: 0;
    top: 0;
    opacity: 1;
  }
  50% {
    right: 30px;
    top: 30px;
    opacity: 0.4;
  }
  100% {
    right: 0;
    top: 0;
    opacity: 1;
  }
}
.more {
  background-color: #093e8d;
  width: 15rem;
  border-radius: 8rem;
  margin-right: 2rem;
}
.more a {
  position: relative;
  display: block;
}
.more a > div {
  position: relative;
  background: none;
  border: 2px solid #093e8d;
  box-sizing: border-box;
  border-radius: 8rem;
  overflow: hidden;
}
.more a > div span {
  display: block;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  line-height: 4rem;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.more a i {
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  right: -2rem;
  top: 0;
  z-index: 4;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #215ca7, #ffffff);
  text-align: center;
  line-height: 4rem;
  color: #fff;
  font-size: 1.125rem;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.more.b {
  background: none;
}
.more.b a > div span {
  display: block;
  color: #000;
}
.more.b a > div::after {
  display: block;
  content: "";
  width: 0%;
  height: 4rem;
  background-color: #093e8d;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
.more.h {
  background: none;
  border: 2px solid #ffc340;
  box-sizing: border-box;
}
.more.h a > div span {
  color: #ffc340;
}
.more.h a > div::after {
  display: block;
  content: "";
  width: 0%;
  height: 4rem;
  background-color: #093e8d;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
.more.h a i {
  background-image: linear-gradient(45deg, #215ca7, #ffc540);
}
.more:hover a i {
  transform: rotate(90deg);
}
.more:hover a > div span {
  color: #fff;
}
.more:hover a > div::after {
  width: 100%;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #ffffff;
  line-height: 6.25rem;
  height: 6.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 16%;
}
header > div .logo a img {
  display: none;
  height: 3rem;
}
header > div .logo a img:nth-of-type(1) {
  display: block;
}
header > div nav {
  width: 70%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 24rem);
  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: 20%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #093e8d;
}
header > div nav ul li:hover a {
  font-weight: 600;
  color: #fff;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 1.125rem;
  color: #000;
  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: 6.25rem;
  left: 0;
  background-color: #e6f2f8;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 1.25rem;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 1.25rem;
}
header > div nav ul li .menu .menu_item a {
  font-size: 0.875rem;
  color: #333;
  line-height: 2.5rem;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #093e8d;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 22rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool .tel {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 0 1rem;
  border-radius: 0.375rem;
  margin-right: 0.625rem;
}
header > div nav .tool .tel h4 {
  font-size: 1.125rem;
  color: #000;
  line-height: 3rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool .tel h4 i {
  font-weight: 400;
  font-size: 1.25rem;
  display: block;
  line-height: 1;
  margin-right: 0.5rem;
  color: #093e8d;
}
header > div{
  overflow: visible !important;

}
header > div nav .tool .language {
  width: 4.375rem;
  height: 3rem;
  border-radius: 0.375rem;
  background-color: #093e8d;
  position: relative;
  z-index: 9999 !important;
}
header > div nav .tool .language a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.125rem;
  color: #ffc340;
  line-height: 3rem;
  font-weight: 600;
  text-align: center;
}
header > div nav .tool .language a i {
  font-size: 0.8rem;
  margin-left: 0.3rem;
  display: block;
  transform: rotate(90deg);
}

header > div nav .tool .language .language_menu {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  margin-top: 0.5rem !important;
  width: 8rem !important;
  background-color: #fff !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 99999 !important;
  display: block !important;
  padding: 0.5rem 0 !important;
}

header > div nav .tool .language:hover .language_menu {
  opacity: 1 !important;
  visibility: visible !important;
}

header > div nav .tool .language .language_menu a {
  display: block !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.9rem !important;
  color: #333 !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  text-align: left !important;
  background-color: transparent !important;
  transition: background-color 0.3s ease !important;
  white-space: nowrap !important;
}

header > div nav .tool .language .language_menu a:hover {
  background-color: #f5f5f5 !important;
  color: #093e8d !important;
}

header > div nav .tool .language .language_menu a.active {
  color: #093e8d !important;
  font-weight: 600 !important;
  background-color: #e6f2f8 !important;
}

@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
.title .t1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.title .t1 h3 {
  font-size: 2.25rem;
  color: #093e8d;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  text-transform: uppercase;
}
.title .t1 span {
  margin-left: 0.625rem;
  width: 4.125rem;
  height: 1px;
  background-color: #093e8d;
}
.title .t2 {
  margin-top: 1rem;
}
.title .t2 h2 {
  font-size: 3.5rem;
  color: #000000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
}
.title.h .t1 h3 {
  color: #ffc340;
  opacity: 0.4;
}
.title.h .t1 span {
  background-color: #fff;
}
.title.h .t2 h2 {
  color: #ffc340;
}
.title.b .t1 h3 {
  color: #fff;
  opacity: 0.4;
}
.title.b .t1 span {
  background-color: #fff;
}
.title.b .t2 h2 {
  color: #fff;
}
.title.c .t1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.title.c .t1 h3 {
  text-align: center;
}
.title.c .t2 h2 {
  text-align: center;
}
.title.s .t1 h3 {
  font-size: 1.5rem;
}
.title.s .t1 span {
  width: 3rem;
}
.title.s .t2 h2 {
  font-size: 3rem;
}
footer {
  background: url(/images/footerBg.jpg) no-repeat bottom center / cover;
  min-height: 70vh;
  padding-top: 8.75rem;
  box-sizing: border-box;
}
footer .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
footer .w80 .top .sub1 {
  width: 40%;
}
footer .w80 .top .sub1 .sub1_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .w80 .top .sub1 .sub1_title h4 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: MyFont;
  margin-right: 1.25rem;
  background: linear-gradient(to right, #fff, #01449a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
footer .w80 .top .sub1 .sub1_title span {
  width: 3.5rem;
  height: 1px;
  background-color: #fff;
}
footer .w80 .top .sub1 .sub1_nav {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .sub1 .sub1_nav .item h3 {
  margin-bottom: 2rem;
}
footer .w80 .top .sub1 .sub1_nav .item h3 a {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
footer .w80 .top .sub1 .sub1_nav .item p {
  margin-bottom: 1rem;
}
footer .w80 .top .sub1 .sub1_nav .item p a {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
footer .w80 .top .sub1 .sub1_nav .item p:nth-last-of-type(1) {
  margin-bottom: 0;
}
footer .w80 .top .sub2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .w80 .top .sub2 .left .sub2_sub1 {
  margin-bottom: 1.2rem;
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon {
  margin-bottom: 0.3rem;
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
  width: initial;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_txt p {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.3;
}
footer .w80 .top .sub2 .right {
  margin-left: 4rem;
}
footer .w80 .top .sub2 .right .sub2_sub2 h3 {
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  font-family: "MyFont";
  margin-bottom: 1.2rem;
  background: linear-gradient(to right, #fff, #01449a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
footer .w80 .top .sub2 .right .sub2_sub2 p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: right;
  margin-right: -0.7rem;
  opacity: 0.6;
}
footer .w80 .top .sub2 .right .sub2_sub3 {
  margin-top: 3.5rem;
}
footer .w80 .top .sub2 .right .sub2_sub3 h3 {
  text-align: right;
  margin-bottom: 1.5rem;
}
footer .w80 .top .sub2 .right .sub2_sub3 h3 img {
  width: initial;
}
footer .w80 .top .sub2 .right .sub2_sub3 p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: right;
  opacity: 0.6;
  margin-bottom: 1rem;
}
footer .w80 .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
}
footer .w80 .bottom a {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  display: block;
  margin: 0 0.5rem;
}
@media screen and (max-width: 1440px) {
  footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
    width: 5rem;
  }
}
@media screen and (max-width: 992px) {
  footer {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3.75rem;
    background-position: center;
  }
  footer .w80 .top .sub2 .left .sub2_sub1 .sub2_sub1_icon img {
    width: 5rem;
  }
  footer .w80 .top .sub1 {
    display: none;
  }
  footer .w80 .top .sub2 .left {
    display: none;
  }
  footer .w80 .top .sub2 .right {
    margin-left: 0;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 h3 {
    font-size: 1.5rem;
    text-align: left;
  }
  footer .w80 .top .sub2 .right .sub2_sub2 p {
    font-size: 1rem;
    text-align: left;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 h3 {
    text-align: left;
    display: none;
  }
  footer .w80 .top .sub2 .right .sub2_sub3 p {
    text-align: left;
  }
  footer .w80 .bottom {
    padding-bottom: 3rem;
  }
  footer .w80 .bottom a {
    line-height: 1.2;
    color: #fff;
    opacity: 0.4;
    font-size: 0.875rem;
  }
}
.moblieNav {
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 6;
  padding: 0.5rem 0;
  background-color: #fff;
}
.moblieNav .item {
  float: left;
  width: 33.3%;
}
.moblieNav .item a {
  display: block;
  width: 100%;
  text-align: center;
}
.moblieNav .item a i {
  font-size: 1.125rem;
  color: #093e8d;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.moblieNav .item a h3 {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-top: 0.4rem;
}
.index .part01 {
  padding-top: 10rem;
  background: url(/images/indexPart01Bg.jpg) no-repeat top center / 100%;
  position: relative;
}
.index .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .center {
  margin-top: 4rem;
}
.index .part01 .w80 .center .sub1 p {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-bottom: 1.5rem;
}
.index .part01 .w80 .center .sub2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .center .sub2 .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part01 .w80 .center .sub2 .item .i_sub1 h4 {
  font-size: 1.125rem;
  color: #000000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 {
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -7px;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub1 h3 {
  font-size: 3.375rem;
  color: #ffc340;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub2 {
  margin-left: 8px;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub2 .i_sub2_sub2_sub1 {
  margin-bottom: 8px;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub2 .i_sub2_sub2_sub1 p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub2 .i_sub2_sub2_sub2 p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .center .sub2 .item:nth-of-type(1) .i_sub2 {
  width: 11.875rem;
}
.index .part01 .w80 .center .sub2 .item:nth-of-type(2) .i_sub2 {
  width: 10rem;
}
.index .part01 .w80 .center .sub2 .item:nth-of-type(3) .i_sub2 {
  width: 5.75rem;
}
.index .part01 .w80 .s992 {
  display: none;
}
.index .part01 .w80 .bottom {
  margin-top: 6.25rem;
  height: 43.75rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .bottom .sub1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30rem;
  position: relative;
  z-index: 2;
}
.index .part01 .w80 .bottom .sub1 .sub1_title h3 {
  font-size: 2.25rem;
  color: #ffc340;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.index .part01 .w80 .bottom .sub1 .sub1_list .item {
  margin-bottom: 1.25rem;
  opacity: 0.5;
}
.index .part01 .w80 .bottom .sub1 .sub1_list .item.active {
  opacity: 1;
}
.index .part01 .w80 .bottom .sub1 .sub1_list .item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .bottom .sub1 .sub1_list .item a span {
  display: block;
  width: 7.5rem;
  height: 1px;
  background-color: #fff;
}
.index .part01 .w80 .bottom .sub1 .sub1_list .item a h4 {
  margin-left: 0.625rem;
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part01 .w80 .bottom .sub1 .sub1_line span {
  display: block;
  width: 2px;
  height: 0.875rem;
  background-color: #fff;
  margin-bottom: 2px;
  opacity: 0.4;
}
.index .part01 .w80 .bottom .sub1 .sub1_line span.active {
  height: 1.25rem;
  opacity: 1;
}
.index .part01 .w80 .bottom .sub2 {
  position: relative;
  z-index: 2;
  width: 64%;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index .part01 .w80 .bottom .sub2 h3 {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .bottom .sub2 h3 span {
  font-weight: 600;
}
.index .part01 .w80 .bottom .sub2 img {
  width: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
  box-sizing: border-box;
  border: 0.375rem solid rgba(255, 255, 255, 0.3);
}
.index .part01 .w80 .bottom::after {
  display: block;
  content: "";
  width: 95%;
  height: 43.75rem;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 0.625rem 0 0 0.625rem;
  background: url(/images/indexPart02Bg.jpg) no-repeat center left / 100%;
}
.index .part02 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.index .part02 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.index .part02 .w80 .top .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .btns .item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .top .btns .item img {
  opacity: 0;
  margin-right: 0.5rem;
}
.index .part02 .w80 .top .btns .item h4 {
  font-size: 1.75rem;
  color: #000000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.index .part02 .w80 .top .btns .item:nth-of-type(2) {
  margin-left: 2rem;
}
.index .part02 .w80 .top .btns .item.active img {
  opacity: 1;
}
.index .part02 .w80 .top .btns .item.active h4 {
  color: #093e8d;
}
.index .part02 .w80 .bottom {
  margin-top: 4rem;
  position: relative;
  min-height: 41.25rem;
}
.index .part02 .w80 .bottom > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom > div.active {
  z-index: 6;
}
.index .part02 .w80 .bottom > div .b_sub1 {
  width: 48.5%;
  height: 36rem;
  box-sizing: border-box;
  padding: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  background: url(/images/indexProBg1.jpg) no-repeat center / cover;
}
.index .part02 .w80 .bottom > div .b_sub1 .b_box .img img {
  width: 80%;
  display: block;
  margin: -3.75rem auto 0;
}
.index .part02 .w80 .bottom > div .b_sub1 .b_box .txt {
  position: absolute;
  left: 5%;
  bottom: 2rem;
  width: 90%;
}
.index .part02 .w80 .bottom > div .b_sub1 .b_box .txt h3 {
  font-size: 2rem;
  color: #000000;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.index .part02 .w80 .bottom > div .b_sub1 .b_box .txt p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .part02 .w80 .bottom > div .b_sub2 {
  width: 48.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom > div .b_sub2 .item {
  width: 49%;
  height: 17.5rem;
  background-color: #f7f8f9;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.index .part02 .w80 .bottom > div .b_sub2 .item:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a {
  display: block;
  height: 100%;
  width: 100%;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_icon img {
  width: 2.5rem;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box {
  width: 100%;
  height: 100%;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_img {
  width: 100%;
  height: 100%;
  position: relative;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_img img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 1rem;
  z-index: 2;
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_txt h3 {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_txt p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
}
.index .part03 {
  position: relative;
  height: 49.25rem;
  overflow: hidden;
  margin-bottom: 10rem;
  padding-top: 8.125rem;
  box-sizing: border-box;
}
.index .part03 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .sub1 {
  position: relative;
  z-index: 6;
  width: 67%;
}
.index .part03 .w80 .sub1 .top .top_sub1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns .item {
  width: 4rem;
  height: 4rem;
  border-radius: 2rem;
  box-sizing: border-box;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns .item i {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.3;
  display: block;
  transition: all 0.5s ease;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns .item:nth-of-type(1) {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns .item:hover {
  border: 2px solid #ffffff;
}
.index .part03 .w80 .sub1 .top .top_sub1 .btns .item:hover i {
  opacity: 1;
}
.index .part03 .w80 .sub1 .top .top_sub2 {
  margin-top: 1.5rem;
}
.index .part03 .w80 .sub1 .top .top_sub2 p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
.index .part03 .w80 .sub1 .bottom {
  margin-top: 3rem;
}
.index .part03 .w80 .sub1 .bottom ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .sub1 .bottom ul li .img {
  width: 100%;
  height: 0;
  padding-bottom: 13.5rem;
  overflow: hidden;
  border-radius: 0.625rem 0.625rem 0 0;
}
.index .part03 .w80 .sub1 .bottom ul li .img img {
  width: 100%;
}
.index .part03 .w80 .sub1 .bottom ul li .txt {
  width: 100%;
  background-color: #fff;
}
.index .part03 .w80 .sub1 .bottom ul li .txt h4 {
  font-size: 1.125rem;
  color: #333;
  line-height: 4rem;
  font-weight: 600;
  text-align: center;
}
.index .part03 .w80 .sub2 {
  position: absolute;
  right: 5%;
  top: 0;
  z-index: 3;
  width: 28%;
  height: 51.25rem;
  border-radius: 0 0.625rem 0.625rem 0;
  background-color: #f5f6f7;
  box-sizing: border-box;
  padding-top: 8.125rem;
  padding-right: 5%;
  padding-left: 2%;
}
.index .part03 .w80 .sub2 .item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.index .part03 .w80 .sub2 .item span {
  font-size: 0.875rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: block;
  margin-bottom: 1rem;
}
.index .part03 .w80 .sub2 .item h4 {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.6rem;
}
.index .part03 .w80 .sub2 .item p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
}
.index .part03::after {
  display: block;
  content: "";
  width: 90%;
  height: 51.25rem;
  position: absolute;
  background: url(/images/indexPart03Bg.jpg) no-repeat left center / 100%;
  left: 0;
  top: 0;
}
.index .part04 {
  background: url(/images/indexPart04Bg.jpg) no-repeat bottom center / 100%;
  min-height: 70vh;
}
.index .part04 .w80 .content {
  margin-top: 6.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .content .item {
  width: 26%;
}
.index .part04 .w80 .content .item .c_icon {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  border: 1px solid #0388ed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.index .part04 .w80 .content .item .c_icon img {
  width: initial;
}
.index .part04 .w80 .content .item .c_txt {
  margin-top: 2rem;
}
.index .part04 .w80 .content .item .c_txt h3 {
  font-size: 1.5rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6rem;
}
.index .part04 .w80 .content .item .c_txt h4 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.6rem;
}
.index .part04 .w80 .content .item .c_txt p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .part04 .w80 .content .line {
  width: 1px;
  height: 3.75rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1440px) {
  .index .part01 {
    background-size: cover;
  }
  .index .part01 .w80 .bottom {
    height: 40rem;
  }
  .index .part01 .w80 .bottom::after {
    background-size: cover;
    height: 40rem;
  }
  .index .part02 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
  .index .part03 {
    padding-top: 7.125rem;
    height: 45.25rem;
    margin-bottom: 8rem;
  }
  .index .part03 .w80 .sub2 {
    height: 45.25rem;
    padding-top: 7.125rem;
  }
  .index .part03::after {
    height: 45.25rem;
    background-size: cover;
  }
  .index .part04 .w80 .content {
    margin-top: 3.25rem;
  }
  .index .part04 .w80 .content .item .c_icon img {
    width: 3.75rem;
  }
  .index .part04 {
    min-height: 62vh;
  }
  .index .part03 .w80 .sub1 .bottom ul li .img {
    padding-bottom: 10.5rem;
  }
  .index .part03 .w80 .sub1 .top .top_sub1 .btns .item {
    width: 3.5rem;
    height: 3.5rem;
  }
  .index .part03 .w80 .sub2 .item {
    margin-bottom: 1rem;
  }
  .index .part04 .w80 .content .item .c_icon {
    width: 7.375rem;
    height: 7.375rem;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 .w80 .s992 {
    display: block;
  }
  .index .part01 .w80 .top .more {
    display: none;
  }
  .index .part01 .w80 .center {
    margin-top: 2rem;
  }
  .index .part01 .w80 .center .sub1 p {
    font-size: 1rem;
  }
  .index .part01 {
    padding-top: 6rem;
  }
  .index .part01 .w80 .center .sub1 {
    width: 100%;
  }
  .index .part01 .w80 .center .sub2 {
    width: 100%;
  }
  .index .part01 .w80 .center .sub2 .item {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
  .index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub1 h3 {
    font-size: 2rem;
  }
  .index .part01 .w80 .center .sub2 .item .i_sub1 h4 {
    font-size: 1rem;
  }
  .index .part01 .w80 .center .sub2 .item:nth-of-type(1) .i_sub2 {
    width: 7.875rem;
  }
  .index .part01 .w80 .center .sub2 .item .i_sub2 .i_sub2_sub2 .i_sub2_sub2_sub1 {
    margin-bottom: 2px;
  }
  .index .part01 .w80 .center .sub2 .item:nth-of-type(2) .i_sub2 {
    width: 6.5rem;
  }
  .index .part01 .w80 .center .sub2 .item:nth-of-type(3) .i_sub2 {
    width: 5rem;
  }
  .index .part01 .w80 .bottom {
    height: auto;
    margin-top: 4.25rem;
  }
  .index .part01 .w80 .bottom .sub1 {
    display: none;
  }
  .index .part01 .w80 .bottom .sub2 {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
  }
  .index .part01 .w80 .bottom::after {
    width: 100%;
    height: 20rem;
    bottom: 0;
  }
  .index .part01 .w80 .bottom .sub2 h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .index .part02 {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .index .part02 .w80 .top .btns {
    width: 100%;
    margin-top: 2rem;
  }
  .index .part02 .w80 .top .btns .item h4 {
    font-size: 1.125rem;
  }
  .index .part02 .w80 .bottom > div .b_sub1 {
    width: 100%;
    height: 26rem;
    margin-bottom: 1rem;
    padding: 2.5rem;
  }
  .index .part02 .w80 .bottom > div .b_sub1 .b_box .txt p {
    font-size: 1rem;
  }
  .index .part02 .w80 .bottom > div .b_sub1 .b_box .txt h3 {
    font-size: 1.125rem;
  }
  .index .part02 .w80 .bottom > div .b_sub2 {
    width: 100%;
  }
  .index .part02 .w80 .bottom {
    height: auto;
    min-height: 50rem;
  }
  .index .part02 .w80 .bottom > div .b_sub2 .item {
    height: 10.5rem;
  }
  .index .part02 .w80 .bottom > div .b_sub1 .b_box .img {
    position: absolute;
    left: 5%;
    top: 2rem;
    width: 90%;
  }
  .index .part02 .w80 .bottom > div .b_sub1 .b_box .img img {
    margin: 0 auto 0;
  }
  .index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_txt h3 {
    font-size: 1rem;
  }
  .index .part02 .w80 .bottom > div .b_sub2 .item a .b_box .b_img::after {
    height: 60%;
  }
  .index .part02 .w80 .bottom > div .b_sub2 .item a .b_icon img {
    width: 1.5rem;
  }
  .index .part02 {
    margin-bottom: 4rem;
  }
  .index .part03 {
    height: auto;
    padding-bottom: 4rem;
    background-color: #093e8d;
  }
  .index .part03 .w80 .sub1 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .index .part03 .w80 .sub2 {
    width: 100%;
    height: auto;
    position: static;
    padding: 2rem 1rem;
  }
  .index .part03::after {
    display: none;
  }
  .index .part03 .w80 .sub1 .top .top_sub1 .btns .item {
    width: 3rem;
    height: 3rem;
  }
  .index .part03 .w80 .sub1 .top .top_sub1 .btns .item i {
    font-size: 1rem;
  }
  .index .part03 .w80 .sub1 .top .top_sub2 p {
    font-size: 1rem;
  }
  .index .part03 .w80 .sub1 .bottom ul li .txt h4 {
    font-size: 1rem;
  }
  .index .part03 .w80 .sub2 .item h4 {
    font-size: 1rem;
  }
  .index .part03 .w80 .sub2 .more {
    margin-top: 2rem;
  }
  .index .part04 .w80 .content .item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .index .part04 .w80 .content .item .c_icon {
    width: 5.75rem;
    height: 5.75rem;
  }
  .index .part04 .w80 .content .line {
    display: none;
  }
  .index .part04 .w80 .content .item .c_icon img {
    width: 3rem;
  }
  .index .part03 {
    margin-bottom: 6rem;
  }
  .index .part04 .w80 .content .item .c_txt h3 {
    font-size: 1.125rem;
  }
  .index .part04 .w80 .content .item .c_txt h4 {
    font-size: 1.125rem;
  }
  .index .part04 .w80 .content .item .c_txt p {
    font-size: 0.875rem;
  }
  .index .part04 {
    margin-bottom: 2rem;
  }
}
.about .main .part01 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #f5f5f5;
}
.about .main .part01 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .top .left {
  width: 50%;
}
.about .main .part01 .w80 .top .left .desc {
  margin-top: 3.5rem;
}
.about .main .part01 .w80 .top .left .desc h3 {
  font-size: 1.875rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.about .main .part01 .w80 .top .right {
  width: 50%;
}
.about .main .part01 .w80 .top .right .txt p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  margin-bottom: 2rem;
}
.about .main .part01 .w80 .center .img img {
  width: 100%;
}
.about .main .part01 .w80 .bottom {
  margin-top: 3rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 3rem;
}
.about .main .part01 .w80 .bottom .left {
  width: 100%;
}
.about .main .part01 .w80 .bottom .left h3 {
  font-size: 2.5rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
}
.about .main .part01 .w80 .bottom .right {
  width: 100%;
}
.about .main .part01 .w80 .bottom .right p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.about .main .part01 .w80 .bottom .right p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.about .main .part02 {
  background: url(/images/cultrue_bg.jpg) no-repeat fixed center / 100%;
  padding: 10rem 0;
  box-sizing: border-box;
}
.about .main .part02 .top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.about .main .part02 .top .desc {
  width: 50%;
}
.about .main .part02 .top .desc p {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.about .main .part02 .top .desc p span {
  font-weight: 600;
}
.about .main .part02 .bottom {
  margin-top: 5rem;
}
.about .main .part02 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .bottom ul li {
  width: 23%;
  min-height: 15rem;
  padding: 2rem;
  border-radius: 0.625rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.about .main .part02 .bottom ul li .c_icon {
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 3rem;
  border: 1px solid #093e8d;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .bottom ul li .c_icon img {
  width: 2.5rem;
  margin: 0 auto;
}
.about .main .part02 .bottom ul li .c_txt h3 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.625rem;
  background: linear-gradient(to right, #fff, #0070ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about .main .part02 .bottom ul li .c_txt p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  font-weight: 100;
  text-align: left;
  text-indent: 2em;
  opacity: 0.8;
}
.about .main .part03 {
  padding: 10rem 0;
  box-sizing: border-box;
}
.about .main .part03 .top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.about .main .part03 .top .desc {
  width: 50%;
}
.about .main .part03 .top .desc p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.about .main .part03 .top .desc p span {
  font-weight: 600;
}
.about .main .part03 .bottom {
  margin-top: 5rem;
}
.about .main .part03 .bottom ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part03 .bottom ul li {
  width: 25%;
  min-height: 15rem;
  padding: 1rem;
  border-radius: 0.625rem;
  box-sizing: border-box;
  background-color: #f9f9f9;
  backdrop-filter: blur(10px);
}
.about .main .part03 .bottom ul li .c_icon img {
  width: 70%;
  margin: 0 auto;
}
.about .main .part03 .bottom ul li .c_txt {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.about .main .part03 .bottom ul li .c_txt h3 {
  font-size: 1.125rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .about .main .part01 {
    padding-bottom: 8rem;
  }
  .about .main .part02 {
    padding: 8rem 0;
  }
  .about .main .part02 .top .desc {
    width: 58%;
  }
  .about .main .part02 .bottom {
    margin-top: 3rem;
  }
  .about .main .part02 .bottom ul li {
    min-height: 22rem;
  }
  .about .main .part03 {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 992px) {
  .about .main .part01 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .about .main .part02 {
    padding: 6rem 0;
    background-size: cover;
  }
  .about .main .part02 .top .desc {
    width: 58%;
  }
  .about .main .part02 .bottom {
    margin-top: 3rem;
  }
  .about .main .part02 .bottom ul li {
    min-height: 22rem;
  }
  .about .main .part03 {
    padding: 8rem 0;
  }
  .about .main .part01 .w80 .top .left {
    width: 100%;
  }
  .about .main .part01 .w80 .top .right {
    width: 100%;
    margin-top: 1rem;
  }
  .about .main .part01 .w80 .top .left .desc {
    display: none;
  }
  .about .main .part01 .w80 .top .right .txt p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .about .main .part01 .w80 .bottom {
    padding: 2rem 1rem;
  }
  .about .main .part01 .w80 .bottom .left h3 {
    font-size: 1.5rem;
  }
  .about .main .part01 .w80 .bottom .right p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .about .main .part02 .top .desc {
    width: 100%;
    margin-top: 1rem;
  }
  .about .main .part02 .top .desc p {
    font-size: 1rem;
  }
  .about .main .part02 .bottom ul li {
    width: 100%;
    min-height: auto;
    margin-bottom: 1rem;
  }
  .about .main .part02 .bottom ul li .c_txt h3 {
    font-size: 1.125rem;
  }
  .about .main .part03 .top .desc {
    width: 100%;
    margin-top: 1rem;
  }
  .about .main .part03 .top .desc p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .about .main .part03 .bottom ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .about .main .part03 .bottom {
    margin-top: 1.5rem;
  }
}
.products .main {
  background-color: #f5f5f5;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.products .main .w80 .content {
  height: auto;
  margin-top: 1rem;
}
.products .main .w80 .content ul {
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.products .main .w80 .content ul li {
  background-color: #fff;
  padding: 5rem 3rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.04);
  display: flex;
  border-radius: 0.625rem;
  margin-bottom: 1.875rem;
}
.products .main .w80 .content ul li .left {
  flex: 1 1 0;
  position: relative;
}
.products .main .w80 .content ul li .left .l1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.products .main .w80 .content ul li .left .l1 .l1_sub1 {
  width: 6rem;
  height: 6rem;
  border-radius: 5rem;
  background-color: #093e8d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .w80 .content ul li .left .l1 .l1_sub1 img {
  width: 3.125rem;
}
.products .main .w80 .content ul li .left .l1 .l1_sub2 h2 {
  font-size: 1.5rem;
  color: #093e8d;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  text-transform: uppercase;
}
.products .main .w80 .content ul li .left .l1 .l1_sub2 p {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  font-family: "MyFont";
  letter-spacing: 1px;
}
.products .main .w80 .content ul li .left .l2 {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.products .main .w80 .content ul li .left .l2 img {
  width: 90%;
}
.products .main .w80 .content ul li .left .l3 {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 56%;
  height: 100%;
}
.products .main .w80 .content ul li .left .l3 .k {
  position: relative;
  width: 100%;
  height: 100%;
}
.products .main .w80 .content ul li .left .l3 .k .k_sub1 {
  position: absolute;
  animation: leftPulse 2s infinite ease-in-out;
}
.products .main .w80 .content ul li .left .l3 .k .k_sub2 {
  position: absolute;
  animation: rightPulse 2s infinite ease-in-out;
}
.products .main .w80 .content ul li .left .l4 {
  position: absolute;
  left: 4.375rem;
  top: 21%;
  z-index: 1;
}
.products .main .w80 .content ul li .left .l4 img {
  width: initial;
}
.products .main .w80 .content ul li .right {
  flex: 0 0 40%;
  height: 46vh;
}
.products .main .w80 .content ul li .right .title {
  margin-bottom: 3rem;
}
.products .main .w80 .content ul li .right .i {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
}
.products .main .w80 .content ul li .right .i:nth-last-of-type(1) {
  margin-bottom: 0;
}
.products .main .w80 .content ul li .right .i span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin-top: 8px;
  background-color: #093e8d;
}
.products .main .w80 .content ul li .right .i p {
  width: calc(100% - 1.875rem);
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.products .main .w80 .content ul li .right .more {
  margin-top: 7rem;
}
.products .main .w80 .content ul li:nth-of-type(2) {
  margin-top: 3rem;
  background-color: #093e8d;
}
.products .main .w80 .content ul li:nth-of-type(2) .left .l1 .l1_sub1 {
  background-color: #fff;
}
.products .main .w80 .content ul li:nth-of-type(2) .left .l1 .l1_sub2 h2 {
  color: #fff;
  opacity: 0.4;
}
.products .main .w80 .content ul li:nth-of-type(2) .left .l1 .l1_sub2 p {
  color: #fff;
}
.products .main .w80 .content ul li:nth-of-type(2) .right .title .t1 h3 {
  color: #ffc340;
  opacity: 0.6;
}
.products .main .w80 .content ul li:nth-of-type(2) .right .title .t1 span {
  background-color: #ffc340;
  opacity: 0.6;
}
.products .main .w80 .content ul li:nth-of-type(2) .right .i p {
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  .products .main {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .products .main .w80 .content ul li .left .l4 img {
    width: 66%;
  }
  .products .main .w80 .content ul li .right {
    height: 36vh;
  }
  .products .main .w80 .content ul li .right .more {
    margin-top: 3rem;
  }
  .products .main .w80 .content ul li .right .i p {
    font-size: 1rem;
  }
}
.product2 .main {
  padding-top: 10rem;
  background-color: #ffffff;
  position: relative;
}
.product2 .main::before {
  display: block;
  content: "";
  width: 100%;
  min-height: 80vh;
  background-image: url(/images/proBg1.png);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.product2 .main .bottom {
  position: relative;
  z-index: 3;
}
.product2 .main .bottom .c ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product2 .main .bottom .c ul li {
  width: 23%;
  margin-right: 2.6%;
  margin-bottom: 4rem;
}
.product2 .main .bottom .c ul li:nth-of-type(4n) {
  margin-right: 0;
}
.product2 .main .bottom .c ul li .b_topBox {
  position: relative;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product2 .main .bottom .c ul li .b_topBox .num {
  position: absolute;
  left: 10%;
  top: 10%;
  z-index: 6;
}
.product2 .main .bottom .c ul li .b_topBox .num h4 {
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product2 .main .bottom .c ul li .b_topBox .num i {
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product2 .main .bottom .c ul li .b_topBox .img {
  width: 100%;
  height: 16rem;
  position: relative;
  background-color: #f7f8f9;
}
.product2 .main .bottom .c ul li .b_topBox .img img {
  display: block;
  max-height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transition: all 1.4s ease;
}
.product2 .main .bottom .c ul li .b_bottomBox {
  padding: 1rem;
  background-color: #093e8d;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product2 .main .bottom .c ul li .b_bottomBox .txt span {
  font-size: 0.75rem;
  color: #093e8d;
  line-height: 2;
  font-weight: 400;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0 0.75rem;
  border-radius: 1.875rem;
  transition: all 0.5s ease;
}
.product2 .main .bottom .c ul li .b_bottomBox .txt h4 {
  margin-top: 0.2rem;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product2 .main .bottom .c ul li .b_bottomBox .b_i_icon p {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product2 .main .bottom .c ul li:hover a .b_topBox .img img {
  transform: translateX(-50%) scale(1.2);
}
.product2 .main .bottom .c ul li:hover a .b_topBox .num h4 {
  color: #ffc340;
}
.product2 .main .bottom .c ul li:hover a .b_topBox .num h4 i {
  color: #ffc340;
}
.product2 .main .bottom .c ul li:hover a .b_bottomBox .txt span {
  background-color: #ffc340;
}
.product2 .main .bottom .c ul li:hover a .b_bottomBox .b_i_icon img:nth-of-type(1) {
  display: none;
}
.product2 .main .bottom .c ul li:hover a .b_bottomBox .b_i_icon img:nth-of-type(2) {
  display: block;
}
.product2 .main .bottom .c ul li:hover a .b_bottomBox .b_i_icon::after {
  left: 0;
}
.product2 .main .pageList {
  margin-top: 0;
}
@media screen and (max-width: 1440px) {
  .product2 .main {
    padding-top: 8rem;
  }
  .product2 .main .bottom .c ul li {
    margin-bottom: 2rem;
  }
  .product_details .main {
    padding-top: 9rem;
  }
}
@media screen and (max-width: 992px) {
  .product2 .main {
    padding-top: 4rem;
  }
  .product2 .main .bottom .c ul li {
    margin-bottom: 2rem;
    width: 100%;
  }
  .product2 .main .bottom .c ul li .b_bottomBox .txt h4 {
    font-size: 1rem;
  }
}
.product_details .main {
  padding-top: 14rem;
  padding-bottom: 4.375rem;
  position: relative;
  background-color: #ffffff;
}
.product_details .main > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.product_details .main > div .left {
  width: 68%;
}
.product_details .main > div .left .pd_title {
  margin-top: 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.product_details .main > div .left .pd_title .p_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .pd_title .p_left span {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: #093e8d;
  border-radius: 1.875rem;
  margin-right: 1rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 3;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .left .pd_title .p_left h3 {
  font-size: 3rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .pd_title .p_tool {
  margin-left: 3.75rem;
}
.product_details .main > div .left .pd_title .p_tool i {
  font-size: 1.125rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .left .pd_title .p_tool span {
  font-size: 1.125rem;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .left .pd_img {
  margin-top: 3.125rem;
  margin-bottom: 2.5rem;
  display: flex;
}
.product_details .main > div .left .pd_img .img_list {
  margin-left: 4%;
  flex: 0 0 10%;
  background-color: #f7f8f9;
  box-sizing: border-box;
  padding: 0.25rem;
  border-radius: 0.5rem;
}
.product_details .main > div .left .pd_img .img_list .pre {
  width: 100%;
  text-align: center;
}
.product_details .main > div .left .pd_img .img_list .pre i {
  font-size: 2rem;
  display: inline-block;
  transform: rotate(-90deg);
}
.product_details .main > div .left .pd_img .img_list .next {
  width: 100%;
  text-align: center;
}
.product_details .main > div .left .pd_img .img_list .next i {
  font-size: 2rem;
  display: inline-block;
  transform: rotate(90deg);
}
.product_details .main > div .left .pd_img .img_list ul li {
  border: 1px solid #efefef;
  margin-bottom: 0.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.product_details .main > div .left .pd_img .img_list ul li img {
  width: 100%;
  display: block;
}
.product_details .main > div .left .pd_img .img {
  flex: 1 1 86%;
  text-align: center;
  background-color: #f5fcff;
  overflow: hidden;
  border-radius: 0.625rem;
}
.product_details .main > div .left .pd_img .img img {
  width: 100%;
  display: block;
}
.product_details .main > div .left .details {
  box-sizing: border-box;
  padding: 2rem;
  min-height: 25rem;
  background-color: #f7f8f9;
}
.product_details .main > div .left .details .d_title {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.product_details .main > div .left .details .d_title.mt50 {
  margin-top: 3.125rem;
}
.product_details .main > div .left .details .d_title h3 {
  font-size: 1.625rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.product_details .main > div .left .details .d_title h3 i {
  font-size: 24px;
  font-weight: 100;
  color: #093e8d;
}
.product_details .main > div .left .details .d_item {
  margin-top: 1.875rem;
}
.product_details .main > div .left .details .d_item h3 {
  font-size: 1.25rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1rem;
}
.product_details .main > div .left .details .d_item p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .left .details .d_item table {
  margin-top: 1.875rem;
}
.product_details .main > div .left .details .d_item table tr th {
  font-weight: bold;
  font-size: 1.125rem;
  color: #333;
  line-height: 3;
  font-weight: 700;
  text-align: center;
}
.product_details .main > div .left .details .download {
  margin-top: 1.5rem;
  margin-bottom: 5.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .details .download .icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .left .details .download .icon img {
  width: 3.125rem;
}
.product_details .main > div .left .details .download .icon p {
  padding-left: 0.625rem;
  font-size: 1.125rem;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .left .details .download .tool a {
  padding: 0 0.625rem;
}
.product_details .main > div .left .details .download .tool a img {
  width: 1.375rem;
}
.product_details .main > div .left .details .d_content {
  margin-top: 2rem;
}
.product_details .main > div .left .details .d_content p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .right {
  width: 26%;
}
.product_details .main > div .right .search {
  width: 100%;
  border-bottom: 1px solid #000000;
}
.product_details .main > div .right .search form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .search form input {
  width: calc(100% - 7.5rem);
  font-size: 1rem;
  color: #000000;
  line-height: 3.375rem;
  font-weight: 400;
  text-align: left;
  background: none;
}
.product_details .main > div .right .search form input::placeholder {
  color: #bfbfbf;
}
.product_details .main > div .right .search form button {
  width: 7.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: none;
  font-size: 1.25rem;
  color: #000000;
  line-height: 3.375rem;
  font-weight: 700;
  text-align: left;
}
.product_details .main > div .right .search form button i {
  font-size: 1.5rem;
}
.product_details .main > div .right .right_01 {
  margin-top: 3.125rem;
}
.product_details .main > div .right .right_01 .right_01_title {
  background-color: #093e8d;
  box-sizing: border-box;
  padding-left: 1.25rem;
  border-radius: 0.375rem 0.375rem 0 0;
}
.product_details .main > div .right .right_01 .right_01_title h3 {
  font-size: 1.25rem;
  color: #fff;
  line-height: 3.375rem;
  font-weight: 100;
  text-align: left;
}
.product_details .main > div .right .right_01 .right_01_title h3 i {
  font-size: 1.5rem;
  margin-right: 0.625rem;
}
.product_details .main > div .right .right_01 .right_01_list {
  box-sizing: border-box;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.product_details .main > div .right .right_01 .right_01_list .item {
  width: 100%;
  height: 14rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_imgBox {
  width: 100%;
  height: inherit;
  overflow: hidden;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_imgBox img {
  width: 100%;
  display: block;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxTop h4 {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxBottom h3 {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxBottom .mBox {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxBottom .mBox i {
  color: #fff;
  width: 1rem;
}
.product_details .main > div .right .right_01 .right_01_list .item::after {
  display: block;
  content: "";
  width: 100%;
  height: 60%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .product_details .main > div .left .pd_title .p_left h3 {
    font-size: 2rem;
  }
  .product_details .main > div .left .pd_title .p_left span {
    font-size: 0.875rem;
    line-height: 2.5;
  }
  .product_details .main > div .left .n_title h3 img {
    width: 43.75rem;
  }
  .product_details .main > div .left .n_title h3 {
    margin-top: 5.625rem;
  }
  .product_details .main > div .left .pd_title {
    margin-top: 0.75rem;
  }
  .product_details .main > div .left .pd_title h3 {
    font-size: 1.875rem;
  }
  .product_details .main > div .right .search input {
    font-size: 0.9375rem;
  }
  .product_details .main > div .right .right_01 {
    margin-top: 1.875rem;
  }
  .product_details .main > div .right .right_01 .right_01_title h3 i {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .right_01 .right_01_title h3 {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .right_01 .right_01_list .right_01_list_item .f_a a {
    font-size: 1.1rem;
  }
  .product_details .main > div .right .right_01 .right_01_list .right_01_list_item ul li a {
    font-size: 0.8125rem;
  }
  .product_details .main > div .right .right_02 .right_02_title h3 i {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .right_02 .right_02_title h3 {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .right_02 .right_02_list .right_02_list_item a {
    font-size: 0.9375rem;
  }
  .product_details .main > div .left .details .d_item h3 {
    font-size: 1.125rem;
  }
  .product_details .main > div .left .details .d_item p {
    font-size: 0.9375rem;
  }
  .product_details .main > div .left .details .d_title h3 {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .details .d_title h3 i {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .details .d_content p {
    font-size: 1rem;
  }
  .product_details .main > div .right .search form button {
    font-size: 1.125rem;
    width: 6.5rem;
  }
  .product_details .main > div .right .search form button i {
    font-size: 1.125rem;
  }
  .product_details .main > div .right .right_01 .right_01_list .item {
    height: 12rem;
  }
  .product_details .main > div .right .right_01 .right_01_list .item .n_txtBox .n_txtBoxBottom h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main {
    padding-top: 4rem;
  }
  .product_details .main > div .left {
    width: 100%;
  }
  .product_details .main > div .left .pd_title .p_left h3 {
    font-size: 1.25rem;
  }
  .product_details .main > div .left .pd_title .p_left span {
    font-size: 0.75rem;
    line-height: 2;
  }
  .product_details .main > div .left .pd_img .img img {
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img {
    height: auto;
    width: 100%;
  }
  .product_details .main > div .left .pd_img .img_list {
    display: none;
  }
  .product_details .main > div .left .title h4 {
    font-size: 1rem;
  }
  .product_details .main > div .left .pd_title h3 {
    font-size: 1.2rem;
  }
  .product_details .main > div .left .line4 {
    margin-top: 1rem;
    width: 4rem;
  }
  .product_details .main > div .right {
    width: 100%;
    margin-top: 4rem;
  }
  .product_details .main > div .left .details .d_title h3 {
    font-size: 1.3rem;
  }
  .product_details .main > div .right .tel h3 {
    font-size: 1.3rem;
  }
  .product_details .main > div .left .pd_title .p_tool {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .product_details .main > div .left .pd_title .p_tool span {
    font-size: 1rem;
  }
  .product_details .main > div .left .details .d_title h3 {
    font-size: 1rem;
  }
}
.news .main {
  min-height: 31.25rem;
  padding-bottom: 6.25rem;
}
.news .main .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .main .top .title h2 {
  font-size: 3rem;
  color: #093e8d;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  font-family: "MyFont";
}
.news .main .top .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .top .btns .item {
  margin-left: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.news .main .top .btns .item a {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.25rem;
  color: #000;
  line-height: 1.6;
  font-weight: 600;
  text-align: left;
}
.news .main .top .btns .item a span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  border: 2px solid #093e8d;
  display: block;
  margin-right: 0.4rem;
}
.news .main .top .btns .item::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #093e8d;
  transition: all 0.5s ease;
}
.news .main .top .btns .item:hover a {
  color: #fff;
}
.news .main .top .btns .item:hover a span {
  border: 2px solid #ffc340;
}
.news .main .top .btns .item:hover::after {
  width: 100%;
}
.news .main .part01 ul li {
  border-bottom: 1px solid #dfdfdf;
  padding: 3.125rem 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: 5.75rem;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}
.news .main .part01 ul li a .date p {
  font-size: 1.5rem;
  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: 1.5rem;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.25rem;
}
.news .main .part01 ul li a .text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 3.75rem;
}
.news .main .part01 ul li a .text .n_more {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .text .n_more h5 {
  font-size: 1.125rem;
  color: #000;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.news .main .part01 ul li a .text .n_more i {
  margin-left: 0.625rem;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.625rem;
  font-weight: 400;
  text-align: center;
  display: block;
  transform: rotate(90deg);
  width: 1.625rem;
  height: 1.625rem;
  background-color: #093e8d;
  border-radius: 50%;
}
.news .main .part01 ul li a .img {
  width: 32%;
  height: 0;
  border: 6px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding-bottom: 17.125rem;
  border-radius: 8px;
}
.news .main .part01 ul li a .img img {
  width: 100%;
  transition: all 2s ease;
}
.news .main .part01 ul li:hover {
  background-color: #f5f5f5;
}
.news .main .part01 ul li:hover a .img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1440px) {
  .news .main .top .title h2 {
    font-size: 1.8rem;
  }
  .news .main .top .desc p {
    font-size: 1.125rem;
  }
  .news .main .part01 ul li a .img {
    padding-bottom: 14.625rem;
    width: 32%;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
  }
  .news .main .part01 ul li a .text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .news .main .part01 ul li a .text span {
    font-size: 0.75rem;
    width: 11.25rem;
    height: 2.5rem;
  }
  .news .main .part01 ul li a .text span img {
    width: 1.125rem;
  }
  .news .main .part01 ul li a .text span::after {
    background-size: contain;
  }
  .news .main .part01 ul li {
    padding: 1.5rem 0;
  }
  .news .main .part01 ul li a .date {
    width: 7%;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 3.25rem;
  }
  .news .main .part01 ul li a .date p {
    font-size: 0.9375rem;
  }
  .news .main .part01 ul li a .text {
    width: 50%;
  }
  .news .main .btn ul li a {
    line-height: 2.875rem;
  }
  .news .main .top .title2::after {
    width: 6.25rem;
    height: 6.25rem;
  }
  .news .main .top .title2::before {
    width: 5rem;
    height: 5rem;
  }
  .news .main .top .title2 h2 {
    font-size: 3rem;
  }
  .news .main .top .title2 {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
  .news .main .top {
    margin-top: 7.5rem;
  }
  .news .main {
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 992px) {
  .news .main .top .btns {
    display: none;
  }
  .news .main .top .title h2 {
    font-size: 1.5rem;
  }
  .news .main .title {
    margin-top: 0rem;
  }
  .news .main .btn {
    display: none;
  }
  .news .main .part01 ul li {
    margin-bottom: 1.875rem;
  }
  .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: 13.75rem;
    margin-top: 1.875rem;
  }
  .news .main .part01 ul li a .text span {
    height: 2.875rem;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .news .main .top .title2 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    margin-left: 2.25rem;
  }
  .news .main .top .title2::after {
    width: 4.375rem;
    height: 4.375rem;
  }
  .news .main .top .title2::before {
    width: 3.5rem;
    height: 3.5rem;
  }
  .news .main .top .title2 h2 {
    font-size: 2.25rem;
  }
  .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: 5.625rem;
  }
  .news .main .part01 {
    margin-top: 1rem;
  }
}
.news_details .main {
  padding-bottom: 5.625rem;
}
.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: 1.875rem;
  color: #333;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #d6d6d6;
  margin-bottom: 2.5rem;
}
.news_details .main .n_center .ct .detailed .sub2 .share p {
  margin: 0 0.625rem;
  font-size: 0.9375rem;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.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: 1.25rem;
  font-size: 1.125rem;
  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;
  padding: 0 2rem;
  box-sizing: border-box;
}
.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: 1.5rem;
  }
  .news_details .main .ct .detailed .sub2 .news_content p {
    font-size: 0.875rem;
  }
  .news_details .main .ct .detailed .sub2 .np div a {
    font-size: 0.875rem;
    line-height: 3rem;
  }
  .news_details .main .ct .detailed .sub2 .np div {
    width: 49%;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.5rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    font-size: 1rem;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .news_details .main .n_center .w80 .detailed {
    margin-top: 6.25rem;
  }
  .news_details .mt-100 {
    margin-top: 4.375rem;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 1.125rem;
    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: 3rem;
    margin-bottom: 0.625rem;
    justify-content: flex-start;
    padding-left: 1.25rem;
  }
  .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: 0.9375rem;
  }
  .news_details .main .n_center .ct .detailed .sub2 .share p:nth-last-of-type(1) {
    display: none;
  }
}
.contact .main {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  background-color: #f5f5f5;
}
.contact .main::before {
  display: block;
  content: "";
  width: 100%;
  height: 80vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(/images/proBg1.png) no-repeat left top / 100%;
}
.contact .main::after {
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: url(/images/proBg2.png) no-repeat right bottom / 100%;
}
.contact .main .part01 {
  position: relative;
  z-index: 6;
}
.contact .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .left {
  width: 32%;
}
.contact .main .part01 .w80 .left .img {
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
}
.contact .main .part01 .w80 .left .img img {
  width: 100%;
  display: block;
}
.contact .main .part01 .w80 .right {
  width: 60%;
}
.contact .main .part01 .w80 .right .sub1 .sub1_sub1 {
  margin-bottom: 5rem;
}
.contact .main .part01 .w80 .right .sub1 .sub1_sub1 h3 {
  font-size: 1.5rem;
  color: #093e8d;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.contact .main .part01 .w80 .right .sub2 {
  margin-top: 10rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map {
  margin-bottom: 1.2rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon {
  margin-bottom: 0.3rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon img {
  width: 5rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid #093e8d;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_txt p {
  font-size: 0.75rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  opacity: 0.3;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 {
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 1rem 0;
  padding-left: 1rem;
  box-sizing: border-box;
  background-color: #093e8d;
  border-radius: 0.5rem;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item h3 {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item p {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
  width: 38%;
}
.contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) p {
  font-size: 1rem;
}
.contact .main .part02 {
  margin-top: 10rem;
  position: relative;
  z-index: 6;
}
.contact .main .part02 .w80 .sub1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub1 .sub1_sub1 {
  width: 32%;
}
.contact .main .part02 .w80 .sub1 .sub1_sub1 h3 {
  font-size: 2rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 .basic-radio {
  width: 50%;
}
.contact .main .part02 .w80 .sub1 .sub1_sub2 .basic-radio label {
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  letter-spacing: 2px;
}
.contact .main .part02 .w80 .sub2 {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 {
  width: 32%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 h3 {
  font-size: 2rem;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "MyFont";
  margin-bottom: 1rem;
}
.contact .main .part02 .w80 .sub2 .sub2_sub1 p {
  font-size: 1rem;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 {
  width: 60%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div {
  width: 49%;
  margin-bottom: 0.8rem;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div input {
  width: 100%;
  box-sizing: border-box;
  padding-left: 1.4rem;
  font-size: 1rem;
  color: #000;
  line-height: 3.75rem;
  font-weight: 100;
  text-align: left;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div.sub2_item_box2 {
  width: 100%;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item > div.sub2_item_box2 textarea {
  padding: 1.4rem;
  width: 100%;
  min-height: 12rem;
  background-color: #fff;
}
.contact .main .part02 .w80 .sub2 .sub2_sub2 .sub2_item button {
  width: 100%;
  background-color: #093e8d;
  font-size: 1rem;
  color: #fff;
  line-height: 3.75rem;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact .main .part01 .w80 .right .sub1 .sub1_sub1 h3 {
    font-size: 1.125rem;
  }
  .contact .main .part01 .w80 .right .sub2 {
    margin-top: 3rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item p {
    font-size: 1rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
    width: 26%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
    width: 46%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map .map_icon img {
    width: 4rem;
  }
  .contact .main .part02 {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 992px) {
  .contact .main {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .contact .main .part01 .w80 .left {
    display: none;
  }
  .contact .main .part01 .w80 .right {
    width: 100%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub2 .item:nth-last-of-type(1) {
    width: 100%;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .map {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .contact .main .part02 .w80 .sub1 {
    display: none;
  }
  .contact .main .part02 .w80 .sub2 {
    margin-top: 0;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub1 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub2 {
    width: 100%;
  }
  .contact .main .part02 .w80 .sub2 .sub2_sub1 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .contact .main .part02 {
    margin-top: 5rem;
  }
  .contact .main .part01 .w80 .right .sub2 .sub2_sub1 .title {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .title .t2 h2 {
    font-size: 2.75rem;
  }
  .title .t1 h3 {
    font-size: 1.5rem;
  }
  .title.s .t2 h2 {
    font-size: 2.25rem;
  }
  .title.s .t1 h3 {
    font-size: 1.125rem;
  }
  .more {
    width: 13rem;
  }
  .more a > div span {
    line-height: 3rem;
  }
  .more a i {
    width: 3.25rem;
    height: 3.25rem;
    line-height: 3.25rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .title .t2 h2 {
    font-size: 1.5rem;
  }
  .title .t1 h3 {
    font-size: 1rem;
  }
  .title .t1 span {
    width: 3rem;
  }
  .title.s .t2 h2 {
    font-size: 2.25rem;
  }
  .title.s .t1 h3 {
    font-size: 1.125rem;
  }
  .title .t2 {
    margin-top: 0.5rem;
  }
  .more {
    width: 9rem;
  }
  .more a > div span {
    line-height: 2.5rem;
  }
  .more a i {
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.75rem;
    font-size: 0.875rem;
  }
  .moblieNav {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
