﻿   /* FAQ模块标题 */



        .faq-section-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 24px;
            font-weight: 600;
            border-left: 4px solid #3498db;
            padding-left: 12px;
        }

        /* FAQ列表容器 */
        .city-faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* 单个FAQ项 */
        .city-faq-item {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* 鼠标悬浮效果 */
        .city-faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        /* FAQ问题（折叠标题） */
        .city-faq-item summary {
            padding: 18px 20px;
            font-size: 16px;
            color: #2c3e50;
            font-weight: 500;
            cursor: pointer;
            list-style: none; /* 隐藏默认三角 */
            position: relative;
            display: flex;
            align-items: center;
        }

        /* 自定义折叠箭头 */
        .city-faq-item summary::after {
            content: "▼";
            color: #3498db;
            font-size: 12px;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        /* 展开后箭头旋转 */
        .city-faq-item details[open] summary::after {
            transform: rotate(180deg);
        }

        /* 去除Chrome默认的focus样式（可选） */
        .city-faq-item summary::-webkit-details-marker {
            display: none;
        }

        /* FAQ回答区域 */
        .faq-answer {
            padding: 0 20px 20px;
            color: #586675;
            line-height: 1.8;
            font-size: 15px;
        }

        /* 回答内的表格样式 */
        .faq-answer table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            background: #f9f9f9;
            border-radius: 4px;
            overflow: hidden;
        }

        .faq-answer th, .faq-answer td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e6e6e6;
        }

        .faq-answer th {
            background-color: #3498db;
            color: #ffffff;
            font-weight: 500;
        }

        .faq-answer tr:last-child td {
            border-bottom: none;
        }

        /* 回答内的图片样式 */
        .faq-answer img {
            max-width: 100%;
            border-radius: 4px;
            margin: 16px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .faq-section-title {
                font-size: 20px;
            }
            .city-faq-item summary {
                padding: 15px 16px;
                font-size: 15px;
            }
            .faq-answer {
                padding: 0 16px 16px;
                font-size: 14px;
            }
            .faq-answer th, .faq-answer td {
                padding: 10px 12px;
                font-size: 14px;
            }
        }