/* 服务页面样式 */

/* 英雄区域样式 */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height:30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 英雄区图片样式 */
.hero-section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* 英雄区背景图片样式 */
.hero-section img:first-child {
    position: relative;
    z-index: 1;
}

/* 英雄区前景图片样式 - who-2.png */
.hero-section img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}

/* 第一区块样式 */
.first-block {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 60vh;
    overflow: hidden;
    padding: 80px 0;
}

/* 第一区块背景 */
.block-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF6B35;
    z-index: 1;
}

/* 左上角图片 */
.top-left-image {
    position: absolute;
    top: 0;
    left: 4%;
    z-index: 3;
}

.top-left-image img {
    width: 70%;
    height: auto;
    opacity: 0.9;
}

/* 右下角文字 */
.bottom-right-text {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
    max-width: 75%;
    text-align: left;
}

.bottom-right-text p {
    color: white;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}



/* 第2区块样式 */
.second-block {
    background-color: #555454;
    padding: 80px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.think-blink-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.orange-block {
    background-color: transparent;
    padding: 0;
    display: block;
    flex: 0 0 40%;
    margin-right: 0;
}

    .orange-block img {
        width: 80%;
        height: auto;
        max-width: 80%;
        display: block;
    }

    @media (max-width: 768px) {
        .orange-block img {
            width: 50%;
            max-width: 50%;
            margin: 0 auto;
        }
    }

.description-text {
    flex: 0 0 80%;
    max-width: 100%;
}

.description-text p {
    color: white;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* 第3区块样式 */
.third-block {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.third-block-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.third-block-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 第4区块电脑版样式 */
.fourth-block-desktop {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: block;
}

/* 第4区块手机版样式 */
.fourth-block-mobile {
    width: 100%;
    height: auto;
    display: none;
}

.fourth-block-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

/* 在768px以下显示手机端内容，隐藏电脑端内容 */
@media (max-width: 768px) {

    .second-block {
        padding: 40px 20px;
        min-height: 50vh;
    }

    .think-blink-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin: 0;
    }

    .orange-block {
        flex: none;
        padding: 0;
        align-self: center !important;
        margin-right: 0;
        padding-left: 0;
    }

    .description-text {
        flex: none;
        max-width: 100%;
        align-self: center;
        text-align: center;
        margin-right: 0;
    }

    .description-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    main{
    margin-top: 110px !important;
    }

    .first-block {
        min-height: 50vh;
        padding: 0 0;
        margin-top: -8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .top-left-image {
        position: relative;
        top: 0;
        left: auto;
        margin-bottom: 20px;
    }

    .top-left-image img {
        width: 96%;
    }

    .bottom-right-text {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 90%;
        text-align: center;
        margin-top: 15px;
    }

    .bottom-right-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* 第4区块响应式控制 */
    .fourth-block-desktop {
        display: none;
    }

    .fourth-block-mobile {
        display: block;
    }
}

/* 备案链接样式 */
.beian-link-with-icon {
    height: 20px;
    line-height: 20px;
}




