* {
    transition: background-color .3s,color .1s
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffdeb7, #ffdde9);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffdde9, #ffdeb7);
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

html,body {
    min-height: 100%;
}

body {
    background-color: var(--BG-0);
    background-image: linear-gradient(-45deg, #ffe2e2, #f6efff, #caefff, #fffee2);
    background-size: 400%;
    color: var(--FG-0);
}

body.dark, body.sdEditorIframe {
    background-color: var(--BG-0);
    background-image: unset;
    background-size: 0;
    animation: none;
    color: var(--FG-0)
}

@keyframes bganimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body:before {
    content: "";
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    display: block;
    z-index: -1;
    position: fixed;
    opacity: .3
}

body.dark:before {
    background-image: unset
}

a {
    color: var(--FG);
    cursor: pointer
}

a:hover {
    text-decoration: none!important
}

img {
    max-width: 100%;
    border-radius: 5px;
}

input::-webkit-input-placeholder,select::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
    color: var(--FG-2)
}

hr,input::-webkit-input-placeholder {
    border-color: var(--FG-3)
}

code {
    color: var(--PURPLE-RED);
    background-color: var(--FG-5);
    padding: 5px;
    font-size: 14px;
    border-radius: 3px;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    background-color: var(--TAG-BACKGROUND-RED);
    color: var(--RED);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.alert i {
    margin-right: 5px;
    font-size: 18px;
}

.m-0 {
    margin: 0!important
}

.p-0 {
    padding: 0!important
}

.p-15 {
    padding: 15px!important
}

.b-0 {
    border: 0!important
}

.b-r-0 {
    border-radius: 0!important
}

.overflow-hidden {
    overflow: hidden
}

.yyhub-card {
    display: flex;
    flex-direction: column;
    background-color: var(--BG-2);
    border-radius: 8px;
    margin: auto;
}

.yyhub-card-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px 0;
    align-items: center;
}

.yyhub-card-header label {
    display: block;
    flex: 1;
    font-size: 16px;
}

.yyhub-card-header label i {
    margin-right: 3px;
    font-size: initial;
}

.yyhub-card-header a {
    display: inline-block;
    font-size: 12px;
    color: var(--FG-1);
}

.yyhub-card-content {
    padding: 15px;
}

.y_btn {
    padding: 5px 12px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box
}

.y_btn i {
    margin-right: 3px;
    font-size: inherit
}

.y_btn_1 {
    background-color: rgba(41,151,247,.1);
    color: #2997f7!important
}

.y_btn_2 {
    background-color: rgba(255,84,115,.1);
    color: #ff5473!important
}

.y_btn_3 {
    background-color: rgba(255,111,6,.1);
    color: #ff6f06!important
}

.y_btn_4 {
    background-color: rgba(213,72,245,.1);
    color: #e434e1!important
}

.y_btn_sm {
    padding: 5px 6px;
    font-size: 12px
}

.y_btn_sm i {
    font-size: 14px
}

.flex {
    display: flex
}

.colorful-make,.colorful-make:after,.colorful-make:before {
    position: absolute;
    background: rgb(0 215 255/5%);
    border-radius: 100%;
    content: " "
}

.colorful-make {
    bottom: 0;
    height: 290px;
    width: 323px;
    top: 60%
}

.colorful-make:before {
    right: -558px;
    bottom: 0;
    height: 300px;
    width: 677px;
    top: -325px;
    transform: rotate(341deg);
    opacity: .6
}

.colorful-make:after {
    left: -262px;
    bottom: 0;
    height: 214px;
    width: 402px;
    top: -170px;
    transform: rotate(326deg);
    opacity: .4
}

.layui-layer-title {
    border-color: var(--FG-3);
    color: var(--FG-0)
}

.layui-layer-content {
    overflow-x: hidden!important;
}

.layui-layer-tips .layui-layer-content {
    overflow: hidden;
}

.layui-layer-loading {
    background-color: transparent !important;
}

.layui-layer-loading .layui-layer-content {
    overflow: hidden;
}

.layui-layer-prompt .layui-layer-input {
    background-color: var(--BG-3);
    border-color: var(--FG-3);
    color: var(--FG-0)
}

.layui-input-affix .layui-icon {
    color: var(--FG-2)
}

.layui-input-affix .layui-icon:hover {
    color: var(--FG-3)
}

.layui-layer-btn a {
    background-color: var(--FG-1);
    border-color: var(--FG-3);
    color: var(--WHITE)
}

.layui-layer-btn a i {
    font-size: inherit;
    margin-right: 3px
}

.layui-upload-drag {
    border: 1px dashed var(--FG-2);
    background-color: var(--BG-3);
    color: var(--FG-1);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.layui-card,.layui-menu,.layui-panel {
    background-color: var(--BG-2);
    color: var(--FG-0);
    border-color: var(--FG-3)
}

.layui-menu li,.layui-menu-body-title,.layui-menu-body-title a {
    color: var(--FG-1)
}

.layui-menu li:hover {
    background-color: var(--BG-1)
}

.layui-card-header {
    border-color: var(--FG-3);
    color: var(--FG)
}

.layui-layer {
    background-color: var(--BG-2);
    border-color: var(--TAG-BACKGROUND-BLACK);
    /* overflow-x: hidden; */
}

.layui-fixbar li {
    color: inherit
}

.yyhub_search_layer {
    background-color: transparent;
    box-shadow: unset
}

.layui-form-pane .layui-form-label,.layui-input,.layui-menu li,.layui-select,.layui-textarea {
    background-color: var(--BG-2);
    border-color: var(--FG-3);
    color: var(--FG-1)
}

.layui-form-pane .layui-form-item[pane] {
    border-color: var(--FG-3)
}

.layui-form-pane .layui-form-label {
    color: var(--FG-1)
}

.layui-btn {
    border-color: var(--FG-3)
}

.layui-btn.flex {
    padding: 0 5px;
    display: flex;
    justify-content: space-between
}

.layui-btn-primary:hover {
    color: inherit
}

.layui-btn.flex span {
    flex: 1;
    text-align: left;
    padding: 0 5px
}

.layui-btn.flex span .preview {
    float: right;
    font-size: 12px;
    font-style: normal;
    color: var(--FG-2)
}

.layui-btn.flex>i {
    margin: 0!important
}

.yyhub_layer {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--BG-1);
    min-width: 380px
}

.yyhub_layer .layui-layer-title {
    padding: 35px 15px;
    text-align: center;
    background-color: var(--TAG-BACKGROUND-BLUE);
    height: auto;
    line-height: unset;
    color: var(--BLUE);
    cursor: default!important;
    border-color: rgb(122 122 122/5%);
    position: relative
}

.yyhub_layer .layui-layer-title i {
    font-size: 30px
}

.yyhub_layer .layui-layer-title label {
    display: block;
    font-size: 16px;
    margin-top: 10px
}

.yyhub_layer .layui-layer-title .layer-desc {
    margin-top: 10px;
    font-size: 13px
}

.yyhub_layer .layui-layer-content {
    padding: 10px 20px 20px;
    background-color: var(--BG-1)
}

.yyhub_layer .layui-layer-setwin span {
    color: var(--FG)
}

.yyhub_layer .layui-layer-btn a {
    background-color: var(--BG-5);
    color: var(--FG-0);
    border-color: rgb(204 204 204/5%)
}

.yyhub_layer .layui-layer-btn .layui-layer-btn0 {
    border-color: transparent;
    background-color: var(--BLUE);
    color: #fff
}

.yyhub_wrap {
    border-radius: 8px;
    padding: 15px;
    background-color: var(--BG-2);
    transition: .5s ease
}

.yyhub_wrap+.yyhub_wrap {
    margin-top: 15px
}

.yyhub_header {
    background-color: var(--BG-2);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 4px 10px rgb(0 0 0/5%);
    transition: .5s ease
}

.header_container {
    margin: auto;
    padding: 0 15px;
    max-width: 1330px;
    position: relative
}

.header_container:after,.header_container:before {
    content: "";
    display: table
}

.header_container:after {
    clear: both
}

.yyhub_header .logo {
    float: left;
    height: 50px;
    line-height: 50px;
    margin: 5px 0;
    text-align: center;
    font-size: 22px;
    color: var(--BLUE);
    font-weight: 700
}

.yyhub_header .logo a {
    color: inherit;
    display: block;
    outline: none;
}

.yyhub_header .navi {
    float: left;
    margin-left: 15px;
    height: 60px;
    display: none;
}

.layer_navi {
    box-shadow: none;
}

.layer_navi .navi-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layer_navi .navi-list li {
    line-height: 40px;
    text-align: center;
}

.layer_navi .navi-list li a {
    display: block;
}

.yyhub_header .navi .navi-list {
    display: flex;
    align-items: center;
    height: 60px
}

.yyhub_header .navi .navi-list li {
    position: relative
}

.yyhub_header .navi .navi-list li a {
    display: block;
    font-size: 15px;
    padding: 5px 10px
}

.yyhub_header .navi .navi-list li.active a {
    color: var(--BLUE)
}

.yyhub_header .tool_btns {
    height: 60px;
    position: absolute;
    display: flex;
    right: 15px;
    align-items: center;
}

.yyhub_header .tool_btns>* {
    display: inline-block;
    padding: 7px;
    line-height: 18px;
    background-color: var(--BG-3);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    text-align: center;
}

.yyhub_header .tool_btns a {
    display: block;
}

.yyhub_header .tool_btns>* i {
    font-size: 16px;
}

.yyhub_header .tool_btns>*+* {
    margin-left: 10px;
}

.yyhub_header .more {
    display: block;
}

.yyhub_header .tool_btns .publish {
    padding: 5px 8px;
    font-size: 12px;
    background-color: var(--BLUE);
    border-radius: 15px;
    color: #ffffff;
    width: auto;
    height: auto;
}

.yyhub_header .tool_btns .publish i {
    font-size: inherit;
    margin-right: 4px
}

.yyhub_header .tool_btns .account {
    padding: 0;
    overflow: hidden;
    width: 32px;
    height: 32px;
}

.yyhub_header .tool_btns .account img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.searchWrap {
    display: none;
    padding: 30px;
    background-color: transparent
}

.searInput {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    border-bottom: 1px solid #fff
}

.searInput .keyword {
    background-color: transparent;
    padding: 10px;
    flex: 1
}

.searInput .keyword,.searInput .submit {
    border: 0;
    color: #fff!important;
    box-sizing: border-box;
    height: 45px
}

.searInput .submit {
    width: 80px;
    background: 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.searInput .submit i {
    margin-right: 5px
}

.navi-child a {
    display: flex;
    align-items: center;
    color: var(--FG-0)
}

.navi-child a i {
    font-size: 22px;
    margin-right: 8px
}

.yyhub_main {
    padding-top: 75px;
    position: relative;
    z-index: 100
}

.yyhub_main:before {
    content: "\7b80\8a00\793e\533a";
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 12px;
    line-height: 40px;
    color: var(--FG-4);
}

.main_container {
    padding: 0 15px;
    margin: auto;
    position: relative;
    box-sizing: border-box
}

.main_container:after,.main_container:before {
    content: " ";
    display: table
}

.siteNotice {
    padding: 14px 18px;
    margin-bottom: 15px;
    background-color: var(--TAG-BACKGROUND-RED);
    color: var(--RED);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    line-height: 20px;
    font-size: 13px;
}

.siteNotice i {
    font-size: 28px;
    margin-right: 5px;
}

.siteNotice a {
    color: var(--BLUE);
    display: inline-block;
    padding: 0 3px;
}

.siteNotice hr {
    margin: 2px 0;
    border-color: var(--TAG-BACKGROUND-RED);
}

.notice_content {
    flex: 1;
}

.page_404 {
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding: 25px;
}

.page_404 i {
    font-size: 200px;
}

.main_container:after {
    clear: both
}

.yyhub_main .content_wrap {
    float: left;
    width: 100%
}

.yyhub_main .content_wrap .sort {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    margin-bottom: 15px;
    position: sticky;
    top: 70px;
    background-color: var(--BG-2);
    z-index: 90;
    border-radius: 6px;
    height: 45px;
    box-shadow: 0 5px 10px rgb(0 0 0/15%);
    transition: .5s ease
}

.yyhub_main .content_wrap .sort ul {
    white-space: nowrap;
    overflow-x: auto;
    padding: 0 15px 15px
}

.yyhub_main .content_wrap .sort ul li {
    font-size: 14px;
    display: inline-block
}

.yyhub_main .content_wrap .sort ul li a {
    display: block;
    padding: 8px 6px;
    color: var(--FG-1);
    line-height: 27px
}

.yyhub_main .content_wrap .sort ul li.active a {
    color: var(--BLUE);
    font-weight: 500;
    border-bottom: 2px solid var(--PURPLE-RED)
}

.yyhub_main .content_wrap .article {
    width: auto;
    min-height: 250px
}

.yyhub_main .content_wrap .article.setting {
    margin-right: 0;
    /* float: left; */
    /* overflow: hidden; */
    display: flow-root;
}

.yyhub_main .content_wrap .setting_sort {
    position: sticky !important;
    top: 75px !important;
    float: none;
}

.yyhub_main .side-bar {
    float: left;
    margin-left: -241px;
    width: 241px;
    position: sticky;
    top: 75px;
    display: none
}

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

.page_msg i {
    font-size: 15em;
    line-height: normal;
}

.page_msg i.sm {
    font-size: 10em
}

.page_msg h3,.page_msg label {
    padding: 15px;
    font-weight: unset;
    color: var(--FG-1);
    display: block;
    padding-bottom: 5px;
}

.page_msg p {
    color: var(--FG-2);
    margin-top: 5px;
}

.yyhub_list .author {
    display: flex;
    align-items: center
}

.yyhub_list .author a.avatar {
    width: 50px;
    display: inline-block;
    height: 50px;
    position: relative
}

.yyhub_list .author a.avatar .role {
    position: absolute;
    right: -3px;
    bottom: -3px
}

.yyhub_list .author a.avatar .role i {
    font-size: 23px
}

.yyhub_list .author a.avatar img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.yyhub_list .author .blogtop {
    margin-left: 15px;
    flex: 1
}

.yyhub_list .author .blogtop .nickname {
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center
}

.yyhub_list .author .blogtop .nickname i {
    margin-left: 5px;
    font-size: 17px
}

.yyhub_list .author .blogtop .nickname .medal {
    margin-left: 8px;
}

.yyhub_list .author .blogtop .date-views {
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px
}

.yyhub_list .author .blogtop .date-views span {
    color: var(--FG-1)
}

.yyhub_list .author .blogtop .date-views span+span:before {
    background-color: var(--FG);
    content: "";
    width: 4px;
    height: 4px;
    margin: 0 .5em;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    opacity: .3;
    vertical-align: .2em
}

.user_act {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.log-topflg i {
    font-size: inherit;
}

.yyhub_list .bloginfo {
    display: block;
    color: var(--FG-0);
    line-height: 1.6em;
    font-size: 14px;
    margin-top: 10px
}

.yyhub_list .bloginfo>*+* {
    margin-top: 4px;
}

.yyhub_list .bloginfo .log-title {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color: var(--FG-0);
}

.hasImage {
    margin-left: 10px;
    font-size: 18px;
}

.yyhub_list .bloginfo .log-description {
    /* margin-top: 3px; */
    color: var(--FG-1);
}

.blog_video {
    object-fit: cover;
    max-height: 300px;
    margin: auto;
    margin-top: 5px;
    display: block;
    border-radius: 6px;
}

.log-list-hide {
    background-color: var(--BG-5);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    color: var(--FG-2);
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 9px rgb(0 0 0/10%);
}

.log-list-hide.pay {
    padding-top: 33px;
    background-color: var(--BG-3)
}

.log-list-hide .hide-text {
    font-size: 15px
}

.log-list-hide .hide-tip {
    text-align: center;
    padding: 15px 0 10px;
    position: relative
}

.log-list-hide .hide-tip span:after,.log-list-hide .hide-tip span:before {
    content: "";
    position: absolute;
    width: 75px;
    border-top: 1px solid var(--FG-3);
    right: 110%;
    top: 49%
}

.log-list-hide .hide-tip span:after {
    left: 110%;
    right: unset
}

.log-list-hide .hide-tip span {
    font-size: 12px;
    position: relative;
    font-weight: 600
}

.log-list-hide .hide-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0
}

.log-list-hide .hide-btns a {
    margin: 0 5px
}

.showContent {
    background-color: var(--BG-3);
    padding: 15px;
    border-radius: 5px;
    border: 1px dashed var(--TAG-TEXT-BLUE);
    color: var(--FG-0);
}

.showContent label {
    display: block;
    font-size: 12px;
    color: var(--FG-2);
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    line-height: 1em;
    border-bottom: 1px solid rgb(0 0 0 / 3%);
}

.pay-view {
    background-color: var(--BG-2);
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    display: block
}

.pay-view .pay-type {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 15px;
    font-size: 12px;
    line-height: 16px;
    background-color: var(--PURPLE-RED);
    color: #fff;
    border-radius: 0 0 8px 0
}

.pay-view .pay-type i {
    font-size: inherit;
    margin-right: 3px
}

.pay-view .pay-amount {
    color: var(--ORANGERED);
    font-size: 16px;
    display: block;
    text-align: center
}

.pay-view .pay-amount i {
    font-size: 20px;
    font-weight: 500
}

.pay-view .pay-amount span {
    font-size: 50px;
    font-weight: 700;
    margin: 0 4px;
    display: inline-block;
    line-height: normal
}

.pay-view .pay-btn {
    text-align: right;
    margin-top: 15px
}

.pay-view .pay-btn a {
    width: 100%;
    padding: 4px 25px
}

.pay-view .pay-footer {
    border-top: 1px solid var(--FG-5);
    font-size: 12px;
    margin-top: 15px;
    padding: 12px 5px 0;
    color: var(--FG-2)
}

.pay_layer .layui-layer-title {
    color: var(--TAG-TEXT-ORANGE);
    background-color: var(--TAG-BACKGROUND-ORANGE)
}

.yyhub_list .bloginfo .log-topic {
    /* margin-top: 3px; */
}

.yyhub_list .bloginfo .log-topic a {
    display: inline-block;
    padding: 0 3px;
    color: var(--PURPLE-RED);
    font-weight: 700;
    font-size: 14px
}

.yyhub_list .log-img {
    display: flex;
    margin-top: 6px;
    gap: .25rem;
    flex-wrap: nowrap
}

.yyhub_list .log-img .log-img-item {
    flex-grow: 1;
    opacity: 1;
    --motion-scale: 1;
    transform: scale(1);
    overflow: hidden;
    border-radius: 0.5rem
}

.yyhub_list .log-img .log-img-item img {
    object-fit: cover;
    max-width: 100%;
    border-radius: .5rem;
    cursor: pointer;
    height: 100%;
    max-height: 398px
}

.yyhub_list .yyhub_list_foot {
    display: flex;
    margin-top: 10px
}

.yyhub_list .yyhub_list_foot .blog_sort {
    flex: 1
}

.yyhub_list .yyhub_list_foot .blog_sort a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 13px;
    background-color: var(--BG-3);
    border-radius: 15px;
    line-height: 20px
}

.yyhub_list .yyhub_list_foot .blog_sort a i {
    font-size: 13px;
    color: #fd4780;
    margin-right: 3px
}

.yyhub_list .yyhub_list_foot .blog_act {
    display: flex;
    font-size: 12px;
    align-items: center
}

.yyhub_list .yyhub_list_foot .blog_act>* {
    margin: 0 8px;
    cursor: pointer
}

.yyhub_list .yyhub_list_foot .blog_act .like .yyhub-unlike {
    color: #ff5473
}

.share_layer {
    background-color: var(--BG-3);
    border-radius: 8px;
}

.share_layer .layui-layer-content {
    background-color: transparent;
}

.share_layer .share_wrap img {
    width: 100px
}

.shareTips {
    color: rgb(129 129 129 / 75%);
    text-align: center;
    padding: 5px 0 8px 0;
    font-size: 14px;
}

.share_box {
    width: 350px;
}

.share_box .share_image {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}

.share_box .share_image>img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.share_box .share_title {
    padding: 8%;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
}

.share_box .share_foot {
    display: flex;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    padding-top: 0;
}

.share_box .share_foot .share_tips {
    flex: 1;
    margin-right: 15px;
}

.share_box .share_foot .share_tips p {
    margin: 10px 0;
    font-size: 13px;
}

.share_box .share_foot .shareQrcode {
    width: 100px;
    height: 100px;
}

.signinBtn {
    position: absolute;
    right: 0;
    bottom: 10px;
    background-color: #cef3ff;
    padding: 5px 10px 5px 14px;
    border-radius: 15px 0 0 15px;
    color: #00c3ff;
    font-size: 14px;
    cursor: pointer;
    z-index: 2
}

.signinBtn:hover {
    color: #34cfff
}

.signinBtn i {
    margin-right: 3px;
    font-size: 14px
}

.pagination {
    text-align: center;
    font-size: 16px
}

.pagination a {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--BG-3);
    border-radius: 3px
}

.pagination span {
    margin: 0 9px;
    color: var(--BLUE);
}

.blog_list_wrap {
    margin-bottom: 20px;
    background-color: var(--BG-2);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 15px;
}

.blog_list_head {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: row-reverse;
    align-items: center;
}

.blog_list_head .blog_list_cover {
    width: 115px;
    height: 115px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 15%);
}

.blog_list_cover_bg {
    position: absolute;
    left: -50px;
    top: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    -webkit-filter: blur(40px);
    filter: blur(40px);
    background-size: cover;
    background-position: 50%
}

.blog_list_head .blog_list_cover img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%
}

.blog_list_head .blog_list_info {
    flex: 1;
    margin-right: 1%
}

.blog_list_head .blog_list_info label {
    font-size: 12px;
    padding: 3px 6px;
    background-color: var(--PURPLE-RED);
    color: #fff;
    border-radius: 3px;
    display: inline-flex;
    align-items: center
}

.blog_list_head .blog_list_info label i {
    margin-right: 4px
}

.blog_list_head .blog_list_info h2 {
    margin-top: 5px;
    color: inherit;
    font-size: 19px
}

.blog_list_head .blog_list_info h2 i {
    margin-left: 3px;
    display: inline-block;
    font-size: 17px;
}

.sex_b {
    color: #63c8ff;
}

.sex_g {
    color: #ff49da;
}

.blog_list_head .blog_list_info p {
    margin-top: 5px;
    color: inherit;
    overflow: hidden;
    opacity: .8
}

.blog_list_head .blog_list_info p a.sortParent {
    font-size: 15px;
    display: inline-block;
    color: var(--PURPLE-RED);
}

.blog_list_head .blog_list_info p a.sortParent i {
    margin-right: 5px;
    font-size: inherit;
}

.blog_list_head .blog_list_info p span {
    font-size: 16px;
    margin: 0 1px;
    background-color: var(--WHITE);
    padding: 5px;
    display: inline-block;
    border-radius: 6px
}

.blog_list_wrap .childrenLink {
    margin-top: 4%;
    position: relative;
    z-index: 1;
    /* text-align: center; */
    display: flex;
    flex-wrap: wrap;
}

.blog_list_wrap .childrenLink a {
    display: flex;
    padding: 3px 6px;
    font-size: 14px;
    min-width: calc(20% - 12px);
    max-width: calc(50% - 12px);
    align-items: center;
    border-radius: 5px;
}

.blog_list_wrap .childrenLink a.thisSort {
    background-color: var(--BLUE);
    color: wheat;
    font-weight: bold;
}

.blog_list_wrap .childrenLink a i {
    font-size: inherit;
    margin-right: 5px;
    color: var(--RED);
}

.blog_list_wrap .childrenLink:after {
    content: "";
    /* clear: both; */
    /* display: table; */
}

.blog_list_head .blog_list_btns {
    margin-top: 10px;
    display: flex;
    align-items: center
}

.blog_list_head .blog_list_btns a {
    display: flex;
    padding: 7px 10px;
    background-color: var(--TAG-BACKGROUND-BLACK);
    align-items: center;
    height: 24px;
    border-radius: 3px;
    color: inherit;
    white-space: nowrap
}

.blog_list_head .blog_list_btns a+a {
    margin-left: 10px
}

.blog_list_head .blog_list_btns a img {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    margin-right: 7px
}

.blog_list_head .blog_list_btns a i {
    /* font-size: 12px; */
    margin-right: 4px
}

.blog_list_head .blog_list_btns a i.yyhub-add {
    margin-right: 4px
}

.blog_list_head .blog_list_btns a i.yyhub-right {
    margin-left: 4px
}

.blog_list_head .blog_list_btns a i.yyhub-unfollow {
    color: var(--RED);
    font-size: 16px
}

.blog_list_num {
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: 10px;
    display: none
}

.blog_list_num>div {
    padding: 10px 15px;
    font-size: 18px
}

.blog_list_num .read_num {
    border-left: 1px solid var(--FG-5)
}

.blog_list_num label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    opacity: .7;
    white-space: nowrap
}

.topic_list {
    margin-bottom: 15px
}

.topic_list>h2 {
    font-size: 18px;
    margin-bottom: 13px;
    padding: 7px 7px 7px 17px;
    position: relative
}

.topic_list>h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 16px;
    width: 3px;
    background-color: var(--PURPLE-RED);
    border-radius: 3px;
    margin-top: -8px
}

.item_wrap {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    flex-direction: row
}

.item_wrap .item {
    width: calc(50% - 6px);
    padding: 18px;
    border-radius: 8px;
    background-color: var(--BG-2);
    box-sizing: border-box
}

.item_wrap .item .item_cover {
    width: 60px;
    height: 60px;
    position: relative;
    float: left;
    border-radius: 50%;
    overflow: hidden;
}

.item_wrap .item .item_cover img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 108%;
    height: 108%;
    border-radius: 50%;
    max-width: inherit;
}

.item_wrap .item .item_info {
    margin-left: 70px;
}

.item_wrap .item .item_info .item_title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}

.item_wrap .item .item_info .item_title h2 {
    font-size: 15px;
}

.item_wrap .item .item_info>*+* {
    margin-top: 6px;
    display: block
}

.item_wrap .item .item_info .item_excerpt {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.item_wrap .item .item_info .item_footer span {
    display: inline-block;
    margin: 0 3px
}

.item_wrap .item .item_info .item_footer span i {
    margin-right: 3px;
    font-size: 14px
}

.yyhub_list.echo_log .author .avatar {
    width: 55px;
    height: 55px
}

.yyhub_list.echo_log .author {
    align-items: center
}

.yyhub_list.echo_log .bloginfo {
    margin-left: 65px;
    margin-top: 0
}

.yyhub_list.echo_log .bloginfo .yyhub_list_foot {
    margin-top: 5px
}

.breadcrumb {
    padding: 0 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 12px 0
}

.breadcrumb i {
    font-size: inherit
}

.breadcrumb>* {
    color: var(--FG-1)
}

.breadcrumb>span {
    color: var(--FG-2)
}

.breadcrumb>*+:before {
    content: "/";
    padding: 0 10px;
    color: var(--FG-3)
}

.log_content_wrap {
    padding: 25px 20px
}

.log_content_wrap .blog-title {
    font-size: 22px;
    display: flex;
    align-items: center;
}

.question {
    font-size: 12px;
    background-color: var(--ORANGE);
    color: var(--WHITE);
    margin-right: 8px;
    padding: 0px 8px;
    border-radius: 6px;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
}

.question i {
    margin-right: 3px;
    font-size: inherit;
}

.log_content_wrap .blog-title .question {
    padding: 5px 10px;
    border-radius: 10px 0;
    margin-top: -13px;
}

badge.topic {
    font-size: 12px;
    padding: 0 5px;
    display: inline-block;
    background-color: var(--PURPLE-RED);
    color: white;
    margin-right: 5px;
    border-radius: 4px;
}

badge.topic i {
    font-size: inherit;
    margin-right: 2px;
}

.log_content_wrap .blog-info {
    padding: 20px 0;
    border-bottom: 1px solid var(--FG-3);
    /* display: flex; */
    align-items: center;
    position: relative;
    color: var(--FG-1);
    overflow: hidden;
    line-height: 20px;
}

.log_content_wrap .blog-info>*+* {
    margin-left: 10px;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.log_content_wrap .blog-info>*+:before {
    content: "";
    width: 6px;
    display: inline-block;
    height: 6px;
    border-radius: 50%;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px
}

.log_content_wrap .blog-info .nickname {
    display: inline-flex;
    align-items: center
}

.log_content_wrap .blog-info .nickname i {
    margin-left: 2px
}

.log_content_wrap .blog-info .lognumber {
    /* position: absolute; */
    /* right: 0; */
    float: right;
}

.log_content_wrap .blog-info .lognumber:before {
    display: none
}

.log_content_wrap .blog-info .lognumber span {
    display: inline-block;
    padding: 0 2px;
    font-size: 14px
}

.log_content_wrap .blog-info .lognumber span i {
    font-weight: 700;
    font-size: inherit
}

.log_content_wrap .blog-info .edit i {
    font-size: 14px;
    color: var(--FG-2);
}

.log_content_wrap .blog-content {
    margin: 15px 0;
    line-height: 1.9em;
    word-break: break-all;
}

.log_content_wrap .blog-content iframe {
    width: 100%;
    min-height: 450px;
}

.QuestionReward {
    padding: 18px 22px;
    background-color: var(--TAG-BACKGROUND-BLUE);
    border-radius: 8px;
    color: var(--TAG-TEXT-ORANGE);
    border-left: 4px solid var(--BLUE);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 20%);
    box-shadow: 5px 5px 15px rgb(0 0 0 / 15%);
    position: relative;
}

.QuestionReward label {
    font-size: 16px;
}

.QuestionReward p {
    margin-top: 5px;
    font-size: 32px;
}

.QuestionReward p i {
    font-size: 24px;
    margin-right: 8px;
}

.QuestionOk {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    z-index: 5;
}

.QuestionOk i {
    font-size: 60px;
    color: red;
}

.blog-content>*+* {
    margin-top: 15px
}

.blog-content h1,.blog-content h2,.blog-content h3,.blog-content h4,.blog-content h5 {
    margin: 20px 0;
    font-weight: 700
}

.blog-content h1 {
    font-size: 22px
}

.blog-content h2 {
    font-size: 20px
}

.blog-content h3 {
    font-size: 18px;
    margin: 0;
    width: 100%;
}

.blog-content h4 {
    font-size: 16px
}

.blog-content h5,.blog-content h6 {
    font-size: 14px
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    min-width: 33.33%
}

.blog-content pre {
    background-color: var(--BG-3);
    color: var(--FG-1);
    border-radius: 5px
}

.blog-content pre code {
    display: block;
    color: inherit;
    background-color: var(--BG-3);
    border-color: var(--FG-3);
    border-radius: 0;
}

.log-description .vote-panel {
    margin-top: 6px
}

.vote-panel {
    padding: 18px;
    background-color: var(--BG-0);
    border-radius: 8px;
    display: block
}

.vote-panel .vote-title {
    padding: 0 7px;
    color: var(--FG-1)
}

.vote-panel .vote-title i {
    margin-right: 3px;
    color: var(--BLUE)
}

.vote-panel .vote-items {
    margin-top: 12px
}

.vote-panel .vote-items .vote-progress {
    line-height: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: var(--BG-2);
    font-size: 14px;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    overflow: hidden;
    cursor: pointer
}

.vote-panel .vote-items .vote-progress+.vote-progress {
    margin-top: 8px
}

.vote-panel .vote-items .vote-progress:nth-child(2) .progress-bar {
    background-color: var(--REDORANGE)
}

.vote-panel .vote-items .vote-progress:nth-child(3) .progress-bar {
    background-color: var(--TAG-TEXT-ORANGE)
}

.vote-panel .vote-items .vote-progress:nth-child(4) .progress-bar {
    background-color: var(--TAG-TEXT-GREEN)
}

.vote-panel .vote-items .vote-progress span.progress-percent,.vote-panel .vote-items .vote-progress span.progress-title {
    position: relative;
    z-index: 15;
    color: var(--FG-1)
}

.vote-panel .vote-items .vote-progress .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--TAG-TEXT-BLUE);
    border-radius: 15px;
    transition: width 1s ease
}

.vote-footer {
    font-size: 12px;
    margin-top: 10px;
    padding: 0 7px;
    color: var(--FG-1);
    line-height: 20px
}

.vote-footer span {
    position: relative;
    display: inline-block
}

.vote-footer span+span {
    margin-left: 7px;
    padding-left: 9px
}

.vote-footer span+span:before {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: 2px;
    background-color: var(--FG-2);
    top: 50%;
    margin-top: -2px;
    left: 0;
    margin-left: -2px
}

.blog_action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap
}

.blog_action a {
    padding: 3px 18px;
    margin: 1%;
    border-radius: 18px;
    display: inline-flex;
    align-items: center
}

.blog_action a i {
    margin-right: 3px;
    font-size: 20px;
    font-weight: 400
}

.widget+.widget {
    margin-top: 15px
}

.widget .widget-title {
    padding: 10px 8px;
    position: relative
}

.widget .widget-title h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700
}

.widget .unstyle-li {
    padding: 15px;
    margin: 0;
    background-color: var(--BG-2);
    border-radius: 7px
}

.widget .unstyle-li img {
    max-width: 100%;
    margin: 2px 0
}

.widget .unstyle-li .blog-lates,.widget .unstyle-li.links li {
    line-height: 1.8
}

.widget .unstyle-li .blog-lates a {
    color: var(--FG-1)
}

.widget .unstyle-li .widget-search-form {
    position: relative
}

.widget .unstyle-li .widget-search-form input.search {
    padding-right: 25%
}

.widget .unstyle-li .widget-search-form input.submit {
    width: 25%;
    height: 38px;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: 1px solid rgb(75 75 75/20%);
    z-index: 1
}

.widget .unstyle-li.archive a {
    display: block;
    color: #000;
    line-height: 1.8
}

.widget .unstyle-li .comment-info {
    padding: 15px;
    background-color: var(--BG-2);
    border-radius: 8px;
    display: block
}

.widget .unstyle-li .comment-info+li {
    /* margin-top:17px; */
}

.widget .unstyle-li .comment-info img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%
}

.widget .unstyle-li .comment-info .comm-avatar {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0
}

.widget .unstyle-li .comment-info .comm-avatar .comm-avatar-nt {
    flex: 1;
    margin-left: 10px
}

.widget .unstyle-li .comment-info .comm-avatar-nt span {
    display: block;
    font-size: 16px
}

.widget .unstyle-li .comment-info .comm-avatar-nt span.logcom-latest-time {
    font-size: 12px;
    opacity: .6;
    margin-top: 5px
}

.widget .unstyle-li .comment-info a {
    display: block;
    width: 100%;
    margin-top: 10px;
    color: var(--FG-1)
}

.widget .unstyle-li.log-classify-f ul {
    margin-top: 10px;
    padding-left: 1.5em
}

.widget .unstyle-li.log-classify-f a {
    color: var(--FG-1)
}

.widget .unstyle-li.log-classify-f li+li {
    margin-top: 10px
}

.widget .unstyle-li.twitter p {
    margin: 0;
    max-width: 100%
}

.widget .unstyle-li.twitter li {
    font-size: 14px;
    line-height: 1.4
}

.widget .unstyle-li.twitter li span {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    opacity: .6
}

.widget .unstyle-li.twitter li span+span {
    margin-left: 8px
}

.widget .unstyle-li.twitter li+li {
    margin-top: 15px;
    border-top: 1px solid rgb(0 0 0/10%);
    padding: 15px 0
}

.widget .unstyle-li.bloggerinfo {
    text-align: center;
    padding: 20px 15px
}

.widget.user-wrap {
    border-radius: 8px;
    background-color: var(--BG-2);
    overflow: hidden
}

.widget .userinfo-banner {
    padding-bottom: 50%;
    position: relative;
    overflow: hidden
}

.widget .userinfo-banner img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%
}

.widget .userinfo {
    padding: 15px;
    margin-top: -55px;
    position: relative;
    z-index: 1
}

.widget .userinfo .userinfo-wrap {
    text-align: center
}

.widget .userinfo .userinfo-wrap .user-avatar a {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.widget .userinfo .userinfo-wrap .user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.widget .userinfo .userinfo-wrap .userinfo-ndb {
    margin-top: 20px;
    margin-bottom: 10px
}

.widget .userinfo .userinfo-wrap .userinfo-name {
    display: flex;
    align-items: center;
    justify-content: center
}

.widget .userinfo .userinfo-wrap .userinfo-name a {
    padding: 0 5px;
    font-size: 16px
}

.widget .userinfo .userinfo-wrap .userinfo-name i {
    margin-left: 6px;
    font-size: 18px
}

.widget .userinfo .userinfo-wrap .userinfo-description {
    margin-top: 10px
}

.widget .userinfo .userinfo-wrap .userinfo-btns {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.widget .userinfo .userinfo-wrap .userinfo-btns a {
    display: inline-block;
    padding: 6px 15px;
    margin: 3px 5px;
    border-radius: 3px
}

.widget .userinfo .userinfo-wrap .userinfo-btns a i {
    font-size: 14px;
    margin-right: 3px;
}

.connect-btns {
    margin-top: 12px;
}

.connect-btns .connect-hr {
    margin-bottom: 12px;
    text-align: center;
}

.connect-btns .connect-hr span {
    font-size: 12px;
    color: var(--FG-2);
    position: relative;
    display: inline-block;
}

.connect-btns .connect-hr span:before, .connect-btns .connect-hr span:after {
    content: '';
    position: absolute;
    top: 49%;
    width: 55px;
    border-top: 1px solid var(--FG-3);
    left: 100%;
    margin-left: 10px;
}

.connect-btns .connect-hr span:after {
    left: auto;
    right: 100%;
    margin-right: 10px;
    margin-left: 0;
}

.connect-btns .connect {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.connect-btns a {
    display: block;
}

.connect-btns a i {
    font-size: 30px;
}

.widget .unstyle-li.bloggerinfo .blogger_bj {
    position: relative;
    width: 100%;
    height: 120px;
    margin: -15px -15px 0
}

.widget .unstyle-li.bloggerinfo .blogger_bj:after {
    content: "";
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: saturate(200%) blur(30px);
    backdrop-filter: saturate(200%) blur(30px);
    position: absolute;
    z-index: 1
}

.widget .unstyle-li.bloggerinfo .blogger_bj img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
    width: 100%;
    height: 100%
}

.widget .unstyle-li.bloggerinfo .blogger_avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto
}

.widget .unstyle-li.bloggerinfo .blogger_avatar a {
    display: block
}

.widget .unstyle-li.bloggerinfo .blogger_avatar a img {
    border-radius: 50%
}

.widget .unstyle-li.bloggerinfo .userinfo-name {
    display: block;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 100
}

.widget .unstyle-li.bloggerinfo .userinfo-descript {
    margin-top: 10px;
    font-size: 14px;
    opacity: .8
}

.widget .unstyle-li.tag-container {
    padding: 10px
}

.widget .unstyle-li.tag-container a {
    color: inherit
}

.widget .unstyle-li.tag-container span {
    font-size: 12px!important;
    display: inline-block;
    line-height: 1.5!important;
    margin: 2px 1px;
    padding: 5px 8px;
    background-color: var(--BG-3);
    border-radius: 2px;
    color: var(--FG-1)
}

.widget .unstyle-li.tag-container span:before {
    content: ""
}

#calendar {
    color: var(--FG-1);
}

.calendartop {
    letter-spacing: 3px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: var(--FG-1);
    line-height: 1.45
}

.calendartop a {
    font-weight: 100 !important;
    display: inline-block;
    text-align: center;
    padding: 0 5%;
    font-size: 1.4em
}

.calendar {
    margin-bottom: -10px;
    width: 100%
}

.calendar td {
    text-align: center;
    padding: 0;
    line-height: 1.3
}

.calendar td a:link {
    color: var(--BLUE);
    font-weight: bolder
}

.calendar td a:hover {
    color: var(--FG-0);
    text-decoration: none
}

.calendar tr {
    height: 2rem
}

#calendar .day {
    color: var(--WHITE);
    background: var(--BG-3);
    border-radius: 4px;
}

.sun {
    color: var(--FG-0);
}

.week {
    color: var(--FG-1);
}

.comment h6 {
    padding: 0 0 10px
}

.comment .comment-title {
    padding: 15px;
    position: relative;
    border-bottom: 1px solid var(--FG-3)
}

.comment .comment-title:after {
    content: "";
    position: absolute;
    left: 0;
    width: 180px;
    border-bottom: 3px solid var(--TAG-TEXT-RED);
    bottom: -1px
}

.comment .comment-list .item {
    display: flex;
    flex-direction: column;
    padding: 15px
}

.comment .comment-list .item.children {
    border-top: 1px solid var(--FG-3);
    margin-left: 15px;
    padding-bottom: 0;
    margin-top: 8px;
    padding-right: 0
}

.comment .comment-list .item+.item {
    border-top: 1px solid var(--FG-3)
}

.comment .comment-list .item .item-header {
    display: flex;
    align-items: center
}

.comment .comment-list .item .item-header .poster {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    /* overflow: hidden; */
    position: relative;
}

.comment .comment-list .item .item-header .poster img {
    height: 100%;
    border-radius: 50%
}

.comment .comment-list .item .item-header .userinfo {
    flex: 1;
    margin-left: 13px;
    padding-right: 35px;
    position: relative
}

.comment .comment-list .item .item-header .userinfo span.floor {
    position: absolute;
    right: 5px;
    top: calc(50% - 10px);
    font-size: 18px;
    color: var(--FG-1);
    display: flex;
    gap: 5px;
    align-items: center;
    transform: translateY(-50%);
}

.AdoptState i {
    display: inline-block;
    padding: 3px 5px;
    font-size: 44px;
    border-radius: 5px;
    color: red;
    font-style: normal;
}

.comment .comment-list .item .item-header .userinfo span.floor em {
    font-size: 12px;
    background-color: var(--ORANGE);
    padding: 3px 5px;
    border-radius: 3px;
    color: var(--WHITE);
    display: inline-block;
}

.comment .comment-list .item .item-header .userinfo span.floor em.floor_1 {
    background-color: var(--RED)
}

.comment .comment-list .item .item-header .userinfo span.floor em.floor_2 {
    background-color: var(--ORANGE)
}

.comment .comment-list .item .item-header .userinfo span.floor em.floor_3 {
    background-color: var(--BLUE)
}

.comment .comment-list .item .item-header .userinfo label {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 0
}

.comment .comment-list .item .item-header .userinfo label span {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    margin-left: 8px;
    color: var(--FG-1);
    vertical-align: bottom
}

.comment .comment-list .item .item-header .userinfo label span.admin {
    color: var(--TAG-TEXT-ORANGE)
}

.comment .comment-list .item .item-header .userinfo label span.level i {
    font-size: 22px
}

.comment .comment-list .item .item-header .userinfo p {
    margin-top: 4px;
    font-size: 12px;
    color: var(--FG-1);
    line-height: 20px;
    margin-bottom: 0
}

.comment .comment-list .item .item-content {
    display: block;
    color: var(--FG-0);
    padding: 10px 0
}

.comment .comment-list .item .item-foot {
    margin-top: 5px;
    text-align: right
}

.comment .comment-list .item .item-foot .adopt_comment {
    font-size: 12px;
    padding: 3px 8px;
    background-color: var(--TAG-TEXT-BLACK);
    color: var(--WHITE);
    border-radius: 4px;
    display: inline-block;
}

.comment .comment-list .item .item-foot .reply-btn,.like_comment {
    padding: 3px 8px;
    color: var(--FG-1);
    display: inline-block
}

.comment .comment-list .item .item-foot i {
    font-size: 16px;
    margin-right: 3px
}

.comment .comment-list .item .item-foot i.yyhub-unlike {
    color: var(--RED)
}

.comment .comment-form {
    padding: 10px 0
}

.not_allow_remark {
    text-align: center;
    color: var(--FG-2);
    padding: 35px 10px;
}

.comment .comment-form .form-textarea {
    box-sizing: border-box
}

.comment .comment-form .form-textarea textarea {
    width: 100%;
    height: 100px;
    background-color: var(--BG-3);
    padding: 12px;
    resize: unset;
    color: var(--FG-0);
    font-size: 14px;
    box-sizing: border-box;
    border-color: var(--FG-3);
    border-radius: 8px
}

.comment .comment-form .form-textarea .form-ac {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px
}

.comment .comment-form .form-textarea .form-ac .submit {
    padding: 8px 20px;
    background-color: var(--BLUE);
    color: var(--WHITE);
    font-size: 14px;
    border: 0;
    border-radius: 5px
}

.comment .comment-form .login-prompt {
    padding: 25px 0;
    text-align: center;
    color: var(--FG-2)
}

.comment .comment-form .login-prompt .login_btns {
    margin-top: 20px
}

.comment .comment-form .login-prompt .login_btns a {
    padding: 8px 30px;
    display: inline-flex;
    align-items: center;
    margin: 0 6px
}

.mySignin,.mySignin .myAvatar {
    display: flex;
    align-items: center
}

.mySignin .myAvatar {
    flex: 1;
    padding-right: 10px
}

.mySignin .myAvatar img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 5px
}

.mySignin .myAvatar span {
    flex: 1
}

.mySignin .signinNum {
    display: flex;
    line-height: 20px;
    align-items: center
}

.mySignin .signinNum span {
    background-color: var(--BLUE);
    color: var(--WHITE);
    margin: 0 4px;
    padding: 0 6px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block
}

.myData {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px -5px 0
}

.myData>div {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--BG-5);
    width: calc(50% - 40px);
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    box-shadow: 5px 5px 7px rgb(0 0 0/5%)
}

.myData label {
    font-size: 14px;
    margin-bottom: 8px
}

.myData .upgrade,.myData label {
    color: var(--FG-1);
    font-size: 12px
}

.myData .upgrade {
    display: inline-block;
    margin-left: 5px
}

.myData label i {
    margin-right: 3px
}

.myData span i {
    font-size: 20px
}

.signinGift {
    margin-top: 10px;
    padding: 13px;
    background-color: var(--BG-5);
    box-shadow: 5px 5px 7px rgb(0 0 0/5%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap
}

.signinGift label i {
    margin-right: 5px
}

.signinRule {
    display: flex;
    padding: 13px 8px;
    background-color: var(--BG-5);
    margin-top: 10px;
    border-radius: 5px;
    justify-content: space-around
}

.signinRule .day {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 12px
}

.signinRule .day+.day {
    margin-left: 2px
}

.signinRule .day span {
    display: flex;
    padding: 10px;
    background-color: var(--TAG-BACKGROUND-BLUE);
    color: var(--BLUE);
    border-radius: 3px;
    flex-direction: column;
    text-align: center
}

.signinRule .day span i {
    margin-bottom: 3px
}

.signinRule .day label {
    font-size: 12px;
    margin-top: 6px
}

.signinRule .day.yes {
    color: var(--BLUE)
}

.signinRule .day.yes span,.upGradeBtn {
    background-color: var(--BLUE);
    color: var(--WHITE)
}

.upGradeBtn {
    margin-top: 12px;
    display: flex;
    text-align: center;
    padding: 7px;
    border-radius: 20px;
    align-items: center;
    justify-content: center
}

.upGradeBtn i {
    margin-right: 4px;
    font-size: 16px
}

.upGradeBtn:hover {
    color: var(--WHITE)
}

.yyhub_layer .pay-desc {
    color: var(--FG-1);
    margin-top: 8px
}

.yyhub_layer .pay-desc label {
    padding: 2px 8px;
    background-color: var(--PURPLE-RED);
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    margin-right: 6px
}

.yyhub_layer .pay-desc label i {
    font-size: inherit;
    margin-right: 3px
}

.yyhub_layer .amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--BG-5);
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 5px 5px 7px rgb(0 0 0/3%);
    color: var(--FG-1)
}

.yyhub_layer .amount label {
    flex: 1
}

.yyhub_layer .amount span {
    font-size: 23px
}

.yyhub_layer .amount span i {
    margin-right: 3px
}

.yyhub_layer .myPoints {
    color: var(--BRAND)
}

.yyhub_layer .myPoints label {
    color: var(--ORANGE)
}

.yyhub_layer .goPayBtn {
    margin-top: 15px
}

.yyhub_layer .goPayBtn a {
    display: block;
    text-align: center;
    border-radius: 20px;
    background-color: var(--ORANGE);
    padding: 6px;
    color: var(--WHITE)
}

.yyhub_layer .goPayBtn a i {
    margin: 0 3px;
    font-size: inherit
}

.setPointsItem {
    margin-top: 15px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    column-count: 3;
}

.setPointsItem a {
    text-align: center;
    display: flex;
    padding: 18px 0;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: var(--BG-2);
    color: var(--FG-1);
    font-size: 14px;
    width: calc(33.33% - 6px);
    align-items: center;
    justify-content: center;
}

.setPointsItem a i {
    margin-right: 3px;
    display: inline-block;
}

.setPointsItem a.this {
    border-color: var(--ORANGE);
    color: var(--ORANGE);
}

.yyhub-footer {
    margin-top: 30px;
    padding: 40px 0 25px;
    background-color: var(--BG-1);
    color: var(--FG-2);
    text-align: center
}

.article_user {
    width: auto;
    min-height: 250px;
    display: flow-root
}

.user_left {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 12px;
    display: none
}

.user_row {
    display: flex;
    flex-wrap: wrap;
    margin: -6px
}

.user_row [class^=col-] {
    display: inline-block
}

.col-2 {
    width: 16.666%
}

.col-3 {
    width: 25%
}

.col-4 {
    width: 33.333%
}

.col-6 {
    width: 50%
}

.col-12 {
    width: 100%
}

.user-index .grid {
    padding: 25px 20px
}

.user-index .grid .data {
    margin-top: 20px;
    font-size: 26px
}

.user-index .grid .data i {
    font-size: 30px
}

.grid {
    background-color: var(--BG-2);
    border-radius: 8px;
    margin: 6px;
    padding: 12px 14px;
    overflow: hidden
}

.grid label {
    display: block;
    font-size: 14px;
    color: var(--FG-1)
}

.grid .data {
    display: flex;
    justify-content: space-between;
    color: var(--BLUE);
    font-size: 20px;
    margin-top: 6px
}

.grid .data span em.unit {
    color: var(--FG-1);
    font-size: 14px;
    margin-left: 5px;
    font-style: normal
}

.grid .data i {
    font-size: 22px
}

.grid .data.credits {
    color: var(--ORANGE)
}

.grid .data.lognum {
    color: var(--GREEN)
}

.grid .data.commnum {
    color: var(--PURPLE)
}

.grid .data.collect {
    color: var(--LINK)
}

.grid .data.concerns {
    color: var(--RED)
}

.grid .data.fans {
    color: var(--PURPLE-RED)
}

.grid .setting {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px
}

.settWrap {
    padding: 5px;
    text-align: center
}

.settWrap i {
    font-size: 30px
}

.settWrap label {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--FG-0)
}

.amount_flex {
    display: flex;
    align-items: center;
}

.amount_flex .amount {
    flex: 1;
    font-size: 42px;
    font-weight: bold;
    color: var(--ORANGE);
}

.amount_flex .amount i {
    color: var(--FG-1);
    font-weight: normal;
    font-size: 20px;
    margin-right: 5px;
}

.amount_btns {
    padding-left: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
}

.amount_btns span {
    display: block;
}

.amount_btns>*+* {
    margin-left: 5px;
}

.user_header {
    overflow: hidden;
    background-color: var(--BG-2);
    position: relative;
    margin: -15px -15px 25px
}

.user_header .banner {
    padding-bottom: 310px;
    background-position: 50%;
    background-size: cover;
    position: relative
}

.user_header .banner .user_btns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    padding: 0;
    background-color: rgb(0 0 0/35%)
}

.user_header .banner .user_btns .user_navi_btn {
    padding: 8px;
    color: #fff
}

.user_header .banner .user_btns .user_navi_btn i {
    font-size: 22px
}

.user_header .myInfo {
    display: flex;
    gap: 10px;
    padding: 25px;
    flex-direction: column;
    text-align: center
}

.user_header .myInfo .avatar {
    display: inline-block;
    position: relative
}

.user_header .myInfo .avatar img {
    margin-top: -60px;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    padding: 4px;
    background-color: var(--WHITE)
}

.user_header .myInfo .avatar a.upAvatar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: none;
    cursor: pointer
}

.user_header .myInfo .avatar a.upAvatar i {
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px #000
}

.user_header .myInfo .avatar a.upAvatar i em {
    font-style: normal;
    font-size: 14px;
    display: block;
    font-weight: 700;
    margin-top: 6px
}

.user_header .infoFlex {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px
}

.user_header .infoFlex .userData {
    flex: 1
}

.user_header .infoFlex .userData h3 {
    font-size: 18px;
    display: flex;
    align-items: center
}

.user_header .infoFlex .userData h3>* {
    margin-left: 10px;
}

.user_header .infoFlex .userData h3 i {
    margin-left: 5px;
    font-size: 18px
}

.user_header .infoFlex .userData h3 i.up_grade {
    margin-left: 10px;
    font-size: 14px;
    color: var(--FG-2)
}

.user_header .infoFlex .userData p {
    margin-top: 10px;
    color: var(--FG-1)
}

.user_header .infoFlex .userData p span {
    display: block;
    line-height: 22px
}

.user_header .infoFlex .userData span a.edit {
    margin-left: 5px;
    color: var(--FG-2);
    padding: 5px
}

.user_header .infoFlex .signinInfo a {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--TAG-BACKGROUND-BLUE);
    color: var(--BLUE);
    border-radius: 15px;
    cursor: pointer
}

.user_header .infoFlex .signinInfo a i {
    margin-right: 3px
}

.user_info_head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--FG-1)
}

.user_info_head .avatar img.userAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0 15px
}

.user_info_head .userdesc {
    flex: 1;
    margin-left: 11px
}

.user_info_head .userdesc h4 {
    font-size: 18px;
    display: flex;
    align-items: center
}

.user_info_head .userdesc h4 a {
    font-size: 12px;
    padding: 3px 5px;
    border: 1px solid var(--BLUE);
    color: var(--BLUE);
    border-radius: 5px;
    margin-left: 15px
}

.user_info_head .userdesc p {
    margin-top: 6px;
    font-size: 12px
}

.concerns_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.concerns_wrap .user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.concerns_wrap .user-info {
    display: flex;
    flex: 1;
    margin-left: 10px;
    flex-direction: column
}

.concerns_wrap .user-info .user-nickname {
    flex: 1;
    font-size: 14px
}

.concerns_wrap .user-info .user-nickname i {
    margin-left: 2px
}

.concerns_wrap .user-info .user-nickname .isMutual {
    font-size: 12px;
    padding: 4px 6px;
    float: right
}

.concerns_wrap .user-info .user-desc {
    margin-top: 3px;
    color: var(--FG-1);
    font-size: 12px
}

.userindex-item {
    padding: 13px 3px;
}

.userindex-item+.userindex-item {
    border-top: 1px solid var(--FG-3);
}

.userindex-item .author {
    display: block;
    font-size: 12px;
    line-height: 34px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.userindex-item .author img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    float: left;
}

.userindex-item .author span {
    font-weight: bold;
    margin: 0 5px;
    font-size: 14px;
}

.userindex-item .author a {
    color: var(--BLUE);
}

.userindex-item p {
    display: block;
    margin-top: 8px;
    padding: 8px;
    background-color: var(--BG-3);
    border-radius: 5px;
}

.user_page_title {
    margin-bottom: 15px;
    padding: 13px 25px;
    font-size: 18px;
    position: relative;
    color: var(--FG-0);
    background-color: var(--BG-2);
    border-radius: 5px;
}

.user_page_title:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 20px;
    background-color: var(--BLUE);
    bottom: 10px;
    top: 50%;
    left: 10px;
    margin-top: -10px;
    border-radius: 3px;
}

.pointsH3 {
    position: relative;
    padding-left: 15px;
    flex: 1;
    font-size: 18px;
}

.pointsH3:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 4px;
    background-color: var(--BLUE);
    left: 0;
    top: 50%;
    margin-top: -10px;
    border-radius: 3px;
}

.bindQQ {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.bindQQ i {
    font-size: 28px;
    margin-right: 8px;
    color: var(--FG-2);
}

.bindQQ i.yes {
    color: var(--BLUE);
}

.bindQQ a {
    color: var(--BLUE);
}

.trade_box {
    display: flex;
    align-items: center;
    padding: 15px 0
}

.trade_box+.trade_box {
    border-top: 1px solid var(--FG-5)
}

.trade_box>i {
    font-size: 50px;
    display: none
}

.trade_box .trade_info {
    flex: 1;
    margin-left: 8px
}

.trade_box .trade_info .trade_name {
    font-size: 15px;
    font-weight: 700
}

.trade_box .trade_info .trade_foot {
    margin-top: 7px;
    font-size: 12px;
    color: var(--FG-1)
}

.trade_box .trade_info .trade_foot span {
    display: inline-block;
    margin-right: 12px;
}

.trade_box .trade_info .trade_foot span+span {
}

.trade_box .trade_info .trade_foot span i {
    font-size: 14px;
    margin-right: 3px
}

.trade_box .trade_amount {
    font-size: 16px;
    color: var(--PURPLE-RED);
    font-weight: 700
}

.trade_box .trade_amount i {
    font-size: 20px;
    margin-right: 7px
}

.post_main {
    position: relative
}

.post_side {
    width: auto;
    margin-top: 15px
}

.post_side .layui-btn i {
    margin-right: 6px;
    font-size: 14px;
    display: inline-block;
}

.post_tips {
    padding: 20px!important;
    color: var(--FG-1);
    font-size: 13px;
    display: none
}

.post_tips h3 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--FG-3);
    padding-bottom: 12px
}

.post_tips p {
    line-height: 20px
}

.post_tips p+p {
    margin-top: 5px
}

.post_form button.disabled {
    pointer-events: none;
}

.post_form>*+* {
    margin-top: 10px
}

.post_form label {
    margin-bottom: 5px;
    display: block;
    padding: 0 5px;
    color: var(--FG-1);
    font-size: 12px
}

.writelog_bar {
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 9px;
    border: 1px solid var(--FG-3);
    border-radius: 3px;
}

.writelog_bar a {
    display: inline-flex;
    align-items: center;
    color: var(--BLUE);
}

.writelog_bar a i {
    font-size: inherit;
    margin-right: 4px;
}

.selected {
    color: var(--BLUE)
}

.editor-md-dialog>div {
    width: auto !important;
    min-width: 400px;
}

.selimg {
    width: 26px;
    max-height: 26px;
    margin-right: 5px
}

.preview_input, .vote_input, .video_input, .question_input {
    display: none
}

.preview_input.show,.vote_input.show,.video_input.show, .question_input.show {
    display: block
}

.vote_input input+input {
    margin-top: 5px
}

.addVoteBtn {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    display: block;
    font-size: 12px;
    color: var(--FG-2)
}

.post-label {
    display: block;
    margin-bottom: 3px;
    padding: 8px 10px;
    color: var(--FG-1)
}

.login-container {
    max-width: 350px;
    margin: 13% auto 0;
    padding: 30px;
    background-color: var(--BG-2);
    border-radius: 10px
}

.page-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 19px;
    color: var(--FG)
}

.QQloginMsg {
    font-size: 13px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--RED);
}

.login-other .layui-icon {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    top: 2px;
    font-size: 26px
}

.user_comment {
    padding: 15px 0;
    display: flex;
    color: var(--FG-1);
}

.user_comment label {
    margin-right: 15px;
    display: block;
    width: 80px;
    text-align: right;
}

.user_comment .comment_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user_comment .comment_blog {
    display: block;
    color: var(--FG);
}

.user_comment .comment_blog span {
    margin-right: 3px;
    color: var(--FG-1);
}

.user_comment .comment_content {
    font-size: 14px;
}

.user_comment .comment_content .comm_hide {
    display: inline-block;
    margin-right: 5px;
    color: var(--RED);
    font-weight: bold;
}

.comment_foot {
    font-size: 12px;
    text-align: right;
    padding: 0 10px;
}

.comment_foot a {
    color: var(--FG-2);
    padding: 0px 6px;
    display: inline-block;
}

.comment_foot a+a {
    margin-left: 4px;
}

.avatar_frame {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 52%);
    height: calc(100% + 52%);
    transform: translate(-50%, -50%);
}

.avatar_frame img {
    width: 100% !important;
    height: 100% !important;
}

.medal {
    display: inline-block;
}

.medal img {
    width: 18px;
    height: 18px;
}

.yyhub_layer.medal_layer_skin .layui-layer-content {
    padding: 15px;
}

.medal-layer {
    max-width: 500px;
}

.medal-layer .medal-cat-box {
    background-color: var(--BG-0);
    padding: 0 10px;
    border-radius: 6px;
}

.medal-layer .medal-cat-box+.medal-cat-box {
    margin-top: 15px;
}

.medal-layer .medal-cat-box .medal-title {
    text-align: center;
    margin-bottom: 10px;
}

.medal-layer .medal-cat-box .medal-title .medal-cat-name {
    padding: 8px 40px;
    display: inline-block;
    background-color: var(--PURPLE-RED);
    color: var(--WHITE);
    border-radius: 0 0 70% 70%;
}

.medal-layer .medal-cat-box .medal-list-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.medal-layer .medal-cat-box .medal-list-box .medal-list {
    width: calc(25% - 14px);
    margin: 10px 7px;
}

.medal-layer .medal-cat-box .medal-list-box .medal-list .medal-info {
    display: block;
    text-align: center;
    color: var(--FG-2);
}

.medal-layer .medal-cat-box .medal-list-box .medal-list .medal-info .medal-card {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    color: var(--FG-1);
    opacity: .6;
}

.medal-layer .medal-cat-box .medal-list-box .medal-list .medal-info .medal-card.medal-has {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.medal-layer .medal-cat-box .medal-list-box .medal-list .medal-info .medal-card img.medal-icon {
    max-width: 80px;
    max-height: 80px;
}

.medal-layer .medal-cat-box .medal-list-box .medal-list .medal-info .medal-card .medal-name {
    font-size: 13px;
    margin-top: 6px;
}

.medal_one_box {
    padding: 23px;
    position: relative;
}

.medal-bg {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 0;
    max-width: 320px;
    margin: auto;
    bottom: auto;
    opacity: .5;
}

.medal-bg img {
    width: 100%;
    height: 100%;
    transition: all .2s;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.medal-detail {
    position: relative;
    text-align: center;
}

.medal-detail img {
    height: 120px;
    max-width: 200px;
}

.medal-detail .medal-name {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

.medal-detail .medal-desc {
    margin-top: 15px;
    font-size: 12px;
    color: var(--FG-1);
}

.medal_btn {
    margin-top: 20px;
    text-align: center;
    display: flex;
}

.medal_btn a {
    padding: 8px 20px;
    flex: 1;
    background-color: var(--BLUE);
    color: var(--WHITE);
    border-radius: 20px;
}

.medal_has_msg {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--REDORANGE);
}

/*top*/
.y-top{}
.y-top .y-top-item{
    padding: 26px;
    display: flex;
    align-items: center;
}
.y-top .y-top-item .top-avatar{
    position: relative;
}
.y-top .y-top-item .top-avatar i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 95px;
}
.y-top .y-top-item .top-avatar img{
    width: 80px;
    border-radius: 50%;
}
.y-top .y-top-item .top-userinfo{
    flex: 1;
    margin-left: 15px;
}
.y-top .y-top-item .top-userinfo>*+*{
    margin-top: 6px;
}
.y-top .y-top-item .top-userinfo h3{}
.y-top .y-top-item .top-userinfo p{
    font-size: 14px;
    line-height: 22px;
}
.y-top .y-top-item .top-userinfo p i{
    font-size: 22px;
    margin-right: 4px;
}
.y-top .y-top-item .top-desc{
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.y-top .y-top-item .top-desc i{
    font-size: 24px;
    margin-right: 3px;
}
.y-top-navs{
    border-bottom: 1px solid rgb(139 139 139 / 10%);
    display: flex;
    justify-content: center;
    padding: 25px 15px;
}
.y-top-navs .top-nav{
    font-size: 16px;
    display: flex;
    align-items: center;
    margin: 0 7px;
    color: var(--FG-1);
}
.y-top-navs .top-nav i{
    display: none;
    font-size: 30px;
    margin-right: 4px;
}
.y-top-navs .top-nav.this{
    color: var(--YELLOW);
    font-size: 19px;
}
.y-top-navs .top-nav.this i{
    display: inline-block;
}



@media screen and (max-width: 550px) {
    .blog_list_head {
        flex-direction:column;
        text-align: center;
    }

    .blog_list_wrap {
        padding: 40px 15px;
    }

    .blog_list_head .blog_list_info {
        margin: 15px 0
    }

    .blog_list_head .blog_list_btns {
        justify-content: center
    }

    .blog_list_head .blog_list_cover {
        width: 180px;
        height: 180px
    }

    .blog_list_head .blog_list_info h2 {
        margin-top: 10px
    }

    .user_header .banner {
        padding-bottom: 280px;
    }

    .user_header .myInfo .avatar img {
        width: 80px;
        height: 80px;
        margin-top: -60px
    }

    .item_wrap .item,.user_row [class^=col-] {
        width: 100%
    }

    .grid .setting [class^=col-] {
        width: auto
    }

    .grid .setting {
        justify-content: space-around
    }
    .y-top .y-top-item .top-avatar i{
        font-size: 66px;
    }
    .y-top .y-top-item .top-userinfo{
        font-size: 13px;
    }
    .y-top .y-top-item .top-userinfo p{
        font-size: 12px;
    }
    .y-top .y-top-item .top-avatar img{
        width: 55px;
    }
    .y-top .y-top-item .top-desc{
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .main_container {
        width:100%
    }

    .yyhub_main .side-bar {
        display: none
    }

    .yyhub_main .content_wrap .article {
        margin-right: 0;
        margin-left: 135px
    }

    .yyhub_main .content_wrap .sort {
        position: fixed;
        left: auto;
        right: auto;
        width: 120px;
        top: auto;
        height: auto;
        position: sticky;
        float: left;
        top: 75px;
        margin-bottom: 0;
    }

    .yyhub_main .content_wrap .sort ul {
        text-align: center;
        padding: 8px 15px;
        background-color: var(--BG-2);
        display: flex;
        flex-direction: column;
        white-space: unset;
        line-height: normal
    }

    .yyhub_main .content_wrap .sort ul li {
        font-size: 16px
    }

    .yyhub_main .content_wrap .sort ul li a {
        padding: 8px 0
    }

    .yyhub_main .content_wrap .sort ul li.active a {
        border-bottom: 0
    }

    .yyhub_header .navi {
        display: block;
    }

    .yyhub_header .more {
        display: none;
    }

    .yyhub_list .author {
        align-items: flex-start
    }

    .yyhub_list .bloginfo {
        margin-left: 85px;
        margin-top: -20px
    }

    .yyhub_list .author a.avatar {
        width: 70px;
        height: 70px
    }

    .blog_list_head {
        flex-direction: unset
    }

    .blog_list_wrap {
        padding: 43px;
    }

    .blog_list_head .blog_list_cover {
        width: 125px;
        height: 125px
    }

    .blog_list_num {
        display: flex
    }

    .blog_list_head .blog_list_info {
        margin-left: 3%;
        margin-right: 0
    }

    .log_content_wrap .blog-content {
        font-size: 15px
    }

    .comment .comment-list .item .item-content {
        margin-left: 63px
    }

    .yyhub_list .yyhub_list_foot .blog_act {
        font-size: 14px
    }

    .children {
        justify-content: left;
    }

    .user_left {
        width: 240px;
        float: left;
        display: flex;
        position: sticky;
        top: 75px;
    }

    .article_user {
        margin-left: 255px
    }

    .user_header {
        border-radius: 8px;
        margin: auto auto 25px
    }

    .user_header .banner {
        padding-bottom: 40%
    }

    .user_header .myInfo {
        padding: 25px 35px;
        flex-direction: row;
        text-align: unset;
        gap: 20px
    }

    .user_header .myInfo .avatar:hover a.upAvatar {
        display: block
    }

    .user_header .myInfo .avatar img {
        margin-top: -70px;
        width: 140px;
        height: 140px
    }

    .user_header .infoFlex {
        flex-direction: row
    }

    .user_navi_btn {
        display: none
    }

    .post_main {
        padding-right: 315px
    }

    .post_side {
        width: 300px;
        float: right;
        position: absolute;
        right: 0;
        top: 0;
        margin-top: 0
    }

    .post_tips {
        display: block
    }

    .pay-view .pay-amount {
        text-align: left
    }

    .pay-view .pay-btn a {
        width: auto
    }

    .trade_box>i {
        display: block
    }

    .yyhub_main .content_wrap .setting_sort {
        float: left;
    }

    .yyhub_header .tool_btns>*+* {
        margin-left: 20px;
    }
}

@media screen and (min-width: 992px) {
    .main_container {
        width:960px
    }

    .yyhub_main .side-bar {
        display: block
    }

    .yyhub_main .content_wrap .article {
        margin-right: 256px;
        margin-left: 135px
    }

    .user_left {
        width: 280px
    }

    .article_user {
        margin-left: 295px
    }
}

@media screen and (min-width: 1200px) {
    .main_container {
        width:1160px
    }

    .yyhub_wrap {
        padding: 25px
    }

    .yyhub_main .side-bar {
        display: block;
        margin-left: -311px;
        width: 311px
    }

    .yyhub_main .content_wrap .article {
        margin-right: 326px;
        margin-left: 135px
    }

    .user_header .banner {
        padding-bottom: 32%
    }
}

:root {
    --BG-0: #ededed;
    --BG-1: #f7f7f7;
    --BG-2: #fff;
    --BG-3: #f7f7f7;
    --BG-4: #4c4c4c;
    --BG-5: #fff;
    --FG-0: rgba(0,0,0,0.9);
    --FG-HALF: rgba(0,0,0,0.9);
    --FG-1: rgba(0,0,0,0.55);
    --FG-2: rgba(0,0,0,0.3);
    --FG-3: rgba(0,0,0,0.1);
    --FG-4: rgba(0,0,0,0.15);
    --FG-5: rgba(0,0,0,0.05);
    --ORANGE: #fa9d3b;
    --YELLOW: #ffc300;
    --GREEN: #91d300;
    --LIGHTGREEN: #95ec69;
    --INDIGO: #1485ee;
    --PURPLE: #6467f0;
    --PURPLE-RED: #f064c0;
    --WHITE: #fff;
    --LINK: #576b95;
    --TEXTGREEN: #06ae56;
    --TIPS-BG: #fdf3d8;
    --TIPS-FG: #806520;
    --FG: #000;
    --BG: #fff;
    --TAG-TEXT-ORANGE: #fa9d3b;
    --TAG-TEXT-GREEN: #06ae56;
    --TAG-TEXT-BLUE: #10aeff;
    --TAG-TEXT-BLACK: rgba(0,0,0,0.5);
    --TAG-BACKGROUND-BLACK: rgba(0,0,0,0.05)
}

.dark,:root {
    --RED: #fa5151;
    --ORANGERED: #ff6146;
    --BRAND: #07c160;
    --BLUE: #10aeff;
    --TAG-TEXT-RED: rgba(250,81,81,0.6);
    --TAG-BACKGROUND-RED: rgba(250,81,81,0.1);
    --TAG-BACKGROUND-ORANGE: rgba(250,157,59,0.1);
    --TAG-BACKGROUND-GREEN: rgba(6,174,86,0.1);
    --TAG-BACKGROUND-BLUE: rgba(16,174,255,0.1);
    --REDORANGE: #ff6146
}

.dark {
    --BG-0: #111;
    --BG-1: #1e1e1e;
    --BG-2: #191919;
    --BG-3: #202020;
    --BG-4: #404040;
    --BG-5: #2c2c2c;
    --FG-0: hsla(0,0%,100%,0.8);
    --FG-HALF: hsla(0,0%,100%,0.6);
    --FG-1: hsla(0,0%,100%,0.5);
    --FG-2: hsla(0,0%,100%,0.3);
    --FG-3: hsla(0,0%,100%,0.1);
    --FG-4: hsla(0,0%,100%,0.15);
    --FG-5: hsla(0,0%,100%,0.1);
    --ORANGE: #c87d2f;
    --YELLOW: #cc9c00;
    --GREEN: #74a800;
    --LIGHTGREEN: #3eb575;
    --INDIGO: #1196ff;
    --PURPLE: #8183ff;
    --PURPLE-RED: #f064c3;
    --WHITE: hsla(0,0%,100%,0.8);
    --LINK: #7d90a9;
    --TEXTGREEN: #259c5c;
    --TIPS-BG: #4a4537;
    --TIPS-FG: #dfcfa4;
    --FG: #fff;
    --BG: #000;
    --TAG-TEXT-ORANGE: rgba(250,157,59,0.6);
    --TAG-TEXT-GREEN: rgba(6,174,86,0.6);
    --TAG-TEXT-BLUE: rgba(16,174,255,0.6);
    --TAG-TEXT-BLACK: hsla(0,0%,100%,0.5);
    --TAG-BACKGROUND-BLACK: hsla(0,0%,100%,0.05)
}
