@charset "UTF-8";

:root {
    --li: #d71316;
    --li1: #d71316;
    --jb: linear-gradient(90deg, transparent, var(--li));
}

.center {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
}


html {
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

@media (max-width:1560px) {
    html {
        font-size: 14px;
    }
}

@media (max-width:1280px) {
    html {
        font-size: 12px;
    }
}

body {
    background-color: #fff;
    color: #666;
    line-height: 187.5%;
    /* user-select: none; */
}

html[lang="en"] body {
    font-family: 'Onsite';
    font-weight: 300;
}

html[lang="zh-CN"] body {
    font-family: Arial, "Microsoft YaHei", sans-serif;
    font-weight: 400;
}

* {
    box-sizing: border-box !important;
    word-break: normal !important;
    word-wrap: normal !important;
    -webkit-font-smoothing: antialiased !important;
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #d7d7d7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--li);
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 100;
    src: url('/src/font/OnsiteThin.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 200;
    src: url('/src/font/OnsiteExtraLight.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 300;
    src: url('/src/font/OnsiteLight.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 400;
    src: url('/src/font/Onsite.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 500;
    src: url('/src/font/OnsiteMedium.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 700;
    src: url('/src/font/OnsiteBlod.otf');
}

@font-face {
    font-family: 'Onsite';
    font-style: normal;
    font-weight: 900;
    src: url('/src/font/OnsiteExtraBlod.otf');
}

/* @font-face {
    font-family: 'iconfont';
    src: url('/src/icon/iconfont.woff2') format('woff2'),
        url('/src/icon/iconfont.woff') format('woff'),
        url('/src/icon/iconfont.ttf') format('truetype');
} */

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';
    /* Project id 2650718 */
    src: url('//at.alicdn.com/t/c/font_2650718_b5dxq7qzpau.woff2?t=1786156353548') format('woff2'),
        url('//at.alicdn.com/t/c/font_2650718_b5dxq7qzpau.woff?t=1786156353548') format('woff'),
        url('//at.alicdn.com/t/c/font_2650718_b5dxq7qzpau.ttf?t=1786156353548') format('truetype');
}

.icon {
    font-family: 'iconfont' !important;
}


/*end*/

*[tion] {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

ul,
li {
    list-style: none;
}

.hide {
    display: none !important;
}

img {
    max-width: 100%;
    vertical-align: top;
}

strong,
b {
    font-weight: 700;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:active,
a:hover,
a:focus,
a:visited {
    outline: none !important;
    text-decoration: none;
}

button {
    border: 0;
    padding: 0;
    background: transparent;
}

button:focus-visible {
    border: none;
    outline: none;
}

i {
    font-style: normal;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.jb {
    background-image: var(--jb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 100%;
    display: inline-block;
}

.Limg_con,
.Limg_cov {
    position: relative;
    height: 0;
    overflow: hidden;
}

.Limg_con img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
    object-fit: contain;
}

.Limg_cov img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
    left: 0;
    top: 0;
}

.L_tit {
    display: block;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.L_summary {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.table-responsive {
    overflow: auto;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

/*end*/


/* 翻页 */
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 6.5rem;
}

ul.pagination li {
    display: inline-block;
    transition: all .5s ease;
    border: none;
    background-color: #f3f6fa;
    font-size: 1.125rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: .25rem;
    color: #000000;
    font-weight: 300;
    margin: 0;
}

ul.pagination li * {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.pagination li a {
    color: #000;
}

ul.pagination li.active {
    color: #fff;
    background: var(--li);
    position: relative;
    z-index: 1;
}

ul.pagination li:hover {
    border-color: var(--li);
    background: var(--li);
}

ul.pagination li:hover a {
    color: #fff;
}

ul.pagination li.disabled {
    cursor: no-drop;
    opacity: .8;
}

/* 文章详情 */
.news_text_word .new_tt {
    font-size: 1.875rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding: 3rem 0 2rem;
    margin-bottom: 1rem;
    color: #000;
    line-height: 120%;
    font-weight: bold;
}

.news_flex {
    text-align: center;
    font-size: 16px;
    color: #999;
    line-height: 200%;
    margin-bottom: 1rem;
}

.news_flex span {
    display: inline-block;
    margin: 0 .75rem;
}

.news_text_word .sub {
    background: #eee;
    padding: 1.125rem;
    color: #666;
    margin: 1rem 0;
}

.news_word {
    font-size: 1.125rem;
    line-height: 167%;
    color: #333;
    font-weight: 300;
    margin-top: 2%;
}

.news_word p {
    margin-bottom: 1rem;
}

.news_word iframe {
    width: 100%;
    aspect-ratio: 2 / 1;
}

.news_word video {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    max-height: 85vh;
    object-fit: contain;
}

.news_text_word table td,
.news_text_word table th {
    border: 1px solid #ccc;
    padding: .33rem;
}

.news_text_word table {
    border-collapse: collapse;
    margin-bottom: .5rem;
}

.news_word h2 {
    font-size: 1.5rem;
    margin: 1rem 0 .8rem;
}

.news_word h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 .5rem;
}

.news_word ol,
.news_word ul {
    padding-inline-start: 1.5rem;
}

.news_word li {
    list-style-type: disc;
    margin: 0.25rem 0;
}

.news_word ol li {
    list-style-type: decimal;
}

.news_word img {
    max-width: 100% !important;
    height: auto !important;
}

.news_word a {
    color: initial;
}

.news_word a:hover {
    color: var(--li);
}

.news_page {
    display: flex;
    margin-top: 1.5rem;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.news_page a {
    color: #666;
    font-size: 1.125rem;
    display: block;
    width: 100%;
    margin: 10px 0;
}

.news_page a span {
    color: #333;
}

/* 弹窗视频 */
.vi_box {
    top: 0px;
    left: 0px;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.8);
}

.vi_box .box {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vi_box .box video {
    width: 100%;
    position: relative;
    object-fit: contain;
    display: block;
}

.vi_box .box .video {
    position: relative;
    width: 50vw;
}

.vi_box iframe {
    width: 100%;
    aspect-ratio: 560 / 315;
    background-color: #000;
}

.vi_box .box .video .close {
    cursor: pointer;
    width: 1.125rem;
    height: auto;
    position: absolute;
    right: -1.5rem;
    top: -1.5rem;
    transition: all .3s;
    pointer-events: painted;
}

.vi_box .box .video .close:hover {
    transform: rotate(135deg);
}


/* head */
.nav-fixed {
    position: fixed;
    z-index: 99;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.8rem 1rem 1rem;
    max-width: 2560px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    transition: all .5s ease;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-logo-box {
    width: 19rem;
    background: rgb(255 255 255 / 30%);
    border-radius: .3rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all .5s ease;
}

.yx_H_Active section.nav-fixed .nav-logo-box,
section.nav-fixed.yx_H_Active .nav-logo-box {
    background: #f3f6fa;
}

.nav-logo {
    width: calc((100% - 4.7rem));
    text-align: center;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgb(255 255 255 / 20%);
    padding: 0 2.5rem;
    overflow: hidden;
}

.yx_H_Active section.nav-fixed .nav-logo,
section.nav-fixed.yx_H_Active .nav-logo {
    border-color: #dadde1;
}

.nav-logo .lo2 {
    display: none;
}

.yx_H_Active section.nav-fixed .nav-logo .lo1,
section.nav-fixed.yx_H_Active .nav-logo .lo1 {
    display: none;
}

.yx_H_Active section.nav-fixed .nav-logo .lo2,
section.nav-fixed.yx_H_Active .nav-logo .lo2 {
    display: block;
}

.menu-btn {
    width: 4.7rem;
    height: 1.875rem;
    cursor: pointer;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    display: block;
    width: 1.875rem;
    height: 1.875rem;
}

.menu-icon .line {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    transform-box: view-box;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.yx_H_Active section.nav-fixed .menu-btn,
section.nav-fixed.yx_H_Active .menu-btn {
    color: #48494b;
}

.menu-icon .line-top {
    transform-origin: 32% 43%;
}

.menu-icon .line-bottom {
    transform-origin: 29% 55%;
}

.menu-btn.is-active .line-top {
    transform: translateY(0rem) rotate(45deg);
}

.menu-btn.is-active .line-bottom {
    transform: translateY(0rem) rotate(-45deg);
}

.nav-series-lan {
    background: var(--li);
    line-height: 3.75rem;
    border-radius: .3rem;
    width: 19rem;
    color: #fff;
    padding: 0 1.125rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
}

.nav-series {
    position: relative;
}

.nav-series .pro-nav-tc {
    position: absolute;
    width: 100%;
    top: 120%;
    font-size: 1rem;
    color: #666;
    line-height: 133%;
    opacity: 0;
    visibility: hidden;
    padding-top: .625rem;
}

.nav-series .pro-nav {
    background: #fff;
    border-radius: 5px;
    padding: 0 1.25rem;
}

.nav-series .pro-nav a {
    display: block;
    padding: 1.2rem .5rem;
    position: relative;
}

.nav-series .pro-nav a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e5e5 10%, #e5e5e5 90%, transparent 100%);
    left: 0;
    bottom: 0;
}

.nav-series .pro-nav a:hover {
    color: var(--li);
}

.nav-series:hover .pro-nav-tc {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
}

.yx-TopLang {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    padding: .75rem 0;
}

.yx_H_Active section.nav-fixed .yx-TopLang {
    color: #333;
}

section.nav-fixed.yx_H_Active .yx-TopLang {
    display: none;
}

.yx-TopLang .icon {
    margin-left: .5rem;
}

.yx-TopLangCon {
    background: var(--li);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    width: 100%;
    padding: .5rem 0;
}

.yx-TopLangCon:before {
    content: '';
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    border-bottom: 0.625rem solid var(--li);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
}

.yx-TopLang a {
    width: 100%;
    text-align: center;
    display: block;
    line-height: 2.2rem;
    color: #fff;
    font-size: 1rem;
    text-transform: capitalize;
}

.yx-TopLang:hover .yx-TopLangCon {
    top: 100%;
    opacity: 1;
    transition: all 0.8s ease;
    visibility: visible;
}

.nav_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 98;
    opacity: 0;
    transition: all .5s;
    transition: all .5s ease;
    left: 0;
    top: 0;
    pointer-events: none;
}

.menu-active .nav_fixed {
    opacity: .2;
}

.nav_tc {
    position: fixed;
    width: calc(100vw / 4);
    height: 100vh;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(60px);
    z-index: 98;
    transition: all .8s ease;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}

.menu-active .nav_tc {
    transform: translateX(0);
}

.nav_tc.current {
    width: calc(100vw / 2);
}

.nav_cens {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.nav_cens:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgb(255 255 255 / 10%) 10%, rgb(255 255 255 / 10%) 90%, transparent 100%);
    left: 25vw;
    bottom: 0;
    opacity: 0;
    transition: all .5s ease;
    z-index: -1;
}

.nav_tc.current .nav_cens:before {
    opacity: 1;
}

ul.nav_cens_left {
    width: 25vw;
    padding-left: 1.5rem;
}

.yx_NavYj p {
    font-size: 2.25rem;
    color: #fff;
    line-height: 167%;
    transition: all .5s ease;
}

.yx_NavYj.other p {
    opacity: .4;
}

.yx_NavYj p .icon {
    font-size: 55%;
}


.yx_NavYj:hover .yx_HN_Ej a:hover {
    color: var(--li);
}

.nav_tc .yx-TopLang {
    position: absolute;
    left: 1rem;
    bottom: 2.25rem;
}

.nav_tc .yx-TopLang .yx-TopLangCon {
    bottom: 100%;
    top: auto;
}

.nav_tc .yx-TopLang .yx-TopLangCon::before {
    transform: translate(-50%, 100%) rotate(180deg);
    top: auto;
    bottom: 0;
}

@media only screen and (min-width: 769px) {
    .yx_NavYj .yx_HN_Ej {
        position: absolute;
        left: 25vw;
        width: 25vw;
        height: 100%;
        top: 10%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2.25rem;
        font-size: 1.125rem;
        color: #fff;
        line-height: 133%;
        gap: 1.875rem;
        opacity: 0;
        visibility: hidden;
        z-index: 2;
    }

    .yx_NavYj:hover .yx_HN_Ej {
        top: 0;
        opacity: 1;
        visibility: visible;
        transition: all .5s ease .3s;
    }

    .yx_NavYj[data-id="34"] .yx_HN_Ej,
    .yx_NavYj[data-id="34"] .icon {
        display: none;
    }

}

@media only screen and (max-width: 768px) {
    .nav-series {
        display: none;
    }

    .nav-fixed {
        padding: 1rem;
        background: #fff;
    }

    .yx-TopLang {
        color: #000;
        display: block !important;
    }

    .nav_tc {
        width: 100%;
        background: rgb(0 0 0 / 60%);
        display: block;
        padding-top: 100px;
    }

    ul.nav_cens_left {
        width: 100vw;
        padding: 0 1.5rem;
    }

    .nav_cens {
        height: auto;
    }

    .nav_cens:before {
        display: none;
    }

    .nav_tc.current {
        width: 100%;
    }

    .yx_NavYj p {
        font-size: 18px;
        border-bottom: 1px solid #fff;
        padding: 10px 0;
    }

    .yx_NavYj .yx_HN_Ej {
        position: relative;
        left: 0vw;
        width: 100%;
        height: 100%;
        top: 10%;
        padding: 10px 0;
        font-size: 16px;
        color: #ffffff;
        line-height: 167%;
        opacity: 1;
        visibility: visible;
        z-index: 2;
        display: none;
    }

    .yx_NavYj .yx_HN_Ej a {
        position: relative;
        display: block;
        padding-left: 20px;
    }

    .yx_NavYj .yx_HN_Ej a:before {
        content: '';
        width: 5px;
        height: 5px;
        left: 0;
        position: absolute;
        background: #fff;
        top: 12px;
        border-radius: 50%;
    }

    .nav_tc .yx-TopLang {
        display: none !important;
    }

    .yx_NavYj p .icon {
        font-size: 80%;
        margin-left: 10px;
    }

    .vi_box .box .video {
        width: 80vw;
    }

    .nav-logo {
        padding: 0 1.5rem;
    }

    .nav-logo-box {
        width: 19rem;
        background: #f3f6fa;
    }

    .nav-logo .lo1 {
        display: none;
    }

    .nav-logo .lo2 {
        display: block;
    }

    section.nav-fixed .menu-btn {
        color: #48494b;
    }

    section.nav-fixed .nav-logo {
        border-color: #dadde1;
    }
}

/* footer */
footer.yx_foot {
    padding-bottom: 3rem;
}

footer.yx_foot .center {
    background: url(/src/image/foterbg.png) right top no-repeat;
    background-size: cover;
    border-radius: 1.875rem;
    overflow: hidden;
    padding: 0 6.25rem;
    position: relative;
}

.fo_ls {
    width: 25%;
}

.fo_cen {
    width: 48%;
}

.fo_rig {
    width: 27%;
}

footer.yx_foot .foter_top {
    padding: 3.75rem 0 3rem;
    width: 100%;
    border-bottom: 1px solid #dadde1;
    margin-bottom: 3.75rem;
}

footer.yx_foot .totop {
    width: 3.75rem;
    height: 3.75rem;
    background: #f3f6fa;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--li);
    font-size: 1.5rem;
    transition: all .5s ease;
}

footer.yx_foot .totop:hover {
    background: var(--li);
    color: #fff;
}

.fo_bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    color: #000000;
    padding: 2rem 0;
    margin-top: 4.5rem;
}

.fo_bottom span {
    text-transform: uppercase;
    color: #666666;
}

.fo_bottom span b {
    color: #000;
    font-weight: 900;
}

.fo_NavTit {
    font-size: 1.125rem;
    color: #000000;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.fo_HN_Ej a {
    font-size: 1.125rem;
    color: #666;
    line-height: 133%;
    display: inline-block;
    margin-bottom: 1rem;
}

.fo_HN_Ej a:hover {
    color: var(--li);
}

.fo_xx {
    font-size: 1.125rem;
    color: #666666;
    line-height: 167%;
}

.foter_phone {
    font-size: 1.875rem;
    color: #000000;
    line-height: 160%;
    margin: 1rem 0 3rem;
}

.yx_foot .fo_sharing {
    margin-top: 4rem;
    display: flex;
    gap: .5rem;
    line-height: 100%;
}

.yx_foot .fo_sharing a {
    width: 3.75rem;
    height: 3.75rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    transition: all .5s ease;
}

.yx_foot .fo_sharing a svg.icon {
    width: 1.6rem;
    height: auto;
}

.yx_foot .fo_sharing a:hover {
    box-shadow: 0 0 10px #ccc;
}

@media only screen and (max-width: 768px) {
    footer.yx_foot .center {
        background-size: 350% auto;
        padding: 2rem;
    }

    footer.yx_foot .foter_top {
        padding: 0 0 2rem;
        width: 80%;
        margin-bottom: 4rem;
    }

    .fo_cen,
    .fo_ls {
        display: none;
    }

    .fo_rig {
        width: 100%;
    }

    .foter_phone {
        margin: 1rem 0;
    }

    .yx_foot .fo_sharing {
        margin-top: 2rem;
    }

    .fo_bottom {
        padding: 2rem 0 0;
        margin-top: 2rem;
    }

    footer.yx_foot {
        padding-bottom: 2rem;
    }
}

:root {
    --12px--: max(12px, 0.625vw);
    --14px--: max(14px, 0.73vw);
    --16px--: max(16px, 0.8333333333vw);
    --18px--: max(18px, 0.9375vw);
    /* --12px--: max(10px, 0.625vw);
    --14px--: max(12px, 0.73vw);
    --16px--: max(14px, 0.8333333333vw);
    --18px--: max(16px, 0.9375vw); */
    --20px--: max(18px, 1.05vw);
    --21px--: max(19px, 1.09375vw);
    --22px--: max(20px, 1.15vw);
    --24px--: max(22px, 1.25vw);
    --26px--: max(24px, 1.36vw);
    --28px--: max(26px, 1.46vw);
    --30px--: max(28px, 1.5625vw);
    --32px--: max(30px, 1.67vw);
    --34px--: max(32px, 1.78vw);
    --36px--: max(34px, 1.875vw);
    --38px--: max(36px, 1.98vw);
    --40px--: max(38px, 2.0833333333333vw);
    --42px--: max(38px, 2.1875vw);
    --44px--: max(38px, 2.3vw);
    --46px--: max(38px, 2.4vw);
    --48px--: max(38px, 2.5vw);
    --50px--: max(38px, 2.6042vw);
    --72px--: max(40px, 3.75vw);
    --160px--: max(160px, 13.8vw);
}

@media(max-width:768px) {
    :root {
        --30px--: max(22px, 1.5625vw);
        --32px--: max(22px, 1.67vw);
        --34px--: max(22px, 1.78vw);
        --36px--: max(24px, 1.875vw);
        --38px--: max(26px, 1.98vw);
        --40px--: max(28px, 2.0833333333333vw);
        --42px--: max(28px, 2.1875vw);
        --44px--: max(28px, 2.3vw);
        --46px--: max(28px, 2.4vw);
        --48px--: max(28px, 2.5vw);
        --50px--: max(28px, 2.6042vw);
        --160px--: max(160px, 13.8vw);
        --s40px--: max(30px, 2.0833333333333vw);
    }
}

/* dialog */
.dialogBox {
    height: 80lvh;
    margin: auto;
    border: none;
    outline: none;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    background-color: transparent;
    transition: all .6s ease;
}

.dialogBox::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
}

.dialogBox>.cen {
    width: 80%;
    min-height: 0;
    height: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dialogBox>.cen>.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f5f7;
    padding: clamp(10px, 1.0416666666666667vw, 20px) clamp(20px, 2.083333333333vw, 40px);
}

.dialogBox>.cen>.title>p {
    font-size: var(--18px--);
    line-height: 266.66667%;
    font-weight: bold;
    color: #000;
}

.dialogBox>.cen>.title>.close {
    width: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e71d1d;
    cursor: pointer;
}

.dialogBox>.cen>.title>.close svg {
    transition: transform .6s ease;
}

.dialogBox>.cen>.title>.close:hover svg {
    transform: rotate(180deg);
}

.dialogBox>.cen>.info {
    outline: none;
    min-height: 0;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(24px, 2.5vw, 48px) clamp(20px, 2.083333333333vw, 40px);
}

.dialogBox>.cen>.info>* {
    max-width: 100%;
    object-fit: contain;
}