@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  line-height: 100px;
  height: 100px;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
header > div {
  line-height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header > div .logo {
  width: 36%;
}
header > div .logo .logo_text a h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  font-family: "jad";
}
header > div .logo .logo_text a h3 span {
  color: #f9960c;
}
header > div .logo .logo_text a p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
header > div nav {
  width: 64%;
  line-height: inherit;
}
header > div nav ul {
  width: 100%;
  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.2%;
  z-index: 999;
  transition: all 1s;
}
header > div nav ul li:hover {
  background-color: #f2f2f2;
}
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: #f2f2f2;
}
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: #f9960c;
}
header > div nav ul li .menu .menu_item:hover a {
  color: #fff;
}
header.active {
  background-color: #ffffff;
}
header.active > div .logo .logo_text h3 {
  color: #000;
}
header.active > div .logo .logo_text p {
  color: #000;
}
header.active > div nav ul li a {
  color: #333;
}
@media screen and (max-width: 1440px) {
  header {
    height: 90px;
    line-height: 90px;
  }
  header > div .logo .logo_text a h3 {
    font-size: 26px;
  }
  header > div .logo .logo_text a p {
    font-size: 15px;
  }
  header > div nav ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  header {
    display: none;
  }
}
footer {
  width: 100%;
  height: 780px;
  background-color: #1c1c1c;
  position: relative;
}
footer .top {
  width: 100%;
  position: absolute;
  top: -60px;
  left: 0;
}
footer .top .w80 {
  height: inherit;
  background-color: #fff;
  padding: 90px;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left {
  width: 42%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .logo {
  margin-bottom: 50px;
}
footer .top .w80 .left .l_sub1 .logo .logo_text a h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
  font-family: "jad";
}
footer .top .w80 .left .l_sub1 .logo .logo_text a h3 span {
  color: #f9960c;
}
footer .top .w80 .left .l_sub1 .logo .logo_text a p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
footer .top .w80 .left .l_sub1 .tel .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .tel .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #f9960c;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .tel .t_top .t_icon i {
  color: #fff;
  font-size: 14px;
}
footer .top .w80 .left .l_sub1 .tel .t_top .txt {
  margin-left: 6px;
}
footer .top .w80 .left .l_sub1 .tel .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .left .l_sub1 .tel .t_bottom {
  margin-top: 8px;
}
footer .top .w80 .left .l_sub1 .tel .t_bottom h1 {
  font-size: 30px;
  color: #f9960c;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
}
footer .top .w80 .left .l_sub1 .email {
  margin-top: 30px;
}
footer .top .w80 .left .l_sub1 .email .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .email .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #f9960c;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .email .t_top .t_icon i {
  color: #fff;
  font-size: 12px;
}
footer .top .w80 .left .l_sub1 .email .t_top .txt {
  margin-left: 6px;
}
footer .top .w80 .left .l_sub1 .email .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .left .l_sub1 .email .t_bottom {
  margin-top: 8px;
}
footer .top .w80 .left .l_sub1 .email .t_bottom p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  opacity: 0.8;
}
footer .top .w80 .left .l_sub1 .email .t_bottom p span {
  display: block;
  min-width: 220px;
}
footer .top .w80 .left .l_sub1 .add {
  margin-top: 30px;
}
footer .top .w80 .left .l_sub1 .add .t_top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .add .t_top .t_icon {
  width: 24px;
  height: 24px;
  background-color: #f9960c;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .left .l_sub1 .add .t_top .t_icon i {
  color: #fff;
  font-size: 13px;
}
footer .top .w80 .left .l_sub1 .add .t_top .txt {
  margin-left: 6px;
}
footer .top .w80 .left .l_sub1 .add .t_top .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .left .l_sub1 .add .t_bottom {
  margin-top: 8px;
}
footer .top .w80 .left .l_sub1 .add .t_bottom p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  opacity: 0.8;
}
footer .top .w80 .left .l_sub1 .add .t_bottom p span {
  display: block;
  min-width: 220px;
}
footer .top .w80 .left .l_sub2 .item {
  margin-bottom: 16px;
}
footer .top .w80 .left .l_sub2 .item .img img {
  width: initial;
}
footer .top .w80 .left .l_sub2 .item .txt {
  margin-top: 6px;
}
footer .top .w80 .left .l_sub2 .item .txt p {
  font-size: 14px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
footer .top .w80 .right {
  width: 42%;
}
footer .top .w80 .right .title {
  margin-bottom: 20px;
}
footer .top .w80 .right .title h2 {
  font-size: 32px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
footer .top .w80 .right .title h2::after {
  margin-top: 16px;
  display: block;
  content: "";
  width: 68px;
  height: 1px;
  background-color: #f9960c;
}
footer .top .w80 .right .item {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .top .w80 .right .item input {
  width: 49%;
  border-bottom: 1px solid #dfdfdf;
  font-size: 15px;
  color: #333;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
}
footer .top .w80 .right .item button {
  width: 188px;
  height: 52px;
  background-color: #f9960c;
  color: #fff;
  border-radius: 6px;
}
footer .top .w80 .right .item:nth-of-type(4) input {
  width: 100%;
}
footer .top .w80 .right .item:nth-of-type(5) {
  margin-top: 40px;
}
footer .bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;
}
footer .bottom .w80 {
  background-image: url(/images/footer_line.jpg);
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w80 .b_left {
  width: 50%;
}
footer .bottom .w80 .b_left .b_l_top {
  width: 100%;
}
footer .bottom .w80 .b_left .b_l_top ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .bottom .w80 .b_left .b_l_top ul li a {
  font-size: 15px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  opacity: 0.4;
}
footer .bottom .w80 .b_left .b_l_bottom {
  margin-top: 24px;
}
footer .bottom .w80 .b_left .b_l_bottom a {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: right;
  opacity: 0.4;
}
footer .bottom .w80 .b_right p {
  margin-bottom: 20px;
  opacity: 0.4;
}
footer .bottom .w80 .b_right p a {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: right;
}
@media screen and (max-width: 1440px) {
  footer .top .w80 .left .l_sub1 .logo .logo_text a h3 {
    font-size: 24px;
  }
  footer .top .w80 .left .l_sub1 .logo .logo_text a p {
    font-size: 14px;
  }
  footer .top .w80 .left .l_sub1 .logo {
    margin-bottom: 30px;
  }
  footer .top .w80 .left .l_sub1 .tel .t_bottom h1 {
    font-size: 24px;
  }
  footer .top .w80 .left .l_sub1 .tel .t_top .txt h3 {
    font-size: 16px;
  }
  footer {
    height: 664px;
  }
  footer .top .w80 {
    padding: 50px;
  }
  footer .top .w80 .left {
    width: 46%;
  }
  footer .top .w80 .left .l_sub1 .email .t_bottom p {
    font-size: 14px;
  }
  footer .top .w80 .left .l_sub1 .add .t_bottom p {
    font-size: 14px;
  }
  footer .top .w80 .left .l_sub1 .email .t_top .txt h3 {
    font-size: 16px;
  }
  footer .top .w80 .left .l_sub1 .add .t_top .txt h3 {
    font-size: 16px;
  }
  footer .top .w80 .left .l_sub2 .item .txt p {
    font-size: 12px;
  }
  footer .top .w80 .right .title h2 {
    font-size: 22px;
  }
  footer .top .w80 .right .item input {
    font-size: 13px;
  }
  footer .top .w80 .right .item button {
    width: 178px;
    height: 46px;
  }
  footer .bottom .w80 .b_left .b_l_top ul li a {
    font-size: 14px;
  }
  footer .bottom .w80 .b_left .b_l_bottom {
    margin-top: 20px;
  }
  footer .bottom .w80 .b_right p a {
    font-size: 14px;
  }
  footer .bottom .w80 .b_left .b_l_bottom a {
    font-size: 14px;
  }
}
.index .part01 .w80 .top {
  margin-top: 96px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part01 .w80 .top .left h2 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  text-transform: uppercase;
  opacity: 0.06;
  margin-bottom: 10px;
}
.index .part01 .w80 .top .left h3 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
}
.index .part01 .w80 .top .right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .top .right ul li {
  width: 238px;
  height: 56px;
  margin-left: 16px;
  border-radius: 4px;
  background-color: #f2f2f2;
}
.index .part01 .w80 .top .right ul li.active {
  background-color: #f9960c;
}
.index .part01 .w80 .top .right ul li.active a span {
  border-left: 2px solid #fff;
  color: #fff;
}
.index .part01 .w80 .top .right ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .top .right ul li a span {
  padding-left: 10px;
  border-left: 2px solid #f9960c;
  font-size: 18px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part01 .w80 .bottom {
  position: relative;
}
.index .part01 .w80 .bottom ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(80px);
  opacity: 0;
  z-index: -1;
}
.index .part01 .w80 .bottom ul.active {
  transition: all 2s ease;
  position: static;
  transform: translateY(0);
  opacity: 1;
}
.index .part01 .w80 .bottom ul li {
  width: 32%;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 2%;
  margin-bottom: 30px;
}
.index .part01 .w80 .bottom ul li:nth-of-type(3n) {
  margin-right: 0;
}
.index .part01 .w80 .bottom ul li:nth-of-type(n + 4) {
  margin-bottom: 0;
}
.index .part01 .w80 .bottom ul li:hover .imgBox .mask {
  bottom: 0;
  opacity: 1;
}
.index .part01 .w80 .bottom ul li:hover .imgBox .mask .more i {
  animation: rotate 2s linear infinite;
  animation-delay: 0.6s;
}
.index .part01 .w80 .bottom ul li:hover .imgBox .img img {
  transform: scale(1.1);
}
.index .part01 .w80 .bottom ul li .imgBox {
  position: relative;
  overflow: hidden;
}
.index .part01 .w80 .bottom ul li .imgBox .img {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 350px;
}
.index .part01 .w80 .bottom ul li .imgBox .img img {
  width: 100%;
  transition: all 0.5s ease;
}
.index .part01 .w80 .bottom ul li .imgBox .mask {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index .part01 .w80 .bottom ul li .imgBox .mask .more {
  text-align: center;
}
.index .part01 .w80 .bottom ul li .imgBox .mask .more p {
  color: #f9960c;
  margin-top: 10px;
}
.index .part01 .w80 .bottom ul li .imgBox .mask .more i {
  display: block;
  color: #f9960c;
  font-size: 56px;
}
.index .part01 .w80 .bottom ul li .text {
  background-color: #f2f2f2;
}
.index .part01 .w80 .bottom ul li .text p {
  font-size: 18px;
  color: #000;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
.index .part02 {
  margin-top: 140px;
  width: 100%;
  height: 760px;
  background-image: url(/images/index_part02.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.index .part02 .title {
  margin-top: 140px;
}
.index .part02 .title h2 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "jad";
  text-transform: uppercase;
  opacity: 0.1;
}
.index .part02 .title h3 {
  margin-top: 18px;
  font-size: 42px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "jad";
  text-transform: uppercase;
}
.index .part02 .title p {
  margin-top: 18px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: center;
  letter-spacing: 6px;
}
.index .part02 .content {
  margin-top: 120px;
}
.index .part02 .content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part02 .content ul li {
  width: 25%;
  box-sizing: border-box;
  padding: 50px;
  position: relative;
  transition: all 0.5s ease;
  transform: translateY(0);
  cursor: pointer;
}
.index .part02 .content ul li:hover {
  transform: translateY(-30px);
}
.index .part02 .content ul li:hover h3 {
  color: #f9960c;
}
.index .part02 .content ul li:hover p {
  color: #f9960c;
}
.index .part02 .content ul li:hover img:nth-of-type(1) {
  display: none;
}
.index .part02 .content ul li:hover img:nth-of-type(2) {
  display: block;
}
.index .part02 .content ul li h3 {
  font-size: 30px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  margin-bottom: 14px;
}
.index .part02 .content ul li p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.index .part02 .content ul li img {
  margin-top: 12px;
}
.index .part02 .content ul li img:nth-of-type(2) {
  display: none;
}
.index .part02 .content ul li::after {
  display: block;
  content: "";
  width: 1px;
  height: 86px;
  opacity: 0.2;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -43px;
}
.index .part03 {
  background-image: url(/images/index_part03_bg.jpg);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-top: 140px;
}
.index .part03 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .left {
  width: 46%;
}
.index .part03 .w80 .left .title {
  margin-bottom: 44px;
}
.index .part03 .w80 .left .title h2 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.06;
  font-family: "jad";
  text-transform: uppercase;
  margin-bottom: 10px;
}
.index .part03 .w80 .left .title h3 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
}
.index .part03 .w80 .left .text p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-bottom: 24px;
}
.index .part03 .w80 .left .adv {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part03 .w80 .left .adv .item h1 {
  font-size: 48px;
  color: #f9960c;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 6px;
}
.index .part03 .w80 .left .adv .item p {
  font-size: 15px;
  color: #666;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part03 .w80 .left .more {
  margin-top: 70px;
  width: 250px;
  height: 56px;
  background-color: #f9960c;
  border-radius: 6px;
}
.index .part03 .w80 .left .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: #fff;
  line-height: 56px;
  font-weight: 100;
  text-align: left;
}
.index .part03 .w80 .left .more a img {
  width: initial;
  margin-left: 6px;
}
.index .part03 .w80 .right {
  width: 47%;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
}
.index .part03 .w80 .right .img {
  width: 100%;
  overflow: hidden;
}
.index .part03 .w80 .right .img:hover img {
  transform: scale(1.2);
}
.index .part03 .w80 .right .img img {
  float: left;
  width: 100%;
  transition: all 1s ease;
  cursor: pointer;
}
.index .part04 {
  background-image: url(/images/index_part04_bg.jpg);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-top: 180px;
  padding-bottom: 80px;
}
.index .part04 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .left {
  width: 47%;
  position: relative;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
}
.index .part04 .w80 .left a .img {
  width: 100%;
  overflow: hidden;
}
.index .part04 .w80 .left a .img:hover img {
  transform: scale(1.2);
}
.index .part04 .w80 .left a .img img {
  float: left;
  width: 100%;
  transition: all 1s ease;
  cursor: pointer;
}
.index .part04 .w80 .left a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 36px;
  box-sizing: border-box;
  background-color: rgba(249, 150, 12, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .left a .text .txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .left a .text .txt span {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}
.index .part04 .w80 .left a .text .txt p {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-left: 6px;
}
.index .part04 .w80 .left a .text .date p {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part04 .w80 .right {
  width: 47%;
}
.index .part04 .w80 .right .title {
  margin-bottom: 60px;
}
.index .part04 .w80 .right .title h2 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  opacity: 0.06;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.index .part04 .w80 .right .title h3 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  text-transform: uppercase;
}
.index .part04 .w80 .right .title h3 span {
  font-size: 16px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Arial;
}
.index .part04 .w80 .right .content .firstItem {
  padding-bottom: 20px;
  margin-top: 30px;
  border-bottom: 1px solid #dfdfdf;
}
.index .part04 .w80 .right .content .firstItem a .txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.index .part04 .w80 .right .content .firstItem a .txt h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  width: 70%;
  overflow: hidden;
}
.index .part04 .w80 .right .content .firstItem a .txt p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part04 .w80 .right .content .firstItem a .txt2 p {
  font-size: 16px;
  color: #999;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.index .part04 .w80 .right .content .item {
  padding: 20px 0;
  border-bottom: 1px solid #dfdfdf;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.index .part04 .w80 .right .content .item:hover {
  background-color: #f9960c;
  padding: 20px 10px;
}
.index .part04 .w80 .right .content .item:hover a .txt span {
  color: #fff;
}
.index .part04 .w80 .right .content .item:hover a .txt p {
  color: #fff;
}
.index .part04 .w80 .right .content .item:hover a .date p {
  color: #fff;
}
.index .part04 .w80 .right .content .item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .right .content .item a .txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part04 .w80 .right .content .item a .txt span {
  font-size: 32px;
}
.index .part04 .w80 .right .content .item a .txt p {
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  margin-left: 8px;
}
.index .part04 .w80 .right .content .item a .date p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.index .part05 {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 180px;
}
.index .part05 .w80 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.index .part05 .w80 .top .title h2 {
  font-size: 36px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  text-transform: uppercase;
  opacity: 0.06;
}
.index .part05 .w80 .top .title h3 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  margin-top: 12px;
}
.index .part05 .w80 .top .desc p {
  font-size: 20px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  letter-spacing: 4px;
}
.index .part05 .w80 .bottom {
  margin-top: 50px;
}
.index .part05 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom ul li {
  width: 31.6%;
  background-color: #f2f2f2;
  border-radius: 20px;
  box-shadow: 0px -8px 0px #f9960c;
  padding: 50px 60px;
  box-sizing: border-box;
  transition: all 1s ease;
}
.index .part05 .w80 .bottom ul li:hover {
  background-color: #f9960c;
  box-shadow: 0px -8px 0px #f2f2f2;
  cursor: pointer;
}
.index .part05 .w80 .bottom ul li:hover h1 {
  color: #fff;
}
.index .part05 .w80 .bottom ul li:hover .txt img:nth-of-type(2) {
  display: block;
}
.index .part05 .w80 .bottom ul li:hover .txt img:nth-of-type(1) {
  display: none;
}
.index .part05 .w80 .bottom ul li:hover .txt h2 {
  color: #fff;
}
.index .part05 .w80 .bottom ul li:hover p {
  color: #fff;
  opacity: 0.6;
}
.index .part05 .w80 .bottom ul li h1 {
  font-size: 60px;
  color: #f9960c;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.index .part05 .w80 .bottom ul li .txt {
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.index .part05 .w80 .bottom ul li .txt img:nth-of-type(1) {
  display: block;
}
.index .part05 .w80 .bottom ul li .txt img:nth-of-type(2) {
  display: none;
}
.index .part05 .w80 .bottom ul li .txt h2 {
  font-size: 24px;
  color: #f9960c;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-left: 10px;
}
.index .part05 .w80 .bottom ul li p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .index .part01 .w80 .top .right ul li {
    width: 178px;
    height: 50px;
  }
  .index .part01 .w80 .top .right ul li a span {
    font-size: 16px;
  }
  .index .part01 .w80 .top .left h3 {
    font-size: 34px;
  }
  .index .part01 .w80 .top .left h2 {
    font-size: 26px;
  }
  .index .part01 .w80 .bottom ul li .imgBox .img {
    padding-bottom: 240px;
  }
  .index .part01 .w80 .bottom ul li .text p {
    font-size: 16px;
    line-height: 50px;
  }
  .index .part02 {
    margin-top: 100px;
  }
  .index .part02 .title {
    margin-top: 80px;
  }
  .index .part02 .title h2 {
    font-size: 26px;
  }
  .index .part02 .title h3 {
    font-size: 32px;
    margin-top: 10px;
  }
  .index .part02 .content {
    margin-top: 80px;
  }
  .index .part02 .content ul li h3 {
    font-size: 24px;
  }
  .index .part02 {
    height: 580px;
  }
  .index .part03 .w80 .left .title h3 {
    font-size: 32px;
  }
  .index .part03 .w80 .left .title h2 {
    font-size: 26px;
  }
  .index .part03 .w80 .left .text p {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .index .part03 .w80 .left .title {
    margin-bottom: 16px;
  }
  .index .part03 .w80 .left .adv .item h1 {
    font-size: 38px;
  }
  .index .part03 .w80 .left .adv .item p {
    font-size: 13px;
  }
  .index .part03 .w80 .left .more {
    margin-top: 40px;
    width: 200px;
    height: 46px;
  }
  .index .part03 .w80 .left .more a {
    font-size: 13px;
    line-height: 46px;
  }
  .index .part03 {
    padding-top: 100px;
  }
  .index .part04 {
    padding-top: 120px;
  }
  .index .part04 .w80 .right .title h2 {
    font-size: 26px;
  }
  .index .part04 .w80 .right .title h3 {
    font-size: 32px;
  }
  .index .part04 .w80 .right .title h3 span {
    font-size: 15px;
  }
  .index .part04 .w80 .right .content .firstItem a .txt h3 {
    font-size: 16px;
  }
  .index .part04 .w80 .right .title {
    margin-bottom: 30px;
  }
  .index .part04 .w80 .right .content .firstItem a .txt {
    margin-bottom: 14px;
  }
  .index .part04 .w80 .right .content .firstItem a .txt2 p {
    font-size: 14px;
  }
  .index .part04 .w80 .right .content .item {
    padding: 10px 0;
  }
  .index .part04 .w80 .right .content .item a .txt p {
    font-size: 16px;
  }
  .index .part04 .w80 .right .content .item a .date p {
    font-size: 14px;
  }
  .index .part04 .w80 .right .content .firstItem a .txt p {
    font-size: 14px;
  }
  .index .part04 .w80 .left a .text .txt p {
    font-size: 16px;
  }
  .index .part04 .w80 .left a .text .date p {
    font-size: 14px;
  }
  .index .part04 .w80 .left a .text {
    height: 70px;
  }
  .index .part04 .w80 .left a .text {
    padding: 20px;
  }
  .index .part05 {
    padding-top: 40px;
    padding-bottom: 150px;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 26px;
  }
  .index .part05 .w80 .top .title h3 {
    font-size: 32px;
  }
  .index .part04 {
    padding-bottom: 60px;
  }
  .index .part05 .w80 .top .desc p {
    font-size: 18px;
  }
  .index .part05 .w80 .bottom ul li h1 {
    font-size: 42px;
  }
  .index .part05 .w80 .bottom ul li .txt h2 {
    font-size: 20px;
  }
  .index .part05 .w80 .bottom ul li .txt img {
    width: 22px;
  }
  .index .part05 .w80 .bottom ul li p {
    font-size: 15px;
  }
  .index .part05 .w80 .bottom ul li {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 992px) {
  .index .part01 .w80 .top .left h3 {
    font-size: 24px;
  }
  .index .part01 .w80 .top .left h2 {
    font-size: 18px;
  }
  .index .part01 .w80 .top .right {
    width: 100%;
    margin-top: 20px;
  }
  .index .part01 .w80 .top .right ul li {
    width: 32%;
    height: 40px;
    margin-left: 0;
  }
  .index .part01 .w80 .bottom ul li {
    width: 100%;
  }
  .index .part02 {
    background-size: cover;
    height: auto;
  }
  .index .part02 .title h3 {
    font-size: 24px;
  }
  .index .part02 .title h2 {
    font-size: 18px;
  }
  .index .part02 .title p {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .index .part02 .content ul li {
    width: 100%;
    padding: 30px;
  }
  .index .part02 .content {
    margin-top: 30px;
  }
  .index .part03 .w80 .left .title h3 {
    font-size: 24px;
  }
  .index .part03 .w80 .left .title h2 {
    font-size: 18px;
  }
  .index .part03 .w80 .left {
    width: 100%;
  }
  .index .part03 .w80 .left .adv .item {
    width: 48%;
    margin-bottom: 20px;
  }
  .index .part03 .w80 .right {
    width: 100%;
    display: none;
  }
  .index .part03 .w80 {
    flex-direction: row-reverse;
  }
  .index .part04 .w80 .left {
    width: 100%;
    border-radius: 30px 0 30px 0;
  }
  .index .part04 .w80 .right {
    width: 100%;
    margin-top: 40px;
  }
  .index .part04 .w80 .right .title h3 {
    font-size: 24px;
  }
  .index .part04 .w80 .right .title h2 {
    font-size: 18px;
  }
  .index .part04 .w80 .right .title h3 span {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .index .part04 .w80 .right .content .item a .date {
    display: none;
  }
  .index .part05 .w80 .top .title h2 {
    font-size: 18px;
  }
  .index .part05 .w80 .top .title h3 {
    font-size: 24px;
  }
  .index .part05 .w80 .top .desc {
    margin-top: 20px;
  }
  .index .part05 .w80 .top .desc p {
    font-size: 16px;
  }
  .index .part05 .w80 .bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .top .w80 .right {
    display: none;
  }
  footer .top .w80 .left {
    width: 100%;
  }
  footer .top .w80 .left .l_sub1 .logo .logo_text a h3 {
    font-size: 22px;
  }
  footer .top .w80 {
    padding: 30px;
  }
  .index .part05 {
    padding-bottom: 100px;
  }
  footer .bottom .w80 .b_left .b_l_top {
    display: none;
  }
  footer .bottom .w80 .b_left {
    width: 100%;
  }
  footer .bottom .w80 .b_right {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  footer .bottom {
    height: 140px;
  }
  footer .bottom .w80 {
    padding-top: 20px;
  }
  footer {
    height: 464px;
  }
}
.about .main {
  width: 100%;
  min-height: 600px;
}
.about .main .part01 {
  width: 100%;
  background-image: url(/images/aboutBg.jpg);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}
.about .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part01 .w80 .left {
  width: 46%;
}
.about .main .part01 .w80 .left .img {
  border-radius: 50px 0;
  overflow: hidden;
}
.about .main .part01 .w80 .left .img img {
  float: left;
  width: 100%;
}
.about .main .part01 .w80 .right {
  width: 47%;
}
.about .main .part01 .w80 .right .title {
  margin-bottom: 30px;
}
.about .main .part01 .w80 .right .title h3 {
  font-size: 36px;
  color: #f9960c;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about .main .part01 .w80 .right .title h2 {
  font-size: 42px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
}
.about .main .part01 .w80 .right .content p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.about .main .part02 .w80 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 ul li {
  height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about .main .part02 .w80 ul li .img img {
  width: initial;
}
.about .main .part02 .w80 ul li .txt {
  margin-left: 16px;
}
.about .main .part02 .w80 ul li .txt h1 {
  font-size: 40px;
  color: #f9960c;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 6px;
}
.about .main .part02 .w80 ul li .txt p {
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.about .main .part03 {
  width: 100%;
  height: 600px;
  background-image: url(/images/honorBg.jpg);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.about .main .part03 .w80 .title {
  margin-top: 120px;
  margin-bottom: 30px;
}
.about .main .part03 .w80 .title h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  opacity: 0.3;
  font-family: "jad";
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about .main .part03 .w80 .title h2 {
  font-size: 42px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
}
.about .main .part03 .w80 .txt {
  width: 60%;
}
.about .main .part03 .w80 .txt p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}
.about .main .part03 .w80 .more {
  margin-top: 70px;
  width: 220px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}
.about .main .part03 .w80 .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  line-height: 50px;
  font-weight: 100;
  text-align: left;
}
.about .main .part03 .w80 .more a img {
  width: initial;
  margin-left: 10px;
}
@media screen and (max-width: 1440px) {
  .about .main .part01 .w80 .right .title h2 {
    font-size: 32px;
  }
  .about .main .part01 .w80 .right .title h3 {
    font-size: 26px;
  }
  .about .main .part01 .w80 .right .content p {
    font-size: 14px;
  }
  .about .main .part01 {
    background-position: left top;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .about .main .part03 {
    height: 470px;
  }
  .about .main .part03 .w80 .title h3 {
    font-size: 26px;
  }
  .about .main .part03 .w80 .title h2 {
    font-size: 32px;
  }
  .about .main .part03 .w80 .title {
    margin-top: 90px;
  }
  .about .main .part03 .w80 .more {
    margin-top: 40px;
    width: 190px;
    height: 46px;
  }
  .about .main .part03 .w80 .txt p {
    font-size: 14px;
  }
  .about .main .part03 .w80 .more a {
    font-size: 13px;
    line-height: 46px;
  }
}
@media screen and (max-width: 992px) {
  .about .main .part01 .w80 .left {
    width: 100%;
  }
  .about .main .part01 .w80 .right {
    width: 100%;
  }
  .about .main .part01 .w80 .right .title {
    margin-top: 50px;
  }
  .about .main .part01 .w80 .right .title h3 {
    font-size: 18px;
  }
  .about .main .part01 .w80 .right .title h2 {
    font-size: 22px;
  }
  .about .main .part02 .w80 ul li {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
  }
  .about .main .part02 .w80 ul li .img {
    margin: 0 auto;
  }
  .about .main .part02 .w80 ul li .txt {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .about .main .part02 .w80 ul li .txt h1 {
    text-align: center;
    font-size: 24px;
  }
  .about .main .part02 .w80 ul li .txt p {
    text-align: center;
    font-size: 16px;
  }
  .about .main .part01 {
    padding-bottom: 20px;
  }
  .about .main .part03 {
    margin-top: 30px;
    background-size: cover;
    background-position: -540px 0px;
  }
  .about .main .part03 .w80 .txt {
    width: 100%;
  }
  .about .main .part03 .w80 .title h2 {
    font-size: 24px;
  }
  .about .main .part03 .w80 .title h3 {
    font-size: 18px;
  }
}
.honor .main {
  width: 100%;
  background-color: #f2f2f2;
  padding-top: 130px;
  padding-bottom: 160px;
}
.honor .main .part01 {
  min-height: 340px;
}
.honor .main .part01 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.honor .main .part01 .top .title {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.honor .main .part01 .top .title .t1 {
  width: 186px;
}
.honor .main .part01 .top .title .t1 h3 {
  font-size: 36px;
  color: #f9960c;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
  text-transform: uppercase;
  margin-bottom: 10px;
}
.honor .main .part01 .top .title .t1 h2 {
  font-size: 42px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: "jad";
}
.honor .main .part01 .top .title .t2 {
  width: calc(100% - 186px);
}
.honor .main .part01 .top .title .t2 p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
.honor .main .part01 .top .title.hj {
  width: 100%;
}
.honor .main .part01 .top .title.hj .t2 {
  width: 60%;
  margin-left: 30px;
}
.honor .main .part01 .top .changeBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.honor .main .part01 .top .changeBtn .item {
  width: 230px;
  height: 52px;
  background-color: #fff;
  border-radius: 6px;
  margin-left: 14px;
}
.honor .main .part01 .top .changeBtn .item p a {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 52px;
  font-weight: 400;
  text-align: center;
}
.honor .main .part01 .top .changeBtn .item.active {
  background-color: #f9960c;
}
.honor .main .part01 .top .changeBtn .item.active p a {
  color: #fff;
}
.honor .main .part01 .bottom ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.honor .main .part01 .bottom ul li {
  width: 24%;
  margin-bottom: 30px;
  margin-right: 1.3%;
}
.honor .main .part01 .bottom ul li:nth-of-type(4n) {
  margin-right: 0;
}
.honor .main .part01 .bottom ul li a .img {
  width: 100%;
}
.honor .main .part01 .bottom ul li a .img img {
  width: 100%;
}
.honor .main .part01 .bottom ul li a .text {
  background-color: #fff;
}
.honor .main .part01 .bottom ul li a .text p {
  font-size: 16px;
  color: #333;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .honor .main .part01 .top .title .t1 h3 {
    font-size: 26px;
  }
  .honor .main .part01 .top .title .t1 h2 {
    font-size: 32px;
  }
  .honor .main .part01 .top .title .t2 p {
    font-size: 15px;
    line-height: 1.5;
  }
  .honor .main .part01 .top .title .t1 {
    width: 136px;
  }
  .honor .main .part01 .top .title.hj .t2 {
    margin-bottom: -6px;
  }
  .honor .main .part01 .bottom ul li a .text p {
    line-height: 50px;
    font-size: 15px;
  }
  .honor .main {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
.honor_details .main {
  background-color: #f2f2f2;
  padding-bottom: 200px;
}
.honor_details .main .part01 {
  padding-top: 120px;
}
.honor_details .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.honor_details .main .part01 .w80 .left {
  width: 76%;
  background-color: #fff;
  padding: 74px 64px;
  box-sizing: border-box;
}
.honor_details .main .part01 .w80 .left .nd_title {
  margin-bottom: 30px;
}
.honor_details .main .part01 .w80 .left .nd_title h3 {
  font-size: 34px;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.honor_details .main .part01 .w80 .left .nd_tool {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.honor_details .main .part01 .w80 .left .nd_tool p {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  margin-right: 20px;
}
.honor_details .main .part01 .w80 .left .nd_body {
  margin-top: 40px;
}
.honor_details .main .part01 .w80 .left .nd_body p {
  font-size: 15px;
  color: #333;
  line-height: 2;
  font-weight: 100;
  text-align: left;
}
.honor_details .main .part01 .w80 .left .nd_body img {
  width: 100%;
}
.honor_details .main .part01 .w80 .left .nd_page {
  border-top: 1px solid #dfdfdf;
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_left .nd_pre {
  margin-bottom: 20px;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_left .nd_pre a {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_left .nd_next a {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_right a {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
  transition: box-shadow 0.5s #f9960c;
  background-color: #f9960c;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 54px;
  font-weight: 100;
  text-align: center;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_right a:hover::after {
  transform: scale(1.4);
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_right a:hover::before {
  transform: scale(1.8);
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_right a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  background-color: #f9960c;
  z-index: -1;
  opacity: 0.4;
}
.honor_details .main .part01 .w80 .left .nd_page .nd_page_right a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  background-color: #f9960c;
  z-index: -2;
  opacity: 0.2;
}
.honor_details .main .part01 .w80 .right {
  width: 21%;
  background-color: #fff;
}
.honor_details .main .part01 .w80 .right.fl {
  position: fixed;
  top: 120px;
  right: 8%;
  width: 17.6%;
  z-index: 0;
}
.honor_details .main .part01 .w80 .right .item .title {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 20px;
}
.honor_details .main .part01 .w80 .right .item .title h3 {
  margin-top: 30px;
  font-size: 24px;
  color: #f9960c;
  line-height: 60px;
  font-weight: 700;
  text-align: left;
}
.honor_details .main .part01 .w80 .right .item .box {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
.honor_details .main .part01 .w80 .right .item .box ul {
  width: 100%;
}
.honor_details .main .part01 .w80 .right .item .box ul li {
  width: 100%;
  margin: 20px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #dfdfdf;
}
.honor_details .main .part01 .w80 .right .item .box ul li a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.honor_details .main .part01 .w80 .right .item .box ul li a .img {
  width: 50%;
  height: 0;
  padding-bottom: 100px;
  overflow: hidden;
  margin-right: 20px;
}
.honor_details .main .part01 .w80 .right .item .box ul li a .img img {
  width: 100%;
}
.honor_details .main .part01 .w80 .right .item .box ul li a .text h3 {
  font-size: 16px;
  color: #666;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
}
.honor_details .main .part01 .w80 .right .item .box ul li a .text p {
  font-size: 13px;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .honor_details .main .part01 {
    padding-top: 100px;
  }
  .honor_details .main .part01 .w80 .left {
    padding: 54px 40px;
  }
  .honor_details .main .part01 .w80 .left .nd_title {
    margin-bottom: 12px;
  }
  .honor_details .main .part01 .w80 .left .nd_title h3 {
    font-size: 24px;
  }
  .honor_details .main .part01 .w80 .left .nd_tool p {
    font-size: 14px;
  }
  .honor_details .main .part01 .w80 .left .nd_page .nd_page_right a {
    font-size: 14px;
  }
  .honor_details .main .part01 .w80 .right .item .title h3 {
    font-size: 18px;
  }
  .honor_details .main .part01 .w80 .right .item .box ul li a .img {
    padding-bottom: 70px;
  }
  .honor_details .main .part01 .w80 .right .item .box ul li a .text h3 {
    font-size: 15px;
  }
  .honor_details .main .part01 .w80 .right .item .box ul li {
    margin: 16px 0;
  }
  .honor_details .main {
    padding-bottom: 140px;
  }
}
@media screen and (max-width: 992px) {
  .honor .main .part01 .top .title .t2 {
    display: none;
  }
  .honor .main .part01 .top .title .t1 h3 {
    font-size: 18px;
  }
  .honor .main .part01 .top .title .t1 h2 {
    font-size: 24px;
  }
  .honor .main .part01 .top .changeBtn {
    width: 100%;
    margin-top: 20px;
  }
  .honor .main .part01 .top .changeBtn .item {
    margin-left: 0;
    width: 50%;
    height: 46px;
  }
  .honor .main .part01 .top .changeBtn .item p a {
    line-height: 46px;
  }
  .honor .main .part01 .bottom ul li {
    width: 48%;
  }
  .honor_details .main .part01 .w80 .right {
    display: none;
  }
  .honor_details .main .part01 .w80 .left {
    width: 100%;
  }
  .honor_details .main {
    padding-bottom: 0;
  }
}
.shoufei .main {
  width: 100%;
  background-color: #f2f2f2;
  padding-top: 130px;
  padding-bottom: 180px;
}
.shoufei .main .w80 .title .t1 {
  width: 100%;
}
.shoufei .main .w80 .title .t1 h3 {
  font-size: 36px;
  color: #f9960c;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "jad";
  text-transform: uppercase;
  margin-bottom: 10px;
}
.shoufei .main .w80 .title .t1 h2 {
  font-size: 42px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  font-family: "jad";
}
.shoufei .main .w80 .title .t2 {
  margin: 30px auto 0;
  width: 80%;
}
.shoufei .main .w80 .title .t2 p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}
.shoufei .main .w80 .content {
  margin-top: 60px;
}
.shoufei .main .w80 .content .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.shoufei .main .w80 .content .item .img {
  width: 50%;
  border-radius: 50px 0;
  height: 0;
  padding-bottom: 480px;
}
.shoufei .main .w80 .content .item .img img {
  width: 100%;
}
.shoufei .main .w80 .content .item .text {
  width: 50%;
  padding: 70px;
  height: 480px;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.shoufei .main .w80 .content .item .text h2 {
  width: 100%;
  font-size: 56px;
  color: #f9960c;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 16px;
}
.shoufei .main .w80 .content .item .text h3 {
  width: 100%;
  font-size: 26px;
  color: #000;
  line-height: 1.8;
  font-weight: 700;
  text-align: left;
}
.shoufei .main .w80 .content .item .text p {
  width: 100%;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .shoufei .main .w80 .title .t1 h3 {
    font-size: 26px;
  }
  .shoufei .main .w80 .title .t1 h2 {
    font-size: 32px;
  }
  .shoufei .main .w80 .title .t2 p {
    font-size: 15px;
  }
  .shoufei .main .w80 .title .t2 {
    margin: 20px auto 0;
  }
  .shoufei .main {
    padding-top: 90px;
    padding-bottom: 140px;
  }
  .shoufei .main .w80 .content .item .text {
    height: 340px;
    padding: 50px;
  }
  .shoufei .main .w80 .content .item .img {
    padding-bottom: 340px;
  }
  .shoufei .main .w80 .content .item .text h2 {
    font-size: 46px;
  }
  .shoufei .main .w80 .content .item .text h3 {
    font-size: 20px;
  }
  .shoufei .main .w80 .content .item .text p {
    font-size: 16px;
    line-height: 1.5;
  }
  .shoufei .main .w80 .content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .shoufei .main .w80 .title .t1 h3 {
    font-size: 18px;
  }
  .shoufei .main .w80 .title .t1 h2 {
    font-size: 24px;
    width: 100%;
  }
  .shoufei .main .w80 .title .t2 {
    width: 100%;
  }
  .shoufei .main .w80 .content .item {
    margin-bottom: 20px;
  }
  .shoufei .main .w80 .content .item .img {
    display: none;
  }
  .shoufei .main .w80 .content .item .text {
    width: 100%;
    height: auto;
  }
}
.news .main {
  background-color: #f2f2f2;
  padding-bottom: 130px;
}
.news .main .part02 {
  padding-top: 120px;
}
.news .main .part02 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news .main .part02 .w80 .left {
  width: 76%;
}
.news .main .part02 .w80 .left ul li {
  margin-bottom: 24px;
  background-color: #fff;
  position: relative;
}
.news .main .part02 .w80 .left ul li:hover::after {
  width: 100%;
}
.news .main .part02 .w80 .left ul li:hover a .img img {
  transform: scale(1.2);
  transition: all 2s ease;
}
.news .main .part02 .w80 .left ul li:hover a .text h3 {
  color: #f9960c;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .left ul li::after {
  content: "";
  width: 0%;
  height: 4px;
  display: block;
  background-color: #f9960c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .left ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.news .main .part02 .w80 .left ul li a .img {
  width: 29%;
  height: 0;
  padding-bottom: 230px;
  overflow: hidden;
}
.news .main .part02 .w80 .left ul li a .img img {
  width: 100%;
}
.news .main .part02 .w80 .left ul li a .text {
  margin-left: 3%;
  width: 64%;
}
.news .main .part02 .w80 .left ul li a .text h3 {
  font-size: 20px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
.news .main .part02 .w80 .left ul li a .text p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .left ul li a .text span {
  display: block;
  margin-top: 40px;
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .right {
  width: 21%;
}
.news .main .part02 .w80 .right.fl {
  position: fixed;
  top: 120px;
  right: 8%;
  width: 17.6%;
  z-index: 0;
}
.news .main .part02 .w80 .right .item {
  margin-bottom: 50px;
  background-color: #fff;
}
.news .main .part02 .w80 .right .item .title {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 30px;
  background-color: #f9960c;
}
.news .main .part02 .w80 .right .item .title h3 {
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  font-weight: 700;
  text-align: left;
}
.news .main .part02 .w80 .right .item .box {
  border: 1px solid #dfdfdf;
}
.news .main .part02 .w80 .right .item .box ul li {
  margin: 12px;
  padding: 18px;
  transition: all 0.5s ease;
}
.news .main .part02 .w80 .right .item .box ul li:hover {
  background-color: #f9960c;
  box-shadow: 2px 2px 4px #d9d9d9;
}
.news .main .part02 .w80 .right .item .box ul li:hover a {
  color: #fff;
}
.news .main .part02 .w80 .right .item .box ul li a {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
.news .main .part02 .w80 .right .item .box {
  border: 1px solid #dfdfdf;
}
.news .main .part02 .w80 .right .item .box .box_sub1 {
  margin: 30px;
}
.news .main .part02 .w80 .right .item .box .box_sub1 p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .news .main .part02 .w80 .left ul li a .img {
    padding-bottom: 170px;
  }
  .news .main .part02 .w80 .left ul li a .text h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .news .main .part02 .w80 .left ul li a .text p {
    font-size: 14px;
    line-height: 1.5;
  }
  .news .main .part02 .w80 .left ul li a .text {
    width: 65%;
  }
  .news .main .part02 .w80 .left ul li a .text span {
    margin-top: 20px;
  }
  .news .main .part02 .w80 .left ul li a .img {
    padding-bottom: 160px;
  }
  .news .main .part02 .w80 .right .item .title h3 {
    font-size: 18px;
  }
  .news .main .part02 .w80 .right .item .box ul li a {
    font-size: 14px;
  }
  .news .main .part02 .w80 .right .item .box .box_sub1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .news .main .part02 .w80 .right {
    display: none;
  }
  .news .main .part02 .w80 .left {
    width: 100%;
  }
  .news .main .part02 .w80 .left ul li a .img {
    width: 100%;
    padding-bottom: 220px;
  }
  .news .main .part02 .w80 .left ul li a .text {
    width: 100%;
    padding: 20px;
  }
  .news .main .part02 {
    padding-top: 80px;
  }
}
.article .main {
  background-color: #f2f2f2;
  padding-bottom: 130px;
}
.article .main .part01 {
  padding-top: 120px;
}
.article .main .part01 .w80 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.article .main .part01 .w80 .left {
  width: 76%;
  background-color: #fff;
  padding: 74px 64px;
  box-sizing: border-box;
}
.article .main .part01 .w80 .left .nd_title {
  margin-bottom: 30px;
}
.article .main .part01 .w80 .left .nd_title h3 {
  font-size: 34px;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.article .main .part01 .w80 .left .nd_tool {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
.article .main .part01 .w80 .left .nd_tool p {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
  margin-right: 20px;
}
.article .main .part01 .w80 .left .nd_body {
  margin-top: 40px;
}
.article .main .part01 .w80 .left .nd_body p {
  font-size: 15px;
  color: #333;
  line-height: 2;
  font-weight: 100;
  text-align: left;
}
.article .main .part01 .w80 .left .nd_body img {
  width: 100%;
}
.article .main .part01 .w80 .left .nd_page {
  border-top: 1px solid #dfdfdf;
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.article .main .part01 .w80 .left .nd_page .nd_page_left .nd_pre {
  margin-bottom: 20px;
}
.article .main .part01 .w80 .left .nd_page .nd_page_left .nd_pre a {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
}
.article .main .part01 .w80 .left .nd_page .nd_page_left .nd_next a {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 100;
  text-align: left;
}
.article .main .part01 .w80 .left .nd_page .nd_page_right a {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
  transition: box-shadow 0.5s #f9960c;
  background-color: #f9960c;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  line-height: 54px;
  font-weight: 100;
  text-align: center;
}
.article .main .part01 .w80 .left .nd_page .nd_page_right a:hover::after {
  transform: scale(1.4);
}
.article .main .part01 .w80 .left .nd_page .nd_page_right a:hover::before {
  transform: scale(1.8);
}
.article .main .part01 .w80 .left .nd_page .nd_page_right a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  background-color: #f9960c;
  z-index: -1;
  opacity: 0.4;
}
.article .main .part01 .w80 .left .nd_page .nd_page_right a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  background-color: #f9960c;
  z-index: -2;
  opacity: 0.2;
}
.article .main .part01 .w80 .right {
  width: 21%;
  background-color: #fff;
}
.article .main .part01 .w80 .right.fl {
  position: fixed;
  top: 120px;
  right: 8%;
  width: 17.6%;
  z-index: 0;
}
.article .main .part01 .w80 .right .item .title {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0 20px;
}
.article .main .part01 .w80 .right .item .title h3 {
  margin-top: 30px;
  font-size: 24px;
  color: #f9960c;
  line-height: 60px;
  font-weight: 700;
  text-align: left;
}
.article .main .part01 .w80 .right .item .box {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
.article .main .part01 .w80 .right .item .box ul {
  width: 100%;
}
.article .main .part01 .w80 .right .item .box ul li {
  width: 100%;
  margin: 20px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #dfdfdf;
}
.article .main .part01 .w80 .right .item .box ul li a {
  width: 100%;
}
.article .main .part01 .w80 .right .item .box ul li a .img {
  width: 100%;
  height: 0;
  padding-bottom: 180px;
  overflow: hidden;
}
.article .main .part01 .w80 .right .item .box ul li a .img img {
  width: 100%;
}
.article .main .part01 .w80 .right .item .box ul li a .text {
  margin-top: 30px;
}
.article .main .part01 .w80 .right .item .box ul li a .text h3 {
  font-size: 16px;
  color: #666;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  margin-bottom: 8px;
}
.article .main .part01 .w80 .right .item .box ul li a .text p {
  font-size: 13px;
  color: #999;
  line-height: 1;
  font-weight: 100;
  text-align: left;
}
@media screen and (max-width: 1440px) {
  .article .main .part01 .w80 .right .item .title h3 {
    font-size: 18px;
  }
  .article .main .part01 {
    padding-top: 100px;
  }
  .article .main .part01 .w80 .left .nd_title h3 {
    font-size: 24px;
  }
  .article .main .part01 .w80 .left .nd_tool p {
    font-size: 14px;
  }
  .article .main .part01 .w80 .left .nd_body p {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .article .main .part01 .w80 .right {
    display: none;
  }
  .article .main .part01 .w80 .left {
    width: 100%;
    padding: 50px 30px;
  }
  .article .main .part01 {
    padding-top: 80px;
  }
  .article .main .part01 .w80 .left .nd_title h3 {
    font-size: 20px;
  }
}
.contact .main {
  background-color: #f2f2f2;
  padding-bottom: 160px;
}
.contact .main .part01 {
  padding-top: 120px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.contact .main .part01 .w80 {
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  padding-bottom: 80px;
}
.contact .main .part01 .w80 .top {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .top .left h3 {
  font-size: 32px;
  color: #333;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  margin-bottom: 16px;
}
.contact .main .part01 .w80 .top .left p {
  font-size: 16px;
  color: #333;
  line-height: 1;
  font-weight: 400;
  text-align: left;
}
.contact .main .part01 .w80 .top .right h2 {
  font-size: 32px;
  color: #f9960c;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .top .right p {
  font-size: 16px;
  color: #666;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  margin-bottom: 10px;
}
.contact .main .part01 .w80 .bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.contact .main .part01 .w80 .bottom ul li .left i {
  font-size: 38px;
  color: #f9960c;
}
.contact .main .part01 .w80 .bottom ul li .right {
  margin-left: 10px;
}
.contact .main .part01 .w80 .bottom ul li .right h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
}
.contact .main .part01 .w80 .bottom ul li .right p {
  margin-top: 4px;
  font-size: 15px;
  color: #333;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.contact .main .part02 .w80 {
  height: 560px;
  background-image: url(/images/ditu.jpg);
  background-position: center;
  border: 1px solid #c3c3c3;
  box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
  .contact .main .part01 {
    padding-top: 100px;
  }
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .contact .main .part01 .w80 .top .right h2 {
    font-size: 24px;
  }
  .contact .main .part01 .w80 .top .left p {
    font-size: 14px;
  }
  .contact .main .part01 .w80 .bottom ul li .right h3 {
    font-size: 16px;
  }
  .contact .main .part01 .w80 .bottom ul li .right p {
    font-size: 14px;
  }
  .contact .main .part01 .w80 .bottom ul li .left i {
    font-size: 32px;
  }
  .contact .main .part01 .w80 {
    padding-bottom: 60px;
  }
  .contact .main .part02 .w80 {
    height: 440px;
  }
  .contact .main {
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 992px) {
  .contact .main .part01 .w80 {
    padding: 30px;
  }
  .contact .main .part01 .w80 .top .left h3 {
    font-size: 18px;
  }
  .contact .main .part01 .w80 .top .left {
    margin-bottom: 30px;
  }
  .contact .main .part01 .w80 .top .right p {
    text-align: left;
  }
  .contact .main .part01 .w80 .bottom ul li {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .contact .main .part01 .w80 .bottom ul li .right {
    width: calc(100% - 60px);
  }
}
