/* 国旗旁边的下拉箭头样式 */
.so {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  vertical-align: middle;
}

.so img {
  width: 28px;
  height: 30px;
  border-radius: 2px;
  object-fit: cover;
  vertical-align: middle;
}

.logo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 11px;
  transition: all 0.3s ease;
  line-height: 1;
  vertical-align: middle;
}

.so:hover .logo-arrow {
  color: #e94560;
  transform: rotate(180deg);
}

/* 下拉语言菜单样式 */
.lastli {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ss {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 4px 0;
  margin: 0;
  padding-left: 0;
  z-index: 100;
  list-style: none;
  border: 1px solid #e0e0e0;
}

.lang-item {
  padding: 0;
  margin: 0;
  width: 100%;
}

.lang-item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}

.lang-item img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.category-nav-wrapper {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}
.category-nav-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e94560, #f39c12, #3498db);
}
.category-nav {
  display: flex;
  align-items: center;
}
.category-mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.category-mobile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.category-mobile-header .category-title {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-mobile-header .category-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #e94560, #f39c12);
  border-radius: 2px;
}
.category-mobile-header .category-toggle {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 6px;
}
.category-mobile-header.expanded .category-toggle {
  transform: rotate(180deg);
  color: #f39c12;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-item {
  position: relative;
}
.category-item .category-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.category-item .category-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.category-item .category-link.active {
  background: linear-gradient(135deg, #e94560, #f39c12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}
.category-item .category-link.active:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}
.category-item .category-link i {
  font-size: 16px;
}
.category-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.category-item .category-link:hover .category-indicator,
.category-item .category-link.active .category-indicator {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .category-nav-wrapper {
    padding: 12px 0;
    margin: 0 -15px;
    border-radius: 0;
  }
  .category-nav-wrapper::before {
    height: 4px;
  }
  .category-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .category-mobile-header {
    display: flex;
    position: relative;
  }
  .category-list {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 0;
    padding: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 12px 12px;
    animation: slideDown 0.3s ease-out;
  }
  .category-item .category-link {
    justify-content: space-between;
    border-radius: 10px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    transition: all 0.2s ease;
  }
  .category-item .category-link:hover {
    background: rgba(255,255,255,0.12);
    transform: none;
    transform: translateX(8px);
    box-shadow: none;
  }
  .category-item .category-link.active {
    background: linear-gradient(135deg, rgba(233,69,96,0.9), rgba(243,156,18,0.9));
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(233,69,96,0.3);
  }
  .category-item .category-link.active:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
  }
  .category-item:first-child .category-link {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .category-item:last-child .category-link {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .category-indicator {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
  }
  .category-item .category-link.active .category-indicator {
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-showcase-container {
  margin-bottom: 30px;
}

.product-showcase {
  position: relative;
}

.product-gallery-section {
  position: relative;
}

.gallery-container {
  position: relative;
}

.gallery-main {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.gallery-main-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-main:hover .gallery-main-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.overlay-zoom-btn {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-main:hover .overlay-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.overlay-zoom-btn i {
  color: #e94560;
  font-size: 28px;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #e94560;
  border-radius: 3px;
}

.thumb-item {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
  border-color: #e94560;
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 69, 96, 0);
  transition: background 0.3s ease;
}

.thumb-item:hover .thumb-overlay,
.thumb-item.active .thumb-overlay {
  background: rgba(233, 69, 96, 0.2);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-main:hover .nav-btn {
  opacity: 1;
}

.gallery-main .nav-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.nav-btn i {
  color: #333;
  font-size: 20px;
}

.product-info-sidebar {
  display: flex;
  align-items: flex-start;
}

.info-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.product-badge {
  margin-bottom: 15px;
}

.product-badge .badge {
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #e94560, #f39c12);
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
}

.product-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e94560, #f39c12);
  border-radius: 2px;
  margin-bottom: 25px;
}

.product-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  font-size: 14px;
}

.meta-item i {
  color: #e94560;
  font-size: 16px;
}

.price-section {
  position: relative;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(243, 156, 18, 0.05));
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid rgba(233, 69, 96, 0.1);
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.current-price .currency {
  font-size: 28px;
  font-weight: 600;
  color: #e94560;
}

.current-price .value {
  font-size: 56px;
  font-weight: 800;
  color: #e94560;
  text-shadow: 0 2px 10px rgba(233, 69, 96, 0.3);
}

.original-price {
  margin-top: 8px;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.product-features {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(243, 156, 18, 0.05));
  border-radius: 12px;
}

.features-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 8px 0;
  color: #495057;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li i {
  color: #28a745;
  font-size: 16px;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-buy {
  flex: 1;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #e94560, #f39c12);
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.5);
  background: linear-gradient(135deg, #d83d56, #e69510);
}

.btn-collect {
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #e94560;
  color: #e94560;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
}

.btn-collect:hover {
  background: rgba(233, 69, 96, 0.05);
  border-color: #d83d56;
  transform: translateY(-3px);
}

.content-tabs {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nav-tabs {
  border: none;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 0 20px;
}

.nav-tabs .nav-item {
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  padding: 20px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #6c757d;
  border: none;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: #e94560;
}

.nav-tabs .nav-link.active {
  color: #e94560;
  background: transparent;
}

.nav-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e94560, #f39c12);
  border-radius: 2px;
}

.tab-content {
  padding: 30px;
}

.article-section {
  padding: 0;
}

.article-content {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-content th,
.article-content td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.article-content th {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(243, 156, 18, 0.05));
  font-weight: 600;
  color: #1a1a2e;
}

.article-content tr:last-child td {
  border-bottom: none;
}

.article-content tr:hover {
  background: rgba(233, 69, 96, 0.03);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: #fff;
  font-size: 32px;
}

.modal-xl .modal-content {
  border-radius: 20px;
  overflow: hidden;
}

.modal-xl .modal-body {
  padding: 0;
}

.modal-xl img {
  width: 100%;
  height: auto;
}

.related-links {
  margin-top: 20px;
}

.related-links ul {
  padding-left: 0;
}

.related-links li {
  padding: 12px 0;
  border-bottom: 1px dashed #e9ecef;
  transition: all 0.3s ease;
}

.related-links li:last-child {
  border-bottom: none;
}

.related-links li:hover {
  padding-left: 10px;
}

.related-links a {
  color: #495057;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.related-links a:hover {
  color: #e94560;
}

@media (max-width: 991px) {
  .product-info-sidebar {
    margin-top: 30px;
  }

  .info-card {
    position: static;
  }

  .product-title {
    font-size: 24px;
  }

  .current-price .value {
    font-size: 42px;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-buy,
  .btn-collect {
    width: 100%;
  }

  .nav-tabs .nav-link {
    padding: 15px 20px;
    font-size: 14px;
  }

  .tab-content {
    padding: 20px;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .gallery-main-wrapper {
    aspect-ratio: 4/3;
  }

  .thumb-item {
    width: 75px;
    height: 75px;
  }

  .info-card {
    padding: 25px;
    border-radius: 16px;
  }

  .product-title {
    font-size: 20px;
  }

  .current-price .value {
    font-size: 36px;
  }

  .product-meta {
    flex-direction: column;
    gap: 10px;
  }

  .price-section {
    padding: 20px;
  }

  .nav-tabs .nav-link {
    padding: 12px 15px;
    font-size: 13px;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
}

/* 产品详情页样式 */
.product-detail-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-info {
  padding: 30px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.4;
}

.product-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6c757d;
}

.meta-item i {
  color: #e94560;
}

.price-section {
  padding: 25px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.08), rgba(243, 156, 18, 0.08));
  border-radius: 12px;
  margin-bottom: 25px;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.current-price .label {
  font-size: 14px;
  font-weight: 600;
  color: #e94560;
  padding: 3px 10px;
  background: rgba(233, 69, 96, 0.15);
  border-radius: 4px;
}

.current-price .currency {
  font-size: 24px;
  font-weight: 700;
  color: #e94560;
}

.current-price .value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #e94560, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.original-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #999;
}

.original-price .label {
  color: #6c757d;
}

.original-price span:last-child {
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 15px;
}

.product-actions .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 30px;
  transition: all 0.3s ease;
  flex: 1;
}

.product-actions .contact-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.product-actions .contact-btn i {
  font-size: 18px;
}

.article-section {
  margin-top: 30px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e94560;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #f39c12, #e94560);
}

.article-content {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 8px;
}

.related-links {
  font-size: 14px;
  line-height: 2;
}

.related-links a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-links a:hover {
  color: #e94560;
}

@media (max-width: 767px) {
  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 22px;
  }

  .product-meta {
    flex-direction: column;
    gap: 12px;
  }

  .current-price .value {
    font-size: 36px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-image-wrapper {
    aspect-ratio: 4/3;
  }
}

/* 产品列表页面样式 */
.products-section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.title-icon {
  width: 4px;
  height: 36px;
  background: linear-gradient(180deg, #e94560, #f39c12);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 16px;
  color: #6c757d;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.product-card:hover .product-overlay {
  background: rgba(233, 69, 96, 0.15);
}

.overlay-content {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .overlay-content {
  opacity: 1;
  transform: scale(1);
}

.overlay-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: #e94560;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.overlay-link:hover {
  background: #fff;
  transform: scale(1.1);
}

.overlay-link i {
  font-size: 22px;
}

.product-decoration {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(243, 156, 18, 0.1));
  border-radius: 50%;
  pointer-events: none;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin-bottom: 12px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #e94560;
}

.product-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e94560, #f39c12);
  border-radius: 2px;
  margin-bottom: 15px;
}

.product-summary {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #e94560;
  text-decoration: none;
  background: rgba(233, 69, 96, 0.08);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.view-details:hover {
  background: linear-gradient(135deg, #e94560, #f39c12);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.view-details i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.view-details:hover i {
  transform: translateX(3px);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #e94560, #713740);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;

}

.contact-btn i {
  font-size: 14px;
}

.pagination-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
}

.pagination {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-item {
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 15px;
  font-weight: 500;
  color: #6c757d;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.page-link:hover {
  color: #e94560;
  border-color: #e94560;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #e94560, #f39c12);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }

  .section-title {
    font-size: 28px;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-section {
    padding: 25px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-title {
    font-size: 24px;
  }

  .product-image-container {
    aspect-ratio: 16/10;
  }

  .product-info {
    padding: 18px;
  }

  .product-title {
    font-size: 16px;
  }

  .page-link {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
 .news-section {
     padding: 0 0 60px;
    }
    .news-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      margin-bottom: 24px;
    }
    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .news-card .news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .news-card:hover .news-image {
      transform: scale(1.05);
    }
    .news-card .news-content {
      padding: 20px;
    }
    .news-card .news-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.5;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-card .news-title:hover {
      color: #e94560;
    }
    .news-card .news-desc {
      font-size: 14px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-card .news-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: #999;
    }
    .news-card .news-meta .meta-item {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .news-card .news-meta i {
      font-size: 14px;
    }
    .news-category {
      display: inline-block;
      padding: 4px 12px;
      background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
      color: #fff;
      font-size: 12px;
      border-radius: 20px;
      /*margin-bottom: 12px;*/
    }
    .news-pagination {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    .news-pagination .pagination {
      gap: 8px;
    }
    .news-pagination .page-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: none;
      color: #666;
      transition: all 0.2s ease;
    }
    .news-pagination .page-link:hover {
      background: #f0f0f0;
    }
    .news-pagination .page-item.active .page-link {
      background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
    }
    .news-sidebar .sidebar-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      padding-bottom: 12px;
      border-bottom: 2px solid #e94560;
      margin-bottom: 20px;
    }
    .news-sidebar .sidebar-list {
      list-style: none;
      padding: 0;
    }
    .news-sidebar .sidebar-list li {
      padding: 12px 0;
      border-bottom: 1px dashed #eee;
    }
    .news-sidebar .sidebar-list li:last-child {
      border-bottom: none;
    }
    .news-sidebar .sidebar-list a {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s ease;
    }
    .news-sidebar .sidebar-list a:hover {
      color: #e94560;
    }
    .breadcrumb-wrapper {
      background: #f8f9fa;
      padding: 16px 0;
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }
    .breadcrumb-nav a {
      color: #666;
      transition: color 0.2s ease;
    }
    .breadcrumb-nav a:hover {
      color: #e94560;
    }
    .breadcrumb-nav span {
      color: #999;
    }
    @media (max-width: 768px) {
      .news-card .news-image {
        height: 150px;
      }
      .news-card .news-title {
        font-size: 16px;
      }
    }
        .article-section {
      padding: 60px 0;
    }
    .article-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    .article-header {
      padding: 30px;
      border-bottom: 1px solid #f0f0f0;
    }
    .article-title {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.4;
      margin-bottom: 20px;
      text-align: center;
    }
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      font-size: 14px;
      color: #999;
      flex-wrap: wrap;
    }
    .article-meta .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .article-meta i {
      font-size: 15px;
      color: #e94560;
    }
    .article-tags {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .article-tags .tag {
      padding: 6px 16px;
      background: #f8f9fa;
      color: #666;
      font-size: 13px;
      border-radius: 20px;
      transition: all 0.2s ease;
    }
    .article-tags .tag:hover {
      background: #e94560;
      color: #fff;
    }
    .article-content {
      padding: 40px 30px;
      font-size: 16px;
      line-height: 1.9;
      color: #333;
    }
    .article-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 15px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .article-content p {
      margin-bottom: 1.5em;
      text-indent: 2em;
    }
    .article-content h2 {
      font-size: 22px;
      font-weight: 600;
      color: #1a1a1a;
      margin: 25px 0 15px;
      padding-left: 12px;
      border-left: 4px solid #e94560;
    }
    .article-content h3 {
      font-size: 19px;
      font-weight: 600;
      color: #333;
      margin: 20px 0 12px;
    }
    .article-content blockquote {
      border-left: 4px solid #e94560;
      padding: 15px 20px;
      background: #fff8f8;
      margin: 20px 0;
      font-style: italic;
      color: #666;
    }
    .article-content ul, .article-content ol {
      padding-left: 2em;
      margin-bottom: 1.5em;
    }
    .article-content li {
      margin-bottom: 0.5em;
    }
    .article-actions {
      padding: 25px 30px;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
    }
    .vote-section {
      display: flex;
      justify-content: center;
      gap: 40px;
    }
    .vote-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: #f8f9fa;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
      font-size: 15px;
      color: #666;
    }
    .vote-btn:hover {
      background: #e94560;
      color: #fff;
    }
    .vote-btn i {
      font-size: 18px;
    }
    .vote-btn span {
      font-weight: 600;
    }
    .article-nav {
      padding: 30px;
    }
    .nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 15px 0;
      border-bottom: 1px dashed #eee;
    }
    .nav-item:last-child {
      border-bottom: none;
    }
    .nav-item .nav-label {
      font-weight: 600;
      color: #999;
      font-size: 14px;
      min-width: 60px;
    }
    .nav-item a {
      color: #333;
      font-size: 15px;
      transition: color 0.2s ease;
    }
    .nav-item a:hover {
      color: #e94560;
    }
    .nav-item .no-link {
      color: #ccc;
    }
    .related-news {
      padding: 30px;
    }
    .related-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      padding-bottom: 12px;
      border-bottom: 2px solid #e94560;
      margin-bottom: 20px;
    }
    .related-list {
      list-style: none;
      padding: 0;
    }
    .related-list li {
      padding: 12px 0;
      border-bottom: 1px dashed #eee;
    }
    .related-list li:last-child {
      border-bottom: none;
    }
    .related-list a {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s ease;
    }
    .related-list a:hover {
      color: #e94560;
    }
    .article-sidebar .sidebar-box {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      margin-bottom: 24px;
    }
    .article-sidebar .sidebar-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      padding-bottom: 12px;
      border-bottom: 2px solid #e94560;
      margin-bottom: 20px;
    }
    .article-sidebar .sidebar-list {
      list-style: none;
      padding: 0;
    }
    .article-sidebar .sidebar-list li {
      padding: 12px 0;
      border-bottom: 1px dashed #eee;
    }
    .article-sidebar .sidebar-list li:last-child {
      border-bottom: none;
    }
    .article-sidebar .sidebar-list a {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s ease;
    }
    .article-sidebar .sidebar-list a:hover {
      color: #e94560;
    }
    .article-sidebar .sidebar-tags {
      display: flex;
      flex-wrap: gap-2;
      gap: 8px;
    }
    .article-sidebar .sidebar-tags a {
      padding: 6px 14px;
      background: #f8f9fa;
      color: #666;
      font-size: 13px;
      border-radius: 20px;
      transition: all 0.2s ease;
    }
    .article-sidebar .sidebar-tags a:hover {
      background: #e94560;
      color: #fff;
    }
    .breadcrumb-wrapper {
      background: #f8f9fa;
      padding: 16px 0;
    }
    .breadcrumb-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }
    .breadcrumb-nav a {
      color: #666;
      transition: color 0.2s ease;
    }
    .breadcrumb-nav a:hover {
      color: #e94560;
    }
    .breadcrumb-nav span {
      color: #999;
    }
    @media (max-width: 768px) {
      .article-title {
        font-size: 22px;
      }
      .article-content {
        padding: 20px;
        font-size: 15px;
      }
      .article-meta {
        gap: 12px;
        font-size: 13px;
      }
      .vote-section {
        gap: 20px;
      }
      .vote-btn {
        padding: 10px 16px;
        font-size: 14px;
      }
    }

    /* 画廊容器 */
    .gallery-section {
      padding: 50px 0;
      background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    }

    .gallery-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 标题区域 */
    .gallery-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .gallery-header::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #e2e8f0 20%, #e2e8f0 80%, transparent 100%);
      z-index: 0;
    }

    .header-inner {
      position: relative;
      z-index: 1;
      display: inline-block;
      padding: 0 60px;
      background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    }

    .gallery-subtitle {
      font-size: 13px;
      color: #60a5fa;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
      font-weight: 500;
    }

    .gallery-title {
      font-size: 42px;
      font-weight: 700;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0;
      letter-spacing: -0.5px;
    }

    .gallery-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #00296d 0%, #3b82f6 100%);
      border-radius: 2px;
      margin: 20px auto 0;
      animation: underlineExpand 1s ease-out;
    }

    @keyframes underlineExpand {
      from { width: 0; }
      to { width: 60px; }
    }

    /* 统计信息 */
    .gallery-stats {
      display: flex;
      justify-content: center;
      gap: 100px;
      margin-top: 50px;
    }

    .stat-item {
      text-align: center;
      position: relative;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -50px;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    }

    .stat-item:last-child::before {
      display: none;
    }

    .stat-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, rgba(0, 41, 109, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      transition: all 0.3s ease;
    }

    .stat-item:hover .stat-icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, rgba(0, 41, 109, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    }

    .stat-icon i {
      font-size: 22px;
      color: #00296d;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #1e293b;
      margin: 0;
    }

    .stat-label {
      font-size: 13px;
      color: #64748b;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: block;
    }

    /* 图片网格 */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin-bottom: 50px;
      justify-items: center;
    }

    /* 图片卡片 */
    .gallery-card {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      background: #fff;
      border: 1px solid transparent;
    }

    .gallery-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(0, 41, 109, 0.12);
      border-color: rgba(0, 41, 109, 0.1);
    }

    /* 图片容器 */
    .gallery-image-wrapper {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .gallery-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-card:hover .gallery-image-wrapper img {
      transform: scale(1.2);
    }

    /* 渐变遮罩 */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 41, 109, 0.85) 100%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .gallery-card:hover .gallery-overlay {
      opacity: 1;
    }

    /* 图片序号 */
    .image-number {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      color: #00296d;
      opacity: 0;
      transform: scale(0.5) rotate(-180deg);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .gallery-card:hover .image-number {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    /* 放大图标 */
    .zoom-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    }

    .gallery-card:hover .zoom-icon {
      transform: translate(-50%, -50%) scale(1);
    }

    .zoom-icon i {
      color: #00296d;
      font-size: 24px;
    }

    /* 图片标题 */
    .image-caption {
      transform: translateY(30px);
      opacity: 0;
      transition: all 0.4s ease 0.1s;
    }

    .gallery-card:hover .image-caption {
      transform: translateY(0);
      opacity: 1;
    }

    .image-caption h4 {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin: 0 0 6px 0;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .image-caption p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }

    /* 底部导航 */
    .gallery-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      padding: 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      margin-top: 60px;
      position: relative;
      z-index: 10;
    }

    .nav-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: linear-gradient(135deg, #00296d 0%, #0a3d8a 100%);
      border: none;
      border-radius: 30px;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 41, 109, 0.3);
    }

    .nav-btn:hover:not(:disabled) {
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0, 41, 109, 0.4);
    }

    .nav-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
    }

    .nav-btn i {
      font-size: 16px;
    }

    .nav-divider {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    }

    /* 加载动画 */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .gallery-card {
      animation: fadeInUp 0.7s ease-out forwards;
      opacity: 0;
    }

    .gallery-card:nth-child(1) { animation-delay: 0.1s; }
    .gallery-card:nth-child(2) { animation-delay: 0.2s; }
    .gallery-card:nth-child(3) { animation-delay: 0.3s; }
    .gallery-card:nth-child(4) { animation-delay: 0.4s; }
    .gallery-card:nth-child(5) { animation-delay: 0.5s; }
    .gallery-card:nth-child(6) { animation-delay: 0.6s; }
    .gallery-card:nth-child(7) { animation-delay: 0.7s; }
    .gallery-card:nth-child(8) { animation-delay: 0.8s; }
    .gallery-card:nth-child(9) { animation-delay: 0.9s; }
    .gallery-card:nth-child(10) { animation-delay: 1.0s; }
    .gallery-card:nth-child(11) { animation-delay: 1.1s; }
    .gallery-card:nth-child(12) { animation-delay: 1.2s; }

    /* 空状态 */
    .empty-state {
      grid-column: 1/-1;
      text-align: center;
      padding: 80px 20px;
    }

    .empty-box {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 24px;
      padding: 60px 40px;
      border: 2px dashed #cbd5e1;
    }

    .empty-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(0, 41, 109, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .empty-icon i {
      font-size: 40px;
      color: #94a3b8;
    }

    .empty-text {
      font-size: 18px;
      color: #64748b;
      margin: 0;
    }

    /* 响应式设计 */
    @media (max-width: 992px) {
      .gallery-title {
        font-size: 32px;
      }

      .gallery-stats {
        gap: 60px;
      }

      .stat-item::before {
        right: -30px;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 22px;
      }
    }

    @media (max-width: 768px) {
      .gallery-section {
        padding: 40px 0;
      }

      .gallery-container {
        padding: 0 16px;
      }

      .gallery-title {
        font-size: 26px;
      }

      .header-inner {
        padding: 0 30px;
      }

      .gallery-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 35px;
      }

      .stat-item::before {
        display: none;
      }

      .stat-item {
        padding-bottom: 30px;
        border-bottom: 1px solid #e2e8f0;
      }

      .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
      }

      .gallery-nav {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
      }

      .nav-divider {
        width: 100%;
        height: 1px;
      }
    }

    @media (max-width: 480px) {
      .gallery-title {
        font-size: 22px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .nav-btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* PhotoSwipe 样式 */
    .pswp {
      z-index: 99999 !important;
    }

    .pswp__bg {
      background: rgba(0, 0, 0, 0.9) !important;
    }

    .pswp__scroll-wrap {
      z-index: 99999 !important;
    }

    .pswp__container {
      z-index: 99999 !important;
    }

    .pswp__ui {
      z-index: 100000 !important;
    }


/* 联系方式样式 */
.font1.flexf {
  flex-wrap: nowrap;
}

.fotb2 {
  width: 53%;
  flex-shrink: 1;
  overflow: hidden;
}

.contact-section {
  width: 47%;
  padding: 20px;
  margin-left: 3%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  flex-shrink: 0;
  word-break: break-word;
}

.contact-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
  letter-spacing: 1px;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e94560, #f39c12);
  border-radius: 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.contact-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #f39c12;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f39c12;
}

@media (max-width: 992px) {
  .contact-section {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 16px;
  }

  .contact-title {
    font-size: 16px;
  }

  .contact-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .contact-item span,
  .contact-item a {
    font-size: 14px;
  }
}
