/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
.css365iz-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 容器 */
.css365iz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.css365iz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.css365iz-nav {
    padding: 1rem 0;
}

.css365iz-nav .css365iz-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.css365iz-logo-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s;
}

.css365iz-logo-link:hover {
    color: #1e3f73;
}

.css365iz-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.css365iz-nav-item {
    margin: 0;
    padding: 0;
}

.css365iz-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.css365iz-nav-link:hover,
.css365iz-nav-link.css365iz-active {
    color: #2c5aa0;
}

.css365iz-nav-link.css365iz-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5aa0;
}

.css365iz-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.css365iz-toggle-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

/* 菜单按钮打开状态动画 */
.css365iz-mobile-menu-toggle.css365iz-active .css365iz-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.css365iz-mobile-menu-toggle.css365iz-active .css365iz-toggle-line:nth-child(2) {
    opacity: 0;
}

.css365iz-mobile-menu-toggle.css365iz-active .css365iz-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 主横幅 */
.css365iz-hero {
    margin-top: 70px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.css365iz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.css365iz-hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css365iz-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 0;
}

.css365iz-hero-content {
    text-align: left;
    color: #fff;
    padding: 2rem 0;
}

.css365iz-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.css365iz-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.css365iz-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.css365iz-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.css365iz-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* 按钮样式 */
.css365iz-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.css365iz-btn-primary {
    background-color: #fff;
    color: #2c5aa0;
}

.css365iz-btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.css365iz-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.css365iz-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.css365iz-btn-block {
    width: 100%;
    text-align: center;
}

/* 核心服务板块 */
.css365iz-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.css365iz-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 3rem;
    position: relative;
}

.css365iz-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2c5aa0;
    border-radius: 2px;
}

.css365iz-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.css365iz-service-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.css365iz-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.css365iz-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #2c5aa0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css365iz-service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.css365iz-service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.css365iz-service-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.css365iz-service-link:hover {
    color: #1e3f73;
}

/* 数据统计 */
.css365iz-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: #fff;
}

.css365iz-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.css365iz-stat-item {
    text-align: center;
}

.css365iz-stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.css365iz-stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 服务流程 */
.css365iz-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.css365iz-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 769px) {
    .css365iz-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.css365iz-process-step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.css365iz-process-step:hover {
    transform: translateY(-5px);
}

.css365iz-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.css365iz-step-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.css365iz-step-description {
    color: #666;
    line-height: 1.6;
}

.css365iz-step-arrow {
    display: none;
    font-size: 2rem;
    color: #2c5aa0;
    align-self: center;
    justify-self: center;
}

/* 优势特色 */
.css365iz-advantages {
    padding: 80px 0;
    background-color: #fff;
}

.css365iz-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.css365iz-advantage-card {
    background-color: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.css365iz-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2c5aa0;
}

.css365iz-advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.css365iz-advantage-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.css365iz-advantage-text {
    color: #666;
    line-height: 1.8;
}

/* 健康知识详细 */
.css365iz-health-knowledge {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.css365iz-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.css365iz-knowledge-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.css365iz-knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.css365iz-knowledge-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.css365iz-image-placeholder-small {
    width: 100%;
    height: 100%;
}

.css365iz-knowledge-content {
    padding: 1.5rem;
}

.css365iz-knowledge-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.css365iz-knowledge-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.css365iz-knowledge-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.css365iz-knowledge-date {
    color: #999;
    font-size: 0.9rem;
}

.css365iz-knowledge-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.css365iz-knowledge-link:hover {
    color: #1e3f73;
}

/* 专家团队 */
.css365iz-team {
    padding: 80px 0;
    background-color: #fff;
}

.css365iz-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.css365iz-team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.css365iz-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.css365iz-member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2c5aa0;
}

.css365iz-member-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.css365iz-member-title {
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 1rem;
}

.css365iz-member-desc {
    color: #666;
    line-height: 1.8;
}

/* 常见问题 */
.css365iz-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.css365iz-faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.css365iz-faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.css365iz-faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.css365iz-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.css365iz-faq-question:hover {
    background-color: #f8f9fa;
}

.css365iz-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.css365iz-faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f4ff;
    transition: transform 0.3s;
}

.css365iz-faq-item.css365iz-active .css365iz-faq-toggle {
    transform: rotate(180deg);
}

.css365iz-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.css365iz-faq-item.css365iz-active .css365iz-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.css365iz-faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 关于我们 */
.css365iz-about {
    padding: 80px 0;
    background-color: #fff;
}

.css365iz-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.css365iz-about-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.css365iz-about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.css365iz-feature-item {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
}

.css365iz-about-image {
    width: 100%;
}

.css365iz-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* 联系我们 */
.css365iz-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.css365iz-contact .css365iz-section-title {
    color: #fff;
}

.css365iz-contact .css365iz-section-title::after {
    background-color: #fff;
}

.css365iz-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.css365iz-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.css365iz-contact-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.css365iz-contact-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.css365iz-contact-text {
    font-size: 1.1rem;
    opacity: 0.95;
}

.css365iz-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.css365iz-form-group {
    width: 100%;
}

.css365iz-form-input,
.css365iz-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
}

.css365iz-form-input:focus,
.css365iz-form-textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.css365iz-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* 页脚 */
.css365iz-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.css365iz-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.css365iz-footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.css365iz-footer-text {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.css365iz-footer-links {
    list-style: none;
}

.css365iz-footer-links li {
    margin-bottom: 0.5rem;
}

.css365iz-footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.css365iz-footer-link:hover {
    color: #fff;
}

.css365iz-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.css365iz-footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 导航栏响应式 */
    .css365iz-nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        padding: 2rem;
        transition: left 0.3s ease-in-out;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .css365iz-nav-menu.css365iz-active {
        left: 0;
    }

    .css365iz-nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .css365iz-nav-item:last-child {
        border-bottom: none;
    }

    .css365iz-nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }

    .css365iz-nav-link.css365iz-active::after {
        display: none;
    }

    .css365iz-mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .css365iz-logo-link {
        font-size: 1.2rem;
        z-index: 1001;
        position: relative;
    }

    .css365iz-hero {
        height: auto;
        min-height: 500px;
        margin-top: 60px;
        padding: 2rem 0;
    }

    .css365iz-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .css365iz-hero-content {
        text-align: center;
        order: 1;
    }

    .css365iz-hero-image {
        order: 2;
    }

    .css365iz-hero-img {
        max-height: 300px;
    }

    .css365iz-hero-title {
        font-size: 2rem;
    }

    .css365iz-hero-subtitle {
        font-size: 1rem;
    }

    .css365iz-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .css365iz-hero-buttons .css365iz-btn {
        width: 100%;
        max-width: 300px;
    }

    .css365iz-services-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .css365iz-about-features {
        grid-template-columns: 1fr;
    }

    .css365iz-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .css365iz-section-title {
        font-size: 2rem;
    }

    .css365iz-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .css365iz-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .css365iz-stat-number {
        font-size: 2.5rem;
    }

    .css365iz-stat-label {
        font-size: 1rem;
    }

    .css365iz-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .css365iz-step-arrow {
        display: none;
    }

    .css365iz-advantages-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .css365iz-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* 小屏幕优化 */
    .css365iz-container {
        padding: 0 15px;
    }

    /* 导航栏小屏幕优化 */
    .css365iz-logo-link {
        font-size: 1rem;
    }

    .css365iz-nav {
        padding: 0.75rem 0;
    }

    .css365iz-nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
    }

    .css365iz-nav-link {
        font-size: 1rem;
        padding: 0.875rem 0;
    }

    /* 横幅小屏幕优化 */
    .css365iz-hero {
        min-height: auto;
        padding: 1.5rem 0;
        margin-top: 55px;
    }

    .css365iz-hero-wrapper {
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .css365iz-hero-img {
        max-height: 250px;
    }

    .css365iz-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .css365iz-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .css365iz-hero-buttons .css365iz-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .css365iz-services,
    .css365iz-about,
    .css365iz-contact,
    .css365iz-stats,
    .css365iz-process,
    .css365iz-advantages,
    .css365iz-health-knowledge,
    .css365iz-team,
    .css365iz-faq {
        padding: 50px 0;
    }

    /* 统计板块小屏幕优化 */
    .css365iz-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .css365iz-stat-number {
        font-size: 2rem;
    }

    .css365iz-stat-label {
        font-size: 0.9rem;
    }

    /* 服务卡片小屏幕优化 */
    .css365iz-service-card {
        padding: 1.5rem 1rem;
    }

    .css365iz-service-title {
        font-size: 1.2rem;
    }

    .css365iz-service-description {
        font-size: 0.9rem;
    }

    /* 优势卡片小屏幕优化 */
    .css365iz-advantage-card {
        padding: 1.5rem 1rem;
    }

    .css365iz-advantage-icon {
        font-size: 2.5rem;
    }

    .css365iz-advantage-title {
        font-size: 1.1rem;
    }

    /* 知识卡片小屏幕优化 */
    .css365iz-knowledge-card {
        margin-bottom: 1rem;
    }

    .css365iz-knowledge-title {
        font-size: 1.1rem;
    }

    .css365iz-knowledge-excerpt {
        font-size: 0.9rem;
    }

    /* 专家团队小屏幕优化 */
    .css365iz-member-avatar {
        width: 120px;
        height: 120px;
    }

    .css365iz-member-name {
        font-size: 1.2rem;
    }

    /* FAQ小屏幕优化 */
    .css365iz-faq-question h3 {
        font-size: 1rem;
    }

    .css365iz-faq-answer p {
        font-size: 0.9rem;
    }

    /* 联系表单小屏幕优化 */
    .css365iz-contact-item {
        padding: 1rem;
    }

    .css365iz-contact-title {
        font-size: 1rem;
    }

    .css365iz-contact-text {
        font-size: 0.9rem;
    }
}

