
/* 联系表单组件样式 */
.contact-section {
    background: linear-gradient(135deg, #3182ce 0%, #1a365d 100%);
    color: white;
    padding: 30px 0;
}

.contact-section .section-title h2 {
    color: white;
}

.contact-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-header {
    text-align: center;
    margin-bottom: 20px;
}

.contact-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.contact-form {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 60px;
    resize: vertical;
    font-family: inherit;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background-color: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.submit-button i {
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .contact-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }

    .news-cover {
        display: none !important;
    }

    .filter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-label {
        width: 100% !important;
        margin-bottom: 8px;
        text-align: left;
    }

    .filter-options {
        width: 100%;
    }
}

/* 筛选区域样式 */
.filter-section {
    padding: 10px 0;
    border-radius: 8px;
}

.filter-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.filter-label {
  width: 50px;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

.filter-options {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 6px 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #666;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: #2b85e4;
  color: #2b85e4;
}

.filter-btn.active {
  background: #2b85e4;
  color: #fff;
  border-color: #2b85e4;
}


.breadcrumb {
  color: #666;
  font-size: 14px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.news-item:hover {
  transform: translateY(-2px);
}

.news-cover {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  color: inherit;
}

.news-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.news-info {
  display: flex;
  gap: 20px;
  color: #999;
  font-size: 13px;
}

.news-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}
