/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  min-width: 1920px;
}

/* 导航栏 */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(24, 144, 255, 0.15);
}

.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #1890ff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.nav-menu a:hover {
  color: #1890ff;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1890ff, #40a9ff);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-menu a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  border-radius: 15px;
  padding: 15px 0;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(24, 144, 255, 0.1);
  backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  color: #333;
  padding: 15px 30px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #1890ff;
  padding-left: 35px;
}

.dropdown-content a::before {
  content: '▶';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #1890ff;
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a:hover::before {
  opacity: 1;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #1890ff;
  font-size: 16px;
}

.contact-info img {
  width: 20px;
  height: 20px;
}

/* 英雄区域 */
.hero {
  position: relative;
  overflow: hidden;
  height: 510px;
  width: 100%;
  margin-top: 80px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #f0f8ff;
  max-width: 100%;
  max-height: 100%;
}

.hero-content {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 80px;
  max-width: 900px;
  box-sizing: border-box;
}

.hero-content h1,
.hero-content p,
.hero-content .cta-button {
  text-align: left;
}

/* 功能区域 */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../jc-images/image/stage-image@3x.png') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
}

.features-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1890ff 0%, #40a9ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* 解决方案区域 */
.solutions {
  padding: 120px 0;
  background: white;
}

.solutions-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}

.solutions-title {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  background: none;
}

.solutions-title .quote-left,
.solutions-title .quote-right {
  color: #1890ff;
  font-size: 36px;
  font-weight: bold;
  margin: 0 8px;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  border-bottom: 2px solid #e6eaf0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.04);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 22px 0 16px 0;
  font-size: 20px;
  color: #222;
  font-weight: 600;
  background: #fff;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s, font-weight 0.2s;
  position: relative;
}

.tab:not(:last-child) {
  border-right: 1px solid #e6eaf0;
}

.tab.active {
  color: #1890ff;
  border-bottom: 3px solid #1890ff;
  font-weight: 800;
  background: #fff;
}

.solution-content {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(24, 144, 255, 0.10);
  padding: 56px 64px;
  gap: 64px;
  margin-top: 0;
  margin-bottom: 40px;
  min-height: 340px;
}

.solution-image {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image img {
  width: 360px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(24, 144, 255, 0.10);
}

.solution-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
}

.solution-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1890ff;
  margin-bottom: 18px;
}

.solution-text ul {
  list-style: none;
  margin-bottom: 18px;
  padding: 0;
}

.solution-text li {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.solution-text li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #1890ff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.case-studies {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e6eaf0;
}

.case-studies h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1890ff;
  margin-bottom: 8px;
}

.solution-btns {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.consult-btn {
  background: #fff;
  color: #1890ff;
  border: 1.5px solid #1890ff;
  border-radius: 50px;
  padding: 8px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.consult-btn:hover {
  background: #1890ff;
  color: #fff;
}

.more-btn {
  background: linear-gradient(90deg, #1890ff 0%, #40a9ff 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.more-btn:hover {
  background: linear-gradient(90deg, #40a9ff 0%, #1890ff 100%);
}

/* 产品服务区域 */
.products {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

.products-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}

/* 预约区域 */
.booking {
  padding: 120px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.booking-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.booking-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 600px;
}

.booking-content {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: left;
}

.booking-container h2 {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
  white-space: nowrap;
}

.booking-container>p {
  font-size: 20px;
  color: #666;
  margin-bottom: 60px;
}

.booking-form {
  margin-top: 0;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}

.form-group input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus {
  outline: none;
  border-color: #1890ff;
  background: white;
  box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #1890ff, #40a9ff);
  color: white;
  padding: 22px 60px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(24, 144, 255, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 144, 255, 0.4);
}

/* 侧边栏 */
.sidebar {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #1890ff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 144, 255, 0.2);
}

.sidebar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(24, 144, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.sidebar-item:hover::before {
  left: 100%;
}

.sidebar-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 144, 255, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.sidebar-item img {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2475%) hue-rotate(190deg) brightness(118%) contrast(119%);
}

.sidebar-item:hover img {
  transform: scale(1.1);
}

.sidebar-item span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #1890ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: center;
}

/* 页脚 */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../jc-images/image/stage-image@3x.png') no-repeat center center;
  background-size: cover;
  opacity: 0.05;
}

.footer-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1890ff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 15px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.footer-section a:hover {
  color: #1890ff;
  padding-left: 5px;
}

.contact-info-footer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #ccc;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-info-footer img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
}

.qr-codes {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.qr-code {
  text-align: center;
}

.qr-code img {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.qr-code span {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #333;
  margin-top: 60px;
  color: #999;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 响应式设计 */
@media (max-width: 1920px) {

  .hero {
    height: 510px;
  }

  .solution-content {
    gap: 80px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
}

@media (max-width: 1600px) {

  .nav-container,
  .features-container,
  .solutions-container,
  .products-container,
  .booking-container,
  .footer-container {
    padding: 0 40px;
  }

  .hero {
    height: 510px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 1200px) {

  .hero {
    height: 510px;
  }

  .solution-content {
    flex-direction: column;
    padding: 24px 10px;
    gap: 20px;
    min-height: unset;
  }

  .solution-image img {
    width: 100%;
    max-width: 320px;
  }

  .solution-image {
    flex: unset;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero {
    height: 510px;
    margin-top: 60px;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking {
    padding: 120px 0;
  }

  .booking-container {
    justify-content: center;
    padding: 0 20px;
    min-height: 400px;
  }

  .booking-content {
    max-width: 100%;
    padding: 40px;
  }

  .booking-container h2 {
    font-size: 28px;
    white-space: normal;
  }

  .sidebar-item {
    width: 70px;
    height: 70px;
    padding: 15px 12px;
  }

  .sidebar-item img {
    width: 24px;
    height: 24px;
  }

  .sidebar-item span {
    font-size: 10px;
  }

  .form-grid {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .sidebar {
    display: none;
  }

  .tabs {
    gap: 15px;
  }

  .tab {
    padding: 12px 20px;
    font-size: 14px;
  }

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

  .booking-form {
    padding: 30px;
  }
}

@media (max-width: 480px) {

  .nav-container,
  .features-container,
  .solutions-container,
  .products-container,
  .booking-container,
  .footer-container {
    padding: 0 20px;
  }

  .hero {
    height: 510px;
    margin-top: 50px;
  }

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

  .booking-container h2 {
    font-size: 24px;
    white-space: normal;
  }

  .sidebar-item {
    width: 60px;
    height: 60px;
    padding: 12px 10px;
  }

  .sidebar-item img {
    width: 20px;
    height: 20px;
  }

  .sidebar-item span {
    font-size: 9px;
  }
}