/* ===========================
   全局基础样式
=========================== */
body {
    margin: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ===========================
   Header
=========================== */
.ao-header {
    width: 100%;
    background: #0a1a2a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.ao-header-container {
    max-width: 1280px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ao-logo a {
    font-size: 20px;
    font-weight: bold;
    color: #00e0ff;
}

.ao-nav-list {
    display: flex;
    gap: 28px;
}

.ao-nav-list li a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.ao-nav-list li a:hover {
    color: #00e0ff;
}

/* 移动端菜单按钮 */
.ao-nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===========================
   Footer
=========================== */
.ao-footer {
    background: #0a1a2a;
    color: #fff;
    padding: 40px 20px 20px;
}

.ao-footer-container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ao-footer-col h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #00e0ff;
}

.ao-footer-col ul li {
    margin-bottom: 8px;
}

.ao-footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #123;
    font-size: 14px;
    opacity: 0.8;
}

/* ===========================
   响应式：Pad
=========================== */
@media (max-width: 992px) {
    .ao-nav-list {
        gap: 18px;
    }

    .ao-footer-container {
        flex-direction: column;
        text-align: left;
    }
}

/* ===========================
   响应式：Mobile
=========================== */
@media (max-width: 768px) {

    .ao-nav-toggle {
        display: block;
        color: #00e0ff;
    }

    .ao-nav-list {
        display: none;
        flex-direction: column;
        background: #0a1a2a;
        padding: 20px;
        gap: 16px;
    }

    .ao-nav-list.ao-nav-open {
        display: flex;
    }

    .ao-footer-container {
        text-align: left;
    }
}
/*通用结束*/
/* ===========================
   面包屑导航
=========================== */
.ao-breadcrumb {
    background: #f3f3f3;
    padding: 12px 20px;
    font-size: 14px;
}

.ao-breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.ao-breadcrumb li a {
    color: #0a1a2a;
    text-decoration: none;
}

.ao-breadcrumb li::after {
    content: ">";
    margin: 0 6px;
    color: #666;
}

.ao-breadcrumb li:last-child::after {
    content: "";
}

/* ===========================
   产品中心标题
=========================== */
.ao-products-header {
    background: #eef4ff;
    padding: 40px 20px;
    text-align: center;
}

.ao-products-header h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0a1a2a;
}

.ao-products-header p {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: auto;
}

/* ===========================
   产品列表
=========================== */
.ao-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.ao-product-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ao-product-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ===========================
   响应式布局
=========================== */
@media (max-width: 992px) {
    .ao-products-header h1 {
        font-size: 28px;
    }
    .ao-products-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ao-products-grid {
        flex-direction: column;
    }
    .ao-product-card {
        min-width: 100%;
    }
}
.ao-advantages-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ao-advantages-table th,
.ao-advantages-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.ao-advantages-table th {
    background: #0a1a2a;
    color: #fff;
    font-size: 16px;
}

.ao-advantages-table td {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.ao-advantages-table tr:last-child td {
    border-bottom: none;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .ao-advantages-table th,
    .ao-advantages-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
    .ao-advantages-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
/* ===========================
   FAQ 模块基础样式
=========================== */
.ao-faq {
    background: #f7f9fc;
    padding: 60px 20px;
}

.ao-faq-list {
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ 每一项 */
.ao-faq-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: 0.3s;
}

/* 使用 details/summary 实现折叠 */
.ao-faq-item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #0a1a2a;
    list-style: none;
    position: relative;
}

.ao-faq-item summary::marker {
    display: none;
}

/* 展开/收起图标 */
.ao-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
    color: #666;
}

.ao-faq-item[open] summary::after {
    content: "-";
    transform: rotate(180deg);
    color: #0a1a2a;
}

/* 折叠内容 */
.ao-faq-item p {
    padding: 0 20px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    animation: ao-fadeIn 0.3s ease;
}

/* 动画效果 */
@keyframes ao-fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   响应式布局
=========================== */
@media (max-width: 768px) {
    .ao-faq-list {
        padding: 0 10px;
    }

    .ao-faq-item summary {
        font-size: 16px;
    }

    .ao-faq-item p {
        font-size: 15px;
    }
}
