/* 产品中心 */
.banner {
  width: 100%;
  height: 100%;
}

.banner img {
  width: 100%;
  height: auto;
}

.products-navigation {
  background-color: #222222;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-navigation .products-navigation-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  color: #fff;
}

.products-navigation .products-navigation-left .products-icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}

.products-navigation .products-navigation-left a {
  font-size: 18px;
  color: #fff;
}

.products-navigation .products-navigation-left span {
  font-size: 18px;
  color: #fff;
  margin: 0 5px;
  display: inline-block;
}

.products-navigation .products-navigation-right {
  padding: 10px;
}

.products-navigation .products-navigation-right .search-input {
  position: relative;
  width: 188px;
}

.products-navigation .products-navigation-right .search-input .layui-input {
  background-color: #414141 !important;
  border-radius: 20px;
  color: #fff !important;
  border: none !important;
}

.products-navigation .products-navigation-right .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  z-index: 3;
}

.products-box {
  padding: 40px 60px;
  width: 100%;
  box-sizing: border-box;
  background-color: #0c0c0c;
  display: flex;
}

.products-box .products-class {
  width: 18%;
  background-color: #2a2a2a;
  padding-top: 12px;
}

.products-box .products-class .products-title {
  padding: 20px;
  padding-bottom: 0;
  font-size: 32px;
  color: #fff;
}

.products-box .products-class ul {
  margin-top: 20px;
}

.products-box .products-class ul li {
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
}

.products-box .products-class ul li:hover {
  background-color: #e02783;
}

.products-box .products-class ul li a {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.products-box .products-class ul li a span {
  font-size: 18px;
  color: #fff;
}

.products-box .products-class ul li a .products-iconfont {
  font-size: 16px;
  color: #fff;
}

.select-products {
  background-color: #e02783;
}

.products-box .products-right {
  width: 80%;
}

.products-right .products-menu {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.products-right .products-menu .products-menu-page:hover {
  color: #e02783;
}

.products-right .products-menu a {
  margin: 6px;
  font-size: 16px;
  color: #fff;
}

.products-right .products-menu a .products-menu-iconfont {
  font-size: 16px;
  color: #333;
}

.products-right .products-menu .products-menu-num {
  background: linear-gradient(#dcdcdc, #ffffff) #dcdcdc;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  box-shadow: #bbb 0 0 0 1px inset, #000000 0 1px 3px 0 inset, #ffffff 0 1px 2px 0;
}

/* 第一种样式 */
.products-right .products-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 30px;
}

.products-right .products-list .products-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #59595926;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 6px;
}

.products-list .products-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
}

.products-right .products-list .products-item .products-item-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.products-list .products-item .products-item-box .products-introduction {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #e02783;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #333;
  border-radius: 3px;
  width: 100%;
}

.products-list .products-item .products-item-box .products-introduction .products-one {
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
  background-color: #e02783;
}

.products-list .products-item .products-item-box .products-introduction .products-two {
  font-size: 14px;
  color: #fff;
}

.products-list .products-item .products-item-box .products-title {
  padding: 0.5em 0;
  font-size: 16px;
  color: #fff;
}

.products-list .products-item .products-item-box .products-title a {
  padding: 0.5em 0;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.products-list .products-item .products-item-box .products-one-btn {
  display: none;
}


/* 第二种样式 */
.products-right .products-list-one {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 30px;
}

.products-right .products-list-one .products-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  background-color: #59595926;
  border-radius: 6px;
}

.products-list-one .products-item img {
  width: 144px;
  height: 144px;
  display: block;
}

.products-right .products-list-one .products-item .products-item-box {
  display: flex;
  height: 100%;
  margin-left: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.products-list-one .products-item .products-item-box .products-introduction {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #e02783;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #333;
  border-radius: 3px;
  width: 100%;
}

.products-list-one .products-item .products-item-box .products-introduction .products-one {
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
  background-color: #e02783;
}

.products-list-one .products-item .products-item-box .products-introduction .products-two {
  font-size: 14px;
  color: #fff;
  padding-right: 10px;
}

.products-list-one .products-item .products-item-box .products-title {
  padding: 0.5em 0;
  font-size: 16px;
  color: #fff;
}

.products-list-one .products-item .products-item-box .products-title a {
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.products-list-one .products-item .products-item-box .products-one-btn {
  width: 120px;
  height: 30px;
  background-color: #e02783;
  text-align: center;
  line-height: 30px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
  display: block;
  border-radius: 30px;
}

.products-list-one .products-item .products-item-box .products-one-btn a {
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.products-list-one .products-item .products-item-box .products-one-btn:hover {
  background-color: #fff;
}

.products-list-one .products-item .products-item-box .products-one-btn:hover a {
  color: #e02783;
}


/* 推荐产品 */
.products-recommend {
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
  background-color: #14151d;
}

.products-recommend .recommend-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.products-recommend .recommend-title .recommend-title-title {
  font-size: 28px;
  color: #fff;
}

.products-recommend .recommend-title .recommend-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.products-recommend .recommend-title .recommend-btn .recommend-btn-custom {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 1px solid #000;
}

.revommend-iconfont {
  font-size: 20px;
  color: #e02783;
  transition: all 0.3s ease-in-out;
}

.products-recommend .recommend-title .recommend-btn .recommend-btn-custom:hover {
  background-color: #e02783;
}

.products-recommend .recommend-title .recommend-btn .recommend-btn-custom:hover .revommend-iconfont {
  color: #fff;
}

.recommend-btn-custom+.recommend-btn-custom {
  margin-left: 20px;
}

.swiper-container {
  width: 100%;
  margin-top: 30px;
}

.swiper-container .products-slide {
  border-radius: 12px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.swiper-container .products-slide a {
  display: inline-flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.swiper-container .products-slide img {
  width: 100%;
  height: 300px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.swiper-container .products-slide .slide-title {
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  background-color: #333333;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.swiper-container .products-slide:hover {
  border: 1px solid #fff;
}

/* 产品详情 */
.products-details-box {
  padding: 20px 100px;
  background-color: #0c0c0c;
  width: 100%;
  box-sizing: border-box;
}

.products-details-box .products-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.products-details-box .products-bar a {
  color: #fff;
  font-size: 15px;
}

.products-details-box .products-bar span {
  margin: 0 5px;
  color: #fff;
}

.product-main {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
}

.product-details {
  width: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-details .mySwiper2 {
  width: 110px;
  height: 612px;
}

.product-details .shop-img {
  width: 102px;
  height: 102px;
  cursor: pointer;
}

.product-details .shop-img.active {
  border: 3px solid #e74c3c;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.product-details .shop-img img {
  width: 100%;
  height: 100%;
}

.product-details .product-prev {
  background-color: #11111180 !important;
  padding: 3px 0;
  border-radius: 4px;
  width: 51px;
  z-index: 9;
  text-align: center;
  cursor: pointer;
}

.product-details .product-next {
  background-color: #11111180 !important;
  padding: 3px 0;
  border-radius: 4px;
  width: 51px;
  z-index: 9;
  text-align: center;
  cursor: pointer;
}

.product-details .product-details-icon {
  font-size: 16px;
  color: #fff;
}

.product-main .img-shop {
  position: relative;
}

.product-main #image {
  width: 685px;
  height: 685px;
  cursor: pointer;
}

#zoom {
  display: none;
  position: absolute;
  right: -320px;
  top: 100px;
  border: 2px solid #000;
  width: 300px;
  height: 300px;
}

.shop-details {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shop-details .shop-tag {
  background-color: #e02783;
  border-radius: 3px;
  padding: 1px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.shop-details .shop-tag .shop-tag-name {
  padding: 5px 25px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.shop-details .shop-tag .shop-tag-two {
  padding: 5px 25px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  border-radius: 0 3px 3px 0;
}

.shop-details .shop-title {
  font-size: 30px;
  color: #fff;
  line-height: 35px;
  font-weight: 700;
  margin-top: 30px;
}

.shop-details .shop-remark {
  background-color: #222;
  padding: 20px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  margin-top: 45px;
}
.shop-details .shop-remark p{
  text-overflow: ellipsis;
}

.shop-details .shop-remark .shop-remark-btn {
  padding: 10px;
  margin-top: 10px;
}

.shop-details .shop-remark .shop-remark-btn a {
  font-size: 18px;
  color: #fff;
  text-decoration: underline;
}

.shop-details .shop-btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.shop-details .shop-btn .shop-btn-one {
  background-color: #ff6600;
  padding: 12px 24px;
}

.shop-details .shop-btn .shop-btn-one a {
  font-size: 22px;
  color: #fff;
}

.shop-details .shop-btn .shop-btn-one a .shop-btn-icon {
  font-size: 22px;
  color: #fff;
}

.shop-details .shop-btn .shop-btn-two {
  margin-left: 20px;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.shop-details .shop-btn .shop-btn-two a {
  font-size: 22px;
  color: #fff;
}

.shop-details .shop-btn .shop-btn-two a .shop-btn-icon {
  font-size: 22px;
  color: #fff;
}

.shop-details .shop-line {
  margin: 30px 0;
  width: 100%;
  border: 1px solid #fff;
}

.shop-details .shop-share .shop-share-title {
  font-size: 22px;
  color: #fff;
}

.shop-details .shop-share .shop-share-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}

.shop-details .shop-share .shop-share-list .shop-share-item {
  display: inline-flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.shop-share-item+.shop-share-item {
  margin-left: 15px;
}

.shop-details .shop-share .shop-share-list .shop-share-item i {
  font-size: 23px;
  color: #fff;
}

.product-desc {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 222px;
  /* margin: 0 222px; */
  background-color: #333333;
  box-sizing: border-box;
}

.product-desc .desc-title {
  font-size: 32px;
  color: #fff;
}

.product-desc .desc-content {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
}

/* 文化 - culture */
.culture-banner {
  width: 100%;
  height: 380px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-banner .culture-banner-list {
  width: 1140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.culture-banner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.culture-banner p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3em;
  color: #fff;
  max-width: 750px;
  text-align: center;
  margin-top: 30px;
}

.culture-banner .culture-banner-list .culture-banner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.culture-banner .culture-banner-list .culture-banner-btn .banner-btn {
  padding: 12px 24px;
  background-color: #e02783;
  font-size: 20px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.culture-banner .culture-banner-list .culture-banner-btn .banner-btn:hover {
  background-color: #b5248b;
}

.culture-banner .culture-banner-list .culture-banner-btn .banner-btn-two {
  padding: 12px 24px;
  background-color: #0c0c0c;
  font-size: 20px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}

.culture-banner .culture-banner-list .culture-banner-btn .banner-btn-two:hover {
  background-color: #e02783;
}

.culture-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222222;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 50px;
}

.culture-bar .culture-bar-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.culture-bar .culture-bar-list a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.culture-bar .culture-bar-list span {
  margin: 0 10px;
  color: #fff;
}

.culture-bar .culture-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.culture-bar .culture-nav .culture-nav-list {
  padding: 13px 20px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.culture-bar .culture-nav .culture-nav-list a {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.culture-bar .culture-nav .culture-nav-list:hover {
  border-color: #e02783;
}

.culture-bar .culture-nav .culture-nav-list:hover a {
  color: #e02783;
}

.culture-bar .culture-nav .culture-active {
  border-color: #e02783 !important;
}

.culture-bar .culture-nav .culture-active a {
  color: #e02783;
}

.culture-box {
  background-color: #0c0c0c;
  padding: 50px 0;
  width: 100%;
  box-sizing: border-box;
}

.culture-box .culture-title-left {
  font-size: 40px;
  color: #fff;
  width: 80%;
  padding: 30px;
  background-color: #222222;
  box-sizing: border-box;
  text-align: end;
}

.culture-box .culture-title-right {
  font-size: 40px;
  color: #fff;
  width: 80%;
  margin-left: 20%;
  padding: 30px;
  background-color: #222222;
  box-sizing: border-box;
  text-align: start;
}

.culture-box .culture-list {
  /* margin-top: 30px; */
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.culture-box .culture-list .culture-item {
  position: relative;
  height: 400px;
  cursor: pointer;
}

.culture-box .culture-list .culture-item .culture-position-img {
  transition: 0.5s;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: lightgray;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.culture-box .culture-list .culture-item .culture-position-img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.culture-box .culture-list .culture-item .culture-position {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0 0 0 / .47);
  box-sizing: border-box;
  padding: 20px;
  transition: all 0.8s ease-in-out;
}

.culture-box .culture-list .culture-item .culture-position .culture-position-title {
  font-size: 20px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.culture-box .culture-list .culture-item .culture-position .culture-item-content {
  margin-top: 18px;
  font-size: 16px;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.culture-box .culture-list .culture-item:hover .culture-item-content {
  max-height: 300px;
}

.culture-box .culture-list .culture-item:hover .culture-position-img img {
  transform: scale(1.1);
}

/* 社会价值 - social */
.social-banner {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
}

.social-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.social-banner .social-banner-box {
  height: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
  margin: 0 auto;
  position: relative;
}

.social-banner .social-banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.social-banner .social-banner-box h2 {
  width: 640px;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

.social-banner .social-banner-box p {
  margin-top: 30px;
  color: #f3f5f7;
  font-size: 20px;
  max-width: 640px;
  line-height: 30px;
}

.social-view {
  width: 100%;
  background-color: #0c0c0c;
}

.social-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.social-tab-headers {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social-tab-headers .social-tab-header {
  padding: 15px 35px;
  font-size: 16px;
  color: #fff;
  background-color: #0c0c0c;
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.social-tab-headers .active {
  border: 1px solid #fff;
  border-bottom: 1px solid transparent;
}

.social-tab-content {
  width: 100%;
  display: none;
  margin-top: 30px;
  box-sizing: border-box;
}

.social-tab-content .social-tab-main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-tab-content .social-tab-one h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
  line-height: 32px;
}

.social-tab-content .social-tab-one p {
  font-size: 18px;
  color: #f3f5f7;
  margin-top: 30px;
  line-height: 26px;
}

.social-tab-content .social-tab-one ul {
  margin: 14px 0;
  padding-left: 40px;
}

.social-tab-content .social-tab-one ul li {
  list-style: disc;
  color: #f3f5f7;
  font-size: 18px;
  line-height: 26px;
}

.social-tab-content .social-tab-one ul li a {
  color: #c36;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.social-tab-content .social-tab-one ul li a:hover {
  color: #142266;
}

.social-main .social-tab-two {
  width: 610px;
  margin-left: 30px;
}

.social-tab-two .social-video {
  width: 610px;
}

.social-tab-contents .active {
  display: block;
}

.social-business {
  width: 100%;
  margin-top: 60px;
}

.social-business .social-business-title {
  font-size: 30px;
  color: #fff;
  text-align: center;
}

.social-business .social-business-title-title {
  color: #f3f5f7;
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}

.social-business .social-business-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.social-business .social-business-list .social-business-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.social-business-list .social-business-item img {
  width: 100%;
  height: 220px;
}

.social-business-list .social-business-item h3 {
  margin: 16px 0 16px;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.social-business-list .social-business-item p {
  font-size: 16px;
  color: #f3f5f7;
  line-height: 22px;
}

.social-business-list .social-business-item .social-business-btn {
  margin-top: 30px;
  font-size: 15px;
  padding: 12px 24px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social-business-list .social-business-item .social-business-btn a {
  font-size: 15px;
  color: #fff;
}

.social-business-list .social-business-item .social-business-btn:hover {
  background-color: #e02783;
}

.social-shop {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.social-shop .social-shop-item {
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-shop .social-shop-item:hover {
  box-shadow:
    0 10px 25px rgba(255, 255, 255, 0.05),
    0 5px 10px rgba(255, 255, 255, 0.1);
}

.social-shop .social-shop-item:hover .social-shop-bottom {
  opacity: 1;
}

.social-shop img {
  width: 100%;
  height: 290px;
}

.social-shop .social-shop-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.social-shop .social-shop-content .social-shop-title {
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-shop .social-shop-content .social-shop-num {
  font-size: 18px;
  color: #fff;
}

.social-shop .social-shop-class {
  font-size: 14px;
  color: #fff;
  margin-top: 40px;
}

.social-shop .social-shop-bottom {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.social-shop .social-shop-link {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.social-shop .social-shop-link .social-shop-link-one {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border-radius: 33px;
  background-color: #9990;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}

.social-shop .social-shop-link .social-shop-link-one i {
  margin-right: 5px;
}

.social-shop .social-shop-link .social-shop-link-two {
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.social-bottom-video {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-bottom-video .social-custom-one {
  width: 50%;
  padding: 50px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
}

.social-bottom-video .social-custom-video {
  width: 100%;
  height: 300px;
}

.social-bottom-video .social-video-box {
  margin-left: 30px;
  width: 50%;
}

.social-bottom-video .social-video-box h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}

.social-bottom-video .social-video-box h1 {
  margin-top: 30px;
  font-size: 40px;
  color: #e02783;
  font-weight: 600;
}

.social-bottom-video .social-video-box p {
  margin-top: 30px;
  font-size: 18px;
  color: #f3f5f7;
  line-height: 26px;
}

/* 力量 - strength */
.strength-one {
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 80px 0;
  background-color: #0c0c0c;
}

.strength-one h1 {
  text-align: center;
  font-size: 40px;
  color: #fff;
}

.strength-one h1 p {
  font-size: 36px;
  color: #fff;
  line-height: 36px;
  margin-top: 30px;
}

.strength-two {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strength-two .strength-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 28%);
}

.strength-two .strength-item img {
  max-width: 100%;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.strength-two .strength-item h1 {
  font-size: 30px;
  padding: 8px 0 10px;
  color: #032d60;
  text-align: center;
}

.strength-two .strength-item p {
  font-size: 18px;
  color: #333;
  line-height: 28px;
}

.strength-bisy {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
}

.strength-bisy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.strength-bisy .strength-two-left {
  width: 50%;
  padding-left: 100px;
  box-sizing: border-box;
  z-index: 11;
}

.strength-bisy .strength-two-left h1 {
  font-size: 50px;
  color: #fff;
  line-height: 50px;
}

.strength-bisy .strength-two-left .strength-two-left-text {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: 15px 0;
}

.strength-bisy .strength-two-left .strength-two-left-bottom {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.strength-bisy .strength-two-left .strength-two-left-bottom .strength-two-left-btn {
  padding: 12px 24px;
  border-radius: 3px;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.strength-bisy .strength-two-left .strength-two-left-bottom .strength-bottom-btn-one {
  background-color: #e02783;
}

.strength-bisy .strength-two-left .strength-two-left-bottom .strength-bottom-btn-two {
  background-color: #999999;
  margin-left: 30px;
}

.strength-bisy .strength-two-left .strength-two-left-bottom .strength-two-left-btn a {
  font-size: 22px;
  color: #fff;
}

.strength-bisy .strength-two-right {
  width: 50%;
  z-index: 11;
  display: inline-block;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.strength-bisy .strength-two-right .strength-img-box {
  width: 100%;
  overflow-x: scroll;
  /* overflow-y: hidden; */
  white-space: nowrap;
}

.strength-bisy .strength-two-right .strength-right-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 390px;
  height: 390px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 3px;
}

.about-banner {
  height: 1500px;
  background-position: center left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 11;
  position: relative;
  --overlay-opacity: 0.5;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0C0C0C73;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.about-banner p {
  font-size: 60px;
  color: #fff;
  line-height: 70px;
  text-align: center;
  z-index: 11;
}

.about-list {
  width: 100%;
  padding: 50px 30px;
  box-sizing: border-box;
  background-color: #131313;
}

.about-list .about-item {
  width: 100%;
  display: flex;
  align-items: center;
}

.about-list .about-item .about-item-img {
  width: 50%;
  height: 500px;
}

.about-list .about-item-left .about-item-img img {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.about-list .about-item-right .about-item-img img {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.about-list .about-item .about-item-img img {
  width: 100%;
  height: 100%;
}

.about-list .about-item .about-item-text {
  width: 50%;
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-list .about-item .about-item-text h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.about-list .about-item .about-item-text h3 {
  font-size: 40px;
  color: #e02783;
}

.about-list .about-item .about-item-text p {
  font-size: 22px;
  color: #f3f5f7;
  line-height: 28px;
  margin-top: 30px;
}

.time-line {
  background-color: #131313;
  width: 100%;
}

.timeline-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
}

.timeline-box h1 {
  font-size: 48px;
  color: #e02783;
  width: 100%;
  text-align: center;
}

.timeline-container {
  position: relative;
  min-height: 1200px;
}

/* 时间线 */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  border-radius: 3px;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: #e02783;
  transition: height 0.05s linear;
  border-radius: 3px;
}

/* 里程碑项目 */
.timeline-item {
  position: relative;
  margin: 60px 0;
  /* width: 100%; */
  opacity: 1;
  /* 改为正常显示 */
  transform: translateY(0);
  /* 移除初始位移 */
}

.timeline-item:nth-child(even) {
  padding-right: calc(50% + 50px);
  text-align: right;
}

.timeline-item:nth-child(odd) {
  padding-left: calc(50% + 50px);
  text-align: left;
}

/* 时间点 */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border: 4px solid #1a1a2e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item.completed .timeline-dot {
  background: #e02783;
  box-shadow: 0 0 20px rgba(224, 39, 131, 0.4);
}

/* 内容卡片 */
.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-date {
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 24px;
}

.timeline-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ddd;
  line-height: 30px;
}

.timeline-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* 箭头 */
/* .timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
} */

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

.company {
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222222;
}

.company .company-img {
  width: 40%;
  height: 500px;
}

.company .company-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.company .company-text {
  margin-left: 160px;
  width: 30%;
}

.company .company-text h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
}

.company .company-text p {
  margin-top: 30px;
  font-size: 22px;
  color: #fff;
  line-height: 30px;
}

.about-video-box {
  padding: 80px 0;
  background-color: #0c0c0c;
  max-width: 1440px;
  margin: 0 auto;
}

.about-video-box .about-video {
  height: 810px;
  width: 100%;
}

.about-collapse-box {
  background-color: #0c0c0c;
  width: 100%;
  padding: 80px 0;
}

.about-collapse-box .about-collapse {
  max-width: 1440px;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #222222;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-sizing: border-box;
}

.about-collapse-box .about-collapse .collapse-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
}

.about-collapse-box .about-collapse .collapse-list .collapse-item {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  cursor: pointer;
}

.about-collapse-box .about-collapse .collapse-list .collapse-item .collapse-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-collapse-box .about-collapse .collapse-list .collapse-item .collapse-top .collapse-top-text {
  font-size: 24px;
  color: #fff;
}

.about-collapse-box .about-collapse .collapse-list .collapse-item .collapse-line {
  border-bottom: 1px solid #fff;
  margin: 10px 0;
}

.collapse-list .collapse-item .collapse-top p i {
  color: #fff;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
  transform: rotate(0deg);
}

.collapse-list .collapse-item .collapse-top.collapse-active p i {
  transform: rotate(180deg);
}

.collapse-list .collapse-item .collapse-content {
  margin: 15px 0;
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}

.collapse-list .collapse-item .collapse-content.collapse-active {
  max-height: 1000px;
}

.about-collapse .collapse-right {
  width: 50%;
  height: 460px;
}

.about-collapse .collapse-right img {
  width: 100%;
  height: 100%;
}

/* 展览 */
.exhibition {
  background-color: #0c0c0c;
  width: 100%;
  box-sizing: border-box;
}

.exhibition h1 {
  -webkit-text-stroke: 1px #F3F5F7;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
}

.exhibition-line {
  width: 155px;
  margin: 0 auto;
  padding: 30px 0;
}

.exhibition-line .exhibition-line-line {
  width: 100%;
  border: 2px solid #fff;
}

/* 视频  - video */
.video-box {
  padding: 30px 50px;
  width: 100%;
  box-sizing: border-box;
  background-color: #0c0c0c;
}

.video-box .video-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.video-box .video-list .video-item {
  border: 2px solid transparent;
  border-radius: 12px;
}

.video-box .video-list .video-item .video-img {
  width: 100%;
  height: 250px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
}

.video-box .video-list .video-item .video-img a {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  z-index: 2;
}

.video-box .video-list .video-item .video-img a img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.video-box .video-list .video-item .video-img a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 15px;
  border-color: #fff0 #fff0 #fff0 #fff;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-box .video-list .video-item .video-img a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  transition: all 0.3s ease;
  z-index: 1;
}

.video-box .video-title {
  background-color: #222222;
  padding: 20px 20px 0;
  cursor: pointer;
}

.video-box .video-title a {
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}

.video-box .video-date {
  background-color: #222;
  padding: 20px;
  font-size: 16px;
  color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.video-box .video-item:hover {
  border: 2px solid #fff;
}

.video-box .video-item:hover .video-img a img {
  transform: scale(1.1);
}

.video-box .video-item:hover .video-title a {
  color: #e02783;
}

/* 视频详情 -  */
.video-details {
  background-color: #0c0c0c;
  padding: 32px;
  display: flex;
  gap: 50px;
}

.video-details .video-main {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
}

.video-details .video-main h1 {
  font-size: 30px;
  color: #fff;
  line-height: 38px;
}

.video-main .video-main-bar {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.video-main .video-main-bar i {
  font-size: 16px;
  color: #fff;
}

.video-main .video-main-bar span {
  font-size: 16px;
  color: #fff;
  margin: 0 20px 0 10px;
}

.video-main .video-main-img {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.video-main .video-main-img img {
  width: 100%;
  height: auto;

}

.video-main .video-main-img::before {
  content: '';
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 15px;
  border-color: #fff0 #fff0 #fff0 #fff;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-main .video-main-img::after {
  content: '';
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  transition: all 0.3s ease;
  z-index: 1;
}

.search-box {
  width: 25%;
  background-color: #222222;
  padding: 40px 40px 60px;
  box-sizing: border-box;
  border-radius: 3px;
}

.search-box h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.search-box .search-box-input {
  margin-top: 30px;
}

.search-box .search-input {
  margin-top: 30px;
}

.search-box .search-input-box {
  position: relative;
}

.search-box .search-icon-search {
  position: absolute;
  top: 8px;
  right: 10px;
}

.search-box .search-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}

.search-box .search-list .search-item {
  width: 100%;
}

.search-box .search-list .search-item a {
  display: block;
  width: 100%;
}

.search-box .search-list .search-item a img {
  width: 100%;
  height: 200px;
}

.search-box .search-list .search-item a p {
  margin: 10px 0 15px;
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 新闻 - news */

.culture-bar .news-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.culture-bar .news-nav .news-nav-list {
  padding: 13px 20px;
  transition: all 0.3s ease-in-out;
}

.culture-bar .news-nav .news-nav-list a {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.culture-bar .news-nav .news-nav-list:hover {
  background-color: #e02783;
}

.culture-bar .news-nav .news-active {
  background-color: #e02783;
}

.culture-bar .news-input-box {
  position: relative;
}

.culture-bar .news-icon-search {
  position: absolute;
  top: 8px;
  right: 10px;
}

.news-box {
  padding: 30px 50px;
  width: 100%;
  box-sizing: border-box;
  background-color: #0c0c0c;
}

.news-box .news-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.news-box .news-list .news-item {
  border: 2px solid transparent;
  border-radius: 12px;
}

.news-box .news-list .news-item .news-img {
  width: 100%;
  height: 250px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
}

.news-box .news-list .news-item .news-img a {
  width: 100%;
  height: 250px;
  display: block;
  box-sizing: border-box;
  z-index: 2;
}

.news-box .news-list .news-item .news-img a img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}


.news-box .news-title {
  background-color: #222222;
  padding: 20px 20px 0;
  cursor: pointer;
}

.news-box .news-title a {
  font-size: 16px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}

.news-box .news-date {
  background-color: #222;
  padding: 20px;
  font-size: 16px;
  color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.news-box .news-item:hover {
  border: 2px solid #fff;
}

.news-box .news-item:hover .news-img a img {
  transform: scale(1.1);
}

.news-box .news-item:hover .news-title a {
  color: #e02783;
}

/* 视频详情 - new_details */

.news-details {
  background-color: #0c0c0c;
  padding: 32px;
  display: flex;
  gap: 50px;
}

.news-details .news-main {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
}

.news-details .news-main h1 {
  font-size: 30px;
  color: #fff;
  line-height: 38px;
  text-align: center;
}

.news-main .news-main-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.news-main .news-main-bar i {
  font-size: 16px;
  color: #fff;
}

.news-main .news-main-bar span {
  font-size: 16px;
  color: #fff;
  margin: 0 20px 0 10px;
}

.news-main .news-main-line {
  width: 100%;
  border: 1px solid #fff;
  margin: 15px 0;
}

.news-main .news-content {
  width: 100%;
  padding: 10px 0;
  color: #fff;
}

.search-box .blog-list {
  width: 100%;
}

.search-box .blog-list .blog-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.search-box .blog-list .blog-item .blog-img {
  width: 40%;
  height: 100px;
}

.search-box .blog-list .blog-item .blog-img img {
  width: 100%;
  height: 100px;
}

.search-box .blog-list .blog-item .blog-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100px;
  width: 50%;
}

.search-box .blog-list .blog-item .blog-content a {
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.search-box .blog-list .blog-item .blog-content .blog-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.search-box .blog-list .blog-item .blog-content .blog-details .blog-one {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.search-box .blog-list .blog-item .blog-content .blog-details span {
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}

.search-box .blog-list .blog-item .blog-content .blog-details i {
  color: #fff;
}

/* 联系我们 - contact */
.contact-main {
  background-color: #0c0c0c;
  width: 100%;
  padding: 0 0 50px;
}

.contact-main .contact {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-main .contact .contact-list {
  padding-top: 50px;
}

.contact-main .contact .contact-list h1 {
  text-align: center;
  font-size: 40px;
  color: #fff;
}

.contact-main .contact .contact-list .contact-line {
  width: 101px;
  border: 1px solid #fff;
  margin: 15px auto;
}

.contact-main .contact .contact-list p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

.contact-main .contact-line-all {
  width: 100%;
  border: 1px solid #fff;
  margin: 20px 0;
}

.contact-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-contact .contact-top-img {
  width: 45%;
  height: auto;
}

.contact-contact .contact-info {
  padding: 30px;
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-contact .contact-info .p1 {
  font-size: 30px;
  color: #fff;
}

.contact-contact .contact-info .contact-info-line {
  width: 101px;
  border: 1px solid #fff;
  margin: 15px 0;
}

.contact-contact .contact-info ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-contact .contact-info ul li {
  margin-bottom: 15px;
}

.contact-contact .contact-info ul li a {
  font-size: 24px;
  color: #fff;
}

.contact-contact .contact-info ul li a:hover {
  color: #e02783;
}

.contact-contact .contact-info .contact-img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.contact-contact .contact-info .contact-img img {
  width: 112px;
  height: 112px;
}

.contact-contact .contact-info .contact-img p {
  font-size: 22px;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.contact-bottom {
  width: 100%;
  background-color: #0c0c0c;
}

.feedback-box {
  max-width: 1440px;
  margin: 0 auto;
}

.feedback-box .feedback {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.feedback-box .feedback .feedback-img {
  width: 50%;
  height: 500px;
  box-sizing: border-box;
  padding: 10px;
}

.feedback-box .feedback .feedback-img img {
  width: 100%;
  height: auto;
}

.feedback-box .feedback .feedback-form {
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}

.feedback-box .feedback .feedback-form h1 {
  font-size: 32px;
  color: #fff;
}

.feedback-box .contact-btn {
  width: 200px;
  height: 60px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border: 1px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.feedback-box .contact-btn:hover {
  background-color: #e02783;
}

.product-main-one{
  display: none !important;
}

@media (max-width:960px) {
  .products-right .products-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-main-one{
    display: block !important;
  }

  .product-main-two{
    display: none !important;
  }

  .product-details .mySwiper3 {
    width: 100%;
    height: auto;
  }

  .product-details .mySwiper3 .swiper-wrapper {
    display: flex;
    flex-direction: row;
  }

  .product-main-one .product-details {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
    margin-top: 20px;
  }

  .product-details .product-prev-one {
    background-color: #11111180 !important;
    padding: 5px 0;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    width: 25px;
    z-index: 9;
    text-align: center;
    cursor: pointer;
  }
  .product-main-one .swiper-slide{
    border: 3px solid transparent;
  }

  .product-details .product-next-one {
    background-color: #11111180 !important;
    padding: 5px 0;
    border-radius: 4px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    width: 25px;
    z-index: 9;
    text-align: center;
    cursor: pointer;
  }

  .product-main-one .product-details {
    width: 100%;
  }

  .product-main-one .img-shop {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:768px) {
  .products-navigation {
    flex-wrap: wrap;
  }

  .products-navigation .products-navigation-right {
    display: none;
  }

  .products-box {
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .products-box .products-class {
    /* width: 100%; */
    display: none;
  }

  .products-box .products-right {
    width: 100%;
  }

  .products-right .products-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    margin-top: 5px;
  }

  .products-right .products-list-one {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
    margin-top: 5px;
  }

  .products-recommend {
    padding: 10px;
  }

  .product-main {
    flex-wrap: wrap;
  }

  .product-main #image {
    width: 100%;
    height: auto;
  }
  .product-details .shop-img{
    width: 100%;
    height: auto;
  }

  .products-details-box {
    padding: 10px 15px;
  }

  .product-main .img-shop {
    display: flex;
    align-items: center;
  }

  .shop-details {
    width: 100%;
    margin: 0;
    margin-top: 30px;
  }

  .shop-details .shop-tag {
    width: 100%;
  }

  .shop-details .shop-remark {
    padding: 10px;
  }

  .shop-remark-btn{
    display: none;
  }

  .shop-share {
    display: none;
  }

  .product-desc {
    padding: 10px 15px;
  }

  .about-banner {
    height: 400px;
    background-position: center;
  }

  .about-banner p {
    font-size: 36px;
    line-height: 36px;
  }

  .about-list {
    padding: 10px 20px;
  }

  .about-list .about-item {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .about-list .about-item .about-item-img {
    width: 100%;
    height: 200px;
  }

  .about-list .about-item .about-item-img img {
    border-radius: 12px;
  }

  .about-list .about-item .about-item-text {
    width: 100%;
    padding: 10px;
  }

  .about-list .about-item .about-item-text h1 {
    font-size: 30px;
  }

  .about-list .about-item .about-item-text h3 {
    font-size: 30px;
  }

  .about-list .about-item .about-item-text p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
  }

  .timeline-container{
    min-height: 900px;
  }

  .timeline-box h1 {
    font-size: 26px;
  }

  .timeline-content {
    padding: 10px;
    box-sizing: border-box;
  }

  .timeline-date {
    font-size: 19px;
  }

  .timeline-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }

  .timeline-item {
    margin: 10px 0;
  }

  .timeline-item:nth-child(even) {
    padding-right: calc(50% + 10px);
  }

  .timeline-item:nth-child(odd) {
    padding-left: calc(50% + 10px);
  }

  .company {
    padding: 10px;
    flex-wrap: wrap;
  }

  .company .company-img {
    min-width: 100% !important;
    height: 300px;
  }

  .company .company-text {
    margin-left: 0;
    padding: 10px;
    width: 100%;
  }

  .company .company-text h1{
    font-size: 24px;
    text-align: center;
  }
  .company .company-text p{
    margin-top: 10px;
    font-size: 18px;
    line-height: 22px;
  }

  .about-video-box {
    padding: 20px 0 !important;
  }

  .about-video-box .about-video {
    height: 250px;
  }

  .about-collapse-box {
    padding: 20px 0 !important;
  }

  .about-collapse-box .about-collapse {
    padding: 10px !important;
  }

  .about-collapse-box .about-collapse .collapse-list {
    width: 100%;
  }

  .about-collapse .collapse-right {
    display: none;
  }

  .exhibition h1 {
    font-size: 28px;
  }

  .culture-bar {
    flex-wrap: wrap;
    padding: 10px;
  }

  .culture-bar .culture-bar-list {
    justify-content: center;
    width: 100%;
  }

  .culture-bar .culture-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }

  .culture-bar .culture-nav .culture-nav-list {
    padding: 10px 15px;
  }

  .culture-box {
    padding: 15px 0;
  }

  .culture-box .culture-title-left {
    width: 100% !important;
    padding: 10px !important;
    text-align: center;
    font-size: 26px;
  }

  .culture-box .culture-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
  }

  .culture-box .culture-title-right {
    width: 100% !important;
    padding: 10px !important;
    margin-left: 0 !important;
    text-align: center;
  }

  .social-banner {
    height: 500px;
    padding: 10px;
    box-sizing: border-box;
  }

  .social-banner .social-banner-box h2 {
    width: auto;
    font-size: 28px;
    text-align: center;
  }

  .social-banner .social-banner-box p {
    max-width: auto;
    line-height: 24px;
    text-align: center;
  }

  .social-banner .social-banner-box {
    max-width: auto;
  }

  .social-main {
    max-width: auto;
    padding: 15px 0;
  }

  .social-tab-content .social-tab-main {
    flex-wrap: wrap;
  }

  .social-tab-content .social-tab-one h1 {
    font-size: 26px;
    line-height: 26px;
    text-align: center;
  }

  .social-tab-content .social-tab-one p {
    font-size: 22px;
    text-align: center;
  }

  .social-tab-content .social-tab-one ul {
    margin-left: 20px;
  }

  .social-main .social-tab-two {
    width: 100%;
    margin-left: 0;
  }

  .social-tab-two .social-video {
    width: 100%;
  }

  .social-business .social-business-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
    box-sizing: border-box;
  }

  .social-business-list .social-business-item p {
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .social-business-list .social-business-item .social-business-btn {
    margin-top: 15px;
    box-sizing: border-box;
    width: 100%;
  }

  .social-shop {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .social-shop .social-shop-item {
    padding: 10px;
  }

  .social-shop img {
    width: 100% !important;
    height: 170px;
  }

  .social-shop .social-shop-content .social-shop-title {
    white-space: normal;
  }

  .social-shop .social-shop-class {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .social-shop .social-shop-link {
    flex-wrap: wrap;
  }

  .social-shop .social-shop-bottom {
    opacity: 1;
  }

  .social-shop .social-shop-link .social-shop-link-one {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .social-shop .social-shop-link .social-shop-link-two {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .social-bottom-video {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .social-bottom-video .social-custom-one {
    width: 100%;
    padding: 20px;
  }

  .social-bottom-video .social-video-box {
    width: 100%;
    margin-left: 0;
  }

  .strength-one {
    padding: 20px 0;
  }

  .strength-one h1 {
    font-size: 30px;
  }

  .strength-one h1 p {
    font-size: 26px;
    line-height: 30px;
  }

  .strength-two {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }

  .strength-bisy {
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .strength-bisy .strength-two-left {
    width: 100%;
    padding-left: 0;
  }

  .strength-bisy .strength-two-left h1 {
    font-size: 30px;
    line-height: 30px;
    text-align: center;
  }

  .strength-bisy .strength-two-right {
    width: 100%;
    margin-top: 20px;
  }

  .strength-bisy .strength-two-left .strength-two-left-text {
    text-align: center;
  }

  .strength-bisy .strength-two-left .strength-two-left-bottom {
    margin-top: 20px;
    justify-content: center;
  }

  .strength-bisy .strength-two-right .strength-right-img {
    width: 250px;
    height: 250px;
  }

  .video-box {
    padding: 20px 20px;
  }

  .video-box .video-list .video-item .video-img {
    height: 180px;
  }

  .video-box .video-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .video-box .video-title {
    padding: 10px 10px 0 10px;
  }

  .video-box .video-date {
    padding: 10px;
  }

  .news-box {
    padding: 10px 15px;
  }

  .news-box .news-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-bar .news-nav {
    flex-wrap: wrap;
    margin: 15px 0;
    justify-content: center;
  }

  .culture-bar .news-input {
    display: none;
  }

  .culture-bar .news-nav .news-nav-list {
    padding: 5px;
  }

  .news-box .news-title {
    padding: 10px 10px 0;
  }

  .news-box .news-date {
    padding: 10px;
    text-align: center;
  }

  .news-box .news-list .news-item .news-img {
    height: 200px;
  }

  .news-box .news-list .news-item .news-img a {
    height: 150px;
  }

  .contact-main .contact .contact-list {
    padding-top: 15px;
  }

  .contact-contact {
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
  }

  .contact-contact .contact-info {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
  }

  .contact-contact .contact-info ul li a {
    word-break: break-all;
  }

  .contact-contact .contact-info .contact-img {
    flex-wrap: wrap;
  }

  .contact-contact .contact-info .contact-img img {
    width: 100px;
    height: 100px;
  }

  .contact-bottom {
    padding-bottom: 15px;
  }

  .feedback-box .feedback {
    padding: 15px 0;
    flex-direction: column;
  }

  .feedback-box .feedback .feedback-img {
    width: 100%;
    height: auto;
  }

  .feedback-box .feedback .feedback-form {
    width: 100%;
  }

  .news-details {
    gap: 20px;
    padding: 10px;
    flex-wrap: wrap;
  }

  .news-details .news-main {
    width: 100%;
  }

  .search-box {
    width: 100%;
    padding: 20px 20px 30px;
  }

  .video-details {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
  }

  .video-details .video-main {
    width: 100%;
  }

  .products-navigation {
    padding: 5px 20px;
  }

  .products-box .products-class .products-title {
    padding: 10px;
  }

  .products-box .products-class ul li a span {
    word-break: break-all;
  }

  .shop-details .shop-btn .shop-btn-two {
    box-sizing: border-box;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
  }

  .culture-banner h2 {
    font-size: 30px;
  }

  .culture-banner p {
    line-height: normal;
    margin-top: 15px;
  }

  .culture-banner .culture-banner-list .culture-banner-btn {
    margin-top: 15px;
  }

  .culture-box .culture-list .culture-item {
    height: 220px;
  }

  .culture-box .culture-list .culture-item .culture-position {
    padding: 10px;
  }

  .culture-box .culture-list .culture-item .culture-position .culture-item-content {
    max-height: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .social-tab-content .social-tab-main {
    padding: 10px;
  }

  .social-business-list .social-business-item img {
    height: 180px;
  }

  .social-business-list .social-business-item h3 {
    text-align: center;
  }

  .social-bottom-video .social-video-box h3 {
    text-align: center;
  }

  .social-bottom-video .social-video-box h1 {
    text-align: center;
    font-size: 32px;
  }

  .about-collapse-box .about-collapse .collapse-list .collapse-item {
    padding: 0 10px;
  }

  .about-collapse-box .about-collapse .collapse-list .collapse-item .collapse-top .collapse-top-text {
    font-size: 18px;
  }

  .collapse-list .collapse-item .collapse-top p i {
    font-size: 16px;
  }

  .collapse-list .collapse-item .collapse-content {
    font-size: 16px;
  }

  .video-box .video-list .video-item .video-img a::after {
    width: 30px;
    height: 30px;
  }

  .video-details .video-main h1 {
    text-align: center;
  }

  .video-main .video-main-bar {
    justify-content: center;
  }

  .news-box .news-list .news-item .news-img {
    height: 150px;
  }

  .culture-banner {
    height: 280px;
  }

  .feedback-box .contact-btn {
    width: 100%;
    height: 45px;
    line-height: 45px;
  }
  .social-bottom-video .social-video-box p{
    text-align: center;
    padding: 0 10px;
  }
  .products-recommend .recommend-title{
    flex-direction: column;
  }
  .products-recommend .recommend-title .recommend-btn{
    width: 100%;
    justify-content: space-between;
  }
  .swiper-container{
    margin-top: 10px;
  }
  .products-recommend .swiper-container .products-slide{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}