/* 关于我模块 */
.about-me {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-me-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-me-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0073aa;
}

.about-me-text p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #333;
}

.about-me-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.about-me-btn:hover {
    background-color: #005f8d;
}

/* 移动端自适应 */
@media (max-width: 768px) {
    .about-me-container {
        flex-direction: column;
        text-align: center;
    }
    .about-me-img img {
        margin-bottom: 20px;
    }
    .about-me-text h2 {
        font-size: 1.8rem;
    }
    .about-me-text p {
        font-size: 0.95rem;
    }
}

/* 自研主题模块 */
.theme-section { background: #f9fbfd; border-radius: 12px; padding: 40px; margin: 40px 0; }
.theme-section h2 { text-align: center; margin-bottom: 15px; }
.theme-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 30px; }
.theme-feature { background: #fff; border-radius: 12px; padding: 25px; flex: 1 1 250px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.theme-feature img { width: 60px; margin-bottom: 15px; }
.theme-feature:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }

/* 核心能力模块 */
.skills-section { 
    background: #fff; 
    border-radius: 10px; 
    padding: 40px; 
    margin: 40px 0; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}

.skills-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.skill-item {
    background: linear-gradient(135deg, #0073aa 0%, #006699 100%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-item:hover { 
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.skill-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

/*案例2*/

.case-carousel-section {
    background: #f0f4f8;
    padding: 60px 20px;
}

.case-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 标题 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* 箭头按钮 */
.carousel-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,115,170,0.9);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.3s, transform 0.3s;
}

.carousel-arrow:hover {
    background: #0073aa;
    transform: translateY(-50%) scale(1.06);
}

.carousel-arrow.left {
    left: -22px;
}

.carousel-arrow.right {
    right: -22px;
}

/* 内容裁剪 */
.carousel-wrapper {
    overflow: hidden;
}

/* 轨道 */
.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* 单个案例 */
.carousel-item {
    flex: 0 0 100%;
    padding: 30px;
    box-sizing: border-box;
}

/* 案例标题 */
.case-title {
    text-align: center;
    margin-bottom: 30px;
}

/* 主体左右 */
.case-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* 数据模块 */
.case-stats {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.case-stats li {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.case-stats strong {
    display: block;
    font-size: 22px;
    color: #0073aa;
    margin-bottom: 6px;
}

.case-stats span {
    font-size: 14px;
    color: #555;
}

/* 图片 */
.case-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* 移动端 */
@media (max-width: 768px) {
    .case-body {
        grid-template-columns: 1fr;
    }

    .carousel-arrow.left {
        left: 6px;
    }

    .carousel-arrow.right {
        right: 6px;
    }
}
