/* 公司简介：背景对齐腾讯云首页「行业领先的解决方案」区块 */
.profile-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.profile-section::before,
.profile-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 2560px;
    height: 100%;
    pointer-events: none;
}

.profile-section::before {
    background-image: url("../asset/profile-solution-bg-top.jpg");
    background-size: 2560px auto;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
}

.profile-section::after {
    background-image: url("../asset/profile-solution-bg-center.png");
    background-size: 2560px auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 0;
}

.profile-section__inner {
    position: relative;
    z-index: 1;
}

@media (min-width: 769px) {
    .profile-section {
        padding-top: 3.75rem;
        padding-bottom: 4.5rem;
    }
}

@media (min-width: 2560px) {
    .profile-section::before,
    .profile-section::after {
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }
}

@media (max-width: 768px) {
    .profile-section {
        background: #f8fafc;
    }

    .profile-section::before,
    .profile-section::after {
        display: none;
    }
}
