/* 联系我们页面样式 - 深棕色主题 */
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', 'Microsoft YaHei', sans-serif;
  color: #f0f0f0;
  background: #3a2f2b;
  line-height: 1.6;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 面包屑导航 */
.zh_breadcrumb {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  margin-bottom: 50px;
}

.zh_breadcrumb_container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zh_breadcrumb_icon {
  font-size: 16px;
  opacity: 0.8;
  color: rgba(240, 240, 240, 0.8);
}

.zh_breadcrumb_text {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.8);
}

.zh_breadcrumb_text a {
  color: rgba(240, 240, 240, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.zh_breadcrumb_text a:hover {
  color: #fa7d09;
}

.zh_breadcrumb_text span {
  color: #fa7d09;
}

/* 页面标题 */
.zh_page_header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.zh_page_title {
  font-size: 42px;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.zh_page_subtitle {
  font-size: 16px;
  color: rgba(240, 240, 240, 0.6);
  font-weight: 400;
}

/* 联系信息区域 */
.zh_contact_section {
  padding-bottom: 80px;
}

.zh_contact_intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.zh_contact_intro p {
  font-size: 17px;
  line-height: 2;
  color: rgba(240, 240, 240, 0.85);
  margin-bottom: 15px;
}

/* 联系卡片 */
.zh_contact_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}

.zh_contact_card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.zh_contact_card:hover {
  transform: translateY(-10px);
  border-color: rgba(250, 125, 9, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.zh_contact_icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #fa7d09, #ff9500);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(250, 125, 9, 0.4);
}

.zh_contact_card:hover .zh_contact_icon {
  transform: rotateY(360deg);
}

.zh_contact_icon i {
  font-size: 40px;
  color: #ffffff;
}

.zh_contact_title {
  font-size: 22px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.zh_contact_info {
  font-size: 18px;
  font-weight: 600;
  color: #fa7d09;
  margin-bottom: 15px;
  word-break: break-all;
}

.zh_contact_desc {
  font-size: 15px;
  color: rgba(240, 240, 240, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* 补充说明 */
.zh_contact_note {
  max-width: 900px;
  margin: 0 auto;
}

.zh_note_content {
  background: rgba(250, 125, 9, 0.08);
  border: 1px solid rgba(250, 125, 9, 0.2);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 25px;
  border-left: 4px solid #fa7d09;
}

.zh_note_content > i {
  font-size: 32px;
  color: #fa7d09;
  flex-shrink: 0;
  margin-top: 5px;
}

.zh_note_content p {
  font-size: 16px;
  line-height: 2;
  color: rgba(240, 240, 240, 0.85);
  margin-bottom: 15px;
}

.zh_note_content p:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .zh_contact_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .zh_contact_card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .zh_container {
    padding: 0 20px;
  }

  .zh_breadcrumb {
    padding: 15px 0;
    margin-bottom: 30px;
  }

  .zh_page_header {
    margin-bottom: 40px;
  }

  .zh_page_title {
    font-size: 28px;
  }

  .zh_contact_intro p {
    font-size: 16px;
  }

  .zh_note_content {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .zh_note_content > i {
    font-size: 28px;
  }

  .zh_note_content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .zh_page_title {
    font-size: 24px;
  }

  .zh_contact_card {
    padding: 35px 25px;
  }

  .zh_contact_icon {
    width: 80px;
    height: 80px;
  }

  .zh_contact_icon i {
    font-size: 36px;
  }

  .zh_contact_title {
    font-size: 20px;
  }

  .zh_contact_info {
    font-size: 16px;
  }

  .zh_note_content {
    padding: 25px 20px;
  }
}

/* AOS动画支持 */
.animate-fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
