* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


:root {
    --ver: 1.0;
    --border: #D7D7D7;
    --primary: #E5750B;
    --bg: #f9f9f9;
    --bg02: #f2f2f2;
}

.pointer {
    cursor: pointer;
}

.btnDisable {
    cursor: not-allowed;
}

/* 清除浮动 */
.clearfix:after {
    display: block;
    content: "";
    clear: both;
}

/* 水平居中 */
.flexHCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 垂直居中 */
.flexVCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 两边排列 */
.flexHBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexVBetween {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.flexHAround {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flexVAround {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.flexHStart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flexVStart {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flexHEnd {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flexVEnd {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.flexVcHs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.flexVbHs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.flexVbHe {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.flexHsVs {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
}

.flexVcHe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.flexHbVs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flexVsHe {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.flexHsVe {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.flexHbVe {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* 隐藏 */
.hide {
    display: none !important;
}

/* 输入框 */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"] {
    border: none;
    background: none;
    font-size: 12px;
    outline: none;
}

input[type="radio"] {
    width: 19px;
    height: 19px;
    margin-bottom: 1px;
}

input[type="checkbox"] {
    width: 19px;
    height: 19px;
    margin-bottom: 2px;
    outline: none;
    border: 1px solid #cbcbcc;
    background: #ffffff;
}

input:-ms-input-placeholder {
    color: #999 !important;
}

input::-webkit-input-placeholder {
    color: #999 !important;
}

input::-moz-placeholder {
    color: #999 !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input::-ms-clear {
    display: none;
}

::-webkit-scrollbar {
    width: 0px;
}


body {
    font-size: 12px;
    color: #333333;
}

/*禁止复制*/
.no_copy {
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ellipsis {
    white-space: nowrap; /* 避免换行 */
    overflow: hidden; /* 超出部分隐藏 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}

.custom-size {
    width: 1000px;
    font-size: 12px;
}
