@charset "utf-8";
@import url(init.css);
@import url(pub.css);
@import url(public.css);
@import url(faicon.css);
@import url(../fonts/simple-line-icons/css/simple-line-icons.css);
@import url(../fonts/app-icons/iconfont.css);

@font-face {
    font-family: politicaregular;
    src: url(../fonts/app-icons/politicaregular.ttf);
}

.error-body {
    text-align: center;
}

.defalut-img {
    width: 100%;
    height: 50rem;
    object-fit: cover;
}

.error-body h1 {
    margin-top: 5rem;
    font-size: 15rem;
    color: #27ae61;
    overflow: hidden;
}

.text-muted,
.text-uppercase {
    font-size: 4rem;
}

.img-title {
    position: relative;
}

.img-title .a-title {
    position: absolute;
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 2rem;
    color: #ffffff;
    display: block;
    bottom: 0;
    left: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 1rem;
    box-sizing: border-box;
}

.text-muted {
    font-size: 2rem;
}

.back-home {
    font-size: 2rem;
    color: #27ae61;
    height: 15rem;
    line-height: 5rem;
    display: inline-block;
}

.activity-root {}

.editer-info ul {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.editer-info ul li {
    display: inline-block;
    font-size: 1.6rem;
    height: 3rem;
    line-height: 3rem;
    font-weight: 600;
}

.right-menu {
    position: absolute;
    right: 0.2rem;

    box-sizing: border-box;
    display: block;
    z-index: 999;
}

.act-info {
    margin-left: 1rem;
}

.activity-content {
    line-height: 2;
    font-size: 1.6rem;
}

.activity-content p {
    width: 100%;
}

.activity-content p>img {
    width: 100%;
    height: auto;
    max-height: 60rem;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
    margin: 1rem auto;
}

.editer-info::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.5rem;
    border-bottom: 0.1rem dashed #cccccc;
}

.player-content {
    position: relative;
    height: 30rem;
    background-color: rgba(158, 158, 158, 0.2);
    border-radius: 1rem;
    z-index: 2;
    overflow: hidden;
    /* box-shadow: 0 30px 80px #656565; */
}

.act-run-tag {
    height: 5rem;
    width: 99%;
    font-size: 2rem;
    border: 0.1rem solid #27ae61;
    color: #27ae61;
    font-weight: 600;
    text-align: center;
    line-height: 5rem;
}

.act-stop-tag {
    height: 5rem;
    width: 100%;
    font-size: 2rem;
    border: 0.1rem solid #f40;
    color: #f40;
    font-weight: 600;
    text-align: center;
    line-height: 5rem;
}

.album-cover {
    width: 11.5rem;
    height: 11.5rem;
    border-radius: 50%;
    position: absolute;
    top: 8%;
    left: 50%;
    box-shadow: 0 0 0 1rem #fff;
    overflow: hidden;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.play-pause {
    margin-top: 17rem;
    text-align: center;
}

.play-pause i {
    color: #27ae61;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.player-track {
    margin-top: 1rem;
}

.album-cover.active img.active {
    animation: rotateAlbumCover 3s linear infinite;
    animation-fill-mode: forwards;
}

.album-cover::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #d6dee6;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    margin: -10px auto auto auto;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 1;
}

.album-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.album-name {
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.track-name {
    color: #888;
    font-size: 13px;
    margin: 3px 0 12px 0;
}

.track-time {
    height: 12px;
    line-height: 12px;
    margin-bottom: 4px;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.current-time {
    float: left;
}

.current-time,
.total-time {
    color: #ff668f;
    font-size: 11px;
    transition: 0.3s ease;
}

.hover-time {
    position: absolute;
    top: -30px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
}

.total-time {
    float: right;
}

.current-time,
.total-time {
    color: #ff668f;
    font-size: 11px;
    transition: 0.3s ease;
}

.progress-box {
    position: relative;
    height: 4px;
    background-color: #ead2d7;
    border-radius: 4px;
    width: 90%;
    margin: 0 auto;
}

.progress-bar {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fd6d94;
    border-radius: 4px;
    z-index: 1;
    width: 0;
    transition: width 0.2s ease;
}

/* 定义动画 */
@keyframes rotateAlbumCover {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.news-comm h3 {
    font-size: 2rem;
    font-weight: 800px;
    line-height: 2rem;
    padding: 2rem 0;
    display: inline-block;
}

.total_comm {
    margin-left: 3rem;
}

.news-comm textarea {
    width: 100%;
    font-size: 1.8rem;
    border: 0.1rem solid #aaaaaa;
    resize: none;
    outline: none;
    box-sizing: border-box;
    padding: 1rem;
    border-radius: 0.5rem;
}

.submit-btn {
    text-align: right;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.submit-btn button {
    height: 4rem;
    width: 20rem;
    font-size: 1.8rem;
    line-height: 4rem;
    color: #fff;
    background-color: #27ae61;
    outline: none;
    border: none;
    transition: all 0.5s;
    cursor: pointer;
    margin-right: 0.1rem;
}

.submit-btn button:hover {
    color: #27ae61;
    background-color: #fff;
    outline: 1px solid #27ae61;
    transition: all 0.5s;
}

.comment h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.6rem;
    padding: 1rem 0 2rem 0;
}

.comment {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.comment .usericon {
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.comment-item {
    padding: 2rem 1.5rem 2rem 2rem;
    background-color: #f6f6f6;
    position: relative;
    margin-bottom: 3rem;
}

.usericon {
    float: left;
}

.post-info {
    font-size: 1.6rem;
    padding-left: 10rem;
    padding-bottom: 0.5rem;
    line-height: 1.6;
}

.comm-time {
    color: #aaa;
}

.comm-txt {
    margin-top: 15px;
}

.comm-by-user {
    width: 100px;
}

.post-info span:nth-child(-n + 2) {
    margin-right: 30px;
}

.forums-page .mobile-page {
    display: none;
}

.forums-page .pc-page {
    display: block;
}

.forums-page {
    clear: both;
    margin-top: 3rem;
}

.forums-page ul {
    text-align: center;
}

.forums-page ul> :nth-last-child(n + 2) {
    margin-right: 15px;
}

.forums-page ul li {
    height: 36px;

    display: inline-block;
    line-height: 36px;
    text-align: center;
    border: 1px solid #bcbcbc;
    color: #777777;
}

.forums-page ul li a {
    display: inline-block;
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
}

.forums-page ul li:hover {
    background-color: #27ae61;
    border: 1px solid #27ae61;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.forums-page ul li:hover a {
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.page-active {
    background-color: #27ae61;
    border: 1px solid #27ae61;
    color: #fff;
}

.submit-btn img {
    width: 3rem;
    height: auto;
    cursor: pointer;
    margin-left: 0.5rem;
    float: left;
}

.arr-tip {
    position: absolute;
    left: 0;
    z-index: 99;
    top: 4.5rem;
    display: none;
    border: #f8f8f8 solid 1px;
    border-radius: 0.5rem;
    height: 30rem;
    box-shadow: 5px 5px 5px rgba(48, 54, 61, 0.3);
}

.arr-tip::after {
    content: "";
    top: -2rem;
    left: 2rem;
    border: solid transparent;
    position: absolute;
    border-color: transparent;
    border-bottom-color: #f2f2f2;
    border-width: 1rem;
    margin-left: -1rem;
    z-index: 1;
}

.main-emoji {
    border-radius: 0.5rem;
    overflow-y: auto;
    height: 30rem;
    width: 55rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    background-color: #f2f2f2;
    font-size: 3rem;
    cursor: pointer;
    box-sizing: border-box;
}

.like-active {
    color: #f40 !important;
}

.main-emoji>span {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
}

.like-view {
    text-align: center;
    font-size: 1.8rem;
    padding-top: 3rem;
}

.like-view>i {
    font-size: 3rem;
}

#SpanElm {
    font-size: 2rem;
}

.no-comment {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16rem;

    background-color: #f8f8f8;
    border-radius: 0.6rem;
    text-align: center;
    flex-direction: column;
}

.no-comment img {
    width: 8rem;
    height: auto;

}

.no-comment span {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* 超小设备（手机，小于 576px） */
@media (max-width: 768.98px) {
    .right-menu {
        position: fixed;
        top: unset;
        left: 0;
        bottom: 0;
    }

    .act-info {
        margin-left: 0rem;
    }

    .album-cover {
        top: 12%;
        width: 4rem;
        height: 4rem;
        box-shadow: 0 0 0 0.3rem #fff;
    }

    .album-cover::before {
        width: 6px;
        height: 6px;
        margin: -2px auto auto auto;
    }

    .play-pause {
        margin-top: 1.5rem;
        margin-left: 22rem;
    }

    .player-content {
        height: 7rem;
        background-color: #27ae61;
        border-radius: 1rem;
        box-shadow: 0 30px 80px #656565;
        border-radius: 1rem 1rem 0rem 0rem;
    }

    .player-track {
        margin-top: 1rem;
    }

    .album-name {
        color: #fff;
        display: inline-block;
        width: 18rem;
        position: absolute;
        top: 1.1rem;
        left: 2rem;
        font-weight: normal;
    }

    .play-pause i {
        color: #fff;
        font-size: 2rem;
    }

    .current-time,
    .total-time {
        color: #fff;
    }

    .progress-box {
        height: 2px;
        background-color: #fff;
    }

    .act-run-tag {
        height: auto;
        width: auto;
        font-size: 1.6rem;
        color: #27ae61;
        background-color: #fff;
        display: inline-block;
        margin-bottom: 0;
        padding: 0.5rem;
        border: none;
        line-height: normal;
        font-weight: normal;
    }

    .defalut-img {
        width: 100%;
        height: 25rem;
    }

    .editer-info ul {
        flex-wrap: wrap;
    }

    .editer-info ul li {
        width: 100%;
    }

    .editer-info ul li:nth-child(2n) {
        background-color: #f2f2f2;
    }

    .main-emoji {
        width: 97%;
        font-size: 3.2rem;
    }

    .main-emoji span {
        padding: 1rem;
    }

    .act-stop-tag {
        display: none;
    }
}


@media screen and (min-width: 769px) and (max-width: 992px) {
    .defalut-img {
        width: 100%;
        height: 35rem;
    }

    .right-menu {
        display: none;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .right-menu {
        top: 0;
        bottom: unset;
    }
}

@media screen and (min-width: 1201px) {

    .right-menu {
        top: 0;
        bottom: unset;
    }

}