.navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .navbar-brand img {
    height: 40px;
    border-radius: 8px;
}

.footer .priv {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .priv a {
    margin-top: 5px;
}

.navbar-collapse {}

.navbar .navbar-brand .lang {
    transform: scaleX(0.6);
    transform-origin: center left;
    margin-right: -50px;
}

/* homeInfo s  */
.homeInfo {}

.homeInfo .hd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.homeInfo .hd .ico {
    height: 90px;
}

.homeInfo .hd .txt {
    text-align: left;
}

.homeInfo .hd h2 {
    margin: 0 0 10px;
    font-size: 40px;
}

.homeInfo .hd h3 {
    margin: 0;
    font-size: 23px;
}

.homeInfo .btns {}

.homeInfo .btns li {}

.homeInfo .btns li .ico {}

.homeInfo .btns li .t {}

/* btn  */
.downBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 50px;
}

.downBtn .item {
    border: 1px solid #fff;
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 20px;
    box-sizing: border-box;
    gap: 10px;
    background-color: hsl(202.11deg 32.2% 23.14% / 55%);
    text-decoration: none;
    outline: none;
    user-select: none;
    color: #fff;
    transition: .3s;
    --kuosan: 20px;
    z-index: 3;
}

/* .pc .downBtn .item.apple, .pc .downBtn .item.google, .ios .downBtn .item.apple, .android .downBtn .item.google {
    display: flex;
} */
.downBtn .item:hover {
    box-shadow: 0 0 var(--kuosan) 0px #ccc;
    transform: scale(.95);
}

.downBtn .item.apple {}

.downBtn .item i {
    width: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: inherit;
}

.downBtn .item i img {
    max-height: 100%;
    max-width: 100%;
}

.downBtn .item .ico_google {}

.downBtn .item .ico_apple {}

.downBtn .item .txt {
    display: flex;
    align-items: center;
    flex: 1;
}

.section-description {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
}

/* homeInfo e  */
.boder_top {
    border-top: 10px solid #ffd500;
}

/* MarketChart s */
.slides {
    display: flex;
    margin: 0 auto;
    padding: 0;
    justify-content: space-between;
    gap: 3%;
}

.slides li {
    list-style: none;
    /* margin: 0 auto; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slides li img {
    /* max-height: 80vh; */
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    border-radius: 10px;
    user-select: none;
    cursor: zoom-in;
    transition: .3s;
}

.slides li img:hover {
    transform: scale(1.04);
}

/* 遮罩层样式 */
.mask-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    /* 半透明黑色遮罩 */
    z-index: 9999;
    /* 确保遮罩层在最上层 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 预览图片容器 */
.preview-img {
    max-width: 90%;
    max-height: 94%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-img img {
    width: 100%;
    height: auto;
    max-width: 80%;
    max-height: 100vh;
    border-radius: 10px;
    animation: preview_img .3s ease forwards;
}

@keyframes preview_img {
    0% {
        transform: scale(.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 关闭按钮样式 */
.close-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s;
    position: fixed;
    bottom: 5vh;
    left: calc(50% - 20px);
    z-index: 2;
}

.close-btn:hover {
    background-color: #ff4444;
    color: #fff;
}

/* MarketChart e */
/* rtl s */
.rtl .navbar-toggle {
    float: left !important;
}

.rtl .navbar-brand {
    float: right !important;
    flex-direction: row-reverse;
}

.rtl .navbar .navbar-brand .lang {
    transform-origin: center right;
    margin: 0;
}

.rtl .navbar-nav {
    float: left;
}

.rtl .navbar-header {
    float: right;
}

.rtl .homeInfo .hd {

    flex-direction: row-reverse;
}

.rtl .homeInfo .hd .txt {

    text-align: right;
}

.section-home {
    background: url(../../indexFiles/images/slide/section1_bg.png) no-repeat center / cover;
}

/* rtl e */
@media (max-width: 767px) {
    .navbar-collapse {}

    .rtl .navbar-header {
        width: 100%;
        margin: 0 auto;
    }

    .homeInfo .hd .nav {
        width: 630px;
        display: inline-block;
    }

    .nav>li {
        width: auto;
    }

    .nav>li>a {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .homeInfo .hd {
        flex-wrap: wrap;
    }

    .homeInfo .hd .txt {
        width: 100%;
        text-align: center;
    }

    .downBtn {
        transform: scale(.8);
        margin: 30px 0 40px;
    }

    .homeInfo .hd h2 {
        font-size: 32px;
    }

    .homeInfo .hd h3 {
        font-size: 20px;
    }
}