/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 头部容器 */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Logo样式 */
.logo {
    width: 180px;
    height: auto;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

/* 导航栏容器 */
.nav-bar {
    display: flex;
    align-items: center;
}

/* 导航列表 */
.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

/* 导航项样式 */
.nav-item {
    position: relative;
    padding: 5px 0;
}

/* 导航链接样式 */
.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-link:hover {
    color: #007bff;
    background-color: rgba(0,123,255,0.1);
}

/* 活动状态样式 */
.nav-link.active {
    color: #007bff;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 20px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* 联系页面专用样式 */
/* 联系页面专用样式 */
.contact-container {
    margin-top: 100px;
    padding: 60px 20px;
    background: #f8f9fa;
    min-height: calc(100vh - 160px);
}

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

.contact-header h1 {
    font-size: 2.6em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* 联系信息样式 */
.contact-info {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    width: 100%;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.info-item h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.info-content {
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #0d47a1;
    text-decoration: none;
    transition: opacity 0.3s;
}

.info-content a:hover {
    opacity: 0.8;
}

/* 二维码区域 */
.qrcode-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.qrcode-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.qrcode-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    display: block;
}

.qrcode-tip {
    color: #7f8c8d;
    font-size: 0.95em;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-wrapper {
        gap: 40px;
    }

    .contact-info {
        padding: 30px;
    }

    .info-item {
        gap: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .qrcode-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 2em;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .qrcode-img {
        width: 180px;
        height: 180px;
    }
}



/* 底部背景图区块 */
.footerPng {
  height: 200px;
  background: linear-gradient(135deg, 
      #0d47a1 20%,  /* 品牌主色深蓝 */
      #2a3a6e 40%,  /* 午夜蓝 */
      #6c5b7b 80%,  /* 蓝紫色 */
      #c06c84       /* 浅品红 */
	);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 80px;
  /* 添加微纹理提升质感 */
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.1) 10%, transparent 30%),
    linear-gradient(135deg, #0d47a1, #6c5b7b);
}

/* 文字增强可读性 */
.footerPng-text {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 3px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3); /* 添加文字阴影 */
  font-family: 'Microsoft YaHei', sans-serif;
  animation: fadeInUp 0.8s ease;
}

/* 版权信息 */
.footer {
  background: #f8f9fa;
  padding: 25px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.copyright {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.icp-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 15px;
}

.icp-link:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式适配 */
@media (max-width: 768px) {
  .footerPng {
    height: 150px;
    margin-top: 50px;
  }
  
  .footerPng-text {
    font-size: 1.5rem;
    padding: 0 20px;
    text-align: center;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}
