section.links .wrapper{
    display: flex;
    flex-wrap: wrap;

    padding-top: calc(160 * var(--rpx-50));
    padding-bottom: calc(160 * var(--rpx-50));
}

.links .link{
    display: flex;
    height: calc(400 * var(--rpx));
    align-items: stretch;
    flex: 0 0 50%;
}

.link .info{
    width: 50%;
    background-color: #f5f7fc;

    display: flex;
    flex-direction: column;
    padding: calc(24 * var(--rpx)) calc(36 * var(--rpx)) calc(32 * var(--rpx));
}

.link .cover{
    width: 50%;
    background-color: #f5f7fc;
}

.link .cover img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link .title{
    font-size: calc(28 * var(--rpx));
    font-weight: bold;
    margin-bottom: calc(12 * var(--rpx));
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.link .desc{
    overflow: hidden;
    margin-bottom: calc(30 * var(--rpx));
}

.link .desc+.btn-ctn{
    margin-top: auto;
    margin-bottom: 0;
    justify-content: flex-end;
}

.accordion{
    color: #333;
}

.accordion.part6{
    height: calc(720 * var(--rpx-75));
}

.accordion.part2,
.accordion.part6{
    --item-active-expand: 2;
}

@media (min-width: 751px) {
    .accordion .acc-info{
        padding: calc(20 * var(--rpx));
    }
}

.accordion .btn-expand{
    filter: url(#black-overlay);
}

.accordion .acc-item .title{
    font-size: calc(24 * var(--rpx));
}

.accordion .acc-item.active .title{
    font-size: calc(30 * var(--rpx));
}

.accordion .acc-item:nth-of-type(2n){
    background-color: #f5f7fc;
}

.accordion .acc-item:nth-of-type(2n - 1){
    background-color: #fafbfd;
}

.accordion .acc-item.active{
    color: #fff;
    background-color: transparent;
}

.acc-info{
    justify-content: center;
}

.acc-item.active .btn-ctn{
    display: block;
}

.accordion .acc-item.active .btn-expand{
    filter: url(#white-overlay);
}

.accordion .acc-info::after{
    display: none;
}

.accordion.part2{
    background: var(--theme-navy);
}

.acc-info .icon{
    width: calc(160 * var(--rpx-50));
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: calc(10 * var(--rpx));
}

.part2 .icon{
    filter: url(#blue-overlay);
}

.part2 .active .icon{
    filter: url(#white-overlay);
}

.accordion.part4{
    background: var(--theme-beige-dim);
}

.part4 .icon{
    filter: url(#beige-overlay);
}

.part4 .active .icon{
    filter: url(#white-overlay);
}

.accordion.part6{
    background: var(--theme-magenta);
}

.part6 .icon{
    filter: url(#magenta-overlay);
}

.part6 .active .icon{
    filter: url(#white-overlay);
}

@media (max-width: 750px) {
    section.links .wrapper{
        display: flex;
        flex-direction: column;
    }

    .links .link{
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }

    .link .info,
    .link .cover{
        width: 100%;
    }

    .link .cover{
        aspect-ratio: 16/9;
        overflow: hidden;
    }

    .link .info{
        padding: calc(30 * var(--rpx)) calc(20 * var(--rpx));
    }
}

