.title.l h1 {
  text-align: left;
  color: #fff;
  font-family: Impact;
}
.title.l h3 {
  text-align: left;
  color: #fff;
  font-family: Impact;
  font-weight: normal;
}
.title.l2 h1 {
  text-align: left;
  color: #db0b00;
}
.title.l2 h3 {
  font-weight: normal;
  text-align: left;
  color: #db0b00;
  font-family: Impact;
}
.title h1 {
  font-size: 90px;
  color: #db0b00;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "Impact";
  opacity: 1;
}
.title h3 {
  font-size: 40px;
  color: #db0b00;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1440px) {
  .title h1 {
    font-size: 46px;
  }
  .title h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 992px) {
  .title h1 {
    font-size: 30px;
  }
  .title h3 {
    font-size: 24px;
  }
}
.t_description.l p {
  text-align: left;
}
.t_description p {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .t_description p {
    font-size: 16px;
  }
}
.btn ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn ul li {
  background-color: #f1f1f1;
  margin: 0 6px;
}
.btn ul li a {
  padding: 0 50px;
  font-size: 16px;
  color: #333;
  line-height: 56px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .btn ul li a {
    padding: 0 22px;
    font-size: 15px;
    line-height: 44px;
  }
  .btn ul li {
    border-radius: 4px;
  }
}
@media screen and (max-width: 992px) {
  .btn ul {
    justify-content: space-between;
  }
  .btn ul li {
    width: 48%;
    margin: 2px 0 ;
    text-align: center;
  }
  .btn ul li a {
    padding: 0;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 100px;
  height: 100px;
}
header > div {
  line-height: inherit;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 26%;
  line-height: inherit;
  height: inherit;
}
header > div .logo .logo_img {
  margin-right: 20px;
  line-height: inherit;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo .logo_img a {
  height: 57px;
}
header > div .logo .logo_img a img {
  height: 57px;
}
header > div .logo .logo_img a:nth-of-type(2) {
  display: none;
}
header > div .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}
header > div .logo .logo_text a p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
header > div nav {
  width: 54%;
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul {
  width: 90%;
  width: calc(100% - 80px);
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav ul li {
  line-height: inherit;
  position: relative;
  width: 14%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #f1f1f1;
}
header > div nav ul li:hover .menu {
  height: auto;
  opacity: 1;
}
header > div nav ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: inherit;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu {
  opacity: 0;
  overflow: hidden;
  height: 0;
  width: 100%;
  transition: all 1s;
  position: absolute;
  top: 112px;
  left: 0;
  background-color: #f1f1f1;
}
header > div nav ul li .menu .menu_item:nth-of-type(1) {
  margin-top: 20px;
}
header > div nav ul li .menu .menu_item:nth-last-of-type(1) {
  margin-bottom: 20px;
}
header > div nav ul li .menu .menu_item a {
  font-size: 14px;
  color: #333;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
}
header > div nav ul li .menu .menu_item:hover {
  background-color: #003994;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header > div nav .tool {
  width: 30px;
  padding-left: 20px;
}
header > div nav .tool a div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
header > div nav .tool a div i {
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background-color: #003994;
  line-height: 26px;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
}
header.active {
  background-color: #ffffff;
}
header.active > div .logo .logo_img a:nth-of-type(1) {
  display: none;
}
header.active > div .logo .logo_img a:nth-of-type(2) {
  display: block;
}
header.active > div nav ul li a {
  color: #333;
}
@media screen and (max-width: 1440px) {
  header {
    height: 80px;
    line-height: 80px;
  }
  header > div nav {
    width: 56%;
  }
  header > div .logo .logo_img a img {
    height: 40px;
  }
  header > div .logo .logo_img a {
    height: 46px;
  }
  header > div nav ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer {
  background-color: #292929;
}
footer .top {
  padding-top: 50px;
  padding-bottom: 60px;
}
footer .top .w80 .foot_logo {
  padding-bottom: 30px;
  border-bottom: 1px solid #4d4d4d;
}
footer .top .w80 .foot_txt {
  padding-top: 70px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .top .w80 .foot_txt .left {
  width: 30%;
}
footer .top .w80 .foot_txt .left .f_title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .foot_txt .left .f_title h3::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #db0b00;
}
footer .top .w80 .foot_txt .left .l_contact {
  margin-top: 20px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item:nth-of-type(3) {
  margin-bottom: 0;
  margin-top: 60px;
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .l_icon {
  height: 30px;
  width: 30px;
  border-radius: 20px;
  border: 1px solid #4d4d4d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt {
  margin-left: 10px;
  width: calc(100% - 50px);
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt h2 {
  font-size: 26px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
  font-family: Impact;
}
footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
footer .top .w80 .foot_txt .left .l_contact .l_content_img {
  margin-left: 20px;
  position: absolute;
  top: 0;
  right: 0;
}
footer .top .w80 .foot_txt .left .l_contact .l_content_img img {
  width: initial;
}
footer .top .w80 .foot_txt .left .l_contact .l_content_img p {
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .top .w80 .foot_txt .center {
  width: 30%;
}
footer .top .w80 .foot_txt .center .f_title {
  margin-bottom: 20px;
}
footer .top .w80 .foot_txt .center .f_title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .foot_txt .center .f_title h3::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #db0b00;
}
footer .top .w80 .foot_txt .center .c_txt p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  opacity: 0.6;
}
footer .top .w80 .foot_txt .right {
  width: 24%;
}
footer .top .w80 .foot_txt .right .f_title {
  margin-bottom: 20px;
}
footer .top .w80 .foot_txt .right .f_title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .foot_txt .right .f_title h3::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #db0b00;
}
footer .top .w80 .foot_txt .right .r_box .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .foot_txt .right .r_box .item .item_left {
  width: 49%;
  border-radius: 4px;
  overflow: hidden;
}
footer .top .w80 .foot_txt .right .r_box .item .item_left input {
  width: 100%;
  font-size: 14px;
  color: #fff;
  line-height: 42px;
  font-weight: 400;
  text-align: left;
  opacity: 0.3;
  padding-left: 10px;
  box-sizing: border-box;
}
footer .top .w80 .foot_txt .right .r_box .item .item_right {
  width: 49%;
  border-radius: 4px;
  overflow: hidden;
}
footer .top .w80 .foot_txt .right .r_box .item .item_right input {
  width: 100%;
  font-size: 14px;
  color: #fff;
  line-height: 42px;
  font-weight: 400;
  text-align: left;
  opacity: 0.3;
  padding-left: 10px;
  box-sizing: border-box;
}
footer .top .w80 .foot_txt .right .r_box .item {
  margin-bottom: 10px;
}
footer .top .w80 .foot_txt .right .r_box .item textarea {
  width: 100%;
  background-color: #fff;
  opacity: 0.3;
  height: 86px;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 12px;
}
footer .top .w80 .foot_txt .right .r_box .item button {
  width: 100%;
  border-radius: 6px;
  background-color: #003994;
  font-size: 16px;
  color: #fff;
  line-height: 42px;
  font-weight: 400;
  text-align: center;
}
footer .bottom {
  background-color: #000;
  height: 80px;
}
footer .bottom p {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom p a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.3;
  margin: 0 14px;
}
@media screen and (max-width: 1680px) {
  footer .top .w80 .foot_txt .left {
    width: 32%;
  }
}
@media screen and (max-width: 1440px) {
  footer .top .w80 .foot_logo {
    padding-bottom: 20px;
  }
  footer .top .w80 .foot_logo img {
    width: 400px;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt h2 {
    font-size: 22px;
  }
  footer .top .w80 .foot_txt .left .f_title h3 {
    font-size: 16px;
  }
  footer .top .w80 .foot_txt .center .f_title h3 {
    font-size: 16px;
  }
  footer .top .w80 .foot_txt .right .f_title h3 {
    font-size: 16px;
  }
  footer .top .w80 .foot_txt .center .c_txt p {
    font-size: 13px;
    line-height: 1.4;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_content_img img {
    width: 100px;
  }
  footer .top .w80 .foot_txt .left {
    width: 32%;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt p {
    font-size: 14px;
    line-height: 1.4;
  }
  footer .top .w80 .foot_txt .center {
    width: 28%;
  }
  footer .top .w80 .foot_txt .right .r_box .item .item_left input {
    line-height: 38px;
    font-size: 12px;
  }
  footer .top .w80 .foot_txt .right .r_box .item .item_right input {
    line-height: 38px;
    font-size: 12px;
  }
  footer .top .w80 .foot_txt .right .r_box .item textarea {
    height: 70px;
    font-size: 12px;
  }
  footer .top .w80 .foot_txt .right .r_box .item button {
    line-height: 40px;
    font-size: 12px;
  }
  footer .bottom {
    height: 60px;
  }
  footer .bottom p a {
    font-size: 13px;
  }
}
@media screen and (max-width: 992px) {
  footer .top .w80 .foot_logo img {
    width: 350px;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_content_img p {
    display: none;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item:nth-of-type(3) {
    margin-top: 30px;
  }
  footer .top .w80 .foot_txt .center {
    display: none;
  }
  footer .top .w80 .foot_txt .right {
    display: none;
  }
  footer .top .w80 .foot_txt .left {
    width: 100%;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_content_img {
    position: absolute;
    right: 5%;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt p {
    font-size: 15px;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .txt h2 {
    font-size: 20px;
  }
  footer .top .w80 .foot_txt .left .l_contact .l_contact_txt .item .l_icon {
    width: 28px;
    height: 28px;
  }
  footer .bottom p a:nth-of-type(n + 2) {
    display: none;
  }
}
.index .main .part01 {
  margin-bottom: 100px;
}
.index .main .part01 .bottom {
  margin-top: 60px;
}
.index .main .part01 .bottom div {
  padding-bottom: 40px;
}
.index .main .part01 .bottom div ul li {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.index .main .part01 .bottom div ul li a {
  width: 100%;
}
.index .main .part01 .bottom div ul li a .img {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 400px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
.index .main .part01 .bottom div ul li a .img img {
  display: none;
}
.index .main .part01 .bottom div ul li a .txt {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.index .main .part01 .bottom div ul li a .txt h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.index .main .part01 .bottom div ul li a .txt p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.4;
}
.index .main .part01 .bottom div ul li:hover a .img {
  transition: all 1.5s ease;
  transform: scale(1.3);
}
.index .main .part01 .bottom div .swiper-pagination {
  bottom: -30px;
}
.index .main .part01 .bottom div .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}
.index .main .part02 {
  background: url(/images/index_aboutBg.png);
  padding: 150px 0;
}
.index .main .part02 > div {
  overflow: hidden;
  width: 80%;
}
.index .main .part02 > div .c .c_item {
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part02 > div .c .c_item .left {
  width: 40%;
}
.index .main .part02 > div .c .c_item .left .t_description {
  margin-top: 30px;
}
.index .main .part02 > div .c .c_item .left .t_description p {
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
.index .main .part02 > div .c .c_item .left .txt {
  margin-top: 40px;
}
.index .main .part02 > div .c .c_item .left .txt p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
  margin-bottom: 20px;
}
.index .main .part02 > div .c .c_item .left .more {
  margin-top: 80px;
  width: 240px;
  height: 56px;
  background-image: linear-gradient(to right, #fff, #bfbfbe);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.index .main .part02 > div .c .c_item .left .more:hover::after {
  width: 100%;
}
.index .main .part02 > div .c .c_item .left .more:hover a {
  color: #fff;
}
.index .main .part02 > div .c .c_item .left .more a {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  font-size: 15px;
  color: #db0b00;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
}
.index .main .part02 > div .c .c_item .left .more::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #db0b00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease;
}
.index .main .part02 > div .c .c_item .right {
  width: 54%;
}
.index .main .part02 > div .c .c_item .right .img img {
  width: 100%;
}
.index .main .part03 .w80 .content {
  margin-top: 60px;
  margin-bottom: 120px;
}
.index .main .part03 .w80 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part03 .w80 .content ul li {
  width: 24%;
  padding: 38px;
  box-sizing: border-box;
  border-radius: 16px;
}
.index .main .part03 .w80 .content ul li:nth-of-type(2) {
  animation-delay: 0.3s;
}
.index .main .part03 .w80 .content ul li:nth-of-type(3) {
  animation-delay: 0.6s;
}
.index .main .part03 .w80 .content ul li:nth-of-type(4) {
  animation-delay: 0.9s;
}
.index .main .part03 .w80 .content ul li:hover .c_icon {
  transform: rotateY(180deg);
}
.index .main .part03 .w80 .content ul li .c_icon {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 32px auto 30px;
  transition: all 1s ease;
}
.index .main .part03 .w80 .content ul li .c_icon .i_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index .main .part03 .w80 .content ul li .c_icon .i_img img {
  width: initial;
}
.index .main .part03 .w80 .content ul li .c_icon .i_bg img {
  width: initial;
}
.index .main .part03 .w80 .content ul li .txt {
  margin-bottom: 20px;
}
.index .main .part03 .w80 .content ul li .txt h3 {
  font-size: 22px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  height: 48px;
}
.index .main .part03 .w80 .content ul li .txt p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
  height: 90px;
}
.index .main .part03 .w80 .content ul li:nth-of-type(1) {
  background-color: #f1f1f1;
}
.index .main .part03 .w80 .content ul li:nth-of-type(2) {
  background-color: #003994;
}
.index .main .part03 .w80 .content ul li:nth-of-type(2) h3 {
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.index .main .part03 .w80 .content ul li:nth-of-type(2) p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .main .part03 .w80 .content ul li:nth-of-type(3) {
  background-color: #002f7a;
}
.index .main .part03 .w80 .content ul li:nth-of-type(3) h3 {
  font-size: 22px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.index .main .part03 .w80 .content ul li:nth-of-type(3) p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .main .part03 .w80 .content ul li:nth-of-type(4) {
  background-color: #002561;
}
.index .main .part03 .w80 .content ul li:nth-of-type(4) h3 {
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.index .main .part03 .w80 .content ul li:nth-of-type(4) p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .main .part04 {
  background-image: url(/images/index_bg2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 480px;
}
.index .main .part04 .w80 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: inherit;
}
.index .main .part04 .w80 .p4 h2 {
  font-size: 42px;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.index .main .part04 .w80 .p4 p {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;
}
.index .main .part04 .w80 .p4 .more {
  margin: 60px auto 0;
  width: 230px;
  height: 56px;
  border-radius: 28px;
  background-image: linear-gradient(to right, #fff, #bebfbf);
  position: relative;
  overflow: hidden;
}
.index .main .part04 .w80 .p4 .more a {
  display: block;
  font-size: 16px;
  color: #db0b00;
  line-height: 56px;
  font-weight: 100;
  text-align: center;
  position: relative;
  z-index: 3;
}
.index .main .part04 .w80 .p4 .more:hover::after {
  width: 100%;
}
.index .main .part04 .w80 .p4 .more:hover a {
  color: #fff;
}
.index .main .part04 .w80 .p4 .more::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #db0b00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease;
}
.index .main .part05 {
  background-color: #f1f1f1;
  padding-top: 120px;
  padding-bottom: 120px;
}
.index .main .part05 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part05 .w80 .top .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part05 .w80 .top .left .des {
  margin-left: 80px;
}
.index .main .part05 .w80 .top .left .des h3 {
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.index .main .part05 .w80 .top .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part05 .w80 .top .right .more {
  background-color: #fff;
  height: 60px;
  width: 180px;
  border-radius: 10px;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
}
.index .main .part05 .w80 .top .right .more::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #db0b00;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.index .main .part05 .w80 .top .right .more:hover::after {
  width: 100%;
  transition: all 0.5s ease;
}
.index .main .part05 .w80 .top .right .more:hover a {
  color: #fff;
}
.index .main .part05 .w80 .top .right .more.active {
  background-color: #003994;
}
.index .main .part05 .w80 .top .right .more.active a {
  color: #fff;
}
.index .main .part05 .w80 .top .right .more a {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 18px;
  color: #333333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.index .main .part05 .w80 .bottom {
  margin-top: 50px;
}
.index .main .part05 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .main .part05 .w80 .bottom ul li {
  width: 32%;
  background-color: #fff;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 8px;
}
.index .main .part05 .w80 .bottom ul li:hover {
  background-color: #003994;
  transition: all 0.5s ease;
}
.index .main .part05 .w80 .bottom ul li:hover .txt span {
  color: #fff;
}
.index .main .part05 .w80 .bottom ul li:hover .txt h3 {
  color: #fff;
}
.index .main .part05 .w80 .bottom ul li:hover .txt p {
  color: #fff;
}
.index .main .part05 .w80 .bottom ul li:hover .img img {
  transition: all 1s ease;
  transform: scale(1.3);
}
.index .main .part05 .w80 .bottom ul li .img {
  overflow: hidden;
}
.index .main .part05 .w80 .bottom ul li .img img {
  width: 100%;
}
.index .main .part05 .w80 .bottom ul li .txt {
  margin-top: 30px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dfdfdf;
}
.index .main .part05 .w80 .bottom ul li .txt span {
  font-size: 16px;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .main .part05 .w80 .bottom ul li .txt h3 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.index .main .part05 .w80 .bottom ul li .txt p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: 100;
  text-align: left;
}
@media screen and (max-width: 1680px) {
  .index .main .part01 .bottom div ul li a .img {
    padding-bottom: 330px;
  }
}
@media screen and (max-width: 1440px) {
  .index .main .part01 .bottom div ul li a .img {
    padding-bottom: 330px;
  }
  .index .main .part01 .bottom div ul li a .txt p {
    font-size: 12px;
  }
  .index .main .part01 .bottom div ul li a .txt h3 {
    font-size: 16px;
  }
  .index .main .part02 {
    padding: 90px 0;
  }
  .index .main .part02 > div .c .c_item .left .t_description p {
    font-size: 16px;
    font-weight: 600;
  }
  .index .main .part02 > div .c .c_item .left .txt p {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 12px;
  }
  .index .main .part02 > div .c .c_item .left .txt {
    margin-top: 16px;
  }
  .index .main .part02 > div .c .c_item .left .more {
    width: 160px;
    height: 42px;
    margin-top: 36px;
  }
  .index .main .part02 > div .c .c_item .left .more a {
    line-height: 42px;
    font-weight: 400;
    font-size: 13px;
  }
  .index .main .part03 .w80 .content ul li .c_icon .i_img img {
    width: 40px;
  }
  .index .main .part03 .w80 .content ul li .c_icon {
    width: 100px;
    height: 100px;
    margin: 8px auto 20px;
  }
  .index .main .part03 .w80 .content ul li .c_icon .i_bg img {
    width: 100px;
  }
  .index .main .part03 .w80 .content ul li .txt h3 {
    font-size: 16px;
    height: 32px;
  }
  .index .main .part03 .w80 .content ul li {
    padding: 24px;
  }
  .index .main .part03 .w80 .content ul li .txt p {
    font-size: 13px;
    height: 76px;
  }
  .index .main .part04 .w80 .p4 h2 {
    font-size: 28px;
  }
  .index .main .part04 .w80 .p4 p {
    margin-top: 6px;
    font-size: 16px;
  }
  .index .main .part04 .w80 .p4 .more a {
    line-height: 42px;
    font-weight: 400;
    font-size: 13px;
  }
  .index .main .part04 .w80 .p4 .more {
    width: 160px;
    height: 42px;
    margin: 40px auto 0;
  }
  .index .main .part04 {
    height: 390px;
  }
  .index .main .part03 .w80 .content {
    margin-top: 40px;
  }
  .index .main .part05 .w80 .top .left .des h3 {
    font-size: 18px;
  }
  .index .main .part05 .w80 .top .left .des {
    margin-left: 40px;
  }
  .index .main .part05 .w80 .top .right .more a {
    line-height: 48px;
    font-size: 15px;
  }
  .index .main .part05 .w80 .top .right .more {
    height: 48px;
  }
  .index .main .part05 .w80 .bottom ul li .txt h3 {
    font-size: 16px;
  }
  .index .main .part05 .w80 .bottom ul li .txt p {
    font-size: 14px;
    font-weight: 400;
  }
}
@media screen and (max-width: 992px) {
  .index .main .part02 > div {
    width: 90%;
  }
  .index .main .part02 > div .c .c_item .left {
    width: 100%;
  }
  .index .main .part02 > div .c .c_item .right {
    width: 100%;
    margin-top: 60px;
  }
  .index .main .part03 .w80 .content ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .main .part03 .w80 .content ul li .txt h3 {
    text-align: center;
  }
  .index .main .part05 .w80 .top .left .des {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .index .main .part05 .w80 .top .left .des h3 {
    text-align: left;
    font-size: 16px;
  }
  .index .main .part05 .w80 .top .right {
    display: none;
  }
  .index .main .part05 .w80 .bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .index .main .part04 .w80 .p4 h2 {
    line-height: 1;
    font-size: 22px;
    margin-bottom: 30px;
  }
  .index .main .part03 .w80 .content ul li .txt p {
    height: 60px;
  }
  .index .main .part03 .w80 .content {
    margin-bottom: 80px;
  }
  .index .main .part01 {
    margin-bottom: 70px;
  }
  .index .main .part05 {
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .index .main .part05 .w80 .bottom {
    margin-top: 30px;
  }
}
.about .main .ct {
  margin-top: 120px;
  margin-bottom: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .ct .left {
  width: 51%;
}
.about .main .ct .left .left_title h3 {
  font-size: 42px;
  color: #d3d3d3;
  line-height: 1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}
.about .main .ct .left .left_title p {
  font-size: 37px;
  color: #003994;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  position: relative;
  margin-bottom: 40px;
  font-family: Impact;
}
.about .main .ct .left .left_title p::after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #db0b00;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.about .main .ct .left .left_title em {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
  font-style: normal;
}
.about .main .ct .left .about_content {
  margin-top: 40px;
}
.about .main .ct .left .about_content p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  font-weight: normal;
  text-align: left;
  margin-bottom: 10px;
}
.about .main .ct .right {
  width: 44%;
  position: relative;
  height: 66vh;
}
.about .main .ct .right img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  right: 20px;
}
.about .main .ct .right::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: "";
  width: 80%;
  height: inherit;
  background-color: #003994;
}
@media screen and (max-width: 1440px) {
  .about .main .ct .left .left_title {
    margin-bottom: 60px;
  }
  .about .main .ct .left .left_title h3 {
    font-size: 56px;
  }
  .about .main .ct .left .left_title p {
    font-size: 40px;
  }
  .about .main .ct .left .left_title em {
    font-size: 16px;
  }
  .about .main .ct .left .about_content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about .main .ct .left .left_title p {
    margin-bottom: 32px;
  }
  .about .main .ct .left .about_content {
    margin-top: 20px;
  }
  .about .main .ct .left {
    width: 100%;
  }
  .about .main .ct .right {
    width: 100%;
    margin-top: 90px;
  }
  .about .main .ct .right img {
    width: 80%;
    right: 20%;
    border-radius: 50px 0 0 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 992px) {
  .about .main .ct .left {
    width: 100%;
  }
  .about .main .ct {
    margin-top: 80px;
  }
  .about .main .ct .right {
    margin-top: 40px;
    width: 100%;
    height: 36vh;
  }
}
.product .w80 .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product .w80 .content ul li {
  width: 24%;
  margin-right: 1.33%;
  position: relative;
  margin-bottom: 30px;
}
.product .w80 .content ul li:nth-of-type(4n) {
  margin-right: 0;
}
.product .w80 .content ul li a {
  width: 100%;
}
.product .w80 .content ul li a .img {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 400px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}
.product .w80 .content ul li a .img img {
  display: none;
}
.product .w80 .content ul li a .txt {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
.product .w80 .content ul li a .txt h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.product .w80 .content ul li a .txt p {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  opacity: 0.4;
}
@media screen and (max-width: 1440px) {
  .product .w80 .content ul li a .img {
    padding-bottom: 320px;
  }
}
@media screen and (max-width: 992px) {
  .product .w80 .content ul li {
    width: 100%;
  }
}
.product_details .main {
  background-color: #f1f1f1;
  overflow: hidden;
}
.product_details .main .part01 {
  margin-top: 120px;
}
.product_details .main .part01 .center {
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .part01 .center .left {
  width: 50%;
  height: 100%;
  background-color: #000;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.product_details .main .part01 .center .left .img {
  width: 100%;
  height: 450px;
}
.product_details .main .part01 .center .left .img img {
  width: 100%;
}
.product_details .main .part01 .center .right {
  overflow: hidden;
  box-sizing: border-box;
  width: 42%;
  padding-bottom: 90px;
}
.product_details .main .part01 .center .right .t_title {
  padding-bottom: 10px;
  border-bottom: 1px dashed #003994;
}
.product_details .main .part01 .center .right .t_title h3 {
  font-size: 32px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.product_details .main .part01 .center .right .t_title p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.product_details .main .part01 .center .right .t_item {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .part01 .center .right .t_item h2 {
  display: inline-block;
  padding: 8px 14px;
  background-color: #003994;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-right: 10px;
}
.product_details .main .part01 .center .right .t_item p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main .part01 .center .right .t_item:nth-of-type(5) p {
  font-size: 28px;
  color: #003994;
}
.product_details .main .part01 .center .right .changeBtn {
  margin-top: 60px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .part01 .center .right .changeBtn .next {
  margin-left: 40px;
}
.product_details .main .part01 .center .right .changeBtn .next h3 {
  font-size: 14px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main .part01 .center .right .changeBtn .next h3 span {
  color: #ea5514;
  font-size: 18px;
  font-weight: 400;
}
.product_details .main .part01 .center .right .changeBtn .prev h3 {
  font-size: 14px;
  color: #999;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.product_details .main .part01 .center .right .changeBtn .prev h3 span {
  color: #ea5514;
  font-size: 18px;
  font-weight: 400;
}
.product_details .main .part02 {
  margin-top: 60px;
  margin-bottom: 120px;
}
.product_details .main .part02 .w80 .proDetailsTitle {
  border-bottom: 1px solid #dfdfdf;
}
.product_details .main .part02 .w80 .proDetailsTitle .item {
  padding: 20px 40px;
  background-color: #003994;
  display: inline-block;
  border-radius: 8px 8px 0 0;
}
.product_details .main .part02 .w80 .proDetailsTitle .item h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.product_details .main .part02 .w80 .proDetailsCenter {
  margin-top: 20px;
  background-color: #f1f1f1;
  box-sizing: border-box;
  padding: 30px;
}
.product_details .main .part02 .w80 .proDetailsCenter .item {
  margin-bottom: 30px;
}
.product_details .main .part02 .w80 .proDetailsCenter .item h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .part02 .w80 .proDetailsCenter .item h3 em {
  display: block;
  color: #003994;
  font-size: 20px;
  transform: rotateY(180deg);
  margin-right: 10px;
}
.product_details .main .part02 .w80 .proDetailsCenter .item p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.product_details .main .other {
  overflow: hidden;
  margin-bottom: 120px;
}
.product_details .main .other .t_box {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 30px;
}
.product_details .main .other .t_box .title {
  padding: 20px 40px;
  background-color: #003994;
  display: inline-block;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #dfdfdf;
}
.product_details .main .other .t_box .title h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-top: 0;
}
.product_details .main .other div ul li {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.product_details .main .other div ul li .img img {
  width: 100%;
}
.product_details .main .other div ul li .txt {
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.product_details .main .other div ul li .txt p {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
.product_details .main .other div ul li .txt i {
  font-size: 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .product_details .main .part01 .center {
    padding: 30px;
  }
  .product_details .main .part01 .center .right .t_title h3 {
    font-size: 24px;
  }
  .product_details .main .part01 .center .right .t_title p {
    font-size: 16px;
  }
  .product_details .main .part01 .center .right {
    padding-bottom: 0px;
  }
  .product_details .main .part01 .center .right .t_item p {
    font-size: 16px;
  }
  .product_details .main .part01 .center .left .img {
    height: 400px;
  }
  .product_details .main .part02 .w80 .proDetailsTitle .item {
    padding: 14px 40px;
  }
  .product_details .main .part02 .w80 .proDetailsTitle .item h3 {
    font-size: 16px;
  }
  .product_details .main .other .t_box .title h3 {
    font-size: 16px;
  }
  .product_details .main .other .t_box .title {
    padding: 14px 40px;
  }
  .product_details .main .part01 .center .right .t_item {
    margin-top: 16px;
  }
  .product_details .main .part01 .center .right .t_title {
    margin-bottom: 40px;
  }
  .product_details .main .part01 .center .right .changeBtn div {
    width: 100%;
  }
  .product_details .main .part01 .center .right .changeBtn .next {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 992px) {
  .product_details .main .part01 .center .left {
    width: 100%;
  }
  .product_details .main .part01 .center .right {
    width: 100%;
    margin-top: 40px;
  }
  .product_details .main .part01 .center {
    padding: 20px;
  }
  .product_details .main .part01 .center .right .changeBtn .next {
    margin-left: 0;
    margin-top: 20px;
  }
  .product_details .main .part01 .center .right .t_title p {
    line-height: 1.2;
  }
  .product_details .main .part01 .center .left .img {
    height: 230px;
  }
  .product_details .main .part01 {
    margin-top: 90px;
  }
  .product_details .main .part01 .center .right .t_title h3 {
    font-size: 20px;
  }
  .product_details .main .part01 .center .right .changeBtn div {
    width: 100%;
  }
  .product_details .main .part01 .center .right .t_item {
    margin-top: 14px;
  }
  .product_details .main .part01 .center .right .t_title {
    margin-bottom: 24px;
  }
}
.news .main {
  min-height: 500px;
}
.news .main .part01 ul li {
  border-bottom: 1px solid #dfdfdf;
  padding: 30px 0;
  transition: all 1s ease;
}
.news .main .part01 ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part01 ul li a .date {
  width: 6%;
}
.news .main .part01 ul li a .date h2 {
  font-size: 68px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.news .main .part01 ul li a .date p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news .main .part01 ul li a .text {
  width: 54%;
}
.news .main .part01 ul li a .text h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}
.news .main .part01 ul li a .text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 60px;
}
.news .main .part01 ul li a .text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 20px;
  font-size: 16px;
  font-family: "lianwei";
  color: #db0b00;
}
.news .main .part01 ul li a .text span i {
  margin-right: 8px;
}
.news .main .part01 ul li a .img {
  width: 28%;
  height: 0;
  overflow: hidden;
  padding-bottom: 248px;
}
.news .main .part01 ul li a .img img {
  width: 100%;
  transition: all 2s ease;
}
.news .main .part01 ul li:hover {
  background-color: #f1f1f1;
}
.news .main .part01 ul li:hover a .img img {
  transform: scale(1.2);
}
@media screen and (max-width: 1440px) {
  .news .main .top .title h1 {
    font-size: 56px;
  }
  .news .main .part01 ul li a .img {
    padding-bottom: 190px;
    width: 26%;
  }
  .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: 14px;
    width: 180px;
    height: 40px;
  }
  .news .main .part01 ul li a .text span img {
    width: 50px;
  }
  .news .main .part01 ul li a .text span::after {
    background-size: contain;
  }
  .news .main .part01 ul li {
    padding: 24px 0;
  }
  .news .main .part01 ul li a .date {
    width: 7%;
  }
  .news .main .part01 ul li a .date h2 {
    font-size: 52px;
  }
  .news .main .part01 ul li a .date p {
    font-size: 15px;
  }
  .news .main .part01 ul li a .text {
    width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .news .main .top .title {
    margin-top: 70px;
  }
  .news .main .top .title h1 {
    font-size: 20px;
  }
  .news .main .part01 ul li a .text p {
    display: none;
  }
  .news .main .part01 ul li a .date {
    display: none;
  }
  .news .main .part01 ul li a .img {
    width: 44%;
    padding-bottom: 110px;
  }
  .news .main .part01 ul li a .text span {
    height: 18px;
  }
  .news .main .part01 ul li a .text h3 {
    font-size: 16px;
    font-weight: 400;
  }
  .news .main .part01 {
    margin-top: 0px;
  }
}
.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: 32px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .share {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 40px;
}
.news_details .main .n_center .ct .detailed .sub2 .share p {
  font-size: 14px;
  margin: 0 10px;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content {
  text-align: center;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
  text-align: left;
}
.news_details .main .n_center .ct .detailed .sub2 .news_content img {
  display: block;
  width: initial;
  margin: 0 auto;
}
.news_details .main .n_center .ct .detailed .sub2 .np {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
}
.news_details .main .n_center .ct .detailed .sub2 .np div {
  width: 49.4%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  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 {
  font-size: 16px;
  color: #000;
  line-height: 40px;
  font-weight: normal;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@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%;
    padding: 20px;
  }
  .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;
    height: 40px;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news_details .mt-100 {
    margin-top: 70px;
  }
  .news_details .main .n_center .ct .detailed > .n_title h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content img {
    width: 100%;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np {
    flex-wrap: wrap;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div {
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
    justify-content: flex-start;
    padding-left: 20px;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div i {
    display: none;
  }
  .news_details .main .n_center .ct .detailed .sub2 .np div a {
    line-height: 1;
  }
  .news_details .main .n_center .ct .detailed .sub2 .news_content p {
    font-size: 15px;
  }
}
.case .main .w80 .content {
  margin-top: 80px;
  min-height: 300px;
}
.case .main .w80 .content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.case .main .w80 .content ul li {
  width: 24%;
  margin-bottom: 40px;
  margin-right: 1.3%;
}
.case .main .w80 .content ul li:nth-of-type(4n) {
  margin-right: 0;
}
.case .main .w80 .content ul li .img {
  border: 1px solid #dfdfdf;
  box-sizing: border-box;
  padding: 6px;
}
.case .main .w80 .content ul li .img img {
  width: 100%;
}
.case .main .w80 .content ul li .txt {
  background-color: #003994;
}
.case .main .w80 .content ul li .txt p {
  font-size: 16px;
  color: #fff;
  line-height: 52px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .case .main .w80 .content {
    margin-top: 40px;
  }
  .case .main .w80 .content ul li .txt p {
    line-height: 46px;
    font-size: 14px;
  }
  .case .main .w80 .pageList {
    padding-bottom: 70px;
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .case .main .w80 .content ul li {
    width: 100%;
  }
}
.contact .main {
  background-color: #f1f1f1;
  overflow: hidden;
}
.contact .main .contact_sub1 {
  margin-top: 60px;
}
.contact .main .contact_sub1 .w80 {
  padding-bottom: 16px;
}
.contact .main .contact_sub1 .w80 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 6px;
}
.contact .main .contact_sub1 .w80 ul li {
  width: 24%;
  border: 1px solid #e6e6e6;
  height: 300px;
  box-sizing: border-box;
  padding: 0 30px;
  box-shadow: 2px 4px 0 #003994;
  background-color: #fff;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  cursor: pointer;
}
.contact .main .contact_sub1 .w80 ul li .c_icon {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  border-bottom: 1px dashed #cacaca;
  padding-bottom: 16px;
}
.contact .main .contact_sub1 .w80 ul li .c_icon i {
  font-size: 38px;
  color: #003994;
  transition: all 0.5s ease;
  display: inline-block;
}
.contact .main .contact_sub1 .w80 ul li .text {
  width: 100%;
  margin-top: 20px;
}
.contact .main .contact_sub1 .w80 ul li .text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}
.contact .main .contact_sub1 .w80 ul li .text p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}
.contact .main .contact_sub1 .w80 ul li:nth-child(4) .img {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.contact .main .contact_sub1 .w80 ul li:nth-child(4) .img img {
  width: 64%;
  margin: 0 auto;
}
.contact .main .contact_sub1 .w80 ul li:nth-child(4) .text {
  margin-top: 16px;
}
.contact .main .contact_sub1 .w80 ul li:nth-child(4) .text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.contact .main .contact_sub1 .w80 ul li:hover {
  box-shadow: 6px 12px 0 #003994;
}
.contact .main .contact_sub1 .w80 ul li:hover .c_icon i {
  transform: rotateY(180deg);
  font-size: 42px;
}
.contact .main .contact_bottom {
  margin-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.contact .main .contact_bottom .w80 .right {
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 50px;
  border-radius: 0px;
}
.contact .main .contact_bottom .w80 .right .sub1 p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 30px;
}
.contact .main .contact_bottom .w80 .right .sub1 h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}
.contact .main .contact_bottom .w80 .right .sub2 {
  margin-top: 60px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item {
  margin-bottom: 14px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 {
  width: 49%;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
  padding-left: 24px;
}
.contact .main .contact_bottom .w80 .right .sub2 .sub2_item button {
  width: 100%;
  height: 50px;
  border: none;
  background-color: #003994;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  .contact .main .contact_sub1 .w80 ul li {
    height: 220px;
  }
  .contact .main .contact_sub1 .w80 ul li .text p {
    font-size: 15px;
  }
  .contact .main .contact_sub1 .w80 ul li .text h3 {
    font-size: 16px;
    font-weight: 700;
  }
  .contact .main .contact_sub1 .w80 ul li:nth-child(4) .text h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 700;
  }
  .contact .main .contact_bottom {
    margin-top: 50px;
  }
  .contact .main .contact_bottom .w80 .right .sub1 h3 {
    font-size: 18px;
  }
  .contact .main .contact_sub1 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .contact_sub1 .w80 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact .main .contact_bottom .w80 .right {
    padding: 24px;
  }
  .contact .main .contact_bottom {
    margin-top: 30px;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item {
    width: 100%;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box1 {
    width: 100%;
    margin-bottom: 16px;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(1) .sub2_item_box2 {
    width: 100%;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box1 {
    width: 100%;
    margin-bottom: 16px;
  }
  .contact .main .contact_bottom .w80 .right .sub2 .sub2_item:nth-of-type(2) .sub2_item_box2 {
    width: 100%;
  }
}
