/* #region 基本样式 */
.module {
    margin-top: 100px;
}

.module .title {
    text-align: left;
}

.module .title h3 {
    position: relative;
    padding-left: 24px;
    color: #593413;
    font-size: 40px;
}

.module .title h3::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 8px;
    height: 8px;
    content: "";
    background: #593413;
    border-radius: 50%;
}

.module>.content {
    margin-top: 100px;
}

.banners .banner {
    height: 850px;
}

.footer .about-info {
    margin: 0;
}

/* #endregion */

/* #region 问题 */
.issue .top {
    display: flex;
    gap: 36px;
}

.issue .img {
    flex-shrink: 0;
    width: 741px;
    height: 626px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

.issue .text {
    flex: 1;
    color: #333333;
    font-size: 40px;
    font-weight: normal;
    letter-spacing: 0em;
}

.issue .text p:not(:first-child) {
    margin-top: 36px;
}

.issue .text p:nth-child(3) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.issue .text p:nth-child(4) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

.issue .content {
    color: #666666;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0em;
}

.issue .content img {
    max-width: 100%;
}

/* #endregion */

/* #region 方案 */
.scheme {
    height: 614px;
}

.scheme .fill {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 614px;
    background: linear-gradient(270deg,
            rgba(185, 150, 119, 0.2) 0%,
            rgba(185, 150, 119, 0) 88%);
}

.scheme .wrapper {
    height: 100%;
    padding: 36px 0;
}

.scheme .content {
    margin-top: 36px;
    color: #666666;
    font-size: 26px;
    font-weight: normal;
    letter-spacing: 0em;
}

.scheme .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 13;
}

.scheme .content img {
    max-width: 100%;
}

/* #endregion */

/* #region 结果 */
.result .content {
    margin-top: 36px;
    color: #666666;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0em;
}

.result .content img {
    max-width: 100%;
}

/* #endregion */

/* #region 上下文 */
.context .list {
    display: flex;
    justify-content: space-between;
}

.context .list>li {
    position: relative;
    width: 40%;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 0em;
}

.context .list>li::after {
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
    height: 1px;
    content: "";
    background: transparent;
    transition: .3s;
}

.context .list>li:hover::after {
    background: #B99677;
    transition: .3s;
}

.context .list>li>a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    width: 100%;
    color: #999999;
    transition: .3s;
}

.context .list>li>a:hover {
    color: #B99677;
    transition: .3s;
}

/* #endregion */

/* #region 适配 */
@media screen and (max-width: 768px) {

    /* #region 基本样式 */
    .module {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .module .title h3 {
        padding-left: 0.5rem;
        font-size: 0.75rem;
    }

    .module .title h3::before {
        width: 4px;
        height: 4px;
    }

    .module>.content {
        margin-top: 1rem;
    }

    .banners .banner {
        height: 11rem;
    }

    .breadcrumb {
        display: block;
    }

    .contacts-bottom {
        bottom: 20px;
    }

    /* #endregion */

    /* #region 问题 */
    .issue .top {
        gap: 0.5rem;
    }

    .issue .img {
        width: 7.98rem;
        height: 6.6rem;
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
    }

    .issue .text {
        font-size: 0.75rem;
    }

    .issue .text p:not(:first-child) {
        margin-top: 0;
    }

    .issue .text p:nth-child(4) {
        -webkit-line-clamp: 4;
    }

    .issue .text p:nth-child(1),
    .issue .text p:nth-child(2) {
        display: inline-block;
    }

    .issue .text p:nth-child(2) {
        margin-left: 1rem;
    }

    .issue .text p:nth-child(3) {
        margin-top: 0.625rem;
    }

    .issue .text p:nth-child(4) {
        width: 145%;
        margin-top: 0.375rem;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    .issue .content {
        width: 142.5%;
        font-size: 0.75rem;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    /* #endregion */

    /* #region 方案 */
    .scheme {
        height: 10.2rem;
    }

    .scheme .fill {
        height: 10.2rem;
        background: rgba(185, 150, 119, 0.2);
    }

    .scheme .wrapper {
        padding: 0.5rem 1rem;
    }

    .scheme .content {
        width: 142.5%;
        margin-top: 1rem;
        font-size: 0.75rem;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    .scheme .content p {
        -webkit-line-clamp: 10;
    }

    /* #endregion */

    /* #region 结果 */
    .result .content {
        width: 142.5%;
        margin-top: 1rem;
        font-size: 0.75rem;
        transform: scale(0.7);
        transform-origin: 0 0;
    }

    /* #endregion */

    /* #region 上下文 */
    .context .list>li {
        font-size: 0.75rem;
    }

    .context .list>li::after {
        bottom: 0;
    }

    .context .list>li>a {
        padding-left: 2.875rem;
        text-indent: -2.875rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        transform: scale(0.8);
        transform-origin: 0 0;
    }

    /* #endregion */
}

/* #endregion */