﻿
body {
    display: flex;
    justify-content: center;
    user-select: none; /* 禁止文本选择 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none; /* 禁止长按菜单 */
}

img {
    /*pointer-events: none;*/ /* 禁止图片交互 */
    -webkit-user-drag: none; /* 禁止拖动 */
}

body {
    -webkit-user-select: none; /* Safari/Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    user-select: none; /*  */
}

/*滚动样式 隐藏滚动条*/
.hideScrollLine::-webkit-scrollbar {
    display: none;
}

/*按压样式*/
.elActive:active {
    background: #ccc;
}

/*遮罩层*/
.youtshade {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: #000;
    opacity: 0.45;
    z-index: 8000;
}

/*过度动画  底部显示*/
.windows_toup-leave-active {
    transition: all 0.2s ease;
}

.windows_toup-enter-active {
    transition: all 0.2s ease;
}

.windows_toup-leave-active,
.windows_toup-enter {
    height: 0px !important;
}

.windows_toup-leave,
.windows_toup-enter-active {
    height: auto;
}

/*过度动画  底部显示*/
.windows_todown-leave-active {
    transition: all 0.3s ease;
}

.windows_todown-enter-active {
    transition: all 0.5s ease;
}

.windows_todown-leave-active,
.windows_todown-enter {
    height: 0px !important;
}

.windows_todown-leave,
.windows_todown-enter-active {
    height: -100%;
}



.mui-slider {
    height: 100%;
}

    .mui-slider .mui-slider-group {
        height: 100%;
    }

.div_content {
    background: #f2f2f2;
    width: 100%;
    height: calc(100% - 60px);
    position: absolute;
    overflow: auto;
}

.mui-slider .mui-slider-group .mui-slider-item > a:not(.mui-control-item) {
    height: 100%;
}

.mui-slider .mui-slider-group .mui-slider-item img {
    /*height: 100%;*/
}
/****************  商城首页底部按钮   ****************/
.main_bottombtn {
    height: 60px;
    width: 100%;
    /* line-height: 60px; */
    position: fixed;
    bottom: 0;
    display: flex;
    background: #fff;
}

    .main_bottombtn > .btn_box {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 14px;
        color: #888;
    }

        .main_bottombtn > .btn_box:active {
            background: #ddd;
        }

    .main_bottombtn > .contor {
        color: #FF4544;
    }



    .main_bottombtn > .btn_box > span {
        margin-top: 4px;
    }

.hinttext {
    height: 2rem;
    line-height: 2rem;
    text-align: center;
}


.LoadingNew {
    position: fixed;
    background: #00000073;
    background: #00000096;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .LoadingNew > img {
        height: 2rem;
        width: 3rem;
        height: 116px;
        width: 150px;
        /*margin: auto;*/
    }

    .LoadingNew > .text {
        color: #afafaf;
        font-size: 26px;
        font-family: cursive;
    }

    .LoadingNew > i {
        font-size: 60px;
        margin: auto;
        color: #c4c4c4;
    }





.main {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    background-image: url("/UI/img/page3-bg.jpg");
    background-size: 100% 100%;
}

/*******底部导航 begin*******/
.BottomMenu {
    width: 100%;
    height: 1.4rem;
    bottom: 0;
    position: fixed;
    background: #fff;
    z-index: 99999999;
    display: flex;
    align-items: center;
}

    .BottomMenu > .column {
        /*width: 3.33rem;*/
        height: 100%;
        float: left;
        text-align: center;
        flex: 1;
    }

        .BottomMenu > .column > .Menubtn {
            height: 100%;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;
            flex-wrap: nowrap;
            color: #666;
        }

            .BottomMenu > .column > .Menubtn.contor > .iconfont {
                color: #f14c43;
            }

            .BottomMenu > .column > .Menubtn > .iconfont {
                font-size: 0.55rem;
                height: 0.55rem;
            }

            .BottomMenu > .column > .Menubtn > span {
                font-size: 0.3rem;
            }
/*******底部导航 end*******/

.linebox {
    display: flex;
    align-items: center;
}


/*文本首行缩进  2个中文字符*/
.text-indent {
    text-indent: 2em;
}

/*文本超出省略号...*/
.text-hide {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/*文本最大2行 超出...*/
.text-hide-twoline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.transition0-3s {
    transition: transform 0.3s ease-in-out; /* 动画效果 */
}

.zoom_box1-0-1:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out;
}

.zoom_box1-0-2:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}

.zoom_box1-0-3:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}

.zoom_box1-0-4:hover {
    transform: scale(1.04);
    transition: transform 0.3s ease-in-out;
}

.zoom_box1-0-5:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}


/*分割线*/
.fgxbox {
    height: 0.03rem;
    background-color: rgba(255,255,255,1);
    border: 0.03rem solid rgba(237,241,242,1);
}


/*删除线样式*/
.deltext {
    text-decoration: line-through;
}

/*下划线样式*/
.downlinetext {
    text-decoration: underline;
}


.daohangActive:active {
    background: linear-gradient(88.04deg, rgb(20 20 20) 1.52%, rgb(53 52 52) 97.55%);
}


/*头部样式 headBox*/
.headBox {
    height: 1.16rem;
    display: flex;
    align-items: center;
    padding-left: 0.53rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

    .headBox > .iconbox {
        width: 1.05rem;
        height: 1.05rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .headBox > .iconbox > i {
            font-size: 1rem;
            color: #333333;
        }


    .headBox > .nameBox {
        height: 1.05rem;
    }

        .headBox > .nameBox > img {
            height: 1.05rem;
        }


.querybox {
    height: 1.47rem;
    display: flex;
    align-items: center;
}


    .querybox > .query {
        height: 100%;
        flex: 1;
        border-radius: 0.63rem;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0rem 0.05rem 0.26rem 0rem rgba(0, 0, 0, 0.2);
        border: 0.05rem solid rgba(50, 32, 22, 1);
        display: flex;
        align-items: center;
        padding: 0 0.53rem;
    }

        .querybox > .query > img {
            width: 0.53rem;
            height: 0.53rem;
            margin-right: 0.24rem;
        }

        .querybox > .query > input {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.47rem;
            text-align: left;
            font-family: PingFangSC-regular;
            line-height: 0.74rem;
            height: 0.74rem;
            border: none;
            padding: 0 0.25rem;
        }

        .querybox > .query > div {
            color: rgba(0, 0, 0, 0.5);
            font-size: 0.53rem;
            text-align: left;
            font-family: PingFangSC-regular;
            line-height: 0.74rem;
            height: 0.74rem;
        }


.dialogHint {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s linear;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    display: none;
}

    .dialogHint > .dialogBox {
        /* bottom: 0.97rem; */
        /* right: 0.53rem; */
        /* left: 0.53rem; */
        border-radius: 0.63rem;
        background-color: rgba(255, 255, 255, 1);
        margin: 0 0.53rem 0.97rem 0.53rem;
        height: auto;
    }

        .dialogHint > .dialogBox > .text {
            background-image: url(/UI/Image/bg3.jpg);
            border-radius: 0.63rem 0.63rem 0 0;
            padding: 0.84rem 0.63rem 0.4rem 0.63rem;
            line-height: 0.74rem;
            color: rgba(0, 0, 0, 1);
            font-size: 0.63rem;
            text-align: left;
            font-family: PingFangSC-regular;
        }

        .dialogHint > .dialogBox > .inputbox {
            height: 1.71rem;
            line-height: 1.71rem;
            background-color: rgba(255, 255, 255, 0.5);
            border-bottom: 0.03rem solid rgba(0, 0, 0, 0.5);
            margin-top: 0.42rem;
            margin-left: 0.63rem;
            margin-right: 0.63rem;
            margin-bottom: 1rem;
        }

            .dialogHint > .dialogBox > .inputbox > input {
                height: 0.87rem;
                line-height: 0.87rem;
                color: rgba(0,0,0,0.3);
                font-size: 0.63rem;
                text-align: left;
                font-family: PingFangSC-regular;
            }


        .dialogHint > .dialogBox > .btns {
            display: flex;
            justify-content: flex-end;
            margin-top: 0.13rem;
            margin-right: 0.47rem;
            margin-bottom: 0.53rem;
        }


            .dialogHint > .dialogBox > .btns > .btnsCancel {
                width: 2.95rem;
                height: 1.79rem;
                border-radius: 0.63rem;
                background-color: rgba(237,241,242,1);
                color: rgba(80,85,89,1);
                font-size: 0.53rem;
                text-align: left;
                font-family: PingFangSC-regular;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-right: 0.32rem;
            }

                .dialogHint > .dialogBox > .btns > .btnsCancel:active {
                    width: 2.95rem;
                    height: 1.79rem;
                    border-radius: 0.63rem;
                    background-color: rgb(200 207 209);
                    color: rgba(80,85,89,1);
                    font-size: 0.53rem;
                    text-align: left;
                    font-family: PingFangSC-regular;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-right: 0.32rem;
                }

            .dialogHint > .dialogBox > .btns > .btn {
                width: 2.95rem;
                height: 1.79rem;
                border-radius: 0.63rem;
                background: linear-gradient(90.7deg, rgba(80, 85, 89, 1) 1.65%, rgba(0, 0, 0, 1) 98.48%);
                box-shadow: 0rem 0.05rem 0.26rem 0rem rgba(0, 0, 0, 0.2);
                border: 0.03rem solid rgba(0, 0, 0, 0.5);
                color: rgba(255, 255, 255, 1);
                font-size: 0.53rem;
                text-align: center;
                font-family: PingFangSC-regular;
                display: flex;
                justify-content: center;
                align-items: center;
            }


                .dialogHint > .dialogBox > .btns > .btn:active {
                    width: 2.95rem;
                    height: 1.79rem;
                    border-radius: 0.63rem;
                    background: linear-gradient(90.7deg, rgb(3 3 3) 1.65%, rgb(72 66 66) 98.48%);
                    box-shadow: 0rem 0.05rem 0.26rem 0rem rgba(0, 0, 0, 0.2);
                    border: 0.03rem solid rgba(0, 0, 0, 0.5);
                    color: rgba(255, 255, 255, 1);
                    font-size: 0.53rem;
                    text-align: center;
                    font-family: PingFangSC-regular;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

        .dialogHint > .dialogBox > img {
        }

.dialogHintShow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s linear;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}




.ToastBox {
    position: absolute;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s linear;
}


    .ToastBox > .msgtext {
        width: 2.74rem;
        height: 1.29rem;
        border-radius: 0.42rem;
        background: linear-gradient(90.7deg, rgba(78,237,205,1) 1.65%,rgba(11,167,143,1) 98.48%);
        box-shadow: 0rem 0.05rem 0.26rem 0rem rgba(78,237,205,1);
        color: rgba(255,255,255,1);
        font-size: 0.42rem;
        text-align: center;
        font-family: PingFangSC-bold;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s linear;
    }



.noDatas {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem;
}


.zhezhao {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #00000000;
    width: 100%;
    z-index: 78;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}


.pcr-app {
    width: 28.5em;
    max-width: 95vw;
    padding: .8em;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0;
    top: auto !important;
    bottom: 2.6rem;
}


.maininfo {
    width: 100%;
    /* height: 100%; */
    position: fixed;
    top: 0;
    bottom: 0px !important;
    left: 0;
    right: 0;
    background: rgba(225, 227, 230, 0.5);
    overflow-x: auto;
}



.headbox {
    width: 100%;
    height: 185px;
}

    .headbox > .routerbox {
        height: 72px;
        background-color: #1D1D1F;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

        .headbox > .routerbox > .box {
            min-width: 1180px;
            max-width: 1708px;
            display: flex;
            align-items: center;
            height: 100%;
            width: 100%;
            margin: 0 220px;
        }

            .headbox > .routerbox > .box > .logobox {
            }

                .headbox > .routerbox > .box > .logobox > .img {
                    height: 32px;
                    width: 166px;
                    margin-top: 13px;
                }

                .headbox > .routerbox > .box > .logobox > .text {
                    height: 17px;
                    line-height: 17px;
                    color: rgba(255, 255, 255, 1);
                    font-size: 12px;
                    font-family: PingFangSC-regular;
                    display: flex;
                    justify-content: space-evenly;
                    width: 166px;
                    margin-top: 6px;
                }

            .headbox > .routerbox > .box > .menubox {
                margin-left: 94px;
                display: flex;
                align-items: center;
                height: 100%;
                flex: 1;
            }

                .headbox > .routerbox > .box > .menubox > .menu {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    padding: 0 16px;
                    height: 100%;
                }

                    .headbox > .routerbox > .box > .menubox > .menu > .m_text {
                        flex: 1;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        .headbox > .routerbox > .box > .menubox > .menu > .m_text > P {
                            height: 25px;
                            line-height: 25px;
                            color: #ffffff;
                            font-size: 18px;
                            text-align: left;
                            font-family: PingFangSC-bold;
                        }

                            .headbox > .routerbox > .box > .menubox > .menu > .m_text > P:hover {
                                height: 25px;
                                line-height: 25px;
                                color: rgba(247, 71, 71, 1);
                                font-size: 18px;
                                text-align: left;
                                font-family: PingFangSC-bold;
                            }

                .headbox > .routerbox > .box > .menubox > .focusin > .m_text > P {
                    height: 25px;
                    line-height: 25px;
                    color: rgba(247, 71, 71, 1);
                    font-size: 18px;
                    text-align: left;
                    font-family: PingFangSC-bold;
                }

                .headbox > .routerbox > .box > .menubox > .menu > .m_line {
                    width: 24px;
                    height: 6px;
                    background-color: rgb(255 8 8 / 0%);
                }

                /*       .headbox > .routerbox > .box > .menubox > .menu > .m_line:hover {
                        width: 24px;
                        height: 6px;
                        background-color: rgba(247,71,71,1);
                    }*/

                .headbox > .routerbox > .box > .menubox > .focusin > .m_line {
                    width: 24px;
                    height: 6px;
                    background-color: rgba(247,71,71,1);
                }


    .headbox > .searchbox {
        height: 113px;
        background-color: rgba(44,48,56,1);
        box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.5);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .headbox > .searchbox > .box {
            display: flex;
            align-items: center;
            width: 100%;
            margin: 0 220px;
        }

            .headbox > .searchbox > .box > .inputbox {
                height: 61px;
                line-height: 61px;
                border-radius: 8px 0px 0px 8px;
                background-color: rgba(255,255,255,1);
                color: rgba(80,85,89,0.6);
                font-size: 16px;
                text-align: left;
                font-family: PingFangSC-bold;
                flex: 1;
            }


                .headbox > .searchbox > .box > .inputbox > input {
                    height: 100%;
                    width: 100%;
                    border: none;
                    padding: 0 16px;
                }

            .headbox > .searchbox > .box > .s_iconbox {
                width: 71px;
                height: 61px;
                border-radius: 0px 8px 8px 0px;
                background-color: rgba(247,71,71,1);
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .headbox > .searchbox > .box > .s_iconbox:active {
                    background-color: rgba(247, 71, 71, 1);
                }


                .headbox > .searchbox > .box > .s_iconbox:hover {
                    background-color: rgb(241 14 14);
                }

                .headbox > .searchbox > .box > .s_iconbox > .iconfont {
                    font-size: 28px;
                    color: #ffffff;
                    display: flex;
                }

.contentbox {
    height: calc(100% - 185px);
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

    .contentbox > .corecontent {
        background: #ffffff;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contentbox > .corecontent2 {
        background: #F5F5F5;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .contentbox > .recommended {
        background-color: rgba(225,227,230,0.5);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.bottomBox {
    min-width: 1356px;
    margin-top: 62px;
    height: 173px;
    background-color: rgba(29,29,31,1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .bottomBox > .bottomBox_box {
        min-width: 1180px;
        max-width: 1708px;
        width: 100%;
        margin: 0 220px;
        display: flex;
        align-items: center;
        position:relative;
    }

        .bottomBox > .bottomBox_box > .b_box_left {
        }

            .bottomBox > .bottomBox_box > .b_box_left > .b_box_logo {
                width: 248.25px;
                height: 48px;
                margin-bottom: 26px;
            }

                .bottomBox > .bottomBox_box > .b_box_left > .b_box_logo > img {
                    width: 248.25px;
                    height: 48px;
                }

            .bottomBox > .bottomBox_box > .b_box_left > .b_box_text {
                line-height: 22px;
                color: rgba(255,255,255,1);
                font-size: 18px;
                text-align: left;
                font-family: PingFangSC-regular;
                width: 377px;
            }

        .bottomBox > .bottomBox_box > .b_box_right {
            margin-left: 142px;
        }

            .bottomBox > .bottomBox_box > .b_box_right > img {
            }


.cursor {
    cursor: pointer;
}


.fixedparameters_outside {
    min-width: 1356px;
}


.fixedparameters_within {
    min-width: 1180px;
    max-width: 1708px;
}


img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.floatbox {
    position: fixed;
    right: 15px;
    top: 295px;
    /*width: 120px;*/
    border-radius: 8px 0px 0px 8px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(225, 227, 230, 1);
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 102;
}

    .floatbox > .f_item {
        padding: 10px 3px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 8px;
        position: relative;
    }

        .floatbox > .f_item:hover {
            background-color: rgba(247,71,71,0.1);
        }

    .floatbox > .f_item_sel {
        padding: 10px 3px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 8px;
        background-color: rgba(247,71,71,0.1);
    }
    /**/


    .floatbox > .f_item > .f_img {
        width: 64px;
        height: 64px;
    }

    .floatbox > .f_item > .f_text {
        height: 22px;
        line-height: 22px;
        color: rgba(0,0,0,1);
        font-size: 14px;
        text-align: center;
        font-family: PingFangSC-bold;
        margin-top: 2px;
    }

    .floatbox > .f_item:hover .f_img {
        color: rgb(249 64 64);
        transform: scale(1.02) !important;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

    .floatbox > .f_item:hover .f_text {
        color: rgb(249 64 64) !important;
        cursor: pointer;
    }



    .floatbox > .f_item > .sidebox {
        position: absolute;
        width: 150px;
        right: 126px;
        top: -12px;
        background: #ffffff;
        border-radius: 6px;
        padding: 12px 8px;
        /*border: 1px solid #e1e3e6;*/
        /* border: 1px solid #cf2525; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgb(208 38 38);
        display: none;
        z-index: 999999;
        box-shadow: 0px 0px 2px 1px #f95858;
        /*opacity: 0;*/
        transition: opacity 0.5s ease; /* 定义过渡效果 */
    }

        .floatbox > .f_item > .sidebox > .box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .floatbox > .f_item > .sidebox > .box > img {
                width: 100%;
            }

            .floatbox > .f_item > .sidebox > .box > span {
                height: 22px;
                line-height: 22px;
                color: rgb(255 255 255);
                font-size: 14px;
                text-align: center;
                font-family: PingFangSC-bold;
                margin-top: 2px;
            }

        .floatbox > .f_item > .sidebox > .box2 {
            margin-top: 8px;
        }

        .floatbox > .f_item > .sidebox:before {
            box-sizing: content-box;
            width: 0;
            height: 0;
            position: absolute;
            top: 60px;
            right: -16px;
            padding: 0;
            border-right: 8px solid transparent;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid rgba(4, 105, 203, 0.6);
            border-left: 9px solid rgb(208 38 38);
            display: block;
            content: '';
            z-index: 12;
            opacity: 1 !important;
            transition: opacity 0.5s ease; /* 定义过渡效果 */
        }

    /*       .floatbox > .f_item > .sidebox:after {
            box-sizing: content-box;
            width: 0;
            height: 0;
            position: absolute;
            top: 22px;
            right: -19px;
            padding: 0;
            border-right: 9px solid transparent;
            border-top: 9px solid transparent;
            border-bottom: 9px solid transparent;
            border-left: 9px solid #ccc;
            border-left: 9px solid #ccc;
            display: block;
            content: '';
            z-index: 10
        }*/



    .floatbox > .f_item:hover .sidebox {
        display: flex;
    }

    .floatbox > .f_line {
        width: 88px;
        height: 1px;
        background-color: rgba(255,255,255,1);
        border: 1px solid rgba(194,199,204,1);
        margin-top: 2px;
        margin-bottom: 2px;
    }



.c_titles_box {
    height: 48px;
    width: 100%;
    color: rgba(0,0,0,1);
    font-size: 32px;
    text-align: left;
    font-family: PingFangSC-bold;
    display: flex;
    align-items: center;
    padding-left: 16px;
    border-left: 8px solid #F74747;
}



.labelkey {
    line-height: 20px;
    color: #8CA2AA;
    font-size: 14px;
    text-align: left;
    font-family: PingFangSC-regular;
}

.labelvalue {
    line-height: 20px;
    color: #4B5054;
    font-size: 14px;
    text-align: left;
    font-family: PingFangSC-regular;
}




/*dialog*/

.maskBox {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
}

.maskBox_show {
    transition: transform 0.3s ease-in-out;
    opacity: 1;
    display: flex;
    transform: scale(1);
}

.maskBox > .dialogbox {
    width: 532px;
    height: 363px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(187, 187, 187, 1);
    padding: 0 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.maskBox > .dialogbox_show {
    transition: transform 0.3s ease-in-out;
}

.maskBox > .dialogbox > .imgbox {
    width: 100px;
    height: 100px;
    background-color: rgba(255,255,255,1);
    border: 1px solid rgba(225,227,230,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}

    .maskBox > .dialogbox > .imgbox > img {
        width: 56px;
        height: 56px;
    }

.maskBox > .dialogbox > .stautstext {
    /*line-height: 22px;*/
    color: rgba(0,0,0,1);
    font-size: 28px;
    text-align: center;
    font-family: PingFangSC-bold;
    margin-top: 14px;
}

.maskBox > .dialogbox > .dialogInfos {
    /*line-height: 18px;*/
    color: rgba(0,0,0,1);
    font-size: 16px;
    text-align: center;
    font-family: PingFangSC-regular;
    margin-top: 10px;
}

.maskBox > .dialogbox > .dialogbtns {
    height: 60px;
    border-radius: 8px;
    background-color: rgba(247,71,71,1);
    color: rgba(255,255,255,1);
    font-size: 24px;
    text-align: center;
    font-family: PingFangSC-bold;
    width: 100%;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .maskBox > .dialogbox > .dialogbtns:hover {
        background-color: rgba(207,19,34,1);
        color: rgba(255,255,255,1);
    }

    .maskBox > .dialogbox > .dialogbtns:active {
        background-color: rgba(247,71,71,1);
        color: rgba(255,255,255,1);
    }




.drawerbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: rgb(0 0 0 / 60%);
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.drawerbox_show {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgb(0 0 0 / 60%);
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    opacity: 1;
}


.drawerbox > .drawerContent {
    position: fixed;
    /*right: -1100px;*/
    top: 0;
    bottom: 0;
    width: 1000px;
    background: #ffffff;
    padding: 24px;
    transition: transform 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: -1100px;
    opacity: 0;
}

    .drawerbox > .drawerContent > .drawer_titles {
        padding: 0 16px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

        .drawerbox > .drawerContent > .drawer_titles > .title_text {
            height: 100%;
            color: rgba(0, 0, 0, 1);
            font-size: 32px;
            text-align: left;
            font-family: PingFangSC-bold;
            padding-left: 16px;
            border-left: 8px solid #F74747;
            font-weight: bold;
        }

        .drawerbox > .drawerContent > .drawer_titles > .drawer_close_icon {
            width: 32px;
            height: 32px;
            background-color: rgba(44,48,56,1);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


            .drawerbox > .drawerContent > .drawer_titles > .drawer_close_icon:active {
                background-color: rgb(8 9 10);
            }

            .drawerbox > .drawerContent > .drawer_titles > .drawer_close_icon > i {
                font-size: 18px;
                color: #ffffff;
            }

    .drawerbox > .drawerContent > .drawer_content_info {
        background-color: rgba(245, 245, 245, 1);
        height: calc(100% - 72px);
    }

    .drawerbox > .drawerContent > .drawer_bottom_btn {
    }

.drawerbox > .drawerContent_show {
    position: fixed;
    /*right: 0;*/
    top: 0;
    bottom: 0;
    width: 1000px;
    background: #ffffff;
    padding: 24px;
    transition: transform 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-right: 0px;
    opacity: 1;
}


iframe {
    width: 100%;
    height: 100%;
    border: none !important;
}


.disabled_style {
    cursor: not-allowed; /* 视觉提示 + 功能禁用:ml-citation{ref="5,8" data="citationList"} */
    pointer-events: none;
}


.addCar_noQty {
    background-color: rgb(241 117 117) !important;
}

.buy_now_noQty {
    color: rgb(241 117 117) !important;
}



/* 购物车图标样式 */
.cart-icon {
    position: fixed;
    right: 20px;
    top: 20px;
    font-size: 24px;
}

.fly-container {
    position: absolute;
    /*right:40px;*/
    top: 0;
}
/* 飞行动画元素 */
.fly-item {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.5, -0.5, 0.5, 1.5) forwards;
    /*    transition: all 0.8s cubic-bezier(0.5, -0.5, 0.5, 1.5);
    transform: translate({{ startX }}px, {{ startY }}px);*/
    /*transform: translate(305.375px, -336px);*/
    z-index: 9000;
    opacity: 0;
}

    .fly-item > img {
        width: 40px;
        height: 40px;
        pointer-events: none;
        /*        transition: all 0.8s cubic-bezier(0.5, -0.5, 0.5, 1.5);
        transition: all 0.8s cubic-bezier(0.5, -0.5, 0.5, 1.5);
        transform: translate({{ startX }}px, {{ startY }}px);*/
        z-index: 1000;
    }

/* Vue 过渡系统集成 */
.fly-enter {
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

.fly-leave-active {
    transform: translate(calc(100vw - 100px), -80px) scale(0.3);
    opacity: 0;
}

/* 飞行动画关键帧 */
@keyframes flyToCart {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translate(var(--end-x), var(--end-y)) scale(0.5); /* 最终缩小效果 */
        /*transform: translate(301px, -300px) scale(0.5);*/ /* 最终缩小效果 */
        opacity: 0;
    }
}

/* 贝塞尔曲线实现抛物线效果 */
.fly-animation {
    animation: flyToCart 0.8s cubic-bezier(0.55, 0.05, 0.45, 0.95) forwards;
}


.el-carousel--horizontal {
    height: 100%;
}

.el-carousel__container {
    height: 100% !important;
}

.yingyuchatui {
    /*top: 90% !important;*/
    bottom: initial !important;
}


.loginBtn {
    width: 108px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid rgba(247, 71, 71, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F74747;
    font-size: 18px;
    text-align: left;
    font-family: PingFangSC-regular;
}

    .loginBtn span {
    }

    .loginBtn svg {
        fill: #F74747;
        margin-left: 2px;
        font-size: 18px;
        width: 18px;
        height: 18px;
    }


.userName {
    color: #ffffff;
    font-size: 18px;
    font-family: PingFangSC-regular;
}


.loginDialog {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
}

    .loginDialog .contents {
        width: 27.7vw;
        height: 60vh;
        background-color: rgba(255, 255, 255, 1);
        border: 1px solid rgba(187, 187, 187, 1);
     /*   width: 532px;
        height: 648px;*/
    }


        .loginDialog .contents .boxs {
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 0 3.38vw;
        }

            .loginDialog .contents .boxs .close {
                width: 24px;
                height: 24px;
                position: absolute;
                right: 20px;
                top: 20px;
            }

            .loginDialog .contents .boxs .imgs {
                width: 100px;
                height: 100px;
                background-color: rgba(255, 255, 255, 1);
                border: 1px solid rgba(225, 227, 230, 1);
                margin-top: 40px;
                margin-top: 3.7vh;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 100px;
            }

                .loginDialog .contents .boxs .imgs img {
                    width: 56px;
                    height: 56px;
                }

            .loginDialog .contents .boxs .Login {
                color: rgba(0,0,0,1);
                font-size: 28px;
                text-align: center;
                font-family: PingFangSC-bold;
                margin-top: 14px;
            }

            .loginDialog .contents .boxs .label {
                color: rgba(80, 85, 89, 1);
                font-size: 14px;
                text-align: left;
                font-family: PingFangSC-regular;
                margin-top: 38px;
                width: 100%;
                font-weight: 400;
                padding:0 0;
            }

            .loginDialog .contents .boxs .account {
                height: 4.62vh;
                border-radius: 3px;
                background-color: rgba(255,255,255,1);
                color: rgba(145,145,145,1);
                font-size: 14px;
                text-align: left;
                font-family: -regular;
                border: 1px solid;
                margin-top: 11px;
                margin-bottom: 0px;
                width: 100%;
                padding: 0 6px;
            }

            .loginDialog .contents .boxs .Password {
                height: 4.62vh;
                border-radius: 3px;
                background-color: rgba(255,255,255,1);
                color: rgba(145,145,145,1);
                font-size: 14px;
                text-align: left;
                font-family: -regular;
                border: 1px solid;
                margin-top: 11px;
                margin-bottom: 0px;
                width: 100%;
                padding: 0 6px;
            }

            .loginDialog .contents .boxs .btn {
                height: 5.55vh;
                border-radius: 8px;
                background-color: rgba(247, 71, 71, 1);
                color: rgba(255, 255, 255, 1);
                font-size: 24px;
                text-align: center;
                font-family: PingFangSC-bold;
                width: 100%;
                margin-top: 2.3vh;
            }

            .loginDialog .contents .boxs .btn_active {
                height: 5.55vh;
                border-radius: 8px;
                background-color: rgba(207,19,34,1);
                color: rgba(255, 255, 255, 1);
                font-size: 24px;
                text-align: center;
                font-family: PingFangSC-bold;
                width: 100%;
                margin-top: 2.3vh;
            }

            .loginDialog .contents .boxs .textbox {
                margin-top: 3.7vh;
                color: rgba(90, 90, 90, 1);
                font-size: 14px;
                text-align: center;
                font-family: PingFangSC-regular;
            }

                .loginDialog .contents .boxs .textbox .text1 {
                    color: rgba(90, 90, 90, 1);
                    font-size: 14px;
                }

                .loginDialog .contents .boxs .textbox .text2 {
                    color: #F74747;
                    cursor: pointer;
                }

            .loginDialog .contents .boxs .text1 {
                line-height: 22px;
                color: rgba(0,0,0,1);
                font-size: 28px;
                text-align: center;
                font-family: PingFangSC-bold;
                color: rgba(0, 0, 0, 1);
                font-size: 2.59vh;
                line-height: 2.05vh;
                text-align: center;
                font-family: PingFangSC-bold;
                margin-top: 1.30vh;
            }

            .loginDialog .contents .boxs .text2 {
                line-height: 18px;
                color: rgba(0, 0, 0, 1);
                font-size: 16px;
                text-align: center;
                font-family: PingFangSC-regular;
                margin-top: 5px;
            }

            .loginDialog .contents .boxs .imgbox2 {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top:14px;
            }

                .loginDialog .contents .boxs .imgbox2 .item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    margin:0 5px;
                }

                    .loginDialog .contents .boxs .imgbox2 .item img {
                        aspect-ratio: 1 / 1;
                        height: 138px;
                        height: 12.8vh;
                    }

                    .loginDialog .contents .boxs .imgbox2 .item span {
                        color: rgba(0,0,0,1);
                        font-size: 16px;
                        text-align: center;
                        font-family: PingFangSC-regular;
                        margin-top: 9px;
                        margin-top: 0.83vh;
                    }

            .loginDialog .contents .boxs .text3 {
                color: rgba(0,0,0,1);
                font-size: 16px;
                text-align: center;
                font-family: PingFangSC-regular;
                margin-top: 24px;
                margin-top: 2.22vh;
            }
            .loginDialog .contents .boxs .chat {
                height: 60px;
                line-height: 33px;
                border-radius: 8px;
                background-color: rgba(247,71,71,1);
                color: rgba(255,255,255,1);
                font-size: 24px;
                text-align: center;
                font-family: PingFangSC-bold;
                width: 100%;
                margin-top: 20px;
                margin-top: 1.85vh;
            }


.filing {
    color: #ffffff;
    position: absolute;
    bottom: 26px;
    left: 200px;
    font-size: 15px;
    font-family: PingFangSC-regular;
}
