/* 首页专用样式 */

/* 所有标题使用 ALBB 字体 */
.section-title,
.news-item-title,
.notice-title,
.hero-title,
.project-title {
    font-family: 'ALBB';
}

.ldbz-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 800px;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    height: 100%;
    padding-top: 131px;
}

.hero-text {
    flex: 1;
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cityscape {
    position: relative;
    width: 300px;
    height: 200px;
}

.building {
    position: absolute;
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.building-1 {
    width: 40px;
    height: 120px;
    left: 20px;
    bottom: 0;
}

.building-2 {
    width: 35px;
    height: 100px;
    left: 70px;
    bottom: 0;
}

.building-3 {
    width: 45px;
    height: 140px;
    left: 115px;
    bottom: 0;
}

.building-4 {
    width: 38px;
    height: 110px;
    left: 170px;
    bottom: 0;
}

.building-5 {
    width: 42px;
    height: 130px;
    left: 220px;
    bottom: 0;
}

/* 新闻资讯部分 */
.news-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 1);
    display: grid;
    place-items: center;
}

/* 新闻资讯容器 */
.news-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 主体内容区域 - 左右布局 */
.news-main-content {
    display: flex;
    width: 100%;
    min-height: 424px;
    gap: 20px;
    box-sizing: border-box;
}

/* 左侧图片区域 - 660px，按比例计算为43.42% */
.news-left-section {
    width: 43.42%;
    flex: 0 0 43.42%;
    height: 424px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* 右侧内容区域 - 820px，按比例计算为53.95% */
.news-right-section {
    width: 53.95%;
    flex: 0 0 53.95%;
    min-height: 424px;
    display: flex;
    flex-direction: column;
}

/* 左侧轮播样式 */
.news-left-section .news-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-left-section .news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* 隐藏的图片不响应点击 */
    cursor: pointer;
}

.news-left-section .news-slide.active {
    opacity: 1;
    pointer-events: auto; /* 激活的图片可以点击 */
}

.news-left-section .news-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: inherit; /* 继承父元素的pointer-events设置 */
}

/* 右侧导航标签样式 */
.news-right-section .news-tabs {
    display: flex;
    height: 60px;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}

.news-right-section .tab-btn {
    width: 205px;
    height: 60px;
    margin-right: 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-right-section .tab-btn:hover {
    color: #333;
}

.news-right-section .tab-btn.active {
    color: rgba(91, 190, 240, 1);
}

.news-right-section .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(91, 190, 240, 1);
    transform-origin: left;
    animation: expandFromLeft 0.5s ease-out;
}

/* 从左到右展开动画 */
@keyframes expandFromLeft {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* 右侧新闻列表区域 */
.news-content-area {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-content-area .news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.news-content-area .news-list:not(.active) {
    display: none;
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 670px;
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 20px; */
    box-sizing: border-box;
    align-items: start;
}

.news-tab-content {
    max-width: 1560px;
    width: 100%;
    height: 670px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
}
.featured-news {
    width: 100%;
    max-width: 960px;
    height: 100%;
    border-radius: 12px;
    padding-top: 30px;
    box-sizing: border-box;
}

.news-image {
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* 新闻轮播 */
.news-slider {
    position: relative;
    width: 960px;
    height: 540px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.news-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.news-slide.active {
    opacity: 1;
}

.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.news-indicators {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;

    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.news-left-title {
    font-size: 16px;
    color: rgba(255, 255, 255);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    line-height: 1.5;
}

.new-right-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 15px;
}
.news-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.news-indicator.active {
    background: #49a2cf;
    width: 160px; /* 激活段更长 */
}

.news-text {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.news-content-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 54px; /* 固定高度：2行文字 */
    line-height: 27px; /* 行高：54px ÷ 2 = 27px，确保2行刚好填满 */
    flex-shrink: 0; /* 不被压缩 */
}

.view-more,
.view-detail {
    color: rgba(38, 110, 255, 1);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
}

.view-more:hover,
.view-detail:hover {
    color: rgba(38, 110, 255, 1);
}

.news-list {
    border-radius: 12px;
    padding: 30px  0px 0  0px;
    height: 670px;
    display: flex;
    flex-direction: column;
    row-gap:12px;
    box-sizing: border-box;
}

.news-list .view-more {
    margin-top: auto;
    align-self: flex-end;
}


.news-content-area .news-item:first-child:hover {
    background-color: #F5F8FA;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.news-content-area .news-item:first-child .news-date {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.news-content-area .news-item:first-child .news-date .day {
    font-size: 36px;
    font-weight: bold;
    color: rgba(152, 195, 217, 1);
    line-height: 1;
}

.news-content-area .news-item:first-child .news-date .month-year {
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    margin-top: 5px;
}

.news-content-area .news-item:first-child .news-info {
    height: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-content-area .news-item:first-child .news-item-title {
    font-size: 18px;
    color: #333;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content-area .news-item:first-child .news-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 其他新闻条目 - 长条样式 60px高度 - 简洁结构 */
.news-content-area a.news-item {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 300ms;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: #fafafa;
    text-decoration: none;
    color: #222222;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.news-content-area a.news-item:hover {
    background-color: #F5F8FA;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

/* 日期样式 - 第一个span就是日期 */
.news-content-area a.news-item > span:first-child {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    white-space: nowrap;
}

/* 分隔符样式 */
.news-content-area a.news-item .news-separator {
    color: #ccc;
    font-style: normal;
    margin: 0 10px;
    font-size: 14px;
}

/* 标题样式 */
.news-content-area a.news-item .news-title {
    flex: 1;
    font-size: 16px;
    color: #222;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* 箭头样式 */
.news-content-area a.news-item .news-arrow {
    flex-shrink: 0;
    color: #999;
    font-size: 12px;
    font-style: normal;
    margin-left: 10px;
}

/* 确保第一条新闻的div结构不受a.news-item样式影响 */
.news-content-area div.news-item:first-child {
    display: flex;
    gap: 30px;
    padding: 20px;
    height: 140px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #eee;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-content-area .news-item:not(:first-child) .news-info p {
    display: none; /* 小条目不显示描述 */
}

/* 详情按钮样式 */
.news-detail-btn {
    color: #999;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-detail-btn:hover {
    color: rgba(91, 190, 240, 1);
}

/* 兼容原有样式 */
.news-item {
    display: flex;
    gap: 10px;
    height: 124px;
    padding: 12px 0 12px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    align-items: center;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:hover {
    background-color: #F5F8FA;
}

.news-date {
    width: 100px;
    min-width: 100px;
    height: 100px;
    opacity: 1;
    border-radius: 8px;
    border: 1px solid rgba(221, 221, 221, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.news-date .day {
    font-size: 24px;
    font-weight: bold;
    color: rgba(152, 195, 217, 1);
    line-height: 1;
}

.news-date .month-year {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.news-info {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


@media (max-width: 1024px) {
    .news-main-content {
        flex-direction: column;
        height: auto;
        transform: none;
        width: 100%;
    }
    
    .news-left-section,
    .news-right-section {
        width: 100%;
        flex: none;
    }
    
    .news-left-section {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .news-right-section {
        height: auto;
    }
}

.news-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.news-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 重点项目导航区域 */
.projects-nav {
    background-color: #fff;
}

.projects-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 ;
    box-sizing: border-box;
}

.projects-nav .hero-image {
    position: relative;
    width: 800px;
    height: 100%;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-nav .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.projects-nav .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 111, 135, 0.8) 0%, rgba(73, 152, 192, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-nav .hero-content {
    text-align: center;
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
    max-width: 1200px;
    height: 100%;
    padding-top: 131px;
}

.projects-nav .hero-title {
    font-size: 48px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.projects-nav .hero-subtitle {
    font-size: 20px;
    width: 100%;
    margin-bottom: 32px;
    color:rgba(255, 255, 255, 1);
    opacity: 0.9;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projects-nav .hero-btn {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 1);
    background: none;
    width: 160px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-nav .hero-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* 切换模块 */
.projects-tabs {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100px;
}

.tab-item {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    flex: 1;
    height: 100px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-item:hover {
    color: #406F87;
    background-color: rgba(28, 199, 141, 0.1);
}

.tab-item.active {    
    color: rgba(255, 255, 255, 1);   
    background-color: rgba(28, 199, 141, 1);
    font-weight: 600;
}

.tab-item:active {
    transform: translateY(1px);
}

.tab-item:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(64, 111, 135, 0.3);
}

/* 重点项目部分 */
.key-projects {
    height: 719px;
    background: rgba(245, 248, 250, 1);
    display: flex;
    align-items: center;
    padding: 0;
}

.projects-title {
    font-family: 'ALBB';
    font-size: 40px;
    font-weight: normal;
    color: rgba(28, 142, 199, 1);
    text-align: center;
    margin-bottom: 40px;
}

.projects-swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 479px;
    box-sizing: border-box;
}

/* 移除可能冲突的flex样式，让Swiper自己控制 */
.projects-swiper .swiper-wrapper {
    /* 让Swiper自己控制布局 */
}

.projects-swiper .swiper-slide {
    height: 479px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.project-card {
    width: 384px;
    height: 479px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 0 auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: calc(479px - 200px - 40px); /* 总高度 - 图片高度 - padding */
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1;
    text-align: center; /* 🎯 标题居中 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px; /* 🎯 为2行标题预留空间 (18px * 1.1 * 2 ≈ 50px) */
}

.project-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    height: 89.6px; /* 🎯 恢复固定高度，确保显示完整的4行 (14px * 1.6 * 4 = 89.6px) */
}

.project-btn {
    color: rgba(28, 142, 199, 1);
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 120px;
    height: 40px;
    border: 1px solid rgba(28, 142, 199, 1);
}

.project-btn:hover {
    background: rgba(28, 142, 199, 1);
    color: white;
    box-shadow: 0 4px 15px rgba(73, 152, 192, 0.3);
}

/* Swiper 自定义样式 */
.swiper-button-next,
.swiper-button-prev {
    color: #4998C0;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #4998C0;
    color: #ffffff;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: rgba(73, 152, 192, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: #4998C0;
}

/* 确保Swiper正确工作 */
.projects-swiper .swiper-slide {
    height: auto;
}

.projects-swiper .swiper-slide-active {
    transform: scale(1.02);
}

/* 3个以内时居中显示 */
.projects-swiper .swiper-wrapper.centered {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    transform: none !important;
}

.projects-swiper .swiper-wrapper.centered .swiper-slide {
    margin: 0 !important;
    opacity: 1 !important;
    width: 384px !important;
    flex-shrink: 0 !important;
}

/* 响应式设计 - 中等屏幕 */
@media (max-width: 1200px) {
    .projects-swiper .swiper-slide {
        max-width: calc(100vw - 120px);
    }

    .project-card {
        width: 340px;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .projects-swiper .swiper-slide {
        max-width: calc(100vw - 100px);
    }

    .project-card {
        width: 320px;
        max-width: 100%;
    }
}

/* 响应式设计 - 小屏幕 */
@media (max-width: 768px) {
    .home-hero-title {
        font-size: 36px;
    }

    .home-hero-subtitle {
        font-size: 16px;
    }

    .home-hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .tab-list {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tab-item {
        padding: 8px 16px;
        font-size: 14px;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .news-content {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .news-tab-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .featured-news {
        width: 100%;
        max-width: 100%;
    }

    .notices-list {
        max-width: 100%;
        padding: 0 20px;
    }

    .notice-card {
        flex-direction: column;
        padding: 20px;
    }

    .notice-date-section {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
    }

    .notice-day {
        font-size: 28px;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .notice-title {
        font-size: 16px;
    }

    .notice-desc {
        font-size: 13px;
    }

    .news-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .notice-card {
        padding: 15px;
    }

    .notice-day {
        font-size: 24px;
    }

    .notice-title {
        font-size: 15px;
    }

    .notice-desc {
        font-size: 12px;
    }

    .projects-swiper {
        padding: 20px 0 50px 0;
        min-height: 450px;
    }

    .projects-swiper .swiper-slide {
        max-width: calc(100vw - 80px);
        min-height: 420px;
    }

    .project-card {
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        min-height: 420px;
    }

    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 15px;
    }

    .project-title {
        font-size: 16px;
    }

    .project-desc {
        font-size: 13px;
    }

    .project-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

