
/* CNFans模式代购 样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
    min-height: 100vh;
}
main {
    padding-top: 70px;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2e8b57, #66cdaa);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.section {
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2e8b57;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.05rem;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2e8b5720, #66cdaa20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2e8b57;
}
.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}
.hero-banner {
    background: linear-gradient(135deg, #2e8b57, #3cb371);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}
.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.feature-section {
    background: white;
    padding: 80px 20px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-item {
    text-align: center;
    padding: 30px;
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.feature-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e8b57;
}
.page-header {
    background: linear-gradient(135deg, #2e8b57, #3cb371);
    color: white;
    padding: 100px 20px 50px;
    text-align: center;
}
.page-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.page-keyword {
    font-size: 1rem;
    opacity: 0.9;
}
.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.content-block {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.content-block h3 {
    color: #2e8b57;
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.content-block ul {
    list-style: none;
    padding-left: 0;
}
.content-block li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}
.content-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #66cdaa;
    font-weight: bold;
}
.site-footer {
    background: linear-gradient(135deg, #2e8b57, #3cb371);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-section h4 {
    margin: 0 0 15px;
    font-size: 1.1rem;
}
.footer-section p {
    margin: 8px 0;
    opacity: 0.9;
    font-size: 0.95rem;
}
.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer-section a:hover {
    opacity: 0.8;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    main { padding-top: 60px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .section { padding: 60px 15px; }
    .card { padding: 20px; }
    .content-block { padding: 25px; }
    .page-header { padding: 80px 15px 40px; }
    .page-title { font-size: 1.8rem; }
}
