section.article{
    background-color: #F7F7F7;
    overflow: hidden;
}

section.article .wrapper{
    padding-top: var(--header-height-max);
    padding-bottom: calc(120 * var(--rpx));
}

.article .title{
    font-size: calc(68 * var(--rpx));
    margin-top: calc(120 * var(--rpx));
    margin-bottom: calc(60 * var(--rpx));
    font-weight: bold;
}

.article .info{
    display: flex;
    align-items: center;
    gap: .8em;
    font-size: calc(22 * var(--rpx));
}

.article .info .split{
    height: 1em;
    width: 1px;
    background-color: rgba(0, 0, 0, .3);
}

@media (min-width: 961px) {
    .wrapper-thin{
        width: calc(39.5833vw + 520px); /* 1280px @1920 → 900px @960 */
        margin-left: auto;
        margin-right: auto;
    }
}

.article .content{
    margin-top: calc(80 * var(--rpx));
    background-color: #fff;
    padding: calc(60 * var(--rpx));
    font-size: calc(18rem / 16);
    line-height: calc(30em / 18);
}

.content img{
    display: block;
    margin: auto;
    max-width: 100%;
}

.content p,
.content div{
    line-height: 1.5em;
}

.content p+p,
.content div+div,
.content p+div,
.content div+p{
    margin-top: 1.5em;
}

.btn-ctn{
    display: flex;
    justify-content: center;
    margin-top: calc(60 * var(--rpx));
}

.btn-back{
    padding-left: calc(40rem / 16);
    padding-right: calc(12rem / 16);
}

.btn-back.btn-more::after{
    right: unset;
    left: calc(24rem / 16);
    transform: rotate(180deg);
}

section.others{
    padding-top: calc(90 * var(--rpx));
    padding-bottom: calc(120 * var(--rpx));
    background-color: #f7f7f7;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.others .section-title{
    font-size: calc(48 * var(--rpx));
    font-weight: bold;
    margin-bottom: calc(60 * var(--rpx));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.others .section-title .btn-more{
    font-size: 1rem;
    padding-right: calc(48em / 16);
}

.insight-list .flex-item:nth-child(5){
    display: none;
}

@media (max-width: 750px) {
    .article .info{
        font-size: calc(34 * var(--rpx));
    }

    .article .content{
        padding: calc(30 * var(--rpx));
        font-size: calc(32 * var(--rpx));
        line-height: calc(42em / 32);
    }

    .btn-ctn .btn-more,
    .others .section-title .btn-more{
        font-size: calc(28 * var(--rpx));
    }
}

.style2 .content{
    background-color: transparent;
    position: relative;
    padding: calc(72 * var(--rpx)) 0 calc(80 * var(--rpx));
}

.style2 .content::before{
    content: "";
    height: 1px;
    width: 100vw;
    left: calc((100% - 100vw) / 2);
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, .15);
}

.style2 .content::after{
    content: "";
    position: absolute;
    background-color: var(--theme-red);
    width: calc(240 * var(--rpx));
    height: 1px;
    top: 0;
    left: 0;
}

.press-release-list .flex-item:nth-of-type(4){
    display: none;
}