* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "DINOT-BOLD";
  src: url(../fonts/DINOT-BOLD.OTF);
}
:root {
  --color: #da251c;
  --color2: #da251c82;
}

body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, "Microsoft Yahei", sans-serif;
  color: #333;
}

img {
  object-fit: cover;
}

ul,
li {
  list-style: none;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

p {
  margin: 0;
  line-height: 28px;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.blank1 {
  padding: 75px 0;
}

.blank2 {
  padding: 100px 0;
}

.modular_title1 {
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
}
.modular_title1 > h1 {
  font-size: 38px;
  color: var(--color);
  font-weight: bold;
  font-family: Impact;
}
.modular_title1 > h2 {
  font-size: 30px;
  color: var(--color);
}

.modular_breadcrumb1 {
  border-bottom: #efefef 1px solid;
}
.modular_breadcrumb1 > .container {
  display: flex;
  justify-content: space-between;
}
.modular_breadcrumb1 > .container > ul {
  display: flex;
  align-items: center;
  height: 75px;
}
.modular_breadcrumb1 > .container > .left > li > a {
  display: block;
  text-align: center;
  width: 135px;
  height: 75px;
  line-height: 75px;
  font-size: 15px;
  margin-right: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
  color: #333;
}
.modular_breadcrumb1 > .container > .left > li > a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color);
  transition: all 0.3s ease-in-out;
}
.modular_breadcrumb1 > .container > .left > li > a:hover,
.modular_breadcrumb1 > .container > .left > li > .active {
  color: var(--color);
}
.modular_breadcrumb1 > .container > .left > li > a:hover::before,
.modular_breadcrumb1 > .container > .left > li > .active::before {
  width: 100%;
}
.modular_breadcrumb1 > .container > .right > li {
  margin: 0 5px;
}
.modular_breadcrumb1 > .container > .right > li > a {
  color: #848282;
  font-size: 12px;
}
.modular_breadcrumb1 > .container > .right > i {
  color: #848282;
  font-size: 10px;
}
.modular_breadcrumb1 > .container > .right > i:nth-child(1) {
  font-size: 16px;
}

.modular_list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}
.modular_list1 > li > a {
  display: flex;
  flex-direction: column;
  height: 300px;
  background: #fff;
  position: relative;
}
.modular_list1 > li > a > .img {
  font-size: 0;
  overflow: hidden;
}
.modular_list1 > li > a > .img > img {
  width: 100%;
  height: 300px;
  transition: all 0.3s;
}
.modular_list1 > li > a > .text {
  padding: 5px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modular_list1 > li > a > .text > p {
  line-height: 40px;
  transition: all 0.3s ease;
  color: #fff;
}
.modular_list1 > li > a > .text > p + p {
  font-size: 12px;
}
.modular_list1 > li > a > .text > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #a0a1a2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}
.modular_list1 > li > a:hover > .img > img {
  transform: scale(1.02);
}
.modular_list1 > li > a:hover > .text > p {
  color: var(--color);
}
.modular_list1 > li > a:hover > .text > i {
  transform: rotate(0deg);
  border: 1px solid var(--color);
  color: var(--color);
}

.modular_page_box {
  text-align: center;
}
.modular_page_box > a {
  padding: 0 14px;
  height: 34px;
  line-height: 34px;
  display: inline-block;
  border: 1px solid #ddd;
  margin: 0 4px;
  color: #444;
  font-size: 12px;
  -moz-transition: all 0.36s ease-in-out;
  -webkit-transition: all 0.36s ease-in-out;
  -o-transition: all 0.36s ease-in-out;
  -ms-transition: all 0.36s ease-in-out;
  transition: all 0.36s ease-in-out;
}
.modular_page_box > a:hover,
.modular_page_box > .active {
  background-color: var(--color);
  color: #fff;
}

header {
  height: 100px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
header > nav {
  height: 100%;
}
header > nav > div {
  height: 100%;
  display: flex;
}
header > nav > div > .logo {
  display: flex;
  align-items: center;
  width: 25%;
}
header > nav > div > .logo > a {
  font-size: 0;
}
header > nav > div > .logo > a > img {
  height: 50px;
}
header > nav > div > .menu {
  display: flex;
  align-items: center;
  width: 75%;
}
header > nav > div > .menu > ul {
  display: flex;
  width: 100%;
  height: 100%;
}
header > nav > div > .menu > ul > li {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
header > nav > div > .menu > ul > li > a {
  color: #474749;
}
header > nav > div > .menu > ul > li > ul {
  min-width: 100%;
  position: absolute;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.7607843137);
  border-radius: 5px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
  height: 0;
}
header > nav > div > .menu > ul > li > ul > li {
  width: 150px;
  white-space: nowrap;
  height: 0;
  line-height: 45px;
  transition: height 0.3s ease-in-out;
  opacity: 0;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}
header > nav > div > .menu > ul > li > ul > li > a {
  font-size: 14px;
}
header > nav > div > .menu > ul > li > ul > li:hover {
  background-color: var(--color);
}
header > nav > div > .menu > ul > li > ul > li:hover > a {
  color: #fff;
}
header > nav > div > .menu > ul > li > ul > li:nth-child(1) {
  margin-top: 10px;
}
header > nav > div > .menu > ul > li > ul > li:last-child {
  margin-bottom: 10px;
}
header > nav > div > .menu > ul > li > ul::before {
  display: none;
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid var(--color);
}
header > nav > div > .menu > ul > li::before {
  content: "";
  position: absolute;
  bottom: 0%;
  width: 0;
  height: 2px;
  background-color: var(--color);
  transition: all 0.3s ease-in-out;
}
header > nav > div > .menu > ul > li:hover::before {
  width: 100%;
}
header > nav > div > .menu > ul > li:hover > a {
  color: var(--color);
}
header > nav > div > .menu > ul > li:hover > ul {
  height: auto;
}
header > nav > div > .menu > ul > li:hover > ul > li {
  height: 45px;
  opacity: 1;
}
header > nav > div > .menu > ul > li:hover > ul::before {
  display: block;
}
header > nav > div > .menu > ul > div {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
header > nav > div > .menu > ul > div > img {
  width: 17px;
  margin-right: 10px;
}
header > nav > div > .menu > ul > div > P {
  white-space: nowrap;
  font-weight: bold;
  font-size: 18px;
  font-family: "DINOT-BOLD";
  letter-spacing: 1px;
  color: var(--color);
}

footer > .top {
  padding: 70px 0 70px;
  background-color: #f3f4f7;
}
footer > .top > div > div > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer > .top > div > div > div > .nav {
  width: 750px;
  display: flex;
}
footer > .top > div > div > div > .nav > li {
  flex: 1;
}
footer > .top > div > div > div > .nav > li > a {
  font-size: 16px;
  color: #696969;
  display: block;
  width: 100%;
  margin-bottom: 33px;
  font-weight: bold;
}
footer > .top > div > div > div > .nav > li > a:hover {
  color: var(--color);
}
footer > .top > div > div > div > .nav > li > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer > .top > div > div > div > .nav > li > ul > li {
  width: 100%;
  line-height: 38px;
}
footer > .top > div > div > div > .nav > li > ul > li > a {
  font-size: 14px;
}
footer > .top > div > div > div > .nav > li > ul > li > a:hover {
  color: var(--color);
}
footer > .top > div > div > div > .nav > li:last-child {
  flex: 2;
}
footer > .top > div > div > div > .nav > li:last-child > ul > li {
  width: 50%;
}
footer > .top > div > div > div > .contact > h4 {
  font-size: 26px;
  font-family: OPPOSANS-H;
  margin: 20px 0 8px;
}
footer > .top > div > div > div > .contact > p {
  white-space: nowrap;
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer > .top > div > div > div > .contact > p > img {
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
footer > .top > div > div > div > .contact > p > span {
  display: block;
  width: 100%;
  color: var(--color);
  font-size: 30px;
  font-family: impact;
  margin-bottom: 10px;
  font-weight: normal;
}
footer > .top > div > div > div > .contact > p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
}
footer > .top > div > div > div > .contact > .wechat {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
footer > .top > div > div > div > .contact > .wechat > img {
  width: 100px;
  height: 100px;
}
footer > .top > div > div > div > .contact > .wechat > p {
  padding-left: 15px;
  text-align: center;
  font-size: 14px;
}
footer > .bottom {
  padding: 15px 0;
  background-color: #e3e4e7;
}
footer > .bottom > div > div > div {
  text-align: center;
}
footer > .bottom > div > div > div > p {
  font-size: 14px;
}
footer > .bottom > div > div > div > p > a {
  font-size: 14px;
}

.banner1 {
  padding-top: 80px;
}
.banner1 > .swiper-container1 {
  position: relative;
}
.banner1 > .swiper-container1 > .swiper-wrapper {
  width: 100%;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide {
  height: 700px;
  position: relative;
  overflow: hidden;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: scale(1);
  transition: all 5s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 50%;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .img_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container {
  height: 100%;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row {
  height: 100%;
  position: relative;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s ease;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div > h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 100px;
  color: #fff;
  text-align: center;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide > .container > .row > div > p {
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  white-space: nowrap;
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide-active > .img {
  transform: scale(1.1);
}
.banner1 > .swiper-container1 > .swiper-wrapper > .swiper-slide-active > .container > .row > div {
  transform: translateY(-50%);
  opacity: 1;
}
.banner1 > .swiper-container1 > .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.banner1 > .swiper-container1 > .swiper-pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  background-color: var(--color);
}
.banner1 > .swiper-container1 > .swiper-button-white {
  background-size: 20px;
  width: 70px;
  height: 70px;
}
.banner1 > .swiper-container1 > .swiper-button-next {
  right: 0;
  transition: all 0.5s ease;
}
.banner1 > .swiper-container1 > .swiper-button-next:hover {
  background-color: var(--color);
}
.banner1 > .swiper-container1 > .swiper-button-prev {
  left: 0;
  transition: all 0.5s ease;
}
.banner1 > .swiper-container1 > .swiper-button-prev:hover {
  background-color: var(--color);
}

.banner2 {
  padding-top: 100px;
}
.banner2 > div {
  position: relative;
  height: 360px;
  font-size: 0;
  overflow: hidden;
  display: flex;
}
.banner2 > div > img {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  animation: banner2_1 1s linear forwards;
}
.banner2 > div > .text {
  position: absolute;
  top: 50px;
  left: 50px;
  text-align: center;
  transform: translateY(50%);
  animation: banner2_2 1s linear forwards 1s;
  opacity: 0;
  color: var(--color);
}
.banner2 > div > .text > h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}
.banner2 > div > .text > p {
  font-size: 18px;
}

@keyframes banner2_1 {
  to {
    transform: scale(1);
  }
}
@keyframes banner2_2 {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.banner3 {
  padding-top: 100px;
}
.banner3 > div {
  position: relative;
  height: 360px;
  font-size: 0;
  overflow: hidden;
  display: flex;
}
.banner3 > div > .text {
  width: 50%;
  animation: banner2_2 1s linear forwards 1s;
  opacity: 0;
  color: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner3 > div > .text > h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}
.banner3 > div > .text > p {
  font-size: 18px;
}
.banner3 > div > img {
  width: 65%;
  flex-shrink: 0;
  object-fit: contain;
}

.index1 {
  background: url(../images/index_bj1.jpg) left top no-repeat;
}
.index1 > .container {
  display: flex;
  justify-content: space-between;
}
.index1 > .container > .left > .img {
  margin-bottom: 20px;
}
.index1 > .container > .left > .img > img {
  max-width: 100%;
}
.index1 > .container > .left .title {
  display: flex;
  justify-content: space-around;
}
.index1 > .container > .left .title > div {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  background-color: var(--color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.index1 > .container > .left .title > div::after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  position: absolute;
  border: 5px solid #fff;
}
.index1 > .container > .left > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.index1 > .container > .left > ul > li {
  margin-top: 20px;
  display: inline-block;
  line-height: 50px;
  border-radius: 15px;
  padding: 0 30px;
  background-color: var(--color);
  color: #fff;
  font-weight: bold;
}
.index1 > .container > .right {
  max-width: 700px;
}
.index1 > .container > .right > h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.index1 > .container > .right > P {
  margin-bottom: 20px;
}
.index1 > .container > .right > ul {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.index1 > .container > .right > ul > li > div {
  display: flex;
  justify-content: center;
}
.index1 > .container > .right > ul > li > div > img {
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.index1 > .container > .right > ul > li > div > b {
  font-size: 48px;
  color: #a0a1a2;
}
.index1 > .container > .right > ul > li > div > div {
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.index1 > .container > .right > ul > li > div > div > span {
  display: block;
  margin-bottom: 12px;
}
.index1 > .container > .right > ul > li:hover > div > img {
  transform: translateY(-5px);
}
.index1 > .container > .right > ul > li:nth-child(2n) > div > b {
  color: var(--color);
}

.index2 {
  background-color: #f3f4f4;
}
.index2 > .container > .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
}
.index2 > .container > .row > li > a {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
.index2 > .container > .row > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 1s ease;
  opacity: 1;
  z-index: 1;
  transform: translateY(100%);
}
.index2 > .container > .row > li > a > .img {
  min-height: 0;
  font-size: 0;
  position: relative;
}
.index2 > .container > .row > li > a > .img > img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  object-fit: contain;
}
.index2 > .container > .row > li > a > .text,
.index2 > .container > .row > li > a > .text2 {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 10px 0;
  transition: all 0.5s ease;
      display: flex;
    flex-direction: column;
    align-items: center;
}
.index2 > .container > .row > li > a > .text > h2,
.index2 > .container > .row > li > a > .text2 > h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.5s ease;
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
    text-overflow: ellipsis;
}
.index2 > .container > .row > li > a > .text > span,
.index2 > .container > .row > li > a > .text2 > span {
  transition: all 0.5s ease;
  width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index2 > .container > .row > li:nth-child(3) > a > .text2 > span,
.index2 > .container > .row > li:nth-child(4) > a > .text2 > span,
.index2 > .container > .row > li:nth-child(3) > a > .text > span,
.index2 > .container > .row > li:nth-child(4) > a > .text > span{
  width: 170px;
}
.index2 > .container > .row > li > a > .text {
  position: absolute;
  padding: 10px;
}
.index2 > .container > .row > li > a > .text2 {
  opacity: 1;
}
.index2 > .container > .row > li > a > i {
  position: absolute;
  right: 24px;
  bottom: 24px;
  transform: rotate(270deg);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color);
  background: var(--color);
  border-radius: 50%;
  color: #fff;
  z-index: 2;
}
.index2 > .container > .row > li > a:hover::before {
  transform: translateY(0);
}
.index2 > .container > .row > li > a:hover > .img > img {
  transform: scale(1.02);
}
.index2 > .container > .row > li > a:hover > .text {
  opacity: 1;
}
.index2 > .container > .row > li > a:hover > .text > h2 {
  color: #fff;
}
.index2 > .container > .row > li > a:hover > .text > span {
  color: #fff;
}
.index2 > .container > .row > li > a:hover > i {
  background-color: var(--color);
  border: 1px solid var(--color);
  color: #fff;
}
.index2 > .container > .row > li:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.index2 > .container > .row > li:nth-child(1) > a {
  height: 700px;
}
.index2 > .container > .row > li:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 2;
  height: 350px;
  margin-bottom: 15px;
}
.index2 > .container > .row > li:nth-child(4),
.index2 > .container > .row > li:nth-child(3) {
  height: 335px;
}

.index3 {
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-attachment: fixed;
  position: relative;
}
.index3 > .container {
  position: relative;
  z-index: 1;
}
.index3 > .container > .row {
  display: flex;
  flex-direction: column;
}
.index3 > .container > .row > div {
  opacity: 0;
}

.index4 {
  background: url(../images/index_bj3.jpg) no-repeat;
  background-size: cover;
}
.index4 > .container > .tab_title > ul {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.index4 > .container > .tab_title > ul > li {
  padding: 0 45px;
  line-height: 45px;
  height: 45px;
  border-radius: 50px;
  border: 1px solid var(--color);
  color: var(--color);
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.index4 > .container > .tab_title > ul > .active {
  background-color: var(--color);
  color: #fff;
}
.index4 > .container > .tab_content > div {
  display: none;
}
.index4 > .container > .tab_content > .active {
  display: block;
}

.index5 > .container > .row {
  display: flex;
  justify-content: space-between;
}
.index5 > .container > .row > .left > ul,
.index5 > .container > .row > .right > ul {
  width: 340px;
}
.index5 > .container > .row > .left > ul > li,
.index5 > .container > .row > .right > ul > li {
  display: flex;
  margin-bottom: 70px;
}
.index5 > .container > .row > .left > ul > li > .icon,
.index5 > .container > .row > .right > ul > li > .icon {
  font-size: 0;
  margin-right: 10px;
}
.index5 > .container > .row > .left > ul > li > .text > h4,
.index5 > .container > .row > .right > ul > li > .text > h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.index5 > .container > .row > .center {
  width: 360px;
  position: relative;
}
.index5 > .container > .row > .center > .img {
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
}
.index5 > .container > .row > .center > .img > img {
  width: 100%;
  height: 100%;
  transition: all 0.7s ease;
}
.index5 > .container > .row > .center > .text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 85px;
  height: 85px;
}
.index5 > .container > .row > .center > .text > a {
  font-size: 14px;
  background-color: var(--color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.index5 > .container > .row > .center > .text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--color2);
  transform: scale(1.2);
  z-index: 0;
  transition: all 0.5s ease;
}
.index5 > .container > .row > .center > .text:hover::after {
  transform: scale(1.25);
}
.index5 > .container > .row > .center:hover > .img > img {
  transform: scale(1.02);
}

.index6 > .container > div {
  position: relative;
}
.index6 > .container > div > .swiper-container2 {
  overflow: hidden;
}
.index6 > .container > div > .swiper-container2 > .swiper-wrapper > .swiper-slide {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.index6 > .container > div > .swiper-container2 > .swiper-wrapper > .swiper-slide > img {
  width: 100px;
  height: 100px;
  object-fit: inherit;
}
.index6 > .container > div > .swiper-container2 > .swiper-wrapper > .swiper-slide > p {
  margin-top: 10px;
  white-space: nowrap;
}
.index6 > .container > div > .swiper-button {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.index6 > .container > div > .swiper-button > div {
  background-size: 16px;
  color: var(--color);
}
.index6 > .container > div > .swiper-button > .next2 {
  right: -40px;
}
.index6 > .container > div > .swiper-button > .prev2 {
  left: -40px;
}

.index7 {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  height: 400PX;
}
.index7 > .container {
  position: relative;
  z-index: 1;
  opacity: 0;
  display: none;
}
.index7 > .container > ul {
  display: flex;
  align-items: center;
  height: 100px;
}
.index7 > .container > ul > li {
  width: 25%;
  text-align: center;
}
.index7 > .container > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index7 > .container > ul > li > a > .icon {
  font-size: 0;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index7 > .container > ul > li > a > .icon > img {
  width: 28px;
  height: 28px;
  transition: all 1s ease;
  object-fit: contain;
}
.index7 > .container > ul > li > a > .text {
  padding-left: 20px;
}
.index7 > .container > ul > li > a > .text > h4 {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #fff;
}
.index7 > .container > ul > li > a > .text p {
  font-size: 14px;
  text-align: left;
  color: #fff;
}
.index7 > .container > ul > li > a:hover > .icon > img {
  transform: rotateY(360deg);
}

.about1 > .container > .content {
  display: flex;
}
.about1 > .container > .content > .left {
  flex-shrink: 0;
  width: 700px;
  margin-right: 50px;
}
.about1 > .container > .content > .left > p {
  margin-bottom: 10px;
  line-height: 30px;
}
.about1 > .container > .content > .right > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about2 {
  background: url(../images/index_bj3.jpg) no-repeat;
  background-size: cover;
}
.about2 > .container > .content > ul > li {
  width: 25%;
}
.about2 > .container > .content > ul > li > div > .img > img {
  width: 100%;
  height: 300px;
}
.about2 > .container > .content > ul > li > div > h2 {
  margin-top: 12px;
  font-size: 18px;
  transition: all 0.5s ease;
}
.about2 > .container > .content > ul > li > div > p {
  padding: 0;
  font-size: 15px;
}
.about2 > .container > .content > ul > li > div > .text {
  display: none;
}
.about2 > .container > .content > ul > li:hover > div > h2 {
  color: var(--color);
}
.about2 > .fixed {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
}
.about2 > .fixed > .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  display: flex;
}
.about2 > .fixed > .btn > .left {
  width: 360px;
  height: 440px;
  flex-shrink: 0;
}
.about2 > .fixed > .btn > .left > img {
  width: 100%;
  height: 100%;
}
.about2 > .fixed > .btn > .right {
  flex-grow: 1;
  padding-left: 50px;
  color: #fff;
}
.about2 > .fixed > .btn > .right > h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.about2 > .fixed > .btn > .right > h4 {
  font-size: 20px;
  margin-bottom: 20px;
}
.about2 > .fixed > .btn > .right > h6 {
  font-size: 16px;
  margin-bottom: 20px;
}
.about2 > .fixed > .btn > i {
  position: absolute;
  top: -50px;
  right: -50px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.about2 > .fixed > .btn > i:hover {
  transform: rotate(180deg);
}

.honors1 {
  background: url(../images/index_bj3.jpg) no-repeat;
  background-size: cover;
}
.honors1 > .container > .flex {
  display: flex;
  justify-content: space-between;
}
.honors1 > .container > .flex > .modular_title1 {
  width: auto;
  text-align: left;
}
.honors1 > .container > .flex > .icon > ul {
  display: flex;
}
.honors1 > .container > .flex > .icon > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
}
.honors1 > .container > .flex > .icon > ul > li p {
  white-space: nowrap;
}
.honors1 > .container > .flex > .icon > ul > li img {
  height: 48px;
  transition: all 0.5s ease;
}
.honors1 > .container > .flex > .icon > ul > li b {
  color: var(--color);
  font-size: 30px;
}
.honors1 > .container > .flex > .icon > ul > li:hover img {
  transform: translateY(-10px);
}
.honors1 > .container > .honors_list {
  padding-bottom: 30px;
}
.honors1 > .container > .honors_list > ul {
  margin-bottom: 20px;
  display: grid;
}
.honors1 > .container > .honors_list > ul > li {
  width: 100%;
}
.honors1 > .container > .honors_list > ul > li > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.honors1 > .container > .honors_list > ul > li > a > div {
  font-size: 0;
  overflow: hidden;
}
.honors1 > .container > .honors_list > ul > li > a > div > img {
  width: 100%;
  height: 100%;
}
.honors1 > .container > .honors_list > ul > li > a > p {
  margin-top: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.honors1 > .container > .honors_list > ul > li > a:hover {
  border: 2px solid var(--color);
}
.honors1 > .container > .honors_list > ul > li > a:hover > p {
  color: var(--color);
}
.honors1 > .container > .honors_list > .honors_list1 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.honors1 > .container > .honors_list > .honors_list2 {
  grid-template-columns: repeat(5, 224px);
  gap: 16px;
}
.honors1 > .container > .honors_list > .honors_list3 {
  grid-template-columns: repeat(6, 190px);
  gap: 12px;
}

.center1 > .container > .center_list {
  padding-bottom: 50px;
}
.center1 > .container > .center_list > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
}
.center1 > .container > .center_list > ul > li > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.center1 > .container > .center_list > ul > li > a > div {
  height: 300px;
  font-size: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.center1 > .container > .center_list > ul > li > a > div > img {
  width: 100%;
  height: 100%;
  transition: all 0.8s ease;
}
.center1 > .container > .center_list > ul > li > a > .info_top {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .left {
  width: 50%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .left > div {
  font-size: 0;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .left > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.7s ease;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right {
  width: 50%;
  padding: 0 10px;
  padding-right: 60px;
  font-size: 14px;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right > h2 {
  font-size: 20px;
  color: var(--color);
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.5s ease;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right > p {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
  height: 56px;
  overflow: hidden;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right > div {
  display: block;
  width: 115px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  background: var(--color);
  border-radius: 5px;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right > .text > p {
  line-height: 35px;
}
.center1 > .container > .center_list > ul > li > a > .info_top > .right > .text > p > span {
  font-weight: bold;
}
.center1 > .container > .center_list > ul > li > a > .info_top::after {
  content: "";
  display: block;
  width: 150%;
  height: 100%;
  position: absolute;
  right: 130%;
  top: 0;
  background: var(--color);
  z-index: -1;
  transition: 0.5s;
  transform: skewX(-15deg);
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.center1 > .container > .center_list > ul > li > a > .active > .left > div > img {
  transform: scale(1.1);
}
.center1 > .container > .center_list > ul > li > a > .active > .right > h2 {
  color: #fff;
}
.center1 > .container > .center_list > ul > li > a > .active > .right > p {
  color: #fff;
}
.center1 > .container > .center_list > ul > li > a > .active > .right > div {
  background-color: #fff;
  color: var(--color);
}
.center1 > .container > .center_list > ul > li > a > .active::after {
  right: 60%;
}
.center1 > .container > .center_list > ul > li > a > p {
  position: relative;
  font-size: 15px;
  transition: all 0.3s ease;
  z-index: 2;
  color: #333;
  padding: 25px;
  text-align: center;
}
.center1 > .container > .center_list > ul > li > a:hover > .info_top > .left > div > img {
  transform: scale(1.1);
}
.center1 > .container > .center_list > ul > li > a:hover > p {
  color: var(--color);
}

.center2 {
  margin-bottom: 50px;
}
.center2 > .container {
  width: 100%;
}
.center2 > .container > .center_list > ul {
  display: flex;
  flex-direction: column;
}
.center2 > .container > .center_list > ul > li {
  background-color: #eff2f7;
  padding: 75px 0;
}
.center2 > .container > .center_list > ul > li > a {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.center2 > .container > .center_list > ul > li > a > div {
  width: 50%;
  flex-grow: 1;
}
.center2 > .container > .center_list > ul > li > a > .img {
  overflow: hidden;
  height: 400px;
}
.center2 > .container > .center_list > ul > li > a > .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s ease;
}
.center2 > .container > .center_list > ul > li > a > .img:hover > img {
  transform: scale(1.1);
}
.center2 > .container > .center_list > ul > li > a > .text {
  padding-left: 50px;
}
.center2 > .container > .center_list > ul > li > a > .text > h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color);
}
.center2 > .container > .center_list > ul > li > a > .text > p {
  line-height: 35px;
  margin-bottom: 10px;
}
.center2 > .container > .center_list > ul > li > a > .text > span {
  display: inline-block;
  background-color: var(--color);
  color: #fff;
  font-size: 16px;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  margin-top: 50px;
  border: 1px solid var(--color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}
.center2 > .container > .center_list > ul > li > a > .text > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.3s ease;
}
.center2 > .container > .center_list > ul > li > a > .text > span:hover {
  color: var(--color);
}
.center2 > .container > .center_list > ul > li > a > .text > span:hover::before {
  width: 100%;
}
.center2 > .container > .center_list > ul > li:nth-child(2n) {
  background-color: #fff;
}
.center2 > .container > .center_list > ul > li:nth-child(2n) > a {
  flex-direction: row-reverse;
}
.center2 > .container > .center_list > ul > li:nth-child(2n) > a > .text {
  padding-left: 0;
  padding-right: 50px;
}

.center1_info .container > .info_top {
  display: flex;
}
.center1_info .container > .info_top > .left {
  flex-shrink: 0;
  width: 500px;
  height: 500px;
  position: relative;
}
.center1_info .container > .info_top > .left > div {
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.center1_info .container > .info_top > .left > div img {
  width: 100%;
  height: 100%;
  transition: all 0.7s ease;
}
.center1_info .container > .info_top > .left > div:hover > img {
  transform: scale(1.02);
}
.center1_info .container > .info_top > .right {
  flex-grow: 1;
  padding-left: 50px;
  font-size: 14px;
}
.center1_info .container > .info_top > .right > h2 {
  font-size: 26px;
  color: var(--color);
  margin-bottom: 50px;
  text-align: left;
}
.center1_info .container > .info_top > .right > p {
  margin-bottom: 10px;
}
.center1_info .container > .info_top > .right > .text > p {
  line-height: 35px;
}
.center1_info .container > .info_top > .right > .text > p > span {
  font-weight: bold;
}
.center1_info .container > .info_bottom {
  /*display: grid;*/
  /*grid-template-columns: repeat(4, 1fr);*/
  /*gap: 20px 100px;*/
  padding-top: 70px;
}
.center1_info .container > .info_bottom img{
    width: auto;
    max-width: 100%;
}
.center1_info .container > .info_bottom > a > img {
  width: 100%;
  height: 100%;
}
.center1_info .container > .info_img {
  margin-top: 50px;
}
.center1_info .container > .info_img > img {
  width: 100%;
}
.center1_info .container > .swiper {
  margin-top: 50px;
  position: relative;
}
.center1_info .container > .swiper > h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div {
  position: relative;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div > .case_img {
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div > .case_img > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
  opacity: 0;
  z-index: 1;
  transition: all 0.8s ease;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div > .case_img > img {
  width: 100%;
  height: 200px;
  transition: all 0.8s ease;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div > .case_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.8s ease;
  transform: translateY(100%);
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div > p {
  position: relative;
  width: 100%;
  text-align: center;
  bottom: 0;
  padding: 20px 0;
  color: #333;
  transition: all 0.3s ease;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div:hover > .case_img > i {
  opacity: 1;
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div:hover > .case_img > img {
  transform: scale(1.1);
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div:hover > .case_img::after {
  transform: translateY(0);
}
.center1_info .container > .swiper > .swiper-container > .swiper-wrapper > .swiper-slide > div:hover > p {
  color: var(--color);
}
.center1_info .container > .swiper > .swiper-button {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.center1_info .container > .swiper > .swiper-button > div {
  background-size: 16px;
  color: var(--color);
}
.center1_info .container > .swiper > .swiper-button > .next2 {
  right: -40px;
}
.center1_info .container > .swiper > .swiper-button > .prev2 {
  left: -40px;
}

.case1 > .container > .case_list {
  margin-bottom: 50px;
}

.case1_info > .container > .content > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
.case1_info > .container > .content > ul > li > a {
  display: flex;
  flex-direction: column;
}
.case1_info > .container > .content > ul > li > a > .img {
  font-size: 0;
  overflow: hidden;
}
.case1_info > .container > .content > ul > li > a > .img > img {
  width: 100%;
  height: 590px;
  transition: all 0.8s;
}
.case1_info > .container > .content > ul > li > a > p {
  padding: 20px;
  font-size: 16px;
  line-height: 30px;
  color: var(--color);
}
.case1_info > .container > .content > ul > li > a:hover > .img > img {
  transform: scale(1.02);
}

/*# sourceMappingURL=index.css.map */
