.widget-tips {
    position: fixed;
    display: inline-block;
    left: 0;
    bottom: 50%;
    display: none;
    width: 100%;
    margin: auto;
    z-index: 99;
    text-align: center;
}

.widget-tips .tips-msg {
    display: inline-block;
    max-width: 80%;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: left;
}

.is-checkbox {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
}

.is-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid #979797;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.is-checkbox::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 8px;
    height: 8px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.is-checkbox.is-checked::after {
    background-color: #85888a;
}

.is-checkbox input[type="checkbox"] {
    display: none;
}

.widget-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    height: 100%;
    width: 100%;
    margin: auto;
    z-index: 5;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.widget-dialog .dialog-wrapper {
    position: relative;
    width: 420px;
    max-width: 900px;
    min-width: 300px;
    max-height: 80%;
    margin: 80px auto 0;
    text-align: left;
    background: #fff;
    padding: 20px;
}

.widget-dialog .dialog-wrapper .dialog-title {
    position: relative;
    padding: 0;
    margin: 0 0 20px;
    color: #85888a;
    font-size: 24px;
    line-height: 33px;
    font-weight: 400;
}

.widget-dialog .dialog-wrapper .dialog-body {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.widget-dialog .dialog-wrapper .dialog-close {
    position: absolute;
    right: -52px;
    top: 0;
    font-size: 32px;
    color: #ccc;
}

.widget-dialog .dialog-wrapper .dialog-close:hover {
    color: #fff;
}

.confirm-body {
    max-height: 60%;
    overflow-y: scroll;
}

.confirm-body a {
    text-decoration: underline;
}

.confirm-foot {
    margin-top: 60px;
    text-align: right;
    font-size: 0;
}

.confirm-foot .confirm-btn {
    display: inline-block;
    width: 62px;
    height: 28px;
    padding: 3px 0;
    border: 1px solid transparent;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
    color: #85888a;
}

.confirm-foot .default-confirm {
    border-color: #c99a05;
    margin-left: 3px;
    color: #c99a05;
}

.widget-comment-photo-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: none;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: block;
    -moz-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-origin: content-box;
    background-origin: content-box;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    width: 80px;
    height: 80px;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div {
    -webkit-transform-origin: 40px 40px;
    -moz-transform-origin: 40px 40px;
    -ms-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    -moz-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    border-radius: 20%;
    background: #fff;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    -moz-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    -moz-animation-delay: -1s;
    animation-delay: -1s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -0.9s;
    -moz-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.8s;
    -moz-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    -moz-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.7s;
    -moz-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.6s;
    -moz-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.5s;
    -moz-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    -moz-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.4s;
    -moz-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    -moz-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.3s;
    -moz-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.2s;
    -moz-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    -moz-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.1s;
    -moz-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

.widget-comment-photo-viewer .comment-photo-viewer-wrapper .photo-viewer-loading div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    -moz-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
}

.widget-comment-photo-viewer .icon-close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 10;
    color: #999;
}

.widget-comment-photo-viewer .icon-close:before {
    font-size: 48px;
}

.confirm-body {
    overflow-y: auto;
    color: #85888a;
}

.comment-wrapper {
    padding: 20px 0 0;
}

.comment-wrapper .comment-total {
    margin: 0 0 40px;
    color: #85888a;
}

.comment-wrapper .comment-form {
    position: relative;
}

.comment-wrapper .comment-form .site-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.comment-wrapper .comment-form .site-icon img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.comment-wrapper .comment-form .site-icon .vip-right {
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.comment-wrapper .comment-form .site-icon .vip-left {
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: 0;
    right: 5px;
    z-index: 1;
}

.comment-wrapper .comment-form textarea {
    width: 100%;
    outline: 0;
    resize: vertical;
    color: #85888a;
}

.comment-wrapper .comment-form .form-action {
    position: relative;
    height: 28px;
    line-height: 28px;
}

.comment-wrapper .comment-form .form-action .comment-btn {
    position: absolute;
    right: 0;
    height: 28px;
    outline: 0;
    background-color: transparent;
    cursor: pointer;
    color: #c99a05;
}

.comment-wrapper .comments-list li {
    position: relative;
    margin: 20px 0 0;
}

.comment-wrapper .comments-list li .site-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.comment-wrapper .comments-list li .site-icon img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.comment-wrapper .comments-list li .comment-info img {
    vertical-align: bottom;
}

.comment-wrapper .comments-list li .comment-photo {
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.comment-wrapper .comments-list li .comment-foot {
    position: relative;
    font-size: 12px;
}

.comment-wrapper .comments-list li .comment-foot .site-link {
    text-decoration: underline;
}

.comment-wrapper .comments-list li .comment-foot .comment-op:before {
    content: " · ";
}

.comment-wrapper .comments-list li .comment-foot .comment-delete {
    visibility: hidden;
    color: #e60a05;
}

.comment-wrapper .comments-list li .comment-foot .comment-black {
    visibility: hidden;
}

.comment-wrapper .comments-list li .comment-foot .comment-approve {
    position: absolute;
    right: 0;
    top: 0;
}

.comment-wrapper .comments-list li .comment-foot .comment-approve:before {
    content: none;
}

.comment-wrapper .comments-list li .comment-foot .comment-approve.liked {
    color: #e60a05;
}

.comment-wrapper .comments-list li .comment-foot .comment-approve .icon-approve:before {
    font-size: 20px;
    vertical-align: middle;
}

.comment-wrapper .comments-list li .comment-content:hover .comment-foot .del-black {
    visibility: visible;
}

.comment-wrapper .vice-comments-list {
    border-left: 4px solid #85888a;
    padding-left: 8px;
}

.comment-wrapper .vice-comments-list .vice-comment {
    padding-left: 0;
}

.comment-wrapper .vice-comments-list .vice-comment .comment-info img {
    vertical-align: bottom;
}

.comment-wrapper .vice-comments-list .vice-comment .comment-photo {
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.comment-wrapper .more-comments {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #b0b5b8;
}

.all-comment {
    margin-bottom: 15px;
}

.all-comment .comment-form {
    padding-left: 63px;
    margin-bottom: 40px;
}

.all-comment .comment-form .site-icon {
    width: 42px;
    height: 42px;
}

.all-comment .comment-form textarea {
    height: 40px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    line-height: 22px;
}

.all-comment .comment-form .form-action {
    margin-top: 24px;
    color: #222;
    font-size: 14px;
}

.all-comment .comment-form .form-action .comment-btn {
    top: 0;
    width: 62px;
    border: 1px solid #c99a05;
    font-size: 14px;
}

.all-comment .comment-form .form-action label:last-child {
    margin-left: 30px;
}

.all-comment .comments-list li {
    padding: 7px 0 4px 63px;
    color: #85888a;
}

.all-comment .comments-list li .site-icon {
    width: 42px;
    height: 42px;
}

.all-comment .comments-list li .site-link,
.all-comment .comments-list li .site-name {
    color: #222;
}

.all-comment .comments-list li .comment-info img {
    vertical-align: bottom;
}

.all-comment .comments-list li .comment-photo {
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.all-comment .comments-list li .comment-foot {
    margin-top: 12px;
}

.all-comment .comments-list li .comment-foot a {
    color: #85888a;
}

.all-comment .comments-list li .comment-foot .comment-op:before {
    color: #85888a;
}

.all-comment .vice-comments-list {
    border-left: 4px solid #e0e0e0;
}

.all-comment .vice-comments-list .vice-comment .comment-info img {
    vertical-align: bottom;
}

.all-comment .vice-comments-list .vice-comment .comment-photo {
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.inline-comment .comment-form {
    padding-left: 36px;
}

.inline-comment .comment-form .site-icon {
    top: 3px;
    width: 26px;
    height: 26px;
}

.inline-comment .comment-form textarea {
    height: 64px;
    padding: 7px 40px 9px 8px;
    font-size: 13px;
    border: 0;
    color: #fff;
    background-color: #1c1d1e;
}

.inline-comment .comment-form .form-action {
    margin-top: 14px;
    text-align: left;
}

.inline-comment .comment-form .form-action .comment-btn {
    right: 0;
    width: 42px;
    top: 0;
    border: 0;
    font-size: 13px;
}

.inline-comment .comment-form .form-action .is-checkbox {
    padding-left: 20px;
    font-size: 13px;
}

.inline-comment .comments-list li {
    padding: 3px 0 4px 36px;
    font-size: 13px;
    color: #b0b5b8;
}

.inline-comment .comments-list li .site-icon {
    width: 26px;
    height: 26px;
}

.inline-comment .comments-list li .site-link,
.inline-comment .comments-list li .site-name {
    color: #fff;
}

.inline-comment .comments-list li .comment-info img {
    vertical-align: bottom;
}

.inline-comment .comments-list li .comment-photo {
    margin: 8px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.inline-comment .comments-list li .comment-foot {
    margin-top: 4px;
}

.inline-comment .comments-list li .comment-foot a {
    color: #b0b5b8;
}

.inline-comment .comments-list li .comment-foot .comment-op:before {
    color: #b0b5b8;
}

.inline-comment .more-comments {
    font-size: 13px;
}

#addToSite-dialog .dialog-wrapper {
    padding: 20px 0;
}

#addToSite-dialog .dialog-wrapper .dialog-title {
    padding: 0 20px;
    margin-bottom: 10px;
}

#addToSite-dialog .dialog-wrapper .dialog-title .new-site {
    position: absolute;
    right: 20px;
    bottom: 4px;
    font-size: 14px;
    color: #85888a;
    border-bottom: 1px solid #85888a;
    line-height: 17px;
}

#addToSite-dialog .dialog-body p {
    padding-left: 20px;
}

#addToSite-dialog .site-list {
    max-height: 260px;
    overflow-y: auto;
}

#addToSite-dialog .site-list li {
    position: relative;
    padding: 10px 100px 10px 20px;
    font-size: 0;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#addToSite-dialog .site-list li:hover {
    background-color: #e0e0e0;
}

#addToSite-dialog .site-list li img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

#addToSite-dialog .site-list li span {
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle;
}

#addToSite-dialog .site-list li.site-liked::after {
    position: absolute;
    right: 20px;
    top: 16px;
    color: #191919;
    font-size: 14px;
    line-height: 20px;
}

#addToSite-dialog .site-list.collections-list .site-liked::after {
    content: "已收?";
}

#addToSite-dialog .site-list.groups-list .site-liked::after {
    content: "已转?";
}

#report-dialog .dialog-wrapper {
    text-align: center;
    padding: 20px 0;
}

#report-dialog .dialog-wrapper .dialog-title {
    padding: 0 20px;
    margin-bottom: 10px;
}

#report-dialog .dialog-wrapper .dialog-title .new-site {
    position: absolute;
    right: 20px;
    bottom: 4px;
    font-size: 14px;
    color: #85888a;
    border-bottom: 1px solid #85888a;
    line-height: 17px;
}

#report-dialog .report-reason-list li {
    height: 52px;
    border-bottom: 1px solid #85888a;
    line-height: 52px;
    margin: 0 100px;
}

#report-dialog .report-reason-list li:hover {
    cursor: pointer;
    color: #c99a05;
}

#report-dialog .report-reason-list li:nth-of-type(5) {
    border-bottom: 0;
}

#report-dialog .report-reason-list .active {
    color: #c99a05;
}

@-webkit-keyframes spinning {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinning {
    from {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinning {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[class^="icon-loading"],
[class*=" icon-loading"] {
    display: block;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 20px auto;
    vertical-align: middle;
}

[class^="icon-loading"]:before,
[class*=" icon-loading"]:before {
    display: inline-block;
    content: "";
    width: 32px;
    padding-top: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-animation: spinning 1s linear infinite;
    -moz-animation: spinning 1s linear infinite;
    animation: spinning 1s linear infinite;
}

.icon-loading--yellow:before {
    background-image: url(data:image/png;base64,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);
}

.icon-loading--white:before {
    display: inline-block;
    content: "";
    width: 32px;
    padding-top: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-image: url(data:image/png;base64,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);
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    -webkit-animation: spinning 1s linear infinite;
    -moz-animation: spinning 1s linear infinite;
    animation: spinning 1s linear infinite;
}

#wxpay-dialog p {
    margin: 0;
}

#wxpay-dialog [class^="icon-"],
#wxpay-dialog [class*=" icon-"] {
    display: inline-block;
}

#wxpay-dialog .font-green {
    color: #48d851;
}

#wxpay-dialog .btn {
    float: none;
    display: inline-block;
}

#wxpay-dialog .btn:last-child {
    margin-right: 0;
}

#wxpay-dialog .icon-quote {
    display: inline-block;
    color: #d2d2d2;
}

#wxpay-dialog .icon-quote:before {
    font-size: 20px;
}

#wxpay-dialog .icon-quote.right {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

#wxpay-dialog .user-name {
    color: #85888a;
}

#wxpay-dialog .reward-title {
    font-weight: 500;
}

#wxpay-dialog .font-yellow {
    color: #c99a05;
}

#wxpay-dialog .dialog-wrapper {
    max-height: none;
    margin-top: 130px;
}

#wxpay-dialog .dialog-body {
    overflow: visible;
}

#wxpay-dialog .wxpay-content {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

#wxpay-dialog .wxpay-content p {
    margin: 0;
}

#wxpay-dialog .money-title p {
    margin-top: 10px;
}

#wxpay-dialog .user-logo {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    top: -70px;
    left: 50%;
    margin-left: -50px;
    border: solid 2px #fff;
}

#wxpay-dialog .step {
    display: none;
    margin-top: 40px;
}

#wxpay-dialog .money-list {
    margin-bottom: -10px;
    margin-right: -15px;
    font-size: 0;
    width: 231px;
    display: inline-block;
}

#wxpay-dialog .money-list .btn {
    margin-bottom: 10px;
}

#wxpay-dialog .money-list .btn:last-child {
    margin-right: 15px;
}

#wxpay-dialog .diy-btn {
    margin: 40px 0;
    display: inline-block;
    cursor: pointer;
}

#wxpay-dialog .diy-text {
    position: relative;
    width: 280px;
    margin: 20 auto 27px;
    line-height: 20px;
    display: none;
}

#wxpay-dialog .active .diy-btn {
    display: none;
}

#wxpay-dialog .active .diy-text {
    display: block;
}

#wxpay-dialog .money-input {
    border: 0;
    width: 100%;
    outline: 0;
    border-bottom: 1px solid #c99a05;
    padding-bottom: 12px;
}

#wxpay-dialog .confirm-diy {
    cursor: pointer;
}

#wxpay-dialog .warning {
    position: absolute;
    top: 0;
    right: 0;
}

#wxpay-dialog .pay-users {
    margin: 17px 0 0;
    font-size: 13px;
    color: #727577;
    line-height: 18px;
}

#wxpay-dialog .pay-qrcode {
    width: 100px;
    height: 100px;
    margin-top: 40px;
    margin-bottom: 20px;
}

#wxpay-dialog .wechat-share {
    position: relative;
    color: #48d851;
}

#wxpay-dialog .wechat-share:hover .wechat-info {
    display: block;
}

#wxpay-dialog .wechat-share .wechat-info {
    position: absolute;
    padding: 10px;
    top: 100%;
    left: -48px;
    z-index: 1;
    background: #fff;
    display: none;
    border: solid 1px #e0e0e0;
}

#wxpay-dialog .wechat-share .wechat-qrcode {
    width: 106px;
    height: 106px;
}

#wxpay-dialog .step-3 {
    margin-top: 40px;
}

#wxpay-dialog .result-info {
    color: #48d851;
    margin-bottom: 40px;
    font-size: 18px;
}

#wxpay-dialog .result-info .icon-get {
    margin-bottom: 14px;
}

#wxpay-dialog .result-info .icon-get:before {
    font-size: 48px;
}

#wxpay-dialog .seperate-line {
    position: relative;
    color: #b0b5b8;
    margin-bottom: 45px !important;
}

#wxpay-dialog .seperate-line:before,
#wxpay-dialog .seperate-line:after {
    content: "";
    height: 1px;
    width: 165px;
    position: absolute;
    top: 50%;
    background: #e0e0e0;
}

#wxpay-dialog .seperate-line:before {
    left: -20px;
}

#wxpay-dialog .seperate-line:after {
    right: -20px;
}

#wxpay-dialog .weibo-share,
#wxpay-dialog .wechat-share {
    display: inline-block;
    width: 32px;
    height: 32px;
}

#wxpay-dialog .weibo-share {
    margin-right: 80px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAABUBJREFUWAntVmtsVFUQnjm73VK6EBqh0AcSTdtNuzwkREOiRiEkCCbyQ95BjSBRrCYqkR/gj8YoSRslkgCKAlGCJNCgIdZnJDQxhEBCKEKb0tYIhG4hPCr0tdvuvcdvzt673Msuikn/2Ulm53FmzsyZOWfuEo3A/70CPNwFSGynykGiFcQ0AZt3a6bfww9QAy+l3myxhj2B3h10Qmt6zBeMqVsRbRm9jjYzk+1dG/YEej6lpQixEoFuI9BEJDMbdKwEha4hP0zL+UXqE1ngPyegZ83KocJCReFwkuvrrdQ29/7V+2hsbw9tYE0bkQxyoC/D1fSy63FfCVyZPj3fGhiqJs1vaNKTHee4osCi4o5zv7ibuRRVWI6Az6L/F4NEu/LW0YW+7bQGtd8lNgg6H0kYP7Tmn6GromqB1Z9sQfa1nuDiNEqTXZ3Nm216D/ar0IpNSZvOIqGn86tpN47/ndhrotdcv3smoGtq1OWyqs22rb9H4Addh7to6C7ZiNh0gWJahKN+BkUY1dirD1KAlZGlDwsgG9+sLZA+x273f4VTrMgWwNUxq7pAXuBjayC5DMeah5NVMusgaXWSc2lDcXPzpZ4ddBxrs1WAHrU1XUJVroq/GkUl+Wsohhb5QU7e+fXB/XBa7F/JlLTWaxH8HdD0PkgaYD+kE1wIZi7wimjYolA4SIle5xEGNI0WfdpRBIHO/Qc+up/gKWtdkAqYkny/rCNGZjqKMo/LG0+nB67TDNGhBYO5Fl00vDFyfrrKoostsuu9urv4W9isHbe7jzUHiXUJkp2CQ2e0kol/Luloecbr3/M5RXmImmB9JPw6mbW041/TphX0xZNtONF4rxP2bidFO0M5fLiwubnDv0bUVTZzgqUGF7Jtv4lEZrnrOGWD0qNWF3WcvubqhPZvp8l5QbrBr1K/yOkEOsujdVrb74pSABvcxiVbX7RyyR6uqfGNz5SF/xf3gGPlU9ehKlvTd4IpoTRvK8rljdzcjE9EJpgE9JIlgVjTuZs4vRmZSKtLcXBucdvZVo/LKvDLgNOA3cCfgFuAvhPGKipfsG3aC70H+MfSjpaFHkWaNQlcnTp14lDcSt1WIivA/Pik9pYTjlUu6GHg/LTXHeYSWPnwmKflqjvLq35DFZ5wZUODoUhp65k2nw4CZgbRoGWlTg5eM3/rCS7LdUBvcHloElhABtQHhvP8YHBJdfygk6V+RUoyCQSsYMCzeMTD54B/xZEPgX4BPA1839EJ8Z8UCqVVxkcqh9WAxyfNmjmQG9J9A/GUDhmZUeJYTAGVgbEV+Jaj2wm6y+GFdHp4w6ICT3l16LMeoryM8ouNqcCVykrpockQ132ex/lP8PJcEo5uDOgjDu+SAy4jNFZR9STieVuGKGpPaevJG147lzcJROvrBxUpU1bW+vmuSHSOYyCl3ASU5ykXsQkol86Fb8BIWwzgGVZqmw6ihOZyGyXzmRCPe9sxySAmAdEWtZ+rZaV2i7Nt24c7I9HnHGsp/2rgdODDju48qHyKzfdCZsDliuhLtraOo/yTHBshjWNCPHfC+WM9Hp2PvZOpo45VRNdqW3+CjUZjGv0QYNo2qbjwKDc2yi3JB8qzvCnm1yIzixNWfBHGbjXso6JzIM6Ka4vH5H3Ip04NucpsNCMBMZK5kEzo9TjZWvRzHFRxGLagsDG8U3xVKYyJF8F1LfFvyt2YoPtUILSlqLXpgn8tu5Q1AddU/hd03UrM0axxMe0ZCB5B4AIEDiOJQVToOhL8g5mPa62OlZSM/9WplLvFCB2pwL9W4G9vYsmqWl/hrAAAAABJRU5ErkJggg==);
}

#wxpay-dialog .wechat-share {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAABCdJREFUWAntVl1oHFUUPuferbVkoygJIjZRobubotTHSAuigtKYGGGToYKsFSs+iKA+VERFFopE41P9A0v7ZAXrko3W2g1i1YgKtkWhL5aN/aFNJNo/yCa23dmZ43cnTDIz+5dU6Iu9D3vPPd8595x7/maJrq3/ewS4WQD6jg0kXEceJJE7iLjdJb7EIn8Rq8OkVv5USHwy0+yORnhNByyx9Gyx8gQJbxWSu+tewHwJWE7ziqGvknt+ryvXAKhy4NGj1p02ObuJZH0DvQjENpMMd6fueSPLWTcCNjyGHOg/bqVsuzIuQrc01KoL8t7OVNvgDt5h1xWJAMo/9595utUuO1+HjONZzDzly0R3YJNhnvSfLp59P8xrfFpwwD53YRvy3emLM9Pl61bE1hZS+dUI03af7+9KqUFgHUQq4/PMLiLP9k0M3h/kNaI9BzLTmRYhfiYieJlaW/80PGE1HcFIs5wwPK2oCnNc5/WofL2zVwO9xcE0lEZqCMEBPoxoPISXrQri4M0I0Xe4YAPS1gasgpT8hn0K/FJnsm3LUmrBc+CR4sBW13WHgwaWTDOfIKE3taYzjkv3Qm8dYtbOQhdRQKdY8ffx69XnuY7c+Vp3xjymSEstsDmPP0KE9jLLkOMIDC8uRMEUBIkjmdKcvNtTTH8QX6WzcOTiohQqyBww3bx8BoFmtGJ6SylCF7j7kJ6Q8WpdaRFXXi794xzqmUivDuKeA5pjB4PMZjTyfwCjeNp1ZRvC76WxmY6Hi9xFDn1rHbNu9OU9B7wxyvyNz2y6K7Udrx4KyTHvhCehdsW5pJhfRXH+4MsiKYnZSuUd/+w5YA5a61dM7/tAvZ3RFXg1Kn+xK2DAab1Jv1ToGn0xNJyYxven8kNC+rXgfSL8VM+E1W54ofBtPJregsrZGRSO0qjqYTiwsTrv/DMeUAH/voBOBfQonO4ODrl5XGXGukZ2L0TAMMe68rsQsiehUJ4Xqvk7ierGBIwuWR8xbgRMl1nVxvFyRbcbgZADhoGQfQzuh4autdDfcaiXamHL4eEzc9bIVzngXSLysNkRiVPI6R7kqYijCSdalpLEcsTQ/2VppkNGf34QBW7qLW5a64p9A4w/F0+pXTnOeelAeDk9tflmZ2WsXD5/oRcqfQG1ZZGmK75M5H81SlUOsLgzpG5bU0i8F+oIKJnhds4oZSX72S/FIy/AKTN6l7l4jmP6eV8p1AU+cyn7Y3883lGulH+sVWD19dlGXjeNpfKjvkztGvDRBvsXaz49TZo2mHA2EFuAIOeg9HuCxg14xQ4Y5UIiP9mdXPeAVnoAoRxH2Vb9FYNhfC+8+aBZ6ZNGL7iuOAXBS3za+tuKz5XcLqlwO142i0I+vi+Vm/IK27XfxhA7sD85EhrXvu5V2dMn07deFUPXjCwnAv8CQtRtwXw9VcwAAAAASUVORK5CYII=);
}

.theater-aside {
    padding: 62px 0 0;
    border-left: 1px solid #1c1d1e;
    overflow-y: auto;
    color: #fff;
}

.theater-aside a {
    color: #fff;
}

.theater-aside .theater-aside-actions {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
    width: 320px;
    height: 62px;
    line-height: 62px;
    padding-top: 15px;
    border-top: 1px solid #1c1d1e;
    border-left: 1px solid #1c1d1e;
    background-color: #000;
    font-size: 0;
    padding: 0 9px;
}

.theater-aside .theater-aside-actions a {
    display: inline-block;
    height: 32px;
    font-size: 14px;
    color: #fff;
    vertical-align: middle;
    margin-right: 9px;
}

.theater-aside .theater-aside-actions .icon-like,
.theater-aside .theater-aside-actions .icon-comment {
    width: 86px;
}

.theater-aside .theater-aside-actions .icon-like:before,
.theater-aside .theater-aside-actions .icon-comment:before,
.theater-aside .theater-aside-actions .icon-more:before {
    vertical-align: middle;
}

.theater-aside .theater-aside-actions .icon-more:before {
    display: inline-block;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.theater-aside .theater-aside-actions .icon-more {
    position: relative;
    float: right;
    height: 62px;
    line-height: 62px;
    margin-right: -5px;
}

.theater-aside .theater-aside-actions .more-choices {
    position: absolute;
    top: 100%;
    right: 5px;
    display: none;
    width: 130px;
    z-index: 1;
    border-bottom: 1px solid #1c1d1e;
    border-top: 15px solid rgba(0, 0, 0, 0);
    background-color: #000;
}

.theater-aside .theater-aside-actions .more-choices:after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 130px;
    height: 15px;
}

.theater-aside .theater-aside-actions .more-choices li {
    height: 62px;
    padding: 15px;
    border-top: 1px solid #1c1d1e;
    border-left: 1px solid #1c1d1e;
    border-right: 1px solid #1c1d1e;
    line-height: 32px;
}

.theater-aside .theater-aside-actions .more-choices .delete-post {
    color: #e60a05;
}

.theater-aside .theater-aside-actions .icon-more:hover .more-choices {
    display: block;
}

.theater-aside .theater-aside-actions .aside-post-share {
    position: relative;
    display: inline-block;
    text-align: right;
    vertical-align: middle;
    font-size: 12px;
    margin-left: 9px;
}

.theater-aside .theater-aside-actions .aside-post-share .icon-wechat {
    margin-right: 2px;
}

.theater-aside .theater-aside-actions .aside-post-share .icon-wechat,
.theater-aside .theater-aside-actions .aside-post-share .icon-weibo {
    color: #fff;
    cursor: pointer;
    vertical-align: -9px;
}

.theater-aside .theater-aside-actions .aside-post-share .wechat-qrcode {
    position: absolute;
    top: 100%;
    display: none;
    width: 220px;
    right: 25px;
    z-index: 1;
    padding: 15px;
    border: 1px solid #1c1d1e;
    background-color: #000;
}

.theater-aside .theater-aside-actions .aside-post-share .wechat-qrcode img {
    display: block;
    width: 106px;
    height: 106px;
}

.theater-aside .theater-aside-actions .aside-post-share .wechat-qrcode p {
    margin: 15px 0 0;
    font-size: 13px;
    color: #85888a;
    text-align: left;
}

.theater-aside .theater-aside-actions .aside-post-share .wechat-qrcode:after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 1;
    width: 14px;
    height: 14px;
    border-top: 1px solid #1c1d1e;
    border-left: 1px solid #1c1d1e;
    margin-top: -6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #000;
}

.theater-aside .theater-aside-actions .aside-post-share .icon-wechat:hover .wechat-qrcode {
    display: block;
}

.theater-aside .theater-aside-post {
    border-top: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-post .aside-post-head {
    position: relative;
    height: 76px;
    padding: 20px 15px 20px 67px;
    border-bottom: 1px solid #1c1d1e;
    line-height: 1;
    background-color: #000;
}

.theater-aside .theater-aside-post .aside-post-head .site-icon {
    position: absolute;
    top: 17px;
    left: 15px;
    width: 42px;
    height: 42px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.theater-aside .theater-aside-post .aside-post-head .site-icon img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.theater-aside .theater-aside-post .aside-post-head .site-icon .vip-right {
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.theater-aside .theater-aside-post .aside-post-head .site-icon .vip-left {
    position: absolute;
    width: 12px;
    height: 12px;
    bottom: 0;
    right: 6px;
    z-index: 0;
}

.theater-aside .theater-aside-post .aside-post-head p {
    margin: 10px 0 0;
    font-size: 12px;
    color: #85888a;
}

.theater-aside .theater-aside-post .aside-post-head .aside-site-follow {
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c99a05;
    width: 72px;
}

.theater-aside .theater-aside-post .aside-post-head .icon-view {
    display: inline-block;
    width: 14px;
    height: 10px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAUCAYAAAHpWW1vAAAAAXNSR0IArs4c6QAAAvlJREFUSA19lb9rVEEQx+8SKxsx0ULECx4WhyAoCBLFIJdKwR9gKxLOSgyKdVCf4j8QMNgdYi8YFbHxRCUiKkQISAo5McEmMYqNnTk/372Zx76XJQNzM/OdXzu7+/YqFajX61XhlvQBlEa1Wu2h19AzgYrI4OvBMCAYyssMXZFxGGMYHq0KdS8FlT8IdAPubMEIARjTFvQPXdTsC35xjMNTcD0HpSgDPm76LdnS49V8xd5nfYNzQBFGr1wxuVxYLeAT+Ay8ToU7vtIQTK8rKDuDkf5pk7Qkl1fVzJpdNI9zliLX0LfDD7G7PoACoHs6hUsonlSxpCkwJYku9kVl0aTEpHc8iHHOHSRn0ik6jL6GPIB5XphI/vKM6qw5hxRQohckvHeskCiQ6jqtE/Au+C+8AL8kSZcqpzyRhBpoK/dsVFZJnnHYZxwDaBqoyncJCpeIgroa4+YL80nXru5AepIct7FHwHWfrmK/xZ6HA4Hp6CoD8GRA+j8rpvsRDBF4geTZKGYQrKHEmH7FhukjCeyYEpcjR8P0MJ/pD+jgl8FD2745mSPIRyxtgeBw+MLRM0mjx/g/x8dxE4cv/Q/6a1gXfhR2ekbSJxl5ogwqH0GclF4izT5DUj5CITEOpoiun54SFUtdwTjcdTX4AH+Mm7hTckNDGqnJKdjHVZyTRv8CrxqgLdgPbzM7FusYz31L3JE3pFHhi/QAk+GApBOnnDAxxdbML7zwxTpuMhygdD2AKtCC9whI0DSFfxO3G5/itNUx6Xz0gv0gRtdLD1WKdD3b2rbNmi2qmWVPIMvN5BI2IcVi4wdNsJMGaqnhnCMJGV+W7wm/Q7EvznG/yzltp/ZfD8dlODVBeNMtro48DfuXqVupb6Vr/rPIQ9JLpG2/T9zP0NCdNB5Db7odST15HfgdSUrOiRwt8iisvEI9C+qQ88b0ZIAmrhGgSTb7q/MaKanP5imNlsrO1IoKMTRXzF64Dmsh+ua2wiL9pejbVOEu/I0mhb8WsAL9B4+COmKx4G/nAAAAAElFTkSuQmCC);
    background-position: center center;
    -moz-background-size: cover;
    background-size: cover;
    margin-right: 5px;
    vertical-align: 9px;
}

.theater-aside .theater-aside-post .aside-post-head .icon-view:before {
    font-size: 0;
}

.theater-aside .theater-aside-post .aside-post-head .view-count {
    color: #fff;
    margin: 0 5px;
}

.theater-aside .theater-aside-post .aside-post-content {
    padding: 10px 15px 20px;
    border-bottom: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-title {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 500;
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-desc {
    margin: 9px 0 0;
    font-size: 13px;
    line-height: 24px;
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-tags {
    margin-top: 10px;
    font-size: 0;
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-tags a {
    display: inline-block;
    margin-right: 6px;
    font-size: 13px;
    line-height: 24px;
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-tags a::before {
    content: "#";
}

.theater-aside .theater-aside-post .aside-post-content .aside-post-tags a.event-tag {
    color: #c99a05;
}

.theater-aside .theater-aside-post .aside-post-content .post-author-setting {
    color: #c99a05;
}

.theater-aside .theater-aside-image {
    color: #85888a;
    font-size: 13px;
}

.theater-aside .theater-aside-image a {
    color: #85888a;
}

.theater-aside .theater-aside-image .image-authorized {
    padding: 20px 15px;
    font-size: 12px;
    color: #b0b5b8;
    border-bottom: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-image .image-authorized .image-buy {
    display: block;
    margin-bottom: 6px;
    width: 290px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color: #c99a05;
}

.theater-aside .theater-aside-image .image-authorized .learn-more {
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
}

.theater-aside .theater-aside-image .aside-image-info {
    padding: 20px 15px;
    border-bottom: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-image .aside-image-info p {
    margin: 0;
}

.theater-aside .theater-aside-image .aside-image-info .aside-image-desc {
    margin-top: 9px;
    line-height: 24px;
}

.theater-aside .theater-aside-image .aside-image-exif {
    position: relative;
    padding: 14px 60px 14px 15px;
    border-bottom: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-image .aside-image-exif .aside-see-exif {
    position: absolute;
    right: 15px;
    top: 14px;
    cursor: pointer;
}

.theater-aside .theater-aside-image .aside-image-exif li {
    height: 24px;
    line-height: 24px;
}

.theater-aside .theater-aside-image .aside-image-exif span,
.theater-aside .theater-aside-image .aside-image-exif a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.theater-aside .theater-aside-image .all-exif {
    padding: 0 15px;
}

.theater-aside .theater-aside-image .all-exif .all-exif-return {
    position: fixed;
    right: 0;
    top: 0;
    height: 69px;
    padding: 25px 15px;
    border-left: 1px solid #1c1d1e;
    background-color: #000;
    color: #fff;
    font-weight: 500;
}

.theater-aside .theater-aside-image .all-exif dl {
    padding-bottom: 25px;
    border-top: 1px solid #1c1d1e;
    font-size: 13px;
    line-height: 20px;
}

.theater-aside .theater-aside-image .all-exif dt {
    margin-top: 10px;
    color: #fff;
}

.theater-aside .theater-aside-reward {
    border-bottom: 1px solid #1c1d1e;
}

.theater-aside .theater-aside-reward .aside-reward-content {
    padding: 20px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.theater-aside .theater-aside-reward p {
    margin: 0;
}

.theater-aside .theater-aside-reward .btn {
    float: none;
    display: inline-block;
}

.theater-aside .theater-aside-reward .btn-yellow {
    color: #c99a05;
}

.theater-aside .theater-aside-reward .reward-btn {
    margin-right: 0;
}

.theater-aside .theater-aside-reward .reward-list {
    font-size: 0;
    vertical-align: middle;
    display: inline-block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.theater-aside .theater-aside-reward .reward-list a {
    display: inline-block;
    width: 26px;
    height: 26px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    font-size: 14px;
    text-align: center;
    line-height: 26px;
    overflow: hidden;
    color: #85888a;
    background-color: #222;
    margin-right: 3px;
    border: solid 1px #fff;
}

.theater-aside .theater-aside-reward .reward-list a.more {
    border: 0;
    cursor: default;
}

.theater-aside .theater-aside-reward .reward-list img {
    width: 100%;
    height: 100%;
}

.theater-aside .theater-aside-reward .reward-list .icon-more:before {
    font-size: inherit;
    line-height: 26px;
}

.theater-aside .theater-aside-reward .reward-money {
    color: #b0b5b8;
    font-size: 13px;
    vertical-align: 8px;
    margin-top: 5px;
}

.theater-aside .theater-aside-comment {
    padding: 0 15px 15px;
}

.theater-swiper {
    font-size: 0;
    white-space: nowrap;
}

.theater-swiper .theater-scene {
    position: absolute;
    top: 0;
    bottom: 110px;
    left: 0;
    right: 0;
}

.theater-swiper .theater-thumb {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 110px;
}

.theater-swiper .icon-arrow,
.theater-swiper .icon-2arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.theater-swiper .icon-arrow:before,
.theater-swiper .icon-2arrow:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #025a92;
    opacity: 0.6;
}

.theater-swiper .switch-prev {
    left: 0;
}

.theater-swiper .switch-next {
    right: 0;
    /* -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); */
}

.theater-scene {}

.theater-scene .icon-arrow {
    width: 100px;
    text-shadow: 0 1px 2px #000;
}

.theater-scene .icon-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.theater-scene .scene-item {
    position: absolute;
    left: 50%;
    top: 0;
    width: 68%;
margin-left: -34%;
    height: 100%;
}

/* 新增了pic 修改了img大小 */
.theater-scene .scene-item .pic {
    position: absolute;
    left: 50%;
    /* top: 50%; */
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    /* width: auto; */
    
}

.theater-scene .scene-item .pic img {
    width: auto !important;
    /* max-width: 100%; */
    height:100%;
    display: block;
    margin: 0 auto;
    /* max-height: 100%; */
    /* height: 100%; */
    /* position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

/* .theater-scene .scene-item img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
} */
.theater-scene .prev-scene {
    -webkit-transform: translateX(-150%);
    -moz-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
}

.theater-scene .next-scene {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.theater-scene .theater-scene-mask {
    content: "";
    position: absolute;
    left: 100px;
    right: 100px;
    top: 0;
    bottom: 0;
}

.theater-thumb {
    /* padding: 20px 0; */
}

.theater-thumb .thumb-container-next {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-66px);
    -moz-transform: translateX(-66px);
    -ms-transform: translateX(-66px);
    transform: translateX(-66px);
}

.theater-thumb .thumb-container-prev {
    position: absolute;
    top: 20px;
    right: 50%;
    -webkit-transform: translateX(-66px);
    -moz-transform: translateX(-66px);
    -ms-transform: translateX(-66px);
    transform: translateX(-66px);
}

.theater-thumb .thumb-container-prev,
.theater-thumb .thumb-container-next {
    -webkit-transition: -webkit-transform 0.3s linear;
    -moz-transition: -moz-transform 0.3s linear;
    transition: transform 0.3s linear;
}

.theater-thumb .thumb-item {
    position: relative;
    display: inline-block;
    width: 106px;
    height: 70px;
    margin: 0 5px;
    vertical-align: top;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center;
}

.theater-thumb .thumb-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.theater-thumb .current-thumb {
    border: 2px solid #fff;
}

.theater-thumb .current-thumb::after {
    display: none;
}

.theater-thumb .icon-2arrow {
    width: 62px;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.theater-thumb .icon-2arrow i{
    font-size: 18px;
    color: #fff;
}
.theater-thumb:hover .icon-2arrow {
    visibility: visible;
}

.widget-theater {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.theater-main {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    /* background-color: #000; */
    /* background: url(/picture/images/a-bg1.jpg) center no-repeat; */
    background: #fff;
    background-size: cover;
    height: 100vh;
}

.theater-main .theater-handler {
    position: relative;
    height: 64px;
    width: 100%;
    padding: 19px 0;
    margin-bottom: auto;
    text-align: center;
    z-index: 999;
}

.theater-main .theater-handler .theater-close {
    position: absolute;
    top: 20px;
    right: 42px;
    color: #025a92;
    font-size: 20px;
}

.theater-main .theater-handler .theater-fullscreen {
    position: absolute;
    top:20px;
    right: 86px;
    color: #025a92;
    font-size: 20px;
}

.theater-main .theater-handler .icon-like:before {
    vertical-align: middle;
}

.theater-main .theater-handler .liked {
    color: red;
}

.theater-main .theater-handler .like-white {
    vertical-align: middle;
    position: absolute;
    top: 16px;
    right: 150px;
    color: #fff;
    opacity: 0.6;
    visibility: hidden;
}

.theater-main .theater-handler .theater-download {
    position: absolute;
    top: 66px;
    right: 92px;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 10px;
}

.theater-main .theater-handler .theater-download-tips {
    display: none;
    position: absolute;
    right: 17px;
    top: 40px;
    width: 174px;
    padding: 10px 15px;
    background: #1c1d1e;
    -webkit-transform: translate(50%);
    -moz-transform: translate(50%);
    -ms-transform: translate(50%);
    transform: translate(50%);
}

.theater-main .theater-handler .theater-download-tips .tit {
    font-size: 12px;
}

.theater-main .theater-handler .theater-download-tips .download-btn {
    height: 28px;
    line-height: 27px;
    font-size: 12px;
    border: 1px solid #c99a05;
    color: #c99a05;
    margin-top: 10px;
}

.theater-main .theater-handler .theater-download-tips .icon-go::before {
    margin-left: 10px;
    font-size: 10px;
}

.theater-main .theater-handler .theater-download-tips .arrow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #1c1d1e;
    -webkit-transform: rotate(45deg) translate(-50%, 0);
    -moz-transform: rotate(45deg) translate(-50%, 0);
    -ms-transform: rotate(45deg) translate(-50%, 0);
    transform: rotate(45deg) translate(-50%, 0);
}

.theater-main .theater-handler .theater-indicator {
    display: inline-block;
    /* opacity: 0.6; */
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    text-indent: 8px;
    color: #025a92;
}

.theater-main .theater-swiper {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
}

.theater-main .theater-scene-mask {
    cursor: url(/picture/zoom.cur), auto;
}

.theater-main.fullscreen-main .theater-scene {
    bottom: 20px;
}

.theater-main.fullscreen-main .theater-thumb {
    display: none;
}

.theater-main.fullscreen-main .icon-downlaod {
    display: none;
}

.theater-main.fullscreen-main .icon-close {
    display: none;
}

.theater-main.fullscreen-main .theater-scene-mask {
    cursor: url(/picture/zoomout.cur), auto;
}

.theater-aside {
    position: relative;
    width: 320px;
    height: 100%;
    margin-left: auto;
    background-color: #000;
}


.icon-fullscreen {
    font-family: 'iconfont';
}

a {
    cursor: pointer;
}
.fullscreen-main .theater-handler{transition: all .8s;transition: all .8s;}
.fullscreen-main .theater-handler .theater-fullscreen{color: #fff;}
.fullscreen-main .theater-handler .theater-close{color: #fff;}
.fullscreen-main .theater-handler .theater-indicator{color: #fff;}
.fullscreen-main .theater-scene .scene-item .pic{width: 100% !important;width: 100%\0;}
.fullscreen-main .theater-scene .scene-item .pic img{width: 100%;height: auto;max-height: 100%;}
.fullscreen-main .theater-swiper{top: 0;}
.fullscreen-main .theater-swiper .icon-arrow:before, .fullscreen-main .theater-swiper .icon-2arrow:before{color: #fff;}
.fullscreen-main .theater-handler .theater-handler{position: absolute;}
.theater-main.fullscreen-main .theater-scene{bottom: 0;}
.theater-main.fullscreen-main .theater-handler{ 
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .8) 100%);

    background: -webkit-gradient(linear,bottom , top, color-stop(0%,rgba(0, 0, 0, 0) 0%), color-stop(100%,rgba(0, 0, 0, 0) 100%));
    
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .8) 100%);
    
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .8) 100%);
    
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .8) 100%);
    
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .8) 100%);
    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
}

.fullscreen-main .theater-scene .scene-item{width: 100%;margin-left: -50%;}

.theater-swiper .g-txt_z2 {
    white-space: normal;
}

.g-txt_z2 {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    font-size: 50px;
    color: #fff;
    padding: 20px 60px 50px;
    /* background: 80% linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);
    background: 80% -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%); */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);

background: -webkit-gradient(linear, top, bottom, color-stop(0%,#72b9ff), color-stop(100%,#ead1ff));

background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);

background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);

background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);

background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .9) 100%);

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#000',GradientType=0 );
    z-index: 9;
    color: #fff;
}

.g-txt_z2 .tit {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'tit-z2';
}

.g-txt_z2 .date {
    display: inline-block;
    padding: 2px 10px;
    background-color: #1EA2D3;
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
    transform: translateY(-3px);
}

.g-txt_z2 .info {
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
}

@media only screen and (max-width:767px) {
    .theater-swiper .theater-scene {
        height: 90vh;
    }

    .theater-thumb .thumb-item {
        width: 167px;
        height: 10vh;
    }
    .fullscreen-main .theater-scene .scene-item {
        /* width: 100%;
        margin-left: -50%;
        height: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0; */
    }
    .theater-scene .scene-item{
        /* width: 90%;margin-left: -45%;top:calc(50% - 110px);margin-top: -15%;height: 30%; */
    }
    .theater-scene .scene-item .pic{width: 100%;}
    
    .g-txt_z2 .info{display: none;}
    .g-txt_z2{padding: 20px 30px 20px;}
    .theater-scene .scene-item .pic img{width:100% !important;height: auto;}
}

/* 新增css */
@font-face {
    font-family: 'tit-z2';
    src: url('/fonts/MSYHSB.TTC');
}