* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

/* ========== 轮播容器 ========== */
.home {
  width: 100%;
  position: relative;
  background-color: black;
}

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track .slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 毛玻璃背景图 */
.carousel-track .slide .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.1); /* 消除模糊后的白边 */
  z-index: 0;
}

/* 前景图 */
.carousel-track .slide img:not(.bg) {
  z-index: 1;
  position: relative;
  object-fit: contain;
}

/* ========== 指示点 ========== */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.carousel-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

.home .title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  cursor: default;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.title .title-text {
  position: relative;
  padding: 30px;
  border: 3px solid #fff;
}

.title-text p {
  color: white;
  font-weight: bold;
  font-family: "微软雅黑";
}

.title-text .block {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transition: transform 0.5s;
}

.title-text:hover .block {
  transform: scale(2);
}

.title .bottom-text {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  z-index: 20;
  color: #999;
}

/* ========== 电脑端：宽 > 高，图片高度100vh，宽度自适应 ========== */
@media (min-aspect-ratio: 1/1) {
  .carousel {
    height: 100vh;
  }

  .carousel-track .slide {
    height: 100vh;
  }

  .carousel-track .slide img:not(.bg) {
    height: 100vh;
    width: auto;
  }

  .title-text p {
    font-size: 3em;
    line-height: 60px;
    letter-spacing: 15px;
  }

  .title-text .block {
    width: 30px;
    height: 30px;
  }
}

/* ========== 移动端：宽 < 高，图片宽度100%，高度自适应 ========== */
@media (max-aspect-ratio: 1/1) {
  .carousel-track .slide img:not(.bg) {
    width: 100%;
    height: auto;
  }

  .title-text p {
    font-size: 1.5em;
    line-height: 30px;
    letter-spacing: 10px;
  }

  .title-text .block {
    width: 20px;
    height: 20px;
  }
}

/* ========== 关于我们 ========== */
.about {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-content {
  max-width: 800px;
  padding: 40px;
  text-align: center;
  z-index: 1;
}

.about-content h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.about-content p {
  font-size: 1.1em;
  line-height: 2;
  color: #666;
  margin-bottom: 16px;
}

/* 大引号 */
.quote {
  position: absolute;
  font-size: 20vw;
  font-family: "Georgia", "Times New Roman", serif;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.quote-left {
  top: 10px;
  left: 2vw;
}

.quote-right {
  bottom: -160px;
  right: 2vw;
}

/* 电脑端 */
@media (min-aspect-ratio: 1/1) {
  .about-content h1 {
    font-size: 3em;
  }

  .about-content p {
    font-size: 1.2em;
  }
}

/* 移动端 */
@media (max-aspect-ratio: 1/1) {
  .about-content {
    padding: 20px;
  }

  .about-content h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 1em;
  }

  .quote {
    font-size: 30vw;
  }
}

/* ========== 荣誉奖项 ========== */
.award {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.golden-wave {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 300px;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 164, 86, 0.08) 40%, rgba(201, 164, 86, 0.15) 50%, rgba(201, 164, 86, 0.08) 60%, transparent 100%);
  transform: translateY(-50%) rotate(-3deg);
}

.wave-2 {
  transform: translateY(-40%) rotate(2deg);
  opacity: 0.6;
}

.award-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.laurel {
  width: 60px;
  flex-shrink: 0;
}

.laurel svg {
  width: 100%;
  height: auto;
}

.award-title-group {
  text-align: center;
}

.award-title {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 12px;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(201, 164, 86, 0.3);
}

.award-subtitle {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.title-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a456, transparent);
  margin: 0 auto 20px;
}

.award-desc {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
}

.award-scroll-hint {
  margin: 30px 0 40px;
}

.scroll-arrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.5em;
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.award-list {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.award-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 520px;
}

.award-item {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 164, 86, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.award-item:hover {
  background: rgba(201, 164, 86, 0.08);
  border-color: rgba(201, 164, 86, 0.3);
  transform: translateX(4px);
}

.award-year {
  font-size: 1.2em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  min-width: 60px;
  margin-right: 16px;
}

.award-deco {
  color: #c9a456;
  font-size: 1.4em;
  margin: 0 8px;
  opacity: 0.7;
}

.award-name {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  letter-spacing: 1px;
}

.award-level {
  color: #c9a456;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(201, 164, 86, 0.4);
}

.award-more {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: rgba(201, 164, 86, 0.1);
  border: 1px solid rgba(201, 164, 86, 0.3);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.award-more:hover {
  background: rgba(201, 164, 86, 0.2);
  border-color: rgba(201, 164, 86, 0.5);
  color: #fff;
}

.more-arrow {
  animation: bounceDown 1.5s infinite;
}

.more-deco {
  color: #c9a456;
}

/* 电脑端 */
@media (min-aspect-ratio: 1/1) {
  .award-content {
    padding: 80px 60px;
  }

  .award-header {
    gap: 50px;
  }

  .laurel {
    width: 70px;
  }
}

/* 移动端 */
@media (max-aspect-ratio: 1/1) {
  .award-content {
    padding: 50px 20px;
  }

  .award-header {
    gap: 15px;
    flex-wrap: wrap;
  }

  .laurel {
    width: 40px;
  }

  .award-title {
    font-size: 2.2em;
    letter-spacing: 6px;
  }

  .award-subtitle {
    font-size: 0.75em;
    letter-spacing: 4px;
  }

  .award-desc {
    font-size: 0.8em;
    letter-spacing: 2px;
  }

  .award-list {
    flex-direction: column;
    gap: 20px;
  }

  .award-column {
    gap: 12px;
  }

  .award-item {
    padding: 14px 16px;
  }

  .award-year {
    font-size: 1em;
    min-width: 45px;
    margin-right: 8px;
  }

  .award-deco {
    font-size: 1.1em;
    margin: 0 4px;
  }

  .award-name {
    font-size: 0.85em;
  }

  .award-level {
    text-shadow: 0 0 6px rgba(201, 164, 86, 0.3);
  }

  .award-more {
    margin-top: 30px;
    padding: 12px 28px;
    font-size: 0.85em;
  }
}

/* ========== 时间线 ========== */
.timeline {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-title {
  font-size: 3em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 10px;
  margin-bottom: 12px;
}

.timeline-subtitle {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.timeline-container {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(201, 164, 86, 0.5), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 50px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background: #c9a456;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 164, 86, 0.6);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 164, 86, 0.15);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-card:hover {
  background: rgba(201, 164, 86, 0.08);
  border-color: rgba(201, 164, 86, 0.3);
  transform: translateY(-4px);
}

.timeline-date {
  font-size: 0.85em;
  color: #c9a456;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.timeline-name {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  letter-spacing: 1px;
}

/* 移动端 */
@media (max-aspect-ratio: 1/1) {
  .timeline {
    padding: 50px 20px;
  }

  .timeline-title {
    font-size: 2em;
    letter-spacing: 6px;
  }

  .timeline-subtitle {
    font-size: 0.75em;
    letter-spacing: 4px;
  }

  .timeline-header {
    margin-bottom: 40px;
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 15px 15px 15px 50px !important;
  }

  .timeline-dot {
    left: 13px !important;
    right: auto !important;
  }

  .timeline-date {
    font-size: 0.8em;
  }

  .timeline-name {
    font-size: 0.9em;
  }
}

/* ========== 底部 ========== */
.floor {
  width: 100%;
  background: #080b14;
  padding: 60px 40px 30px;
}

.floor-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 164, 86, 0.15);
}

.floor-brand {
  flex-shrink: 0;
}

.floor-logo svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.floor-name {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.floor-slogan {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.floor-links {
  display: flex;
  gap: 60px;
}

.floor-col h3 {
  font-size: 0.9em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.floor-col a,
.floor-col p {
  display: block;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s;
}

.floor-col a:hover {
  color: #c9a456;
}

.floor-social {
  display: flex;
  gap: 16px;
}

.floor-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 164, 86, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.floor-social a:hover {
  border-color: #c9a456;
  color: #c9a456;
  background: rgba(201, 164, 86, 0.1);
}

.floor-social svg {
  width: 18px;
  height: 18px;
}

.floor-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
}

.floor-bottom p {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

/* 移动端 */
@media (max-aspect-ratio: 1/1) {
  .floor {
    padding: 40px 20px 20px;
  }

  .floor-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .floor-links {
    flex-direction: column;
    gap: 24px;
  }

  .floor-social {
    justify-content: center;
  }
}

/* ========== 照片墙 ========== */
.photo {
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.photo-header {
  text-align: center;
  padding: 50px 20px 30px;
  flex-shrink: 0;
}

.photo-title {
  font-size: 3em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 10px;
  margin-bottom: 12px;
}

.photo-subtitle {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.photo-wall {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 0 40px 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 164, 86, 0.3) transparent;
}

.photo-wall::-webkit-scrollbar {
  height: 6px;
}

.photo-wall::-webkit-scrollbar-track {
  background: transparent;
}

.photo-wall::-webkit-scrollbar-thumb {
  background: rgba(201, 164, 86, 0.3);
  border-radius: 3px;
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 300px;
}

.photo-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 86, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.photo-item:hover {
  border-color: rgba(201, 164, 86, 0.4);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 164, 86, 0.15);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 移动端 */
@media (max-aspect-ratio: 1/1) {
  .photo-header {
    padding: 40px 20px 20px;
  }

  .photo-title {
    font-size: 2em;
    letter-spacing: 6px;
  }

  .photo-subtitle {
    font-size: 0.75em;
    letter-spacing: 4px;
  }

  .photo-wall {
    padding: 0 20px 20px;
    gap: 12px;
  }
}
