html,
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Microsoft YaHei', '华文黑体STHeiTi', '黑体', Helvetica Neue, Arial, Helvetica;
    width: 100%;
    min-height: 100%;
    position: relative;
    color: #666666;
    line-height: 1;
    font-size: 16px;
}

html {
    font-size: calc( 100vw / 7.5);
    font-size: -webkit-calc( 100vw / 7.5);
    font-size: -moz-calcc( 100vw / 7.5);
}

body {
    position: absolute;
    background-color: white;
}

.ub {
    display: -webkit-box !important;
    display: box !important;
    position: relative;
}

.ub-f1 {
    position: relative;
    -webkit-box-flex: 1;
    box-flex: 1;
}

.article-title {
    font-weight: bold;
}
/* .list-item-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
} */
.list-item-bottom {
    margin-top: 10px;
    color: #586463;
    opacity: .4;
}

.circle {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #586463;
    opacity: 1;
}

.list-item-bottom .right {
    float: right;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0px;
    padding: 0px;
    vertical-align: middle;
}

img {
    width: 100%;
}

div:after,
ul:after,
li:after,
a:after,
p:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

input {
    font-family: 'Microsoft YaHei', '华文黑体STHeiTi', '黑体', Helvetica Neue, Arial, Helvetica;
    font-size: .24rem;
}

ul,
li {
    list-style: none outside none;
}

a {
    text-decoration: none;
    color: #333;
    display: block;
}

.text-overflow {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.btn-no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

    .btn-no-select:active {
        opacity: 0.7;
    }


.view {
    position: absolute;
    width: 100%;
    min-height: 100%;
    left: 0;
    top: 0;
    overflow-y: auto;
}

.t-table {
    display: table;
    width: 100%;
    height: 100%;
}

.t-table-cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}
/*-----------page动画-------------*/

.animated {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.slideInRightHide {
    visibility: hidden;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}


/*------------------------*/

.loadingbg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: white;
    z-index: 999999999;
    font-size: .3rem;
}

    .loadingbg p {
        text-align: center;
        margin-top: .4rem;
    }

.spinner {
    width: .6rem;
    height: .6rem;
    position: relative;
    margin: 0 auto;
    margin-top: 5rem;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #22B1CF;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0.0);
    }

    50% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.clearloadding {
    -webkit-animation: clearload 1s;
    animation: clearload 1s;
    -webkit-animation-fill-mode: forwards;
}

@keyframes clearload {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes clearload {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/**
 * Lines
 */

.controlloadding {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: 0;
    top: 0;
    z-index: 99999999999;
    text-align: center;
}

.line-scale {
    display: inline-block;
    margin: 0 auto;
    top: 6rem;
    background-color: rgba(49, 183, 220, 0.7);
    padding: .2rem .5rem;
    border-radius: 3px;
}

@-webkit-keyframes line-scale {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }

    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }

    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
}

@keyframes line-scale {
    0% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }

    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }

    100% {
        -webkit-transform: scaley(1);
        transform: scaley(1);
    }
}

.line-scale > div:nth-child(1) {
    -webkit-animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.line-scale > div:nth-child(2) {
    -webkit-animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.line-scale > div:nth-child(3) {
    -webkit-animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.line-scale > div:nth-child(4) {
    -webkit-animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.line-scale > div:nth-child(5) {
    -webkit-animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.line-scale > div {
    background-color: #fff;
    width: .04rem;
    height: .35rem;
    border-radius: .02rem;
    margin: .02rem;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    float: left;
    margin-left: .1rem;
}

@-webkit-keyframes run-arrow {
    0% {
        transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
    }
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        /*animation-timing-function: ease-in-out;*/
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        /*animation-timing-function: ease-out;*/
    }
}

.loader {
    display: table;
    text-align: center;
    height: 1rem;
    width: 100%;
}

    .loader .loader-cell {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

@-webkit-keyframes line-spin-fade-loader {
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes line-spin-fade-loader {
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.line-spin-fade-loader {
    position: relative;
    width: .5rem;
    height: .2rem;
    display: inline-block;
}

    .line-spin-fade-loader > div:nth-child(1) {
        top: .2rem;
        left: 0;
        -webkit-animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(2) {
        top: .1363636rem;
        left: .1363636rem;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(3) {
        top: 0;
        left: .2rem;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(4) {
        top: -.1363636rem;
        left: .1363636rem;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(5) {
        top: -.2rem;
        left: 0;
        -webkit-animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(6) {
        top: -.1363636rem;
        left: -.1363636rem;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(7) {
        top: 0;
        left: -.2rem;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
    }

    .line-spin-fade-loader > div:nth-child(8) {
        top: .1363636rem;
        left: -.1363636rem;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
        animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
    }

    .line-spin-fade-loader > div {
        background-color: #000;
        border-radius: 2px;
        margin: .01rem;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        position: absolute;
        width: .05rem;
        height: .15rem;
    }

body {
    width: 100%;
    min-width: 320px;
    max-width: 640px;
    margin: 0 auto;
    -webkit-text-size-adjust: none !important;
}

.show-image {
    position: absolute;
    top: 50%;
    left: 0;
    text-align: center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

    .show-image img {
        width: 80%;
    }

.full-screen-bg {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    background: black;
    z-index: 1000;
}

    .full-screen-bg .full-screen-img {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

        .full-screen-bg .full-screen-img .cropper-container {
            overflow: inherit;
        }

        .full-screen-bg .full-screen-img img {
            width: 100%;
        }

.hide {
    display: none;
}
