* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* touch-action: none; */
}

li {
    list-style: none;
}

textarea {
    outline: none;
    resize: none;
}

:root {
    --themecolor: #f40d0d;
}

a {
    text-decoration: none;
    color: #222;
}

header,
footer {
    display: flex;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9;
    height: 60px;
    background-color: #fff;
}

.m-main {
    width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-logo {
    display: block;
    width: 52px;
    height: 52px;
    margin-left: 10px;
}

.m-header-icon {
    width: 20px;
    height: 12px;
    margin: 0 20px;
    cursor: pointer;
    background: url("../image/icon-detail-btn.png") no-repeat center / 100% 100%;
}

.m-header-title {
    font-size: 20px;
}

header {
    top: 0;
    border-bottom: 1px solid #e5e5e5;
}

.m-full-screen-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-left: 1px solid #e5e5e5;
    cursor: pointer;
}

.m-full-screen-btn img {
    width: 30px;
    height: 30px;
}

footer {
    bottom: 0;
    justify-content: center;
    border-top: 1px solid #e5e5e5;
}

footer div {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #b0b0b0;
    cursor: pointer;
}

.m-page-prev {
    padding-left: 36px;
    background: url("../image/icon-arrow-left.svg") no-repeat left center / 30px 30px;
}

.m-page-next {
    padding-right: 36px;
    background: url("../image/icon-arrow-right.svg") no-repeat right center / 30px 30px;
}

.m-msg-btn {
    position: relative;
    width: 30px;
    margin-right: 50px;
    background: url("../image/icon-msg.svg") no-repeat center / 30px 30px;
}

.m-espide-btn {
    margin-left: 40px;
}

.m-msg-btn:after {
    content: attr(data-amount);
    position: absolute;
    top: 0;
    left: 15px;
    padding: 0 6px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 16px;
    text-align: center;
    background-color: var(--themecolor);
    font-size: 12px;
    color: #fff;
    box-sizing: border-box;
}

/* .m-page-prev:hover, */
.m-page-prev.active {
    color: #222;
    background-image: url("../image/icon-arrow-left-active.svg");
}

.m-page-next:hover,
.m-page-next.active {
    color: #222;
    background-image: url("../image/icon-arrow-right-active.svg");
}

.m-slider-menu {
    position: fixed;
    right: 50px;
    bottom: 150px;
    width: 50px;
    display: flex;
    flex-direction: column;
}

.m-slider-menu i {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    cursor: pointer;
}

.m-slider-menu i:nth-child(5) {
    transform: rotate(180deg);
}

.m-mask {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 60px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


@media screen and (max-width:980px) {
    .m-mask {
        display: none;
        /* display:block; */
        /* transform: translateX(100%); */
        transition: 0.4s;
    }
}

.m-mask-info {
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -247px;
    width: 494px;
    background-color: #fff;
    border-radius: 2px;
    padding: 0 40px;
    animation: mask-scale 0.4s;
}

@keyframes mask-scale {
    from {
        transform: scale(0.5);
    }

    to {
        transform: scale(1);
    }
}

.m-report-mask-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
    font-size: 20px;
}

.m-report-mask-title img {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.m-report-list {
    margin-top: 30px;
}

.m-report-list li {
    margin-top: 10px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #222222;
    border: 1px solid #eaeaea;
    cursor: pointer;
    font-size: 16px;
}

.m-report-list .active {
    border-color: var(--themecolor);
    border-width: 2px;
}

.m-report-text {
    width: 100%;
    height: 108px;
    margin-top: 10px;
    font-size: 16px;
    color: #a1a1a1;
    border: 1px solid #eaeaea;
    padding: 10px;
}

.m-report-btn {
    margin-top: 26px;
    margin-bottom: 36px;
    height: 40px;
    display: flex;
    justify-content: center;
}

.m-report-btn button {
    width: 100px;
    border: none;
    background: none;
    border: 1px solid #222;
    border-radius: 2px;
    margin: 0 10px;
    border-radius: 2px;
    cursor: pointer;
}

.m-report-btn .active {
    background-color: var(--themecolor);
    border-color: var(--themecolor);
    color: #fff;
}

.m-mask-info-pending {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    width: 300px;
}

.m-pend-mask-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid #eaeaea;
}

.m-pend-mask-title svg {
    cursor: pointer;
}

.m-pend-mask-title h3 {
    font-size: 20px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 80%;
}

.m-pend-mask-close {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.m-pend-info-wrap {
    /* padding: 6px 0; */
    height: calc(100% - 50px);
    overflow: hidden;
}

/* .m-pend-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

.m-pend-item {
    /* height: 35px; */
    /* line-height: 35px; */
    font-size: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #fafafa;
}

.m-pend-item a {
    display: block;
    overflow: hidden;
    color: #222;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.m-pend-item .active {
    color: var(--themecolor);
}

.m-pend-item:hover {
    background: #fafafa;
    border-color: var(--themecolor);
    border-width: 1px;
}

.m-pend-item:hover a {
    color: var(--themecolor);
}

.m-mask-msg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 622px;
    background-color: #fff;
    padding-left: 40px;
    animation: mask-transX 0.4s;
}

.mMsgMaskOut {
    animation: mask-transX-out 0.4s;
    animation-fill-mode: forwards;
}

@keyframes mask-transX {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes mask-transX-out {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.m-mask-msg-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    margin-top: 20px;
    border-bottom: 1px solid #ebebeb;
}

.m-mask-msg-title-left,
.m-mask-msg-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.m-mask-msg-close,
.m-mask-msg-close img {
    width: 8px;
    height: 14px;
    margin-right: 10px;
    vertical-align: middle;
}

.m-mask-msg-title-title {
    font-size: 18px;
}

.m-mask-msg-amount {
    margin-left: 10px;
    color: var(--themecolor);
    font-size: 14px;
}

.m-mask-msg-switch li {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
    color: #b0b0b0;
    cursor: pointer;
}

.m-mask-msg-switch .active {
    color: #222;
}

.m-leave-msg {
    margin-top: 20px;
}

.m-leave-msg-dom {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    height: 104px;
    padding: 0 20px;
}

.m-leave-msg-msg,
.m-leave-msg-btn {
    height: 68px;
    font-size: 13px;
    border: none;
    border-radius: 2px;
}

.m-leave-msg-msg {
    flex: 1;
    margin-right: 10px;
    display: flex;
    flex-direction: row-reverse;
}

.m-leave-msg-msg .w-e-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
}

.m-leave-msg-btn {
    width: 100px;
    line-height: 68px;
    text-align: center;
    color: #fff;
    background-color: var(--themecolor);
    cursor: pointer;
}

.m-leave-msg-msg .w-e-text-container {
    flex: 1;
    height: 68px !important;
    border: none !important;
}

div[data-title="全屏"] {
    display: none !important;
}

.m-leave-msg-msg .w-e-text-container img,
.m-msg-item-msg-wrap-parent img {
    vertical-align: bottom;
    margin: 0 5px;
}

.m-leave-msg-msg .w-e-text-container img {
    width: 30px;
}

.m-msg-item.sub {
    margin-left: 70px;
}

.m-msg-item .m-msg-list {
    padding-left: 80px;
}

.m-msg-item-msg {
    display: flex;
}

.m-msg-item-avatar {
    width: 60px;
    height: 60px;
    margin: 20px 12px 0;
    border-radius: 100%;
    object-fit: cover;
}

.m-msg-item-msg-wrap-parent {
    flex: 1;
}

.m-msg-item-msg-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #ebebeb;
}

.m-msg-item:nth-of-type(1) .m-msg-item-msg-wrap {
    border: none;
}

.m-msg-item-msg-operation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100px;
}

.m-msg-item-msg-operation i {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    margin: 0 10px;
    cursor: pointer;
}

.m-msg-item-msg-operation .m-msg-item-msg-favor {
    background-image: url("../image/icon-favor.png");
}

.m-msg-item-msg-operation .m-msg-item-msg-warn {
    background-image: url("../image/icon-warn.png");
}

.m-msg-item-msg-operation .m-msg-item-msg-favor.active {
    background-image: url("../image/icon-favor-active.png");
}

.m-msg-item-msg-operation .m-msg-item-msg-warn.active {
    background-image: url("../image/icon-warn-active.png");
}

.m-msg-item-msg-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.m-msg-item-msg-info-title {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 16px;
}

.m-msg-item-content {
    padding-top: 6px;
    font-size: 14px;
}

.m-msg-item-name {
    width: 100%;
    font-weight: bold;
}

.m-msg-item-msg-info-other {
    margin-top: 6px;
    font-size: 13px;
    color: #ababab;
}

.m-msg-item-reply {
    margin-left: 20px;
    cursor: pointer;
}

.m-msg-list-wrap {
    height: 620px;
    overflow: auto;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

:not(:root):fullscreen::backdrop {
    background-color: #fff;
}

/* body::-webkit-scrollbar-track-piece {
    background: #d3dce6;
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-thumb {
    background: #99a9bf;
    border-radius: 20px;
} */

@keyframes comment-in {
    from {
        transform: translateY(-50px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes loginMask {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.comment-in {
    animation: comment-in 0.4s;
}

.m-login {
    position: fixed;
    z-index: 299999;
    top: 30%;
    left: 50%;
    margin-left: -152px;
    background-color: #fff;
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.1);
    animation: loginMask 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.m-login-close {
    position: absolute;
    right: 13px;
    top: 15px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: url("/image/icon-cancel.png") no-repeat center / 100% 100%;
}

.login-wid {
    padding: 30px;
    width: 304px;
    border-radius: 2px;
    border: 1px solid rgb(235, 235, 235);
}

.login-wid h1 {
    font-size: 20px;
    text-align: center;
}

.login-input {
    padding-top: 10px;
}

.login-input input {
    margin: 10px 0;
    height: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(235, 235, 235);
    outline: none;
}

.login-input div input {
    height: auto;
    margin-top: 20px;
    width: auto;
    border: 1px slid rgb(235, 235, 235);
}

.login-input div span {
    font-size: 14px;
}

.login-btn {
    position: relative;
    padding-top: 20px;
}

.login-btn button {
    padding: 14px;
    cursor: pointer;
    background: rgb(244, 13, 13);
    width: 100%;
    color: white;
    border-radius: 50px;
    border: none;
}

.login-btn a {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    display: block;
    padding-top: 10px;
    color: black;
}

.login-text {
    font-size: 13px;
    text-align: center;
    padding-top: 30px;
}

.login-text p:first-child {
    padding-bottom: 10px;
}

.lazy-img-wrap {
    /* max-width: 1200px; */
    /* width: 100%; */
    z-index: -1;
    position: relative;
    display: block;
}

.lazy-img-wrap:after {
    z-index: -1;
    content: attr(data-tip);
    position: absolute;
    width: 200px;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lazy-img-wrap img {
    width: 100%;
}

.m-report-success {
    position: absolute;
    top: 30%;
    left: 50%;
    margin-left: -200px;
    width: 400px;
    height: 250px;
    background-color: #fff;
    border-radius: 2px;
}

.m-report-success-icon {
    display: block;
    height: 60px;
    margin-top: 35px;
    background: url("../image/icon-success.png") no-repeat center / 60px;
}

.m-report-success-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 80px;
    text-align: center;
}

.m-report-success-close {
    display: block;
    width: 130px;
    height: 40px;
    margin: 0 auto;
    border-radius: 2px;
    border: 1px solid #222;
    font-size: 14px;
    color: #222;
    background-color: #fff;
    cursor: pointer;
}

.fullScreen {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.m-backl {
    display: none;
}

@media screen and (max-width: 980px) {
    .m-pend-mask-title {
        padding: 0 2vw;
    }

    .m-pend-mask-title>div {
        display: flex;
    }

    .m-pend-mask-title>div img {
        margin-left: 1vw;
    }

    .m-report-success {
        width: 90vw;
        margin-left: -45vw;
        top: 30%;
        height: unset;
    }

    .m-msg-item.sub {
        margin-left: 0;
    }

    .sub>.m-msg-item-msg>.m-msg-item-avatar {
        width: 6vw;
        height: 6vw;
    }

    .sub>.m-msg-item-msg {
        margin-left: 32px;
    }

    .m-report-success-icon {
        height: 40px;
        margin-top: 10vw;
        background-size: 40px;
    }

    .m-report-success-title {
        font-size: 16px;
        line-height: 4;
    }

    .m-report-success-close {
        width: 30vw;
        height: 8vw;
        margin-bottom: 10vw;
    }

    .m-main {
        width: 94vw;
    }

    .m-slider-menu {
        right: 2vw;
        bottom: 148px;
    }

    .m-slider-menu i,
    .m-slider-menu img {
        width: 10vw;
        height: 10vw;
    }

    .m-mask-info-pending {
        width: 60vw;
    }

    .m-logo {
        display: none;
    }

    .m-backl {
        display: block;
        margin: 0 10px 0;
    }

    .m-header-icon {
        display: none;
    }

    .m-msg-btn {
        margin: 0 76px;
    }

    /*********************/
    /*********************/
    /******* msg *********/
    /*********************/
    /*********************/
    /*********************/

    .m-leave-msg {
        margin-top: 4vw;
    }

    .m-leave-msg-dom {
        padding: 2vw;
        height: auto;
    }

    .m-leave-msg-msg {
        margin-right: 0;
    }

    .m-mask-msg .w-e-menu .w-e-panel-container {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        margin: 0 !important;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 100vw 100vw rgba(0, 0, 0, 0.5) !important;
    }

    .m-msg-item-avatar {
        width: 8vw;
        height: 8vw;
        margin: 3vw 2vw 0;
    }

    .m-msg-item-msg-wrap {
        padding: 4vw 0;
    }

    .m-msg-item-name {
        font-size: 13px;
        width: 200px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .m-msg-item-msg-wrap {
        position: relative;
    }

    .m-msg-item-msg-operation {
        position: absolute;
        top: 3vw;
        right: 0;
    }

    .m-msg-item-content {
        width: 70vw;
        word-break: break-all;
    }

    .m-leave-msg-msg {
        max-width: 73vw;
    }

    .m-msg-item .m-leave-msg-msg {
        max-width: 55vw;
    }

    .m-leave-msg-btn {
        width: 20vw;
    }

    .m-msg-list-wrap {
        height: 65vh;
        margin-bottom: 4vw;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .m-mask {
        z-index: 99999;
    }

    .m-header-title {
        width: 65vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 16px;
    }

    .m-mask-info {
        width: 94vw;
        margin-left: -47vw;
        padding: 4vw;
        top: 4vw;
    }

    .m-report-mask-title {
        font-size: 14px;
    }

    .m-report-mask-title {
        margin-top: 4vw;
    }

    .m-report-list {
        margin-top: 4vw;
    }

    .m-report-list li {
        height: 10vw;
        line-height: 10vw;
        font-size: 14px;
    }

    .m-report-btn {
        margin-top: 4vw;
        margin-bottom: 4vw;
    }

    .m-mask-msg {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 90vw;
        box-sizing: border-box;
        padding-left: 3vw;
        transition: 0.4s;
    }
}

@media screen and (min-width: 981px) {
    .w-e-panel-container {
        margin-left: -150px !important;
        border-top: 1px solid #ddd;
    }

    .m-img-scale-btn {
        width: 30px;
        height: 30px;
        margin-left: 20px;
        background-size: 24px 24px;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .m-img-scale-big-btn {
        background-image: url("/image/icon-scale-big.svg");
    }
    
    .m-img-scale-small-btn {
        background-image: url("/image/icon-scale-small.svg");
    }
}

.m-auto-play {
    position: relative;
}

.m-auto-play-range {
    display: none;
    position: absolute;
    right: 55px;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    width: 50px;
    height: 197px;
    background-color: #fff;
    border: 1px solid #dbdbdb;
}

.m-auto-play-range-bg {
    position: relative;
    margin-top: 13px;
    width: 6px;
    height: 116px;
    background-color: #dbdbdb;
    border-radius: 6px;
}

.m-auto-play-range-active {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: #222;
    border-radius: 6px;
}

.m-auto-play-range-btn {
    position: absolute;
    left: 50%;
    bottom: 30%;
    margin-left: -6px;
    margin-bottom: -6px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #222;
}

.m-auto-play-range-val {
    font-size: 13px;
    line-height: 30px;
    font-style: normal;
}

.m-auto-play-btn {
    width: 24px;
    height: 24px;
    background: url("../image/icon-auto-play.png") no-repeat center / 24px 24px;
}

.m-mask-msg-close {
    width: 8px;
    height: 14px;
    background-image: url("/image/icon-narrow-back.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 14px;
}

