/* ... 之前的样式 ... */

/* 首页内容区样式 */
.home-welcome {
  font-size: 24px;
  font-weight: bold;
  color: #2878ff;
  margin-bottom: 24px;
}

.home-cards-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.home-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(42,92,170,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 24px 0;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
}
.home-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px rgba(42,92,170,0.18);
}
.home-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.home-card-title {
  font-size: 18px;
  color: #333D54;
  font-weight: 600;
}

.home-main-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.home-main-left, .home-main-right {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(42,92,170,0.08);
  padding: 24px;
  flex: 1;
  min-width: 0;
}
.home-main-left {
  max-width: 520px;
}
.home-main-right {
  flex: 1.2;
}
.home-main-title {
  font-size: 20px;
  font-weight: bold;
  color: #2878ff;
  margin-bottom: 16px;
}
.home-quicknav-grid, .home-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-quicknav-item, .home-data-item {
  display: flex;
  align-items: center;
  background: #f4f6fa;
  border-radius: 10px;
  padding: 12px 10px;
  transition: box-shadow 0.3s;
}
.home-quicknav-item:hover, .home-data-item:hover {
  box-shadow: 0 4px 16px rgba(42,92,170,0.10);
}
.home-quicknav-item img {
  width: 36px;
  height: 36px;
  margin-right: 12px;
}
.home-quicknav-label {
  font-size: 15px;
  color: #333D54;
  font-weight: 500;
}
.home-data-item i {
  font-size: 22px;
  color: #2878ff;
  margin-right: 10px;
}
.home-data-label {
  font-size: 15px;
  color: #333D54;
  font-weight: 500;
}
.home-data-value {
  font-size: 18px;
  color: #FF6B35;
  font-weight: bold;
  margin-left: auto;
}

.home-carousel-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.home-carousel-box {
  width: 300px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 2px 12px rgba(42,92,170,0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 彻底去除内容区min-height，防止大空白 */
.content-wrapper { min-height: auto !important; }

/* 首页卡片鼠标悬停动效 */
.home-card-hover {
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
}
.home-card-hover:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px rgba(42,92,170,0.18);
}

/* 首页底部图片轮播区域 */
.home-carousel-scroll {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  box-sizing: border-box;
}

.content-wrapper .home-carousel-scroll {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .home-carousel-scroll {
    margin-bottom: 16px !important;
  }
}
.home-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
}
.home-carousel-imgbox {
  flex: 0 0 200px;
  width: 200px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 2px 8px rgba(42,92,170,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-carousel-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(42,92,170,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  color: #2878ff;
  transition: background 0.2s;
}
.home-carousel-arrow:hover {
  background: #2878ff;
  color: #fff;
}
.home-carousel-arrow.left { left: 0; z-index: 10; }
.home-carousel-arrow.right { right: 0; z-index: 10; }

/* 移除卡片下方文字样式（如有） */
.home-card-title { display: none; }
