body {
    font-family: "SourceHanSansCN-Regular";
    color: #000000;
    font-size: 14px;
    --lordColor: #e12519;
}

.text1 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text2 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text3 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text4 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text5 {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
}


/* 分页栏 */

.myOrder_listSize {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myOrder_listSize li a {
    display: block;
    border: 1px solid #ddd;
    padding: 5px 12px;
    /* height: 18px; */
    /* line-height: 18px; */
    color: #999;
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    -moz-user-select: none;
    /* Firefox私有属性 */
    -webkit-user-select: none;
    /* WebKit内核私有属性 */
    -ms-user-select: none;
    /* IE私有属性(IE10及以后) */
    -khtml-user-select: none;
    /* KHTML内核私有属性 */
    -o-user-select: none;
    /* Opera私有属性 */
    user-select: none;
    /* CSS3属性 */
}

.myOrder_listSize li a:hover {
    background: #eee;
}

.myOrder_listSize li~li {
    margin-left: 10px;
}

.disabled a {
    cursor: not-allowed !important;
    background: #eee;
}

.active a {
    background: var(--lordColor);
    border-color: var(--lordColor);
    color: #fff !important;
}

.active a:hover {
    cursor: default;
    background: var(--lordColor) !important;
    color: #fff !important;
}


/* 选择框 */

.selection_box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.selection_boxBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.selection_boxCen {
    position: relative;
    z-index: 9;
    width: 420px;
    padding: 10px;
    border-radius: 5px;
    border: 4px solid rgba(0, 0, 0, .2);
    background: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.selection_boxDel {
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.selection_boxDel .iconfont {
    color: #9c9c9c;
    font-size: 16px;
}

.selection_boxIcon {
    width: 100%;
    text-align: center;
    margin: 5px 0 10px;
}

.selection_boxIcon .iconfont {
    color: #ff8822;
    font-size: 55px;
}

.selection_boxInfo {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0 10px;
}

.selection_boxTitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.selection_boxText {
    color: #666;
    font-size: 12px;
    line-height: 18px;
}

.selection_boxBtns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.selection_boxBtn {
    width: 100px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--lordColor);
    color: var(--lordColor);
    cursor: pointer;
}

.selection_boxBtnBg {
    background: var(--lordColor);
    color: #fff;
}

.selection_boxBtn~.selection_boxBtn {
    margin-left: 10px;
}