html {
    font-family: sans-serif;
}
html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
legend,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    border: 0;
    padding: 0;
    font-style: normal;
}

html,
body {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    background-color: #fff;
}

nav,
article,
aside,
details,
main,
header,
footer,
section,
fieldset,
figcaption,
figure {
    display: block;
}

img {
    object-fit: cover;
}

img,
a,
button,
em,
del,
strong,
var,
label,
cite,
small,
time,
mark,
code,
textarea {
    display: inline-block;
}

header,
section,
footer {
    position: relative;
}

ol,
ul {
    list-style: none;
}

input,
button,
textarea {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1em;
    /*-webkit-appearance:none;*/
    background-color: rgba(0, 0, 0, 0);
    outline: none;
}

span {
    display: inline-block;
}

a:active,
a:hover {
    outline: 0;
}

a,
a:visited {
    text-decoration: none;
}

label,
.wordWrap {
    word-wrap: break-word;
    word-break: break-all;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

input,
button,
textarea {
    outline: none;
    border: none;
}

* {
    /* color: #253B3E; */
    color: #222;
}

/* 省略 */
.aui-ellipsis-1 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.aui-ellipsis-2 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.aui-ellipsis-3 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 布局 */
.flex {
    display: flex;
    align-items: center;
}

.flex-w {
    display: flex;
    flex-wrap: wrap;
}

.flex-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-bt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-a {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* 字体 */
.font-b {
    font-size: 16px;
    /* color: #222222; */
    color: #253B3E;
}

.font-n {
    font-size: 14px;
    /* color: #253B3E; */
    color: #253B3E;
}

.font-s {
    font-size: 12px;
    color: #757575;
}

.font-ss {
    font-size: 10px;
    color: #aaaaaa;
}


/* 边距 */
/* margin */
.new-margin-10 {
    margin: 10px;
}

.new-margin-lr-10 {
    margin: 0 10px;
}

.new-margin-tb-10 {
    margin: 10px 0;
}

.new-margin-l-10 {
    margin-left: 10px;
}

.new-margin-r-10 {
    margin-right: 10px;
}

.new-margin-t-10 {
    margin-top: 10px;
}

.new-margin-b-10 {
    margin-bottom: 10px;
}

.new-margin-r {
    margin-right: 5px;
}

.new-margin-t {
    margin-top: 7px;
}

.new-margin-b {
    margin-bottom: 7px;
}

/* padding */
.new-padding-10 {
    padding: 10px;
}

.new-padding-l-10 {
    padding-left: 10px;
}

.new-padding-r-10 {
    padding-right: 10px;
}

.new-padding-t-10 {
    padding-top: 10px;
}

.new-padding-b-10 {
    padding-bottom: 10px;
}

.new-padding-lr-10 {
    padding: 0 10px;
}

.new-padding-tb-10 {
    padding: 10px 0;
}

.new-padding-t {
    padding-top: 7px;
}

.new-padding-b {
    padding-bottom: 7px;
}

/* 基础 */
.new-tx {
    width: 35px;
    height: 35px;
    border-radius: 50%;

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
}

.new-tx img {
    max-height: 100%;
}

/* 导航 */
.new-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.new-nav .n-list {
    font-size: 14px;
    border-bottom: 2px solid #ffffff;
    width: 50vw;
    color: #253B3E;
    text-align: center;
    line-height: 40px;
}

.new-nav .n-list.active {
    color: rgb(168, 123, 56);
    border-bottom: 2px solid rgb(168, 123, 56);
}

.new-btn {
    width: calc(100% - 20px);
    line-height: 50px;
    border-radius: 25px;
    background: linear-gradient(to right, #d9a14e, #b57e2c);
    color: #000;
    margin: 10px;
}

.new-submit {
    width: calc(100% - 20px);
    line-height: 50px;
    border-radius: 25px;
    background: linear-gradient(to right, #d9a14e, #b57e2c);
    color: #000;
    text-align: center;
    margin: 50px 10px 20px;
    border-radius: 5px;
}

/* 加载 */
.loading-bg {
    position: fixed;
    width: 100vw;
    max-width: 750px;
    min-width: 320px;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url('../gif/loading.gif');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    z-index: 8888;
}

.null 
{
    width: 250px;
    height: 250px;
    background: url('../images/null.png') no-repeat;
    background-size: 250px 250px;
    background-position: center center;
    margin-top:100px;
}

/*.null::after {
    content: "暂时无数据";
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-top: 75vw;
}*/

#no_more {
    width: 100%;
    line-height: 35px;
    text-align: center;
    color: #787878;
    font-size: 14px;
}

input {
    color: #fff;
}

.w-bg {
    background: rgb(42, 41, 49);
}

span {
    color: rgb(168, 123, 56);
}

.new-hide {
    display: none !important;
}

.new-invisible {
    visibility: hidden !important;
}

[v-cloak] {
    display: none !important;
}

.tx {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    margin-right: 10px;
}

.gaosi {
    filter: blur(10px);
}

.tx img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.new-theme-color {
    color: rgb(168, 123, 56) !important;
}

.new-theme-bg {
    background-color: rgb(168, 123, 56) !important;
}

/* 没有更多 */
.loadingno {
    text-align: center;
    display: block;
    /* width: 100vw; */
    margin: 0 auto;
    font-size: 14px;
    line-height: 50px;
    color: #C3C3C3;
    clear: both;
}

/* 加载框 */
#loading {
    position: fixed;
    top: 0;
    /* left: 0; */
    width: 100vw;
    max-width: 750px;
    min-width: 320px;
    height: 100vh;
    z-index: 999999999;
    background-image: url('../images/loading.gif');
    background-color: rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: center;
}

/* msg弹框 */
#msg {
    position: fixed;
    top: 0;
    /* left: 0; */
    width: 100vw;
    height: 100vh;
    max-width: 750px;
    min-width: 320px;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#msg .msg-wrap {
    width: 70vw;
    background: rgba(236, 236, 236, 0.74);
    color: #222A2D;
    font-size: 14px;
    border-radius: 10px;
    padding: 20px;
}

.msg-icon {
    background-image: url('../images/icon/warn.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-bottom: 10px;
}

.js-close-icon {
    background-image: url('../images/icon/close3.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 15px;
    height: 15px;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 10px;
}

#msg .msg-text {
    /* padding: 5px 15px;
    border-radius: 3px;
    color: #fff;
    font-size: 14px; */
}

/* alert弹框 */
#alert {
    position: fixed;
    top: 0;
    /* left: 0; */
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    max-width: 750px;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

#alert .alert-content {
    border: 1px solid #eee;
    position: relative;
    padding: 20px 15px;
    border-radius: 10px;
    width: 80%;
    background: #fff;
    font-size: 14px;
    margin-top: -30vh;
    color: #222222;
    box-shadow: 0 1px 5px #555;
}

#alert .alert-content .alert-txt {
    padding: 10px 0;
}

#alert .alert-btn {
    background: none;
    /* border-top: 1px solid #eee; */
    /* color: #A87B38; */
    width: 80%;
    border: 1px solid;
    color: #5A5A5A;
    border-radius: 7px;
    padding: 10px 0;
    text-align: center;
    margin: 10px 0;
}

/* confirm弹框 */
#confirm {
    position: fixed;
    top: 0;
    /* left: 0; */
    width: 100vw;
    height: 100vh;
    max-width: 750px;
    min-width: 320px;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

#confirm .confirm-content {
    border: 1px solid #eee;
    position: relative;
    padding: 20px 15px;
    border-radius: 10px;
    width: 80%;
    background: #fff;
    font-size: 14px;
    margin-top: -30vh;
    box-shadow: 0 1px 5px #555;
}

#confirm .confirm-content .confirm-title {
    font-size: 16px;
    font-weight: bold;
}

#confirm .confirm-content .confirm-txt {
    padding: 15px 0;
    font-size: 14px;
    color: #222;
}

#confirm .confirm-btn {
    background: none;
    /* border-top: 1px solid #eee; */
    width: 100%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-align: center;
}

#confirm .confirm-btn button {
    width: 70%;
    padding: 10px 0;
    background: #fff;
    border: 1px solid;
    color: #757575;
    border-radius: 7px;
    margin-top: 10px;
    /* background: rgb(168, 123, 56);
    color: #fff;
    border: 1px solid rgb(168, 123, 56); */
}

#confirm .confirm-btn button:nth-child(1) {
    color: #fff;
    background: rgb(168, 123, 56);
    border: 1px solid rgb(168, 123, 56);
}

/* 选择框 */
.submit-wrap {
    position: fixed;
    top: 0;
    /* left: 0; */
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    max-width: 750px;
    min-width: 320px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.submit-wrap .submit-content {
    background: #fff;
    border-radius: 5px;
    box-shadow: 1px 0 10px #555555;
    width: 40vw;
    padding: 20px;
    color: #222;
}

.submit-wrap .submit-content .close-wrap {
    margin-bottom: 20px;
}

.submit-wrap .submit-content .title {
    font-size: 16px;
    font-weight: bold;
}

.submit-wrap .close-wrap {
    display: flex;
    justify-content: space-between;
}

.submit-wrap .submit-content .content {
    font-size: 14px;
    margin-bottom: 20px;
}

.submit-wrap .close {
    background-image: url('../images/icon/close2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 35px;
    height: 35px;
    margin-top: 20px;
    cursor: pointer;
}

.submit-wrap .submit-footer .btn {
    width: 40%;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    background: #dddddd;
    color: #fff;
    font-size: 14px;
}

.submit-wrap .submit-footer .btn:hover {
    background: #A87B38;
}

/* action选择 */
#action {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    max-width: 750px;
    min-width: 320px;
    width:100%;
    height: 100vh;
    z-index: 500;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 14px;
    color: #A87B38;
}

#action .action {
    width: calc(100% - 20px);
}

#action .a-ul {
    background: #fff;
    border-radius: 5px;
}

#action .a-ul .a-list {
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #000;
}

#action .a-ul .a-list:last-child {
    border: none;
}

#action .cancel {
    border-radius: 5px;
    background: #fff;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    padding: 10px 0;
    font-size: 14px;
    color: #A87B38;
}

.body {
    width: 100%;
    max-width: 750px;
    min-width: 320px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* 模态框 */
#modal-wrap {
    position: fixed;
    top: 0;
    /* left: 0; */
    width: 100vw;
    max-width: 750px;
    min-width: 320px;
    z-index: 10;
}

.new-alert {
    position: fixed !important;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    font-size: 14px;
}

.new-alert .alert-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 70vw;
}

.new-alert .alert-wrap button {
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 0;
    font-size: 13px;
}

.new-alert .alert-wrap .a-sub-btn {
    background: rgb(168, 123, 56);
    color: #fff;
    border: 1px solid rgb(168, 123, 56);
}

.new-alert .alert-wrap .a-cancel-btn {
    background: #fff;
    color: #757575;
    border: 1px solid #757575;
}

.new-alert .new-close {
    background-image: url('../images/icon/close2.png');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35px;
    height: 35px;
    margin-top: 20px;
}