* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "HYQiHeiX4-95W";
}

.dfclr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dflr {
    display: flex;
    justify-content: space-between;
}

.dfcc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dfcl {
    display: flex;
    align-items: center;
}

.oneLineText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.twoLineText {
    display: -webkit-box;
    /* 使用 Flex 布局，支持多行 */
    -webkit-box-orient: vertical;
    /* 设置盒子的方向为垂直 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 文本溢出显示省略号 */
    -webkit-line-clamp: 2;
    /* 限制显示两行 */
    word-break: break-word;
    /* 单词折行 */
}

.windowCover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.centerBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    max-height: 100vh;
    overflow-y: auto;
}

.imgBox img {
    display: block;
    width: 100%;
}

.imgCover img {
    display: block;
    width: 100%;
    height: 100%;
}

.imgBox video {
    display: block;
    width: 100%;
}







.lgBox {
    width: 56px;
    position: fixed;
    top: 203px;
    right: 0;
    z-index: 92;
    background: #fff;
    cursor: pointer;
}

.lgBox .lgItem {
    font-size: 25px;
    background: #fff;
    height: 52px;
    color: #0450ad;
    line-height: 52px;
    border-bottom: 1px dashed #0450ad;
    margin: 0 8px;
    padding-left: 16px;
    box-sizing: border-box;
    position: relative;
}

.lgBox .lgItem::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #0450ad;
    position: absolute;
    top: 50%;
    left: 6px;
    box-sizing: border-box;
    transform: translate3d(0, -50%, 0);
}

.lgBox .lgItem.acti::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0450ad;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translate3d(0, -50%, 0);
}

.lgBox .lgItem.en {
    font-size: 20px;
}

.changeBtn {
    height: 70px;
    background: #0450ad;
    font-size: 24px;
    color: #fff;
}

.topArrow {
    width: 24px;
    margin: 0 auto 5px;
}


.lgBox .hide {
    display: none;
}

.lgBox.acti .topArrow {
    transform: rotate(180deg);
}

.lgBox.acti .hide {
    display: block;
}