/*超小屏（Extra small screen），平常手机，范围是 [0, 576px)*/
@media (min-width: 0px) and (max-width: 576px) {
    .web-wrap {
        display: none !important;
    }
    .h-web-container {
        display: none;
    }
    .download-page-h5 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*小屏（Small screen），大手机，范围是 [576px, 768px)*/
@media (min-width: 576px) and (max-width: 768px) {
    .web-wrap {
        display: none;
    }
    .download-page-h5 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

/*中屏（Medium screen），平板电脑，范围是 [768px, 992px)*/
@media (min-width: 769px) and (max-width: 992px) {
    .h5-wrap {
        display: none !important;
    }
    .download-page-h5 {
        display: none !important;
    }
}

/*大屏（Large screen），桌面电脑，范围是 [992px, 1200px)*/
@media (min-width: 993px) and (max-width: 1200px) {
    .h5-wrap {
        display: none;
    }
}

/*超大屏（Extra large screen），大桌面电脑，范围是 [1200px, +∞)*/
@media (min-width: 1201px) {
    .h5-wrap {
        display: none;
    }
    .download-page-h5 {
        display: none;
    }
}

/* common */
.top-line-box {
    margin: 20px auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 25px;
}

.top-line-box img {
    width: 98px;
    height: 10px;
}

.gray .top-line-box span {
    background: -o-linear-gradient(312deg, #6C4119 0%, #6C4119 26%, #6C4119 50%, #6C4119 85%, #6C4119 100%);
    background: linear-gradient(138deg, #6C4119 0%, #6C4119 26%, #6C4119 50%, #6C4119 85%, #6C4119 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.green .top-line-box span {
    background: -o-linear-gradient(312deg, #00c979 0%, #009944 26%, #14bc5e 50%, #009944 85%, #009944 100%);
    background: linear-gradient(138deg, #00c979 0%, #009944 26%, #14bc5e 50%, #009944 85%, #009944 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gray .btn-box .common-btn {
    -webkit-box-shadow: 0 2px 0 #6C4119;
    box-shadow: 0 2px 0 #6C4119;
    background: -o-linear-gradient(top, #333333, #171717, #181818);
    background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(#171717), to(#181818));
    background: linear-gradient(to bottom, #333333, #171717, #181818);
    border-radius: 12px;
    border: 1px solid #6C4119;
    width: 320px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.green .btn-box .common-btn {
    -webkit-box-shadow: 0 2px 0 #15b542;
    box-shadow: 0 2px 0 #15b542;
    background: -o-linear-gradient(top, #333333, #171717, #181818);
    background: -webkit-gradient(linear, left top, left bottom, from(#333333), color-stop(#171717), to(#181818));
    background: linear-gradient(to bottom, #333333, #171717, #181818);
    border-radius: 12px;
    border: 1px solid #00ff57;
    width: 320px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    cursor: pointer;
}

.gray .btn-box .common-btn:hover {
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119);
}
.green .btn-box .common-btn:hover {
    background: -o-linear-gradient(top, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left top, left bottom, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to bottom, #15b542, #15b542, #15b542);
}

.common-btn-hover {
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119) !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119)) !important;
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119) !important;
}

.btn-box .common-btn .inner-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-box .common-btn img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.btn-box .common-btn span {
    font-size: 16px;
    color: #fff;
}

/* web */
.web-wrap {
    height: 100vh;
    min-width: 1000px;
}

.h-web-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-unclick {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.web-wrap .inner-top-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1200px;
}

.web-wrap .inner-top-box img:first-child {
    width: 1167px;
    margin-left: 130px;
}

.web-wrap .inner-top-box img:nth-child(2) {
    width: 162px;
    position: absolute;
    left: 0px;
    top: 0;
}

.web-wrap .top-line-box {
    margin-top: 20px;
}

.web-wrap .top-line-box img {
    width: 100px;
    height: 10px;
}

.web-wrap .top-line-box span {
    font-size: 28px;
    margin: 0 40px;
    line-height: 28px;
}

.web-wrap .btn-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .btn-box .common-btn {
    margin-left: 10px;
    margin-right: 10px;
    width: 320px;
    font-size: 18px;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: bold;
}

.web-wrap .web-clicked {
    min-width: 1000px;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .web-clicked .inner-left-box > img {
    width: 350px;
    height: 54px;
}

.web-wrap .web-clicked .top-line-box {
    margin-top: 10px;
}

.web-wrap .inner-left-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 910px;
}

.web-wrap .ewm-box {
    margin-top: 20px;
    width: 100%;
    max-width: 560px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.web-wrap .ewm-box .ewm-inner-box {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .ewm-box .ewm-inner-box .qcr-code {
    width: 120px;
    height: 120px;
    background-color: #fff;
    margin-bottom: 14px;
    padding: 10px;
}

.web-wrap .ewm-box .ewm-inner-box .i18n {
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 3px;
}

.web-wrap .bottom-intro-box {
    width: 100%;
    max-width: 680px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.web-wrap .bottom-intro-box .inner-bottom-box {
    width: 23%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .bottom-intro-box .inner-bottom-box img {
    width: 70px;
    height: 70px;
}

.web-wrap .bottom-intro-box .inner-bottom-box span {
    color: #fff;
    margin-top: 24px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
    margin-left: 40%;
}

.web-wrap .inner-left-box > img {
    width: 260px;
    height: 130px;
}
.web-wrap .inner-right-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.web-wrap .inner-right-box img {
    width: 725px;
    height: 625px;
}

.bottom-intro-text {
    max-width: 680px;
    margin-top: 30px;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

/* h5 */
.h5-wrap {
    padding: 10px 10px 30px 10px;
    width: 100%;
    min-height: 100vh;
}

.download-page-h5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.download-page-h5 .inner-top-bg {
    margin-top: 10px !important;
}

.h5-float-box-fixed {
    display: none;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.5);
}

.h5-float-box-fixed .h5-home-float-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: -45%;
    max-height: 80%;
    width: 90%;
    bottom: unset;
}

.h5-float-box-fixed .home-float-box .inner-url-box span {
    font-size: 15px;
}

.h5-float-box-fixed .home-float-box .inner-url-box > a {
    width: 80px;
    height: 30px;
    line-height: 30px;
}

#h5-home .common-btn,
.btn-box .h5-common-btn {
    font-size: 14px;
    width: 290px;
    height: 40px;
    line-height: 40px;
}

#h5-home .common-btn img,
.btn-box .h5-common-btn img {
    width: 27px;
    height: 27px;
}

.h5-wrap .top-bg {
    width: 360px;
    height: 290px;
    margin-left: calc(50% - 180px);
}

.h5-wrap .h5-btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap .down-load-bg {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap .inner-top-bg {
    max-width: 21.8rem;
    max-height: 4rem;
    margin: 0.5rem auto 0px;
    display: block;
}

.h5-wrap .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.h5-wrap #clicked-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#h5-home-btn {
    position: relative;
}

.h5-download-float-box {
    display: none;
}

.home-float-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    max-height: 50vh;
    width: 390px;
    border-radius: 10px;
    bottom: 80px;
    overflow: hidden;
}
.gray .home-float-box {
    background: #9d7652;
    border: 1px solid #6C4119;
}
.green .home-float-box {
    background: #15b542;
    border: 1px solid #5afc88;
}
.home-float-box .inner-url-box {
    padding: 15px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.gray .home-float-box .inner-url-box {
    border-bottom: 1px solid #6C411980;
}
.green .home-float-box .inner-url-box {
    border-bottom: 1px solid #00c979;
}

.home-float-box .inner-url-box:last-child {
    border: none;
}

.home-float-box .inner-url-box span {
    font-size: 16px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.gray .home-float-box .inner-url-box > a {
    -webkit-box-shadow: 0 2px 0 #6C4119;
    box-shadow: 0 2px 0 #6C4119;
    border: 1px solid #6C4119;
    background: -o-linear-gradient(top, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left top, left bottom, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to bottom, #6C4119, #6C4119, #6C4119);
    color: #fff;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
    transition: ease-in-out 0.4s;
}
.gray .home-float-box .inner-url-box > a:hover {
    background: -o-linear-gradient(bottom, #6C4119, #6C4119, #6C4119);
    background: -webkit-gradient(linear, left bottom, left top, from(#6C4119), color-stop(#6C4119), to(#6C4119));
    background: linear-gradient(to top, #6C4119, #6C4119, #066631);
}

.green .home-float-box .inner-url-box > a {
    -webkit-box-shadow: 0 2px 0 #15b542;
    box-shadow: 0 2px 0 #15b542;
    border: 1px solid #5afc88;
    background: -o-linear-gradient(top, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left top, left bottom, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to bottom, #15b542, #15b542, #15b542);
    color: #fff;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
    transition: ease-in-out 0.4s;
}
.green .home-float-box .inner-url-box > a:hover {
    background: -o-linear-gradient(bottom, #15b542, #15b542, #15b542);
    background: -webkit-gradient(linear, left bottom, left top, from(#15b542), color-stop(#15b542), to(#15b542));
    background: linear-gradient(to top, #15b542, #5afc88, #15b542);
}

.down-trigle {
    display: none;
    top: -18px;
    left: calc(50% - 10px);
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid rgba(0, 153, 68, 0.5);
    border-color: rgba(0, 153, 68, 0.5) transparent transparent transparent;
}

#web-home-btn {
    position: relative;
}

/* .web-down-trigle {
} */


.userH5Download{
    margin-right: 27px !important;
}

.userH5cs{
    margin-right: 27px !important;
}

.web-home-float-box {
    left: -18px;
    overflow: auto;
    display: none;
}

span[data-lang] {
    display: none;
}

.download-name span{
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding: 0 3px;
}

/* 官方首页域名弹窗 */
.home-float-box {
    width: 500px;
    max-height: none;
    padding: 14px 14px 10px;
    border-radius: 16px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(23, 23, 20, 0.97), rgba(9, 12, 12, 0.98)) !important;
    border: 1px solid rgba(248, 213, 143, 0.72) !important;
    box-shadow: 0 0 0 1px rgba(111, 75, 31, 0.8) inset, 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 24px rgba(243, 181, 62, 0.16);
}

.home-float-box::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 28px;
    width: 72px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffe7a7, transparent);
    box-shadow: 0 0 12px #ffc34f;
}

.site-panel-title {
    display: flex;
    order: 1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #fff1bd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55), 0 0 9px rgba(255, 212, 126, 0.48);
}

.site-title-text {
    flex: 0 0 auto !important;
    width: auto;
    color: #fff1bd !important;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 1.15;
}

.site-title-line {
    position: relative;
    flex: 0 1 62px !important;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 212, 123, 0.9), transparent);
}

.site-title-line::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    transform: rotate(45deg);
    background: #ffd36a;
    box-shadow: 0 0 9px #ffc44d;
}

.site-title-icon,
.site-url-icon,
.site-safe-lock {
    flex: 0 0 auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-title-icon {
    width: 31px;
    height: 31px;
    border: 2px solid #ffe0a0;
    border-radius: 10px 10px 13px 13px;
    color: #ffe6ad;
    box-shadow: 0 0 10px rgba(255, 211, 106, 0.25);
}

.site-title-icon::before {
    content: "★";
    font-size: 16px;
    line-height: 1;
}

.home-float-box .inner-url-box {
    position: relative;
    order: 2;
    gap: 13px;
    min-height: 64px;
    margin-bottom: 7px;
    padding: 9px 14px 9px 16px;
    border: 1px solid rgba(149, 95, 37, 0.7) !important;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(25, 28, 28, 0.96), rgba(13, 17, 17, 0.97));
    box-shadow: 0 0 0 1px rgba(255, 226, 166, 0.08) inset;
}

.home-float-box .inner-url-box:last-of-type {
    margin-bottom: 0;
}

.site-url-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(108, 65, 25, 0.75);
    background:
            radial-gradient(circle at 35% 28%, #463016, #171616 68%);
    color: #ffe7ac;
    box-shadow: 0 0 12px rgba(245, 176, 55, 0.18);
}

.site-url-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: none;
    stroke: #e7bd73;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
    filter: drop-shadow(0 0 2px rgba(231, 189, 115, 0.22));
}

.site-url-text {
    flex: 1 1 auto !important;
    min-width: 0;
    color: #fff9e6 !important;
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 6px rgba(255, 244, 213, 0.34);
}

.home-float-box .inner-url-box > a.site-go-btn {
    flex: 0 0 auto;
    width: 112px;
    height: 38px;
    line-height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 230, 161, 0.9);
    background: linear-gradient(180deg, #ffe17b 0%, #efab2f 47%, #d8860f 100%) !important;
    box-shadow: 0 3px 0 rgba(132, 71, 8, 0.92), 0 0 18px rgba(251, 187, 55, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.home-float-box .inner-url-box > a.site-go-btn:hover {
    background: linear-gradient(180deg, #fff09e 0%, #f4bb40 48%, #de9516 100%) !important;
}

.home-float-box .inner-url-box > a.site-go-btn .goto-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700;
    line-height: 38px;
    text-shadow: 0 1px 2px rgba(119, 62, 7, 0.7);
}

.home-float-box .inner-url-box > a.site-go-btn .goto-btn::after {
    content: "›";
    font-size: 25px;
    line-height: 1;
    margin-top: -2px;
}

.site-panel-safe {
    display: flex;
    order: 99;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 8px;
    color: #f0c57a;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(240, 197, 122, 0.25);
}

.site-panel-safe span {
    color: #f0c57a !important;
    font-size: 13px !important;
}

.site-safe-line {
    flex: 0 1 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 94, 43, 0.92), transparent);
}

.site-safe-lock {
    position: relative;
    width: 15px;
    height: 12px;
    margin-top: 3px;
    border-radius: 2px;
    background: #f0c57a;
    box-shadow: 0 0 7px rgba(240, 197, 122, 0.35);
}

.site-safe-lock::before {
    content: "";
    position: absolute;
    left: 3px;
    top: -8px;
    width: 9px;
    height: 10px;
    border: 2px solid #f0c57a;
    border-bottom: none;
    border-radius: 9px 9px 0 0;
    box-sizing: border-box;
}

.site-safe-lock::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 2px;
    height: 4px;
    border-radius: 2px;
    background: #16110a;
}

.web-home-float-box {
    left: 50%;
    bottom: 84px;
    transform: translateX(-50%);
    overflow: visible;
}

.home-float-box.is-site-open {
    display: flex !important;
    flex-direction: column;
}

.h5-float-box-fixed .h5-home-float-box {
    left: 50%;
    top: 50%;
    width: min(92vw, 480px);
    max-height: calc(100vh - 40px);
    margin-left: 0;
    transform: translate(-50%, -50%);
    overflow-y: auto;
}

.h5-float-box-fixed .home-float-box .inner-url-box > a.site-go-btn {
    width: 98px;
    height: 36px;
    line-height: 36px;
}

.h5-float-box-fixed .home-float-box .inner-url-box > a.site-go-btn .goto-btn {
    font-size: 14px !important;
    line-height: 36px;
}

@media (max-width: 576px) {
    .home-float-box {
        width: min(92vw, 480px);
        padding: 12px 10px 9px;
        border-radius: 16px;
    }

    .site-panel-title {
        gap: 8px;
        margin-bottom: 14px;
    }

    .site-title-text {
        font-size: 19px !important;
    }

    .site-title-line {
        flex-basis: 42px !important;
    }

    .site-title-icon {
        width: 30px;
        height: 30px;
    }

    .home-float-box .inner-url-box {
        gap: 10px;
        min-height: 66px;
        padding: 10px 10px;
        border-radius: 10px;
    }

    .site-url-icon {
        width: 34px;
        height: 34px;
    }

    .site-url-icon svg {
        width: 22px;
        height: 22px;
    }

    .site-url-text {
        font-size: 14px !important;
    }

    .site-panel-safe {
        font-size: 13px;
    }

    .site-panel-safe span {
        font-size: 13px !important;
    }
}
