/*通用样式设置*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: .24rem;
    -webkit-overflow-scrolling: touch;
    color: #353535;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

ul,
ol {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    color: #323232;
}

img {
    border: 0;
    vertical-align: middle;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

button,
input {
    outline: none;
}

::-webkit-scrollbar {
    display: none;
}

.flx {
    display: flex;
}

.flx-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flx-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.flx-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flx-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.item-start {
    display: flex;
    justify-content: center;
    align-items: start;
}

.item-start-space {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flx-1 {
    flex: 1;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.fxe {
    position: fixed;
}

.color-red {
    color: red;
}

.color-orange {
    color: #FF6B33!important;
}

.color-gray {
    color: #7D7D7D;
}

.font-bold {
    font-weight: bold;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font18 {
    font-size: 18px;
}

.party-omit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multi-omit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.loading3 {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle span {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #333;
    border-radius: 100%;
    position: absolute;
    -webkit-animation: mycircle 1.2s infinite ease-in-out;
    animation: mycircle 1.2s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.circle2 {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.circle3 {
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
}

.circle>span:nth-child(1) {
    top: 0;
    left: 0;
}

.circle>span:nth-child(2) {
    top: 0;
    right: 0;
}

.circle>span:nth-child(3) {
    right: 0;
    bottom: 0;
}

.circle>span:nth-child(4) {
    left: 0;
    bottom: 0;
}

.circle2>span:nth-child(1) {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.circle3>span:nth-child(1) {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.circle1>span:nth-child(2) {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.circle2>span:nth-child(2) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.circle3>span:nth-child(2) {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.circle1>span:nth-child(3) {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.circle2>span:nth-child(3) {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.circle3>span:nth-child(3) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.circle1>span:nth-child(4) {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.circle2>span:nth-child(4) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.circle3>span:nth-child(4) {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes mycircle {
    0% {
        transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
    }
    80% {
        transform: scale(0.0);
    }
    100% {
        transform: scale(0.0);
    }
}

@keyframes mycircle {
    0% {
        transform: scale(0.0);
    }
    40% {
        transform: scale(1.0);
    }
    80% {
        transform: scale(0.0);
    }
    100% {
        transform: scale(0.0);
    }
}

.share {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    z-index: 101;
}
.share1 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, .5);*/
    display: none;
    z-index: 101;
}

#pop {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 100;
}

.flex-view {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pop-msg {
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: none;
}

.modal-body {
    position: absolute;
    background: #fff;
    width: 80%;
    left: 10%;
    height: calc(2.6rem + 1px);
    top: 50%;
    margin-top: -1.5rem;
    border-radius: 6px;
    text-align: center;
}

.modal-title {
    line-height: .8rem;
    font-size: .28rem;
}

.modal-content {
    height: 1rem;
    text-align: left;
    padding: 0 .4rem;
    color: #666;
    font-size: 14px;
}

.modal-foot {
    height: .8rem;
    line-height: .8rem;
    border-top: 1px solid #eee;
}

.modal .cancel {
    border-right: 1px solid #eee;
}

.back-page {
    width: .1rem;
    transform: rotate(180deg);
}

.header-nav {
    height: .5rem;
    padding: 0 .3rem;
    background: #eee;
}
.ql-align-center {
    text-align: center;
}

.ql-size-small {
    font-size: 0.75em;
}
.ql-size-large {
    font-size: 1.5em;
}
.ql-size-huge {
    font-size: 2.5em;
}
 .ql-direction-rtl {
    direction: rtl;
    text-align: inherit;
}
.ql-align-justify {
    text-align: justify;
}
.ql-align-right {
    text-align: right;
}
.ql-blank::before {
    color: rgba(0,0,0,0.6);
    content: attr(data-placeholder);
    font-style: italic;
    left: 15px;
    pointer-events: none;
    position: absolute;
    right: 15px;
}
