/*
Theme Name: maomao
Theme URI: https://www.imaseo.com
Author: 毛毛
Author URI: https://www.imaseo.com
Description:毛毛的自定义主题
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #0073aa;
}

a:hover {
    color: #005177;
}

/* header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    position: relative;
    z-index: 10;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu li {
    list-style: none;
}

/* main */
.site-main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 首页资源推荐 */
.fp-resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.fp-resource-card {
    flex: 1 1 calc(25% - 20px);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
}

.fp-resource-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 最新文章 */
.fp-blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.fp-blog-card {
    flex: 1 1 calc(33.33% - 20px);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.fp-blog-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fp-blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fp-blog-content {
    padding: 15px;
}

.fp-read-more {
    display: inline-block;
    margin-top: 10px;
    color: #0073aa;
}

.fp-read-more:hover {
    color: #005177;
}

/* footer */
/*.site-footer {*/
/*    background: #f7f7f7;*/
/*    border-top: 1px solid #eee;*/
/*    padding: 30px 20px;*/
/*    text-align: center;*/
/*}*/

.footer-widgets {
    margin-bottom: 20px;
}

/* ===== Front Page CSS ===== */

/* 全局通用 */
.fp-banner-section,
.fp-comparison-section {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Banner 部分 ===== */
.fp-banner-section {
    background: #f5f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fp-banner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fp-banner-content {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 20px;
}

.fp-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.fp-banner-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.fp-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.fp-banner-btn:hover {
    background-color: #005177;
}

.fp-banner-image {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
}

.fp-banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ===== 对比卡片部分 ===== */
.fp-comparison-section {
    background: #fff;
}

.fp-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fp-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.fp-section-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

.fp-comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.fp-platform-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    flex: 1 1 400px;
    max-width: 500px;
}

.fp-platform-header {
    margin-bottom: 20px;
}

.fp-platform-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.fp-platform-subtitle {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

.fp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.fp-feature-icon {
    font-size: 20px;
    color: #00aaff;
    margin-right: 12px;
    flex-shrink: 0;
    line-height: 1.2;
}

.fp-feature-content h4 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #222;
}

.fp-feature-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* ===== 推荐区域 ===== */
.fp-comparison-recommendation {
    margin-top: 50px;
    background: #eef6ff;
    border-radius: 12px;
    padding: 30px;
}

.fp-recommendation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fp-recommendation-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0073aa;
}

.fp-recommendation-main {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fp-recommendation-detail {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.fp-recommendation-scenarios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.fp-scenario {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fp-scenario-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* 响应式 */
@media (max-width: 992px) {
    .fp-banner-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .fp-banner-content {
        max-width: 100%;
        padding: 10px;
    }

    .fp-comparison-grid {
        flex-direction: column;
        align-items: center;
    }

    .fp-recommendation-scenarios {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .fp-banner-title {
        font-size: 32px;
    }

    .fp-banner-subtitle {
        font-size: 16px;
    }

    .fp-banner-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .fp-platform-title {
        font-size: 22px;
    }

    .fp-feature-content h4 {
        font-size: 16px;
    }

    .fp-feature-content p {
        font-size: 14px;
    }

    .fp-recommendation-title {
        font-size: 22px;
    }

    .fp-recommendation-main {
        font-size: 18px;
    }

    .fp-recommendation-detail {
        font-size: 14px;
    }
}



