.site-lang-dialog {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.site-lang-dialog.is-open {
    display: flex;
}

.site-lang-dialog-inner {
    position: relative;
    width: min(28rem, 100%);
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.site-lang-dialog-inner h3 {
    margin: 0 0 1.25rem;
    color: #111;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.site-lang-close {
    position: absolute;
    top: 0.75rem;
    right: 0.875rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #666;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.site-lang-list {
    display: grid;
    gap: 0.75rem;
}

.site-lang-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.site-lang-list a:hover,
.site-lang-list a.is-active {
    border-color: rgba(255, 100, 113, 1);
    background: rgba(255, 100, 113, 1);
    color: #fff;
}

.site-sidefixed {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 9998;
    display: flex;
    width: 58px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: translateY(-60%);
}

.site-sidefixedM {
    display: none;
}

.site-sidefixed .sideitemBase {
    width: 58px;
    border-radius: 23px;
}

.site-sidefixed-online {
    position: fixed;
    right: 0;
    top: 62%;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 58px;
    overflow: visible;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.site-sidefixed-online .sideitemOther-title {
    width: 100%;
    margin: 0;
    padding: 8px 4px;
    border-radius: 10px 10px 0 0;
    background: #f8f8f8;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
}

.site-sidefixed-online .sideitem-chat {
    position: relative;
    width: 58px;
    height: 58px;
    padding: 6px;
    border-bottom: 1px solid #efefef;
    box-sizing: border-box;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.site-sidefixed-online .sideitem-chat:last-child {
    border-bottom: 0;
}

.site-sidefixed-online .sideitem-chat:last-child:hover::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #efefef;
}

.site-sidefixed-online .sideitem-chat .link {
    position: absolute;
    inset: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px;
    border-radius: 8px;
    background: #fff;
    opacity: 0;
    text-decoration: none;
    transition: 0.5s;
}

.site-sidefixed-online .sideitem-chat .link:hover,
.site-sidefixed-online .sideitem-chat .link:focus {
    background: #efefef;
}

.site-sidefixed-online .sideitem-chat .link span {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: underline;
    white-space: nowrap;
}

.site-sidefixed-online .sideitem-chat .link img {
    display: block;
    width: 50px;
    height: auto;
}

.site-sidefixed-online .sideitem-chat .gif {
    display: block;
    width: 46px;
    height: 46px;
    margin: 0 auto;
    opacity: 1;
    object-fit: contain;
    transition: 0.5s;
}

.site-sidefixed-online .sideitem-chat:hover {
    width: 210px;
}

.site-sidefixed-online .sideitem-chat:hover .link {
    opacity: 1;
}

.site-sidefixed-online .sideitem-chat:hover .gif {
    opacity: 0;
}

.site-sidefixed .sideitem1,
.site-sidefixed .sideitem2,
.site-sidefixed .sideitem3,
.site-sidefixedM .sideitem1,
.site-sidefixedM .sideitem2 {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    background: rgba(255, 100, 113, 1);
    transition: 0.5s;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.site-sidefixed .sideitem1 {
    width: 58px;
    right: 0;
    overflow: hidden;
}

.site-sidefixed .sideitemTop,
.site-sidefixed .sideitemTop .icon-box {
    border-radius: 10px 10px 0 0;
}

.site-sidefixed .sideitem1:hover {
    overflow: visible;
}

.site-sidefixed .sideitem1:hover .sideins {
    opacity: 1;
    transform: translateX(-5px) translateY(-50%);
}

.site-sidefixed .sideitem3 {
    right: 0;
    width: 238px;
    flex-wrap: nowrap;
    overflow: visible;
}

.site-sidefixed .sideitem3:hover {
    right: 180px;
    border-radius: 10px !important;
}

.site-sidefixed .sideitem3:hover .icon-box {
    border-radius: 10px 0 0 10px !important;
}

.site-sidefixed .sideitem3:hover .sideins {
    border-radius: 0 10px 10px 0;
}

.site-sidefixed .sideitem4:hover {
    right: 180px;
}

.site-sidefixed .sideitem2 {
    width: 58px;
    right: 0;
    overflow: hidden;
    padding-bottom: 8px;
    border-radius: 0 0 10px 10px;
}

.site-sidefixed .icon-box,
.site-sidefixedM .icon-box {
    z-index: 801;
    width: 58px;
    flex: 0 0 58px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: rgba(255, 100, 113, 1);
    transition: 0.5s;
}

.site-sidefixed .sideitem2 .icon-box,
.site-sidefixedM .sideitem2 .icon-box {
    flex-direction: row;
}

.site-sidefixed .icon-box p,
.site-sidefixedM .icon-box p {
    margin: 4px 0 0;
    padding: 0 2px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    background: transparent !important;
}

.site-side-svg {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.site-sidefixed .sideitem3 .site-side-svg {
    width: 19px;
    height: 19px;
    font-size: 17px;
    line-height: 19px;
}

.site-sidefixed .sideitem3 .icon-box p {
    width: 100%;
    white-space: nowrap;
}

.site-sidefixed .sideitemBrochure .site-side-svg {
    width: 20px;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
}

.site-sidefixed .sideitem3 .sideins {
    width: 180px;
    flex: 0 0 180px;
    min-height: 65px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
    color: #fff;
    background: rgba(255, 100, 113, 1);
    transition: all 0.5s;
}

.site-sidefixed .sideitem3 .sideins p {
    position: relative;
    margin: 0;
    padding: 8px 0;
    line-height: 20px;
    white-space: nowrap;
}

.site-sidefixed .sideitem2 .site-side-svg {
    width: 10px;
    height: 10px;
    margin-right: 4px;
    font-size: 10px;
    line-height: 10px;
}

.site-sidefixed .sideitem2 .icon-box p {
    margin: 0;
    white-space: nowrap;
}

.site-sidefixed .sideitem3 .sideins p::after {
    content: '';
    position: absolute;
    top: 14%;
    left: -20px;
    width: 1px;
    height: 80%;
    background: #fff;
}

.site-sidefixed .sideitem3 .sideins a,
.site-sidefixedM .sideins a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
}

.site-sidefixed .sideitem3 .sideins .contactWays-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.5s;
}

.site-sidefixed .sideitem3 .sideins .contactWays-value:hover::after {
    width: 100%;
}

.site-sidefixed .sideitem1 .sideins {
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 800;
    min-height: 74px;
    padding: 10px;
    display: flex;
    opacity: 0;
    border-radius: 8px;
    background: rgba(255, 100, 113, 1);
    transform: translateX(10px) translateY(-50%);
    transition: all 0.5s;
}

.site-sidefixed .sideitem1 .sideins img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

@media only screen and (max-width: 850px) {
    body {
        padding-bottom: 58px;
    }

    .site-sidefixed {
        display: none;
    }

    .site-sidefixed-online {
        top: auto;
       bottom: 50%;
    }

    .site-sidefixedM {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;
        display: flex;
        width: 100%;
        height: 58px;
        background: rgba(255, 100, 113, 1);
        box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.12);
    }

    .site-sidefixedM .sideitem1,
    .site-sidefixedM .sideitem2 {
        flex: 0 0 25%;
        width: 25%;
        min-width: 0;
        height: 58px;
        border-right: 1px solid rgba(255, 255, 255, 0.35);
        border-bottom: 0;
        overflow: visible;
    }

    .site-sidefixedM .sideitem2 {
        border-right: 0;
        border-radius: 0;
        padding-bottom: 0;
    }

    .site-sidefixedM .icon-box {
        width: 100%;
        flex: 0 0 100%;
        height: 58px;
        padding: 6px 0;
        background: transparent;
    }

    .site-sidefixedM .sideitem2 .icon-box {
        flex-direction: column;
    }

    .site-sidefixedM .site-side-svg {
        width: 20px;
        height: 20px;
        font-size: 17px;
        line-height: 20px;
    }

    .site-sidefixedM .icon-box p {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 3px;
        font-size: 12px;
        line-height: 1.2;
        white-space: normal;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .site-sidefixedM .sideitem1:hover,
    .site-sidefixedM .sideitem1:focus-within,
    .site-sidefixedM .sideitem1:active {
        overflow: visible;
    }

    .site-sidefixedM .sideins {
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        z-index: 9999;
        min-width: max-content;
        max-width: calc(100vw - 24px);
        padding: 8px 12px;
        border-radius: 6px;
        background: rgba(255, 100, 113, 1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(8px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .site-sidefixedM .sideitem1:hover .sideins,
    .site-sidefixedM .sideitem1:focus-within .sideins,
    .site-sidefixedM .sideitem1:active .sideins {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .site-sidefixedM .sideins .p {
        margin: 0;
        line-height: 20px;
        white-space: nowrap;
    }

    .site-sidefixedM .sideins a {
        font-size: 13px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 480px) {
    body {
        padding-bottom: 54px;
    }

    .site-sidefixedM {
        height: 54px;
    }

    .site-sidefixed-online {
       bottom: 50%;
    }

    .site-sidefixedM .sideitem1,
    .site-sidefixedM .sideitem2,
    .site-sidefixedM .icon-box {
        height: 54px;
    }

    .site-sidefixedM .icon-box p {
        font-size: 11px;
    }
}
