﻿.main-container {
  width: 100%;
  min-width: 1260px;
  margin: 0 auto;
  background: #f5f5f7;
}
.menu-banner-container {
  position: relative;
}

/* Banner */
.swiper-banner {
  position: relative;
  width: 100%;
  min-width: 1260px;
  height: 700px;
}
.swiper-banner .swiper-wrapper {
  overflow: hidden;
}
.swiper-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
}
.swiper-banner .swiper-slide {
  position: relative;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.swiper-banner .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 24px;
  font-size: 0;
}
.swiper-banner .swiper-pagination-bullet {
  box-sizing: border-box;
  width: 80px;
  height: 8px;
  border-radius: 100px;
  background-color: #ffffff;
  opacity: 0.6;
  margin: 0 5px;
}
.swiper-banner .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-banner-content .banner-content-wrap {
  position: relative;
}
.swiper-banner .banner-down-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 52px;
  opacity: 0;
  visibility: hidden;
  z-index: 12;
  transition: all 1s;
}
.swiper-banner .banner-down-wrap.active {
  opacity: 1;
  visibility: visible;
}
.swiper-banner .banner-down-wrap .down-btn {
  display: block;
  width: 180px;
  height: 52px;
  line-height: 53px;
  text-align: center;
  background: #ffffff;
  font-size: 16px;
  font-weight: bold;
  color: #236ee7;
  border-radius: 10px;
  cursor: pointer;
}
.swiper-banner .banner-down-wrap .down-btn-blue {
  color: #ffffff;
  background: #007aff;
}
.swiper-banner .banner-down-wrap .down-btn-blue:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    #007aff;
}

.swiper-down-popover {
  box-sizing: border-box;
  position: absolute;
  top: 52px;
  left: 0;
  width: 400px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  /* transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden; */
}
.swiper-banner .banner-down-wrap:hover .swiper-down-popover {
  display: block;
  /* opacity: 1;
  visibility: visible; */
}
.banner-down-wrap:hover .down-btn,
.banner-down-wrap .swiper-down-popover:hover ~ .down-btn {
  background: rgba(255, 255, 255, 0.8) !important;
}
.banner-down-wrap:hover .down-btn-blue,
.banner-down-wrap .swiper-down-popover:hover ~ .down-btn-blue {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    #007aff !important;
}

.swiper-down-popover .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.swiper-down-popover .item .item-title {
  display: flex;
  align-items: center;
}
.swiper-down-popover .item .item-title span:first-child {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  font-weight: bold;
}
.swiper-down-popover .item .item-title .tag {
  display: block;
  height: 20px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  line-height: 20px;
  color: #333333;
  padding: 0 6px;
  margin-left: 10px;
}
.swiper-down-popover .item .item-title .tag i {
  font-style: normal;
  margin-left: 4px;
  font-weight: normal;
}
.swiper-down-popover .item .item-title .tag-local {
  font-weight: bold;
  color: #0ea400;
  background: rgba(14, 164, 0, 0.1);
}
.swiper-down-popover .item .item-desc {
  font-size: 12px;
  line-height: 20px;
  color: rgba(51, 51, 51, 0.4);
  padding-top: 6px;
}
.swiper-down-popover .item .down-link {
  display: block;
  width: 80px;
  height: 32px;
  line-height: 33px;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #333333;
  border-radius: 8px;
}
.swiper-down-popover .item .down-link:hover {
  color: #236ee7;
  background: rgba(0, 122, 255, 0.15);
}

/* Common Title */
.common-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  padding: 42px 0 20px;
}
.common-title .more {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  color: #808080;
}
.common-title .more::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../image/icon-rt-dark.svg") no-repeat center center;
}

/* 产品下载 */
.download-container {
  background-color: #ffffff;
  padding-bottom: 50px;
}
.pro-list-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  height: 360px;
}

.pro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2;
}

.pro-card-main {
  flex: 2;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e1f0ff 100%);
}

.pro-card-main::before {
  background: linear-gradient(90deg, #007aff 0%, #0a84ff 100%);
}

.pro-card-secondary {
  flex: 1;
  padding: 30px 20px;
}

.pro-card-secondary:nth-child(2)::before {
  background: linear-gradient(90deg, #00c7be 0%, #00d9cc 100%);
}

.pro-card-secondary:nth-child(3)::before {
  background: linear-gradient(90deg, #ff9500 0%, #ffaa33 100%);
}

.pro-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pro-card-main .pro-card-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
}

.pro-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.pro-card-title {
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.pro-card-main .pro-card-title {
  font-size: 24px;
  line-height: 32px;
}

.pro-card-desc {
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  margin: 0 0 20px 0;
}

.pro-card-main .pro-card-desc {
  font-size: 15px;
  line-height: 24px;
}

.pro-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.dowmload-btn {
  display: block;
  width: 160px;
  height: 42px;
  line-height: 44px;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(90deg, #007aff 0%, #0a84ff 100%);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
  transition: all 0.3s ease;
}

.dowmload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
}

.pro-card-secondary:nth-child(3) .dowmload-btn {
  background: linear-gradient(90deg, #ff9500 0%, #ffaa33 100%);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.2);
}

.pro-card-secondary:nth-child(3) .dowmload-btn:hover {
  box-shadow: 0 6px 16px rgba(255, 149, 0, 0.3);
}

.more-btn {
  padding: 5px 15px;
  font-size: 13px;
  line-height: 22px;
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more-btn:hover {
  color: #333333;
  text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .pro-list-wrapper {
    flex-direction: column;
    height: auto;
  }
  
  .pro-card-main,
  .pro-card-secondary {
    width: 100%;
  }
  
  .pro-card-main {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .pro-list-wrapper {
    gap: 15px;
    padding: 15px 0;
  }
  
  .pro-card {
    border-radius: 12px;
  }
  
  .pro-card-main {
    padding: 30px 20px;
  }
  
  .pro-card-secondary {
    padding: 25px 15px;
  }
  
  .pro-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .pro-card-main .pro-card-icon {
    width: 100px;
    height: 100px;
  }
  
  .pro-card-title {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px 0;
  }
  
  .pro-card-main .pro-card-title {
    font-size: 22px;
    line-height: 30px;
  }
  
  .pro-card-desc {
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 15px 0;
  }
  
  .pro-card-main .pro-card-desc {
    font-size: 14px;
    line-height: 22px;
  }
  
  .dowmload-btn {
    width: 140px;
    height: 38px;
    line-height: 40px;
    font-size: 13px;
  }
  
  .pro-card-actions {
    gap: 10px;
  }
}

.pro-card-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf2ff 0%, #d0e1ff 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pro-card-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pro-card-secondary-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pro-card-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  border-radius: 12px;
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pro-card-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pro-card-secondary:nth-child(1) {
  background: linear-gradient(135deg, #e8f6fc 0%, #c0e6f8 100%);
}

.pro-card-secondary:nth-child(2) {
  background: linear-gradient(135deg, #f9f4e8 0%, #f0e4c9 100%);
}

.pro-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.pro-card-main .pro-card-icon {
  width: 140px;
  height: 140px;
}

.pro-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pro-card-title {
  font-size: 22px;
  line-height: 30px;
  color: #333333;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.pro-card-main .pro-card-title {
  font-size: 26px;
  line-height: 34px;
}

.pro-card-desc {
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  margin: 0 0 20px 0;
}

.pro-card-main .pro-card-desc {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 25px 0;
}

.pro-card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dowmload-btn {
  display: block;
  width: 180px;
  height: 44px;
  line-height: 46px;
  text-align: center;
  border-radius: 8px;
  background: rgba(0, 122, 255, 0.15);
  font-size: 14px;
  font-weight: bold;
  color: #236ee7;
}

.pro-card-main .dowmload-btn {
  width: 200px;
  height: 50px;
  line-height: 52px;
  font-size: 16px;
}

.dowmload-btn:hover {
  cursor: pointer;
  background: rgba(0, 122, 255, 0.25);
}

.pro-card-secondary:nth-child(2) .dowmload-btn {
  color: #e58530;
  background: rgba(229, 133, 48, 0.15);
}

.pro-card-secondary:nth-child(2) .dowmload-btn:hover {
  background: rgba(229, 133, 48, 0.25);
}

.more-btn {
  font-size: 13px;
  line-height: 24px;
  color: rgba(51, 51, 51, 0.5);
}

.more-btn:hover {
  color: #333333;
}

/* 新闻资讯 */
.news-container {
  padding-bottom: 4px;
}
.news-container .news-list li {
  width: 100%;
  height: 220px;
  margin-bottom: 16px;
}
.news-container .news-list li > a {
  display: flex;
  width: 100%;
  height: 220px;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #ffffff;
}
.news-container .news-list li > a:hover {
  background: rgba(0, 0, 0, 0.08);
}
.news-container .news-list li > a:hover .news-img {
  /* 亮度降低，接近黑色覆盖的效果 */
  filter: brightness(89%);
}
.news-container .news-list li .news-img {
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
  display: block;
  width: 300px;
  height: 220px;
  overflow: hidden;
}
.news-container .news-list li .news-img img {
  transition: all 0.3s ease-in-out;
  display: block;
  min-width: 100%;
  height: 100%;
}

.news-container .news-list li .news-content {
  box-sizing: border-box;
  flex: 1;
  padding: 40px 52px 0 44px;
  width: 100%;
  overflow: hidden;
}

.news-container .news-list li .news-content .title {
  display: block;
  font-size: 16px;
  line-height: 40px;
  color: #3d3d3d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-container .news-list li .news-content .intro {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #999999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-container .news-list li .news-content .info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 56px;
}
.news-container .news-list li .news-content .info-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 20px;
  color: #bbbbbb;
  padding-left: 55px;
}
.news-container .news-list li .news-content .info-item img {
  margin-right: 8px;
}
