.page-header.fullscreen .wrapper-content {
    width: var(--wrapper-width-narrow);
    margin: 0 auto;
}

.page-header.fullscreen .page-desc {
    margin-bottom: calc(75 * var(--rpx));
}

.page-header.fullscreen .tags {
    justify-content: center;
}

.page-header.fullscreen .tag {
    color: #fff;
    background-color: rgba(255, 255, 255, .2);
}

section.related {
    padding-top: calc(140 * var(--rpx-50));
    padding-bottom: calc(200 * var(--rpx-50));
    background-color: #fafbfd;
}

section.main {
    padding-top: calc(72 * var(--rpx));
    padding-bottom: calc(200 * var(--rpx-50));
    z-index: 600;
}

.main-top {
    width: 100%;
    /* height: var(--header-height); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    background-color: #ECEDF1;
    transition: opacity .5s ease-in-out;
    will-change: transform;
}

.main-top.visible {
    z-index: 300;
    opacity: 1;
    visibility: visible;
}

.main-top .main-top__content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(20 * var(--rpx)) 30px;
}

.main-top .view-progress {
    width: 0;
    height: 2px;
    background-color: #011A65;
    position: absolute;
    top: 100%;
    left: 0;
}

section.main p {
    width: 100%;
}

.main .desc {
    text-wrap: unset;
    text-align: justify;
}

section.main p img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}

section.main h2 {
    font-family: var(--serif-font);
    font-size: calc(40 * var(--rpx));
    line-height: calc(50em / 40);
}

section.main .wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.news-list .news {
    background-color: #fff;
}

.side-icons {
    display: flex;
    gap: calc(30 * var(--rpx));
    justify-content: flex-end;
}

.side-icons .icon {
    flex: 0 0 auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: color .5s linear;
}

.side-icons .icon:hover img {
    filter: url(#navy-overlay);
}

.side-icons .icon:hover {
    color: var(--theme-navy);
}

.side-icons .icon img {
    width: calc(50 * var(--rpx-75) * .6);
    height: calc(50 * var(--rpx-75) * .6);
    object-fit: contain;
    transition: all .5s linear;
}

.icon-hint {
    font-size: calc(12rem / 16);
    white-space: nowrap;
    pointer-events: none;
    padding-top: calc(12 * var(--rpx));
}

/* .side-icons {
    position: absolute;
    right: calc(100% + 40 * var(--rpx));
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(20 * var(--rpx-50))
}

.side-icons .icon {
    width: calc(50 * var(--rpx-75));
    height: calc(50 * var(--rpx-75));
    border-radius: 50%;
    background-color: #e6e9f3;
    flex: 0 0 auto;
    position: relative;
    cursor: pointer;
}

.side-icons .icon img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 60%;
    height: 60%;
    filter: url(#navy-overlay);
    object-fit: contain;
}

.side-icons .icon:hover {
    background-color: var(--theme-navy);
}

.side-icons .icon:hover img {
    filter: url(#white-overlay);
}

.icon-hint {
    position: absolute;
    left: calc(100% + 12 * var(--rpx));
    height: calc(42 * var(--rpx));
    font-size: calc(14rem / 16);
    width: auto;
    white-space: nowrap;
    background-color: #e6e9f3;
    border-radius: calc(8 * var(--rpx));
    top: calc(5 * var(--rpx));
    padding: 0 calc(18 * var(--rpx));
    display: flex;
    align-items: center;
    pointer-events: none;
    transform: translateX(-30%);
    opacity: 0;
    visibility: hidden;
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
}

.icon:hover .icon-hint {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.icon-hint::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    border-right: calc(8 * var(--rpx)) solid #e6e9f3;
    border-top: calc(8 * var(--rpx)) solid transparent;
    border-bottom: calc(8 * var(--rpx)) solid transparent;
} */

.form-item .form-item-content {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: calc(18 * var(--rpx)) 0;
}

.form-item .checkbox {
    --l: 30;
    font-size: calc(18 * var(--rpx));
    display: flex;
    gap: calc(14 * var(--rpx));
    align-items: center;
}

.form-item input[type="checkbox"] {
    appearance: none;
    width: calc(var(--l) * var(--rpx));
    height: calc(var(--l) * var(--rpx));
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 0;
    border-radius: 50%;
    margin: 0;
    flex: 0 0 auto;
}

.form-item input[type="checkbox"]:checked {
    background-color: var(--theme-beige);
    border-color: transparent;
}

.form-item .checkbox+.checkbox {
    margin-top: calc(18 * var(--rpx));
}

.download {
    color: #000;
    width: calc(280 * var(--rpx));
    position: absolute;
    left: calc(100% + 80 * var(--rpx-50));
    top: calc(calc(80 * var(--rpx-50)) + var(--header-height));
}

.download::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #011A65;
    position: absolute;
}

.download .title {
    font-size: calc(16rem / 16);
    /* font-size: calc(16 * var(--rpx-50)); */
    padding: calc(18 * var(--rpx-50)) 0;
}

.download .files {
    --gap: 10;
    display: flex;
}

.download .files .item {
    /* font-size: calc(12 * var(--rpx-50)); */
    font-size: calc(14rem / 16);
    margin-bottom: calc(var(--gap) * var(--rpx-50));
}
.download .files .item .arr::before {
    filter: url(#white-overlay);
}

.download .files .item .name {
    display: flex;
    align-items: center;
    margin-top: calc(10 * var(--rpx-50));
    cursor: pointer;
}

.download .files .item .name .inner-text {
    /* flex: 1 0 0; */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.download .files .item .name .inner-text.tech {
    color: var(--theme-navy);
}

.download .files .item .name .inner-text.luxe {
    color: var(--theme-beige);
}

.download .files .item .img {
    width: 50%;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .1);
}

.download .files .item .img img {
    width: 100%;
    object-fit: cover;
}

.main .description {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.4em;
}


.main .description {
    margin-top: 0;
}

.main .hidden {
    display: none;
}


body>article {
    display: none;
}

@media screen and (max-width: 960px) {

    .download {
        margin-top: calc(20 * var(--rpx));
        position: relative;
        left: unset;
        top: unset;
    }

    .dialog-form {
        width: calc(100% - 60px);
    }
}

@media (max-width: 750px) {
    .page-header.fullscreen .page-title {
        font-size: calc(40 * var(--rpx));
        flex: 0 0 auto;
    }

    .main .description {
        font-size: 1.5em;
    }

    .side-icons {
        transform: none !important;
        position: relative;
        right: unset;
        margin-top: calc(30 * var(--rpx));
        flex-direction: row;
    }

    section.main .wrapper {
        flex-direction: column-reverse;
    }

    .dialog-form {
        width: calc(100% - 40px);
    }
}


@media print {

    body {
        height: fit-content;
        min-height: unset;
        flex: 0 0 auto;
        display: inline !important;
    }

    .page-content {
        visibility: hidden;
    }

    body>* {
        display: none !important;
    }

    body>article {
        display: block !important;
        font-size: 12pt;
        font-family: var(--sans-serif-font);

    }

    body>article h1 {
        margin-top: 1em;
        margin-bottom: 1em;
        font-family: var(--serif-font);
    }

    body>article img {
        width: 50%;
        display: block;
        margin: 1em 0;
    }

    .btn-large-nav-expand {
        display: none;
    }

}