html {
    font-size: 62.5%;
    background-color: #f5f5f5;
}

body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.m-t-15 {
    margin-top: 1rem !important;
}

.m-b-15 {
    margin-bottom: 1rem !important;
}

.banner-service img {
    width: 100%;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    line-height: 4.5rem;
    height: 4.5rem;
    padding: 0 .8rem;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header a {
    width: 40px;
    display: block;
    text-align: center;
    z-index: 1;
    position: relative;
}

header .icu {
    font-size: 1.8rem;
}

header > .title {
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

header > .rigth-link {
    display: flex;
}

.side-menu {
    position: fixed;
    width: 60%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1001;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
}

.side-menu .menu-content {
    position: relative;
    height: 100%;
    overflow-x: hidden;
}

.side-menu .logo {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1002;
    width: 100%;
    height: 49px;
    line-height: 49px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
    overflow: hidden;
    font-weight: 300;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ffffff;
}

.side-menu .logo img {
    height: 30px;
}

.side-menu .menu {
    margin-top: 50px;
}

.side-menu .title {
    line-height: 45px;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    padding: 0 15px;
    overflow: hidden;
}

.side-menu .title i {
    padding-right: 10px;
}

.side-menu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 7px 6px 8px;
}

.side-menu ul li {
    width: 33.333333%;
    text-align: center;
    line-height: 28px;
    padding: 4px 5px;
    box-sizing: border-box;
    border-radius: 2px;
}

.side-menu ul li a {
    display: block;
    background-color: #f8f8f8;
    color: #888888;
}

.side-menu ul li a:hover {
    background-color: rgba(82, 145, 252, 0.5);
    color: #ffffff;
}

.side-menu .menu-content::-webkit-scrollbar {
    display: none;
}

main {
    height: calc(100% - 9.7rem);
    height: calc(100% - 9.7rem - constant(safe-area-inset-bottom));
    height: calc(100% - 9.7rem - env(safe-area-inset-bottom));
    width: 100%;
    position: absolute !important;
    overflow-y: auto;
    overflow-x: hidden;
    left: 0;
    right: 0;
}

.container {
    width: 100%;
}

main::-webkit-scrollbar {
    display: none;
}

footer {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

footer ul {
    display: flex;
    height: 5.2rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

footer ul li {
    width: 20%;
}

footer ul li a {
    display: block;
    line-height: 1.4;
}

footer ul li a .icu {
    font-size: 1.8rem;
}

footer ul li a p {
    font-size: 1rem;
}

footer ul li.active a {
    color: #5291fc !important;
}

/**
过渡
 */
.side-menu, main, header, footer, .top-nav {
    transition: all .3s;
    -webkit-transition: all .3s;
}

/**
遮罩
 */
.shade {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1000;
}

/**
菜单操作
 */
.side-spread .side-menu {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.side-spread main, .side-spread header, .side-spread footer, .side-spread .top-nav {
    transform: translate3d(60%, 0, 0);
    -webkit-transform: translate3d(60%, 0, 0);
}

.side-spread .shade {
    display: block;
}

/**
搜索
 */
.search-page {
    display: none;
}

.search-main {
    padding: 4rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.search-main .search-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../img/search-bg.png");
    -ms-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    background-position: center;
}

.search-main .search-close {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 2.6rem;
    color: #ffffff;
    line-height: 1;
}

.search-main .logo {
    position: relative;
    z-index: 100;
    padding-bottom: 2.5rem;
    text-align: center;
}

.search-main .logo img {
    height: 3.5rem;
}

.search-main form {
    position: relative;
    z-index: 100;
}

.search-main .search-input {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #ffffff;
    background-clip: padding-box;
    padding: 1.6rem 1.8rem;
    height: calc(1.5em + 2.71875rem + 2px);
    -webkit-appearance: none;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
    box-sizing: border-box;
    text-align: center;
}

.search-main .search-input:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: transparent;
}

.search-main .search-input:focus {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: transparent;
    color: #fff;
}

.search-main .search-input::-webkit-input-placeholder {
    color: #fff;
    opacity: 1
}

.search-main .search-input::-moz-placeholder {
    color: #fff;
    opacity: 1
}

.search-main .search-input:-ms-input-placeholder {
    color: #fff;
    opacity: 1
}

.search-main .search-input::-ms-input-placeholder {
    color: #fff;
    opacity: 1
}

.search-main .search-input::placeholder {
    color: #fff;
    opacity: 1
}

.search-list {
    padding: 1.5rem;
}

.search-list .title {
    margin-bottom: 1.5rem;
}

.search-list .title span {
    vertical-align: middle;
    line-height: 2.6rem;
    font-size: 1.4rem;
}

.search-list .title .icu {
    color: #FF5D4A;
    font-size: 1.8rem;
    padding-right: .5rem;
    vertical-align: middle;
    line-height: 2.6rem;
    float: left;
}

.search-list ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    margin: -.35rem !important;
}

.search-list li {
    padding: .4rem;
}

.search-list li a {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    line-height: 1.5;
    white-space: normal;
    color: #6D7685;
    background-color: #f4f4f5;
    border-color: #f4f4f5;
    font-size: 1.2rem;
    padding: .4rem 1rem;
    border-radius: 4px;
}


/**
评论
 */
.commentary {
    overflow: hidden;
}

.commentary .forum-reply-forum {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.commentary .forum-reply-forum .layui-form-item {
    position: relative;
}

.commentary .forum-reply-forum .layui-textarea {
    border-color: #e7eaf1 !important;
    line-height: 1;
    height: 100px;
    resize: none;
    overflow: auto;
    min-height: auto;
    padding: 11px;
    border-radius: 3px !important;
    -webkit-transition: height .1s;
    transition: height .1s;
    background-color: transparent;
}

.commentary .forum-reply-forum .layui-form-item:before {
    position: absolute;
    content: "";
    background-image: url("../../main/images/logo.png");
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: center center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: .1;
}

.commentary .forum-reply-forum .focus {
    height: 130px;
    line-height: 1.8;
}


.commentary .forum-reply-forum .layui-btn {
    float: right;
}

.commentary .user-info {
    padding: 0 !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
    float: left;
}

.commentary .user-info .nickname {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 40px;
    display: inline-flex;
    align-items: center;
}

.commentary .user-info p.nickname em {
    line-height: 18px;
    font-size: 14px;
    height: 18px;
}

.commentary .user-info .avatar {
    width: 38px;
    height: 38px;
    border-radius: 3px;
    margin-right: 15px;
}

.commentary .user-info .no-login-link {
    line-height: 40px;
}

.commentary .user-info .no-login-link a {
    margin: 0 10px;
}

.commentary .forum-list {
    clear: both;
}

.commentary .forum-list .title {
    line-height: 3.2;
    padding: 0 10px 0 20px;
    font-size: 16px;
    border-bottom: 3px solid #5291fc;
    display: flex;
    align-items: center;
}

.commentary .forum-list .title strong {
    flex-shrink: 0;
}

.commentary .forum-list .title em {
    font-size: 12px;
    color: #999999;
    padding-left: 10px;
    width: 100%;
}

.commentary .forum-list .title a {
    font-size: 13px;
    flex-shrink: 0;
}

.commentary .no-comment {
    padding: 40px;
    text-align: center;
    color: #aaaaaa;
}

.commentary .no-comment .icu-no-comment {
    font-size: 80px;
    line-height: 1;
}

.commentary .no-comment p {
    padding-top: 15px;
}


.comment-list {
    padding: 1.2rem;
    border-bottom: 1px #f7f7f7 solid;
    margin-bottom: -1px;
    overflow: hidden;
    position: relative;
}

.comment-list .Blood.icon-reward {
    position: absolute;
    top: 0px;
    right: 30px;
    font-size: 45px;
    color: #FF5D4A;
    line-height: 1;
}

.comment-list .commentList-user {
    width: 100%;
}

.comment-list .commentList-user .avatar {
    float: left;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 1.2rem;
}

.comment-list .commentList-user .userInfo {
    display: block;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.comment-list .commentList-user .userInfo .comment-province {
    position: absolute;
    top: 0;
    right: 0;
    color: #999;
}

.comment-list .commentList-user .userInfo .nickname {
    font-size: 14px;
    padding-bottom: 5px;
    color: #555555;
    font-weight: 600;
}

.comment-list .forum-reply-forum {
    padding: 15px 0px 0 !important;
}

.comment-list .comment-content {
    overflow: hidden;
    font-size: 12px;
    color: #40444c;
    line-height: 22px;
    word-wrap: break-word;
}

.comment-list .comment-content a:hover {
    color: #FF5D4A;
}

.comment-list .content-bottom {
    display: block;
    overflow: hidden;
    padding-top: 8px;
    line-height: 1;
}

.comment-list .data-time {
    font-size: 12px;
    color: #999;
}

.comment-list .data-reply {
    cursor: pointer;
}

.comment-list .content-bottom {
    line-height: 24px;
}

.comment-list .content-bottom span {
    padding-left: 5px;
}

.comment-list .agree-disagree {
    background-color: #f5f5f5;
    margin-right: 1rem;
    display: inline-block;
    float: left;
    padding: 0px;
    border-radius: 3px;
    overflow: hidden;
}

.comment-list .agree-disagree .icu {
    font-size: 12px;
}

.comment-list .agree-disagree div {
    height: 24px;
    padding: 0 10px;
    color: #999;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    display: block;
    float: left;
}

.comment-list .agree-disagree div:hover {
    background-color: #5291fc;
    color: #ffffff !important;
}

.comment-list .agree-disagree div + div {
    border-left: 1px solid #ebebeb;
}

.comment-list .data-agree .icu {
    padding-right: 5px;
}

.comment-list .comment-count {
    background-color: #5291fc70;
    margin-right: 1rem;
    display: inline-block;
    float: left;
    color: #ffffff;
    padding: 0 10px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.comment-list .comment-count .icu {
    position: relative;
    font-size: 12px;
    float: left;
    padding-right: 5px;
    top: 1px;
}

.more-operate {
    min-height: 24px;
    line-height: 24px;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.comment-list:hover .more-operate {
    opacity: 1;
}

.more-operate a {
    color: #aaa;
}

.more-operate a:hover {
    color: #5291fc90;
}

.more-operate .Blood {
    font-size: 12px;
    padding-right: 5px;
}

.more-operate .post-report {
    margin-right: 15px;
}


.comment-keyframes {
    -webkit-animation: commentOpen 120ms ease-in-out;
    animation: commentOpen 120ms ease-in-out
}

@-webkit-keyframes commentOpen {
    0% {
        width: 30%;
    }
    100% {
        width: 100%;
    }
}

@keyframes commentOpen {
    0% {
        width: 30%;
    }
    100% {
        width: 100%;
    }
}


.commentary-list .comment-list .layui-form {
    display: flex;
}

.commentary-list .comment-list .layui-form-item {
    flex: 10;
}

.commentary-list .comment-list .user-info {
    display: none;
}

.commentary-list .comment-list .layui-textarea {
    border-color: #e7eaf1 !important;
    line-height: 1;
    height: 38px !important;
    resize: none;
    overflow: hidden;
    min-height: auto;
    padding: 11px;
    border-radius: 3px 0 0 3px !important;
    -webkit-transition: height .1s;
    transition: height .1s;
}

.children {
    padding-left: 40px;
    padding-top: 15px;
}

.children .comment-list {
    padding: 5px 0 0 !important;
    border-bottom: none !important;
    border-top: 1px #f7f7f7 solid;
}

.children a {
    color: #5291fc;
    padding-right: 8px;
    line-height: 1 !important;
}

.children .avatar {
    width: 35px !important;
    height: 35px !important;
    margin-right: 10px;
    margin-top: 2px;
    border-radius: 50%;
    float: left;
}

.reply-list span {
    color: #ccc;
    padding-right: 8px;
}

.reply-list {
    overflow: hidden;
    display: block;
    padding: 15px 0;
    border-top: 1px #f7f7f7 solid;
}


.comment-list .form-button {
    display: contents;
}

.comment-list .layui-btn + .layui-btn {
    margin-left: 0px !important;
    width: auto;
}

.reply-list .content-bottom {
    line-height: 1 !important;
}

.reply-list .content-bottom .comment-province {
    color: #999;
    padding-left: 5px;
}

.comment-keyframes .layui-btn {
    border-radius: 0 !important;
}

.comment-keyframes .layui-btn + .layui-btn {
    border-radius: 0 3px 3px 0 !important;
}

/**
弹出提示
 */
.spop--top-right {
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.spop {
    border: none !important;
    border-radius: 0 !important;
}

.spop--bottom-center .spop, .spop--bottom-left .spop, .spop--bottom-right .spop, .spop--top-center .spop, .spop--top-left .spop, .spop--top-right .spop {
    animation: unset;
}

.spop--out {
    animation: bottom-in-top .2s ease-in-out !important;
}

.spop--in {
    animation: top-in-bottom .2s ease-in-out !important;
}

@keyframes top-in-bottom {
    0% {
        opacity: 0;
        transform: scaleY(0)
    }
    100% {
        opacity: 1;
        transform: scaleY(1)
    }
}

@keyframes bottom-in-top {
    0% {
        opacity: 1;
        transform: scaleY(1)
    }
    100% {
        opacity: 0;
        transform: scaleY(0)
    }
}


/**
海报
 */
.poster-img {
    background-color: transparent !important;
}

.poster-img img {
    height: 433px;
    overflow: hidden;
}

.poster-img .layui-layer-content {
    border-radius: 6px !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
}

.poster-img .layui-layer-setwin {
    right: 50%;
    margin-right: 10px;
    top: unset;
    bottom: -40px;
}

.cover-share {
    text-align: center;
    padding: 8px 0;
    margin-top: 1px;
    border-top: 1px solid #f4f6f9;
}

.cover-share a .icu {
    color: #8a92a9;
    padding: 4px;
    margin: 4px 25px;
    font-size: 18px !important;
}


/**
顶部导航
 */
.top-nav {
    position: relative;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 5px;
    overflow: hidden;
}

.top-nav ul {
    display: -webkit-box;
    overflow-x: scroll;
    -webkit-backface-visibility: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
}

.top-nav ul::-webkit-scrollbar {
    display: none;
}

.top-nav ul li {
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    position: relative;
}

.top-nav ul li a {
    display: block;
    color: #232323;
    overflow: hidden;
    font-size: 1.3rem;
    text-align: center;
}

.top-nav ul li.active a {
    color: #ffffff;
}

.top-nav ul li.active a::before {
    position: absolute;
    content: "";
    background-color: #5291fc;
    color: #ffffff;
    width: 100%;
    height: 23px;
    left: 0;
    top: 11px;
    z-index: -1;
    border-radius: 3px;
}


/**
禁止长按复制
 */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

#_aihecong_chat_container_body ._aihecong_chat_button_body._aihecong_chat_button_mobile ._aihecong_chat_button_list {
    height: 44px !important;
    width: 44px !important;
    line-height: 44px !important;
}

#_aihecong_chat_container_body ._aihecong_chat_button_body._aihecong_chat_button_mobile ._aihecong_chat_button_list i {
    font-size: 20px !important;
}

/**
上一页下一页
 */
.next-prev {
    padding: 10px 15px;
    justify-content: space-between;
}

.next-prev > div {
    flex-shrink: 0;
    width: 100%;
}

.next-prev .prev-page {

}

.next-prev > div {
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    font-size: 12px;
    line-height: 2.4;
}

/**
VIP数据
 */
.vip-data .title {
    color: #ffffff;
    width: 120px;
    flex-shrink: 0;
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    flex-wrap: wrap;
    align-items: center;
    display: none;
}

.vip-data .title span {
    font-size: 12px;
}

.vip-data ul {
    width: 100%;
    flex-wrap: wrap;
    overflow: hidden;
}

.vip-data li {
    width: 33.333%;
    line-height: 20px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #888888;
    border-left: 1px solid #f5f5f5;
    margin-left: -1px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: -1px;
}

.vip-data li em {
    display: block;
    color: #FF5D4A;
    font-weight: bold;
    font-size: 14px;
}


/**
侧边栏网站列表
 */
.sidebar-site-list {

}

.sidebar-site-list > .item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-site-list .item img {
    width: 80px;
}

.sidebar-site-list .item .info {
    margin-left: 15px;
}

.sidebar-site-list .item .info .description {
    color: #999999;
    font-size: 12px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**
侧边栏文章
 */

.sidebar-article-list {
    padding: 5px 15px;
}

.sidebar-article-list ul li {
    line-height: 40px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.sidebar-article-list ul li a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-left: 20px;
}

.sidebar-article-list ul li:before {
    content: " ";
    width: 5px;
    height: 5px;
    border-radius: 0;
    top: 50%;
    left: 5px;
    margin-top: -2.5px;
    background-color: #000;
    position: absolute;
}

.right-main .sidebar-share,
.right-main .banner-service,
.right-main .common-signin {
    display: none;
}


.right-main .title {
    line-height: 45px;
    border-bottom: 1px solid #f8f8f8;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
}