/* 基础样式 */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #007bff;
}



.product-image-wrapper,
.case-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* 服务列表样式 */
.service-about-list {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.service-about-list a {
    position: relative;
    display: block;
    overflow: hidden;
}

.service-about-list img {
    width: 100%;
    height: auto;
}

.service-about-list .text-desc {
    position: absolute;
    top: 36px;
    left: 48px;
    z-index: 1;
    color: #FFFFFF;
    font-weight: bold;
}

.service-about-list .text-desc p {
    margin: 0;
}

.service-about-list .text-desc p:first-child {
    font-size: 32px;
}

.service-about-list .text-desc p:last-child {
    font-size: 22px;
}

/* 案例卡片样式 */
.container .theaty-case-card {
    border-radius: 0;
    border: none;
    position: relative;
}

.theaty-case-card .case-card-body {
    background: rgba(0, 0, 0, 0.22);
    position: absolute;
    bottom: 0;
    padding: 13px 19px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theaty-h2-title {
    color: #0C71C0;
    font-size: 40px;
    font-weight: bold
}
.theaty-h3-title{
    font-weight: bold;
    font-size: 28px;
    color: rgba(0,0,0,0.8);
    line-height: 45px;
}

.case-card-body .case-des {
    flex: 1;
}

.case-card-body .card-text {
    color: rgba(249, 249, 249, 0.68);
}

.case-card-body .arrow-icon {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #0E72C0;
    border-top: 2px solid #0E72C0;
    transform: rotate(45deg);
    margin-left: -3px;
}

/* 新闻样式 */
.news-list{
    display: grid;
    column-gap: 102px;
    grid-template-columns: repeat(2, 1fr);

}
.news-item {
    padding: 1rem;
    background-color: #fff;
    border-bottom:2px solid #D8D8D8;
}
.news-item:nth-of-type(5){
    border: none;
}
.news-item:nth-of-type(6){
    border: none;
}
.news-date {
    min-width: 70px;
    color: #0E72C0;
}

.news-image img {
    width: 200px;
    height: 120px;
    object-fit: cover;
}

.news-image a:hover img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* 响应式样式 */
@media (max-width: 768px) {
    /* 服务列表移动端样式 */
    .service-about-list {
        flex-direction: column;
        gap: 10px;
    }

    .service-about-list .text-desc {
        top: 20px;
        left: 20px;
    }

    .service-about-list .text-desc p:first-child {
        font-size: 24px;
    }

    .service-about-list .text-desc p:last-child {
        font-size: 16px;
    }

    /* 新闻移动端样式 */
    .news-list{
        display: grid;
        grid-template-columns: repeat(1, 1fr);

    }
    .news-item {
        padding: 1rem;
        border: none;
        border-bottom:1px solid #D8D8D8;
    }

    .news-image {
        width: calc(100% - 100px);
    }

    .news-image img {
        width: 100%;
        height: 160px;
    }

    .news-date h3 {
        font-size: 1.5rem;
    }
    .theaty-h2-title {
        font-size: 36px;
    }
    .theaty-h3-title{
        font-size: 24px;
    }
    .friendly-links-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .friendly-links-list {
        flex-wrap: wrap;
    }
    .links-wrapper{
        flex: 1;
        display: flex;
        flex-wrap: wrap;
    }
    .links-wrapper a{
        min-width: 20%;

    }
}
/* 友情链接样式 */
.friendly-links {
    background-color: #F6F6F6;
    margin-bottom: -1.5rem;
}

.friendly-links-container {
    display: flex;
    align-items: center;
    gap: 55px;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.friendly-links-list {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow: hidden;
    align-items: center;
    width: 100%;
}
.links-wrapper{
    flex: 1;
   justify-content: center;
    display: flex;
}

.friendly-links a {
    color: rgba(0,0,0,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.friendly-links a:hover {
    color: #0C71C0;
}

