@charset "UTF-8";

html,
body {
    /*禁止选中文本*/
    overflow: hidden;
    background: white;
    /*背景图片*/
}


html {
    overflow-y: auto;
}

html[ismobile],
body[ismobile] {
    width: 100vw;
}

html[ismobile] img,
body[ismobile] img {
    pointer-events: none !important;
}

/* 
html[ismobile] .el-message-box__wrapper,
body[ismobile] .el-message-box__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px;
} */

html *,
html textarea,
body *,
body textarea {
    font-family: 'DIN-Medium', 'Microsoft YaHei';
}

/*去掉按下移动端按钮高亮显示颜色*/
* {
    tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
    font-family: 'Microsoft YaHei', 'PingFangSC-Regular', 'sans-serif', 'San Francisco', 'Microsoft Sans Serif', 'Arial';
    /*顶部加 @charset "UTF-8";*/
}

/* 滚动条---------------------------------------- */

html::-webkit-scrollbar,
html *::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: transparent;
}

html::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #ff363c;
}

html *::-webkit-scrollbar-thumb:hover {
    background-color: #764079aa;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #764079aa;
}


html::-webkit-scrollbar-thumb:active,
html *::-webkit-scrollbar-thumb:active {
    background-color: #764079;
}

[isMobile] html::-webkit-scrollbar,
[isMobile] body::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
}

/* 特殊滚动条，细线条---------------------------------------- */
[line-scroll]::-webkit-scrollbar {

    background: linear-gradient(transparent 9px, #b9b9b9);

}

/* 更多按钮---------------------------------------- */
.moreBtn {
    display: inline-block;
    height: max-content;
    width: max-content;
}

.moreBtn[type="1"]>div {
    display: flex;
    font-size: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.moreBtn[type="1"]>div span {
    font-weight: bold;
}

.moreBtn[type="1"]>div img {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    object-position: center;
    object-fit: contain;
    opacity: 0.618;
    transform: translateY(2px);
}

.moreBtn[type="1"]>div:hover {
    transform: scale(1.1);
}

.moreBtn[type="1"]>div:hover img {
    opacity: 1;
}

.moreBtn[type="2"]>div span {
    width: max-content;
    display: inline-block;
    box-sizing: border-box;
    border: 2px solid #764079;
    box-sizing: border-box;
    padding: 8px 10px;
    color: #764079;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: 0.2s;
}

.moreBtn[type="2"]>div span:hover {
    background-color: #764079;
    color: white;
}

[isMobile] .moreBtn {
    line-height: normal;
}

[isMobile] .moreBtn[type="1"]>div {
    display: flex;
    align-items: center;
}

[isMobile] .moreBtn[type="1"]>div span {
    font-family: AlimamaFangYuanTiVF-Thin;
    font-size: 24px;
}

[isMobile] .moreBtn[type="1"]>div img {
    margin-left: 5px;
    width: 24px;
    height: 24px;
}

[isMobile] .moreBtn[type="2"]>div span {
    font-family: AlimamaFangYuanTiVF-Thin;
    border-radius: 4px;
    border-width: 1px;
}

/* 适配博达的a标签样式---------------------------------------- */
a {
    color: currentColor;
}