@charset "UTF-8";
/* 关于我们 */
.top-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 60px;
  z-index: 1;
}
.top-banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.top-banner .title {
  color: #ffffff;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
}

.page-nav {
  padding: 20px 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-nav .nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-nav .nav-list .nav-item {
  font-weight: bold;
  display: inline-block;
  margin: 0 35px;
  font-size: 18px;
}

.story {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.story .bgi {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  padding: 120px 140px 0;
}
.story .story-left {
  height: 100%;
  width: 66%;
}
.story .story-left .story-content {
  width: 100%;
  height: auto;
  color: #ffffff;
}
.story .story-left .story-content .title {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: bold;
}
.story .story-left .story-content .text {
  display: block;
  width: 66%;
  height: auto;
  font-size: 16px;
  line-height: 36px;
}
.story .story-right {
  height: 100%;
  width: 34%;
  color: #ffffff;
  position: relative;
}
.story .story-right .video-play-box {
  width: 420px;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: -210px;
  top: 30vh;
}
.story .story-right .video-play-box .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  line-height: 60px;
  text-align: center;
  color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.story .story-right .video-play-box .play-btn::after {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  top: -10px;
  left: -10px;
  position: absolute;
  border: solid 1px #ffffff;
}
.story .story-right .video-play-box .play-btn::before {
  content: "";
  display: block;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  position: absolute;
  border: solid 1px #ffffff;
}
.story .story-right .word {
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  bottom: 8vh;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}

.culture {
  width: 100%;
  height: 820px;
  box-sizing: border-box;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 110px 160px 0;
}
.culture .title-box .title {
  font-size: 42px;
  font-weight: bold;
}
.culture .culture-list {
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 100px;
}
.culture .culture-list .culture-item {
  display: block;
  height: 33.333%;
  width: 100%;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
  padding: 50px 30px;
  margin-right: 20px;
}
.culture .culture-list .culture-item .icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
.culture .culture-list .culture-item .icon .iconfont {
  font-size: 34px;
}
.culture .culture-list .culture-item .sub-title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 70px;
}
.culture .culture-list .culture-item .content {
  margin-top: 20px;
  font-size: 16px;
  color: #999999;
}

.road {
  width: 100%;
  height: auto;
}
.road img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.honor {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  padding: 110px 160px 0;
  position: relative;
}
.honor .title-box {
  position: relative;
  z-index: 2;
}
.honor .title-box .title {
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
}
.honor .honor-swiper {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --swiper-navigation-sides-offset: 20px;
}
.honor .honor-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.honor .honor-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.honor .honor-swiper .honor-button {
  border-radius: 50%;
  background-color: #ffffff;
  width: 70px;
  height: 70px;
  color: #333333;
  transition: 300ms;
}
.honor .honor-swiper .honor-button.swiper-button-prev::before {
  transform: rotateZ(180deg);
}
.honor .honor-swiper .honor-button::before {
  font-size: 24px;
}
.honor .honor-swiper .honor-button:after {
  display: none !important;
}
.honor .honor-swiper .honor-button:hover {
  color: #ffffff;
  background-color: var(--color-primary);
}
.honor .honor-swiper .honor-pagination .swiper-pagination-bullet {
  background-color: #333333;
}

.brand {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  padding: 110px 160px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.brand .title-box {
  position: relative;
  z-index: 2;
}
.brand .title-box .title {
  font-size: 42px;
  font-weight: bold;
}
.brand .brand-swiper {
  margin-top: 110px;
}
.brand .brand-swiper .swiper-slide {
  width: 650px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
}
.brand .brand-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand .brand-swiper .brand-button {
  border-radius: 50%;
  background-color: #ffffff;
  width: 70px;
  height: 70px;
  color: #333333;
  transition: 300ms;
}
.brand .brand-swiper .brand-button.swiper-button-prev::before {
  transform: rotateZ(180deg);
}
.brand .brand-swiper .brand-button::before {
  font-size: 24px;
}
.brand .brand-swiper .brand-button:after {
  display: none !important;
}
.brand .brand-swiper .brand-button:hover {
  color: #ffffff;
  background-color: var(--color-primary);
}
.brand .brand-swiper .brand-pagination .swiper-pagination-bullet {
  background-color: #333333;
}

.news {
  background-color: #ffffff;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 160px 0;
}
.news .news-container {
  width: 100%;
  height: auto;
}
.news .news-container .news-title {
  width: 100%;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
.news .news-container .news-title .title {
  font-size: 36px;
  font-weight: bold;
}
.news .news-container .news-title .more-news {
  color: #333333;
  font-size: 16px;
  transition: 300ms;
}
.news .news-container .news-title .more-news:hover {
  color: var(--color-primary);
}
.news .news-container .news-title .more-news .iconfont {
  margin-right: 5px;
}
.news .news-container .news-flex {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .news-container .news-flex .news-swiper {
  height: 540px;
  width: 835px;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  background-color: #aaa;
}
.news .news-container .news-flex .news-swiper .news-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  bottom: 26px;
  padding-right: 20px;
  pointer-events: none;
}
.news .news-container .news-flex .news-swiper .news-pagination .swiper-pagination-bullet {
  transition: background 300ms;
  pointer-events: auto;
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: unset;
  border: solid 1px #ffffff;
}
.news .news-container .news-flex .news-swiper .news-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.news .news-container .news-flex .news-swiper .news-swiper-item {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.news .news-container .news-flex .news-swiper .news-swiper-item .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  color: #ffffff;
}
.news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 220px);
  height: auto;
}
.news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text .date {
  font-size: 18px;
  font-family: "Century Gothic";
  color: var(--color-primary);
}
.news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text .title {
  line-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
}
.news .news-container .news-flex .news-list {
  width: calc(100% - 40px - 835px);
  height: 540px;
}
.news .news-container .news-flex .news-list .news-item {
  width: 100%;
  height: auto;
  border-bottom: solid 2px #bdb9b4;
  padding-bottom: 28px;
  display: block;
  position: relative;
}
.news .news-container .news-flex .news-list .news-item:not(:first-child) {
  padding-top: 27.6px;
}
.news .news-container .news-flex .news-list .news-item:hover .date {
  color: var(--color-primary);
}
.news .news-container .news-flex .news-list .news-item:hover .date::after {
  width: 100px !important;
}
.news .news-container .news-flex .news-list .news-item:hover .arrow {
  color: var(--color-primary);
  border: solid 1px var(--color-primary) !important;
}
.news .news-container .news-flex .news-list .news-item .news-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  color: #333333;
}
.news .news-container .news-flex .news-list .news-item .news-link .date {
  transition: 300ms;
  width: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: "Century Gothic";
  flex-shrink: 0;
}
.news .news-container .news-flex .news-list .news-item .news-link .date::after {
  transition: 300ms;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
}
.news .news-container .news-flex .news-list .news-item .news-link .date .month-day {
  font-size: 28px;
  font-weight: bold;
}
.news .news-container .news-flex .news-list .news-item .news-link .date .year {
  font-size: 18px;
}
.news .news-container .news-flex .news-list .news-item .news-link .title {
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "Microsoft JhengHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  font-size: 18px;
}
.news .news-container .news-flex .news-list .news-item .news-link .arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 50%;
  transition: 300ms;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px transparent;
}

.partner {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 120px 160px;
  position: relative;
  background-color: #ffffff;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.partner .title-box {
  position: relative;
  z-index: 2;
}
.partner .title-box .title {
  font-size: 42px;
  font-weight: bold;
}
.partner .partner-list {
  width: calc(100% + 20px);
  margin-top: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.partner .partner-list .partner-item {
  width: calc(20% - 20px);
  height: 144px;
  box-sizing: border-box;
  margin: 0px 20px 20px 0;
  background-color: #ffffff;
  padding: 18px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.partner .partner-list .partner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1100px) {
  .top-banner {
    height: auto;
    min-height: 380px;
    padding: 0 40px 0;
  }
  .top-banner .background {
    width: 100%;
    height: 100%;
  }
  .top-banner .title {
    font-size: 24px !important;
  }
  .page-nav {
    padding: 0;
  }
  .page-nav .nav-list {
    padding: 20px;
    white-space: nowrap;
    overflow: auto;
  }
  .page-nav .nav-list .nav-item {
    margin: 0 5px;
  }
  .page-nav .nav-list .nav-item a {
    font-weight: bold;
    font-size: 14px;
  }
  .story {
    flex-direction: column;
    height: auto;
  }
  .story .story-left {
    width: 100%!important;
    height: auto;
    padding: 30px 15px 120px;
  }
  .story .story-left .story-content .title {
    margin-bottom: 0;
    font-size: 20px;
  }
  .story .story-left .story-content .text {
    width: 100%;
    line-height: 24px;
    font-size: 14px;
    margin-top: 20px;
  }
  .story .story-right {
    display: none;
    width: 100%;
    padding: 0;
    height: 150px;
  }
  .story .story-right .video-play-box {
    width: 120px;
    height: 120px;
    left: unset;
    top: -60px;
    left: 50%;
  }
  .story .story-right .video-play-box .play-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .story .story-right .word {
    box-sizing: border-box;
    padding-right: 30px;
    text-align: right;
    font-size: 24px;
    bottom: 40px;
  }
  .culture {
    height: auto;
    padding: 30px 15px;
  }
  .culture .culture-list {
    width: 100%;
    margin-top: 20px;
    display: block;
  }
  .culture .culture-list .culture-item {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    padding: 20px 30px;
  }
  .culture .culture-list .culture-item .icon {
    width: 48px;
    height: 48px;
  }
  .culture .culture-list .culture-item .icon .iconfont {
    font-size: 24px;
  }
  .culture .culture-list .culture-item .sub-title {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .title-box .title {
    font-size: 20px !important;
  }
  .honor {
    padding: 30px 15px;
  }
  .honor .honor-swiper .honor-button {
    width: 30px;
    height: 30px;
  }
  .honor .honor-swiper .honor-button::before {
    font-size: 12px;
  }
  .brand {
    padding: 30px 15px;
    height: 600px;
  }
  .brand .brand-swiper {
    margin-top: 30px;
  }
  .news {
    height: auto;
    padding: 30px 15px;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  .news .news-list {
    height: auto !important;
  }
  .news .news-container {
    width: 100% !important;
    box-sizing: border-box;
  }
  .news .news-container .news-title {
    margin-bottom: 20px !important;
  }
  .news .news-container .news-title .title {
    font-size: 20px !important;
  }
  .news .news-container .news-flex {
    flex-direction: column;
  }
  .news .news-container .news-flex .news-swiper {
    width: 100% !important;
    height: 200px !important;
  }
  .news .news-container .news-flex .news-swiper .news-swiper-item {
    width: 100% !important;
  }
  .news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text {
    width: calc(100% - 190px) !important;
  }
  .news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text .date {
    font-size: 14px !important;
  }
  .news .news-container .news-flex .news-swiper .news-swiper-item .mask .mask-text .title {
    font-size: 16px !important;
  }
  .news .news-container .news-flex .news-swiper .news-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    border: solid 1px #ffffff;
  }
  .news .news-container .news-flex .news-list {
    padding-top: 20px;
    width: 100% !important;
  }
  .news .news-container .news-flex .news-list .news-item {
    padding-bottom: 18px !important;
  }
  .news .news-container .news-flex .news-list .news-item:not(:first-child) {
    padding-top: 18px !important;
  }
  .news .news-container .news-flex .news-list .news-item:last-child {
    border-bottom: unset !important;
  }
  .news .news-container .news-flex .news-list .news-item .date {
    width: 70px !important;
  }
  .news .news-container .news-flex .news-list .news-item .date .month-day {
    font-size: 18px !important;
  }
  .partner {
    padding: 30px 15px;
  }
  .partner .partner-list {
    margin-top: 30px;
    width: 100%;
  }
  .partner .partner-list .partner-item {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 15px;
    height: 144px;
  }
  .partner .partner-list .partner-item:nth-child(2n) {
    margin-right: 0;
  }
}