@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: #9c266e;
}

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: #9c266e;
}

/* body>div>.container {
    max-width: 1920px!important;
    margin: auto;
} */

[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: 20px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
}

.moreBtn[type="1"]>div a {
    display: flex;
    align-items: center;
    color: #9c266e;
}

.moreBtn[type="1"]>div span {
    font-weight: normal;
}

.moreBtn[type="1"]>div img {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    object-position: center;
    object-fit: contain;
    opacity: 0.618;
    transform: translateY(2px);
}

.moreBtn[type="1"]>div i {
    font-style: normal;
    font-weight: normal;
    font-family: "Microsoft YaHei Light";
    color: white;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #9c266e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
    width: 24px;
    height: 24px;
}

.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 #9c266e;
    box-sizing: border-box;
    padding: 8px 10px;
    color: #9c266e;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: 0.2s;
}

.moreBtn[type="2"]>div span:hover {
    background-color: #9c266e;
    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;
}


/* 统一的标题------------------------------------- */

.common-title {
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.common-title .left {
    /*单行省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.common-title .left .t1 {
    color: #9c266e;
    display: flex;
    flex-direction: column;
    width: max-content;

}

.common-title .left .t1 b {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
}

.common-title .left .t1 b:after {
    content: "+";
    opacity: 0.618;
    font-size: 30px;
    transform: translateY(-60%);
    font-weight: normal;
    font-family: "Microsoft YaHei Light";
    display: inline-block;

}

.common-title .left .t1 span {
    font-weight: normal;
    font-family: "Microsoft YaHei Light";
    font-size: 28px;
    color: #ccc;
    text-transform: uppercase;


}

.common-title .left .t2 {
    margin-top: 20px;
    font-size: 20px;
    font-family: "Microsoft YaHei Light";
    font-weight: normal;
    color: #666;
    /*单行省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 移动端标题------------------------------------- */
[isMobile] .common-title {
    margin-top: 40px;
    margin-bottom: 30px;
}


[isMobile] .common-title .left .t1 b {
    font-size: 40px;
    font-family: AlimamaFangYuanTiVF-Thin;
    margin-bottom: 10px;

}

[isMobile] .common-title .left .t1 b:after {
    font-size: 30px;
    font-family: AlimamaFangYuanTiVF-Thin;

}


[isMobile] .common-title .left .t1 span {

    font-size: 28px;
    font-family: AlimamaFangYuanTiVF-Thin;
    font-weight: 300;

}

[isMobile] .common-title .left .t2 {
    display: none;
}

[isMobile] .moreBtn>div i {
    width: 24px;
    height: 24px;

}

/* 移动端内容------------------------------------- */
[isMobile] body>div>.container {
    width: calc(100vw - 40px);
    max-width: revert;
}