﻿.cta-primary{
    margin-right: 5px;
}

/* 功能样式 */
.tt1-container {
    padding: 100px 0;
    max-width: 80%; /* 修改这里：宽度设为80%，即左右各留空10% */
    margin: 0 auto;
}
.wenzhang {
    padding: 100px 0;
    max-width: 80%; /* 修改这里：宽度设为80%，即左右各留空10% */
    margin: 0 auto;
}

/* 核心网格布局 - 固定3列 */
.tt1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 固定3列 */
    gap: 30px; /* 卡片间距 */
}

/* 单个功能卡片样式 */
.tt1-card {
    background: linear-gradient(145deg, #1a2332, #161b27);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* 卡片顶部的装饰光带 */
.tt1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00a8ff, transparent);
    transition: left 0.5s ease;
}

.tt1-card:hover::before {
    left: 100%;
}

/* 卡片悬停效果 */
.tt1-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 100, 255, 0.25);
    border-color: rgba(0, 150, 255, 0.4);
}

/* 图标样式 */
.tt1-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(0, 168, 255, 0.6));
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 功能标题样式 */
.tt1-card h3 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 功能描述样式 */
.tt1-card p {
    margin: 0;
    line-height: 1.7;
    color: #b0b0b0;
    text-align: center;
    font-size: 0.95rem;
}

/* 响应式设计：平板端调整为2列 */
@media (max-width: 1024px) {
    .tt1-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 响应式设计：手机端调整为1列 */
@media (max-width: 768px) {
    .tt1-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tt1-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .tt1-card {
        padding: 25px 20px;
    }
}
/* 常见问题 */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}


/* 标题样式 - 精致霓虹 */
.faq-title {
    margin-top: 50px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #58a6ff;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #58a6ff, transparent);
    margin: 20px auto 0;
}

/* 手风琴容器 */
.faq-accordion {
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid #30363d;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* 问题项样式 */
.faq-item {
    border-bottom: 1px solid #21262d;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(88, 166, 255, 0.03);
}

/* 问题按钮样式 */
.faq-question {
    width: 100%;
    padding: 24px 60px 24px 24px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e6edf3;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question:hover {
    color: #58a6ff;
}

/* 数字指示器 - 更精致 */
.question-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid #30363d;
    border-radius: 4px;
    margin-right: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #58a6ff;
    transition: all 0.3s ease;
}

.faq-question:hover .question-number {
    background: rgba(88, 166, 255, 0.2);
    border-color: #58a6ff;
    transform: scale(1.05);
}

.question-text {
    flex: 1;
    text-align: left;
}

/* 箭头图标 - 简约风格 */
.faq-question::after {
    content: '›';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.4rem;
    color: #8b949e;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(90deg);
    color: #58a6ff;
}

/* 答案内容样式 */
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(13, 17, 23, 0.5);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 80px;
    max-height: 1000px;
}

.answer-content {
    padding: 20px;
    background: rgba(88, 166, 255, 0.05);
    border-left: 3px solid #58a6ff;
    border-radius: 4px;
    margin-top: 16px;
}

.answer-content p {
    margin: 0 0 12px 0;
    color: #8b949e;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content p strong {
    color: #e6edf3;
    font-weight: 500;
}

/* 列表样式 */
.cyber-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cyber-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #8b949e;
}

.cyber-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #58a6ff;
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px 50px 20px 20px;
        font-size: 1rem;
    }
    
    .question-number {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 60px;
    }
    
    .answer-content {
        padding: 16px;
    }
}

/* 微妙的动画效果 */
@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(88, 166, 255, 0.1); }
}

.faq-accordion {
    animation: subtle-glow 6s ease-in-out infinite;
}

/* 激活状态的高光 */
.faq-item.active {
    background: rgba(88, 166, 255, 0.05);
    border-left: 3px solid #58a6ff;
    margin-left: -3px;
}
/*资讯*/
.news-module {
  background-color: #161E28;
  padding: 16px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.news-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.news-link:hover {
  transform: translateY(-2px);
}

.news-item {
  display: flex;
  flex-direction: column;
}

.title-date-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.news-title {
  color: #E0E6ED;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-date {
  color: #8A9BA8;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
/* 图片展示区 */
.gallery-section {
    padding: 2rem 0;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 30px;
}

/* 简化：直接选择gallery-container的直接子div */
.gallery-container > div {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 251, 0.3);
    aspect-ratio: 16/9;
}

/* 简化：直接选择picture内的img */
.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* 悬停效果保持不变 */
.gallery-container > div:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 255, 251, 0.5);
}

.gallery-container > div:hover img {
    transform: scale(1.1);
}

/* 移动端适配 */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-section {
        padding: 1rem 0;
    }
}