@charset "utf-8";
/* CSS Document */
/* 默认 = 移动端（<768px） */

    /* 覆盖Bootstrap默认card背景，统一使用全局背景色 */
    .card {
        background-color: var(--backgroundColor) !important;
        border: 1px solid var(--borderColor) !important;
    }
    .card-body {
        background-color: var(--backgroundColor) !important;
    }

    .container{
        width:100%;
    }
    /*member*/
    .user-info{
        width:100%;
        height:auto;
        margin:5px auto;
        padding:20px;
        background:var(--backgroundColor);
        overflow:hidden;
    }
    .user-info .avatar{
        width:145px;
        height:100px;
        margin:0 auto;
        position:relative;
    }
    .user-border{
        width:30px;
        height:80%;
        border:10px solid var(--redColor);
        border-right:none;
        position:absolute;
        left:0;
        top:10%;
        bottom:10%;
    }
    /*.user-topline{
        width:30px;
        height:10px;
        background:var(--redColor);
        position:absolute;
        left:0;
        top:10px;
    }
    .user-bottomline{
        width:30px;
        height:10px;
        background:var(--redColor);
        position:absolute;
        left:0;
        bottom:10px;
    }*/
    .user-blackblock{
        width:40px;
        height:calc(80% - 20px);
        background:var(--blackColor);
        position:absolute;
        left:10px;
        top:calc(10% + 10px);
        bottom:calc(10% + 10px);
        z-index:3;
    }
    .user-info .avatar img{
        width:100px;
        height:100px;
        display:block;
        position:absolute;
        left:45px;
        top:0;
        bottom:0;
        z-index:2;
    }
    .user-info h3{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:25px;
        color:var(--titleColor);
        font-weight:bold;
        text-align:center;
        margin:0;
        overflow:hidden;
    }
    .user-intro{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        text-align:center;
        padding:20px 0 0;
        overflow:hidden;
    }
    .user-intro p{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        margin:0;
        padding:0 0 10px;
        overflow:hidden;
    }
    .member-profile-stats{
        display:grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:8px;
        margin:18px 0 0;
    }
    .member-profile-stats span,
    .member-profile-stats a{
        min-width:0;
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--statCardGradient);
        box-shadow:var(--cardShadow);
        padding:11px 8px;
        text-align:center;
        text-decoration:none;
    }
    .member-profile-stats a:hover{
        background:var(--statCardHoverGradient);
        text-decoration:none;
    }
    .member-profile-stats strong{
        display:block;
        color:var(--titleColor);
        font-size:20px;
        line-height:1;
    }
    .member-profile-stats em{
        display:block;
        color:var(--subTitleColor);
        font-size:12px;
        font-style:normal;
        margin-top:6px;
    }
    .member-profile-follow-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:6px;
        min-width:112px;
        height:36px;
        border:1px solid var(--themeColor);
        border-radius:4px;
        background:var(--themeColor);
        color:#fff;
        font-size:14px;
        margin:14px auto 0;
        cursor:pointer;
    }
    .member-profile-follow-btn:hover{
        background:var(--greenColor);
        border-color:var(--greenColor);
    }
    .member-profile-follow-btn.is-following{
        background:var(--cardBgColor);
        color:var(--themeColor);
    }
    .member-profile-follow-btn.is-loading{
        opacity:.65;
        pointer-events:none;
    }
    .member-profile-page{
        margin-top:0;
    }
    .member-profile-card{
        width:100%;
        margin:5px auto;
        overflow:hidden;
        border-radius:0;
    }
    .member-profile-cover{
        height:92px;
        background:var(--profileCoverGradient);
        position:relative;
    }
    .member-profile-cover:after{
        content:"";
        width:120px;
        height:120px;
        border:18px solid var(--decorCircleColor);
        border-radius:50%;
        position:absolute;
        right:-32px;
        top:-44px;
    }
    .member-profile-body{
        padding:0 16px 20px;
    }
    .member-profile-head{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        text-align:center;
        margin-top:-50px;
        position:relative;
        z-index:2;
    }
    .member-profile-avatar{
        width:108px;
        height:108px;
        padding:5px;
        border-radius:22px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        display:block;
    }
    .member-profile-avatar img{
        width:100%;
        height:100%;
        border-radius:17px;
        object-fit:cover;
        display:block;
    }
    .member-profile-identity h1{
        color:var(--titleColor);
        font-size:26px;
        font-weight:bold;
        line-height:1.25;
        margin:4px 0 8px;
    }
    .member-profile-kicker{
        color:var(--accentGreenColor);
        font-size:12px;
        font-weight:bold;
        letter-spacing:.08em;
    }
    .member-profile-badges{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:6px;
    }
    .member-profile-badges .badge{
        font-size:14px;
        line-height:1.4;
        padding:5px 9px;
    }
    .member-profile-actions{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }
    .member-profile-actions .btn,
    .member-profile-actions .member-profile-follow-btn{
        height:36px;
        min-width:108px;
        line-height:34px;
        padding:0 12px;
        margin:0;
        font-size:14px;
    }
    .member-profile-actions .member-profile-follow-btn{
        line-height:1;
    }
    .member-profile-detail-grid{
        margin-top:14px;
    }
    .member-profile-panel{
        height:100%;
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--cardBgColor);
        padding:16px;
        margin-bottom:12px;
        box-shadow:var(--cardShadow);
    }
    .member-profile-panel h2{
        color:var(--titleColor);
        font-size:16px;
        font-weight:bold;
        line-height:1.4;
        margin:0 0 12px;
    }
    .member-profile-panel h2 i{
        color:var(--accentGreenColor);
        margin-right:6px;
    }
    .member-profile-intro-text,
    .member-profile-empty{
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.8;
        margin:0;
    }
    .member-profile-contact{
        margin:0;
    }
    .member-profile-contact li{
        display:flex;
        align-items:center;
        gap:8px;
        min-height:34px;
        color:var(--subTitleColor);
        font-size:14px;
        border-bottom:1px dashed var(--borderColor);
    }
    .member-profile-contact li:last-child{
        border-bottom:none;
    }
    .member-profile-contact i{
        color:var(--accentGreenColor);
        font-size:16px;
    }
    .member-profile-contact span{
        min-width:58px;
        color:var(--lightColor);
        font-size:12px;
        font-weight:bold;
    }
    .member-profile-contact strong{
        color:var(--titleColor);
        font-size:14px;
        font-weight:normal;
        word-break:break-all;
    }
    .member-profile-meta{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
        border-top:1px solid var(--borderColor);
        color:var(--subTitleColor);
        font-size:13px;
        margin-top:4px;
        padding-top:14px;
    }
    .login{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        margin:5px auto;
        padding:20px;
    }
    .login-container{
        height:auto;
        margin:20px auto 0;
    }
    .login h4{
        width:100%;
        height:auto;
        line-height:100%;
        font-size:3.5rem;
        color:var(--titleColor);
        font-weight:bold;
        text-align:center;
        margin:0 auto 4rem;
    }
    .login .login-avatar{
        width:61px;
        height:50px;
        line-height:50px;
        font-size:25px;
        color:var(--titleColor);
        text-align: center;
        font-weight: bold;
        /*background:url('../img/icon_login_avatar.png') center center no-repeat;
        background-size:61px 50px;*/
        margin:0 auto 2rem;
    }
    .login-item{
        width:100%;
        height:4rem;
        margin:0 0 5px;
        padding:0;
        position:relative;
    }
    .login-item input.login-item-fontsize{
        width:100%;
        height:4rem;
        line-height:3.8rem;
        font-size:1.6rem;
        color:var(--lightColor);
        background:var(--deepColor);
        border:0.1rem solid var(--deepColor);
        padding:0 5px;
    }
    .login-item span.captcha{
        width:auto;
        height:3.8rem;
        position:absolute;
        right:1px;
        top:0;
        bottom:0;
        z-index:2;
    }
    .login-item span.captcha img{
        width:auto;
        height:3.8rem;
    }
    .login-btn{
        width:100%;
        height:auto;
        text-align:center;
        margin:3rem 0 5rem;
    }
    .login-btn .login-btn-fontsize{
        font-size:1.6rem;
    }
    .login-item .email-code-btn{
        height:calc(4rem - 0.2rem);
        line-height:1;
        font-size:1.2rem;
        position:absolute;
        right:1px;
        top:1px;
        bottom:1px;
        z-index:2;
    }
    .login-message{
        min-height:2rem;
        line-height:2rem;
        font-size:1.2rem;
        margin:5px 0 0;
    }
    .login-tips{
        line-height:140%;
        font-size:1.4rem;
        color:var(--lightColor);
        text-align:center;
    }
    .member-menu{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        display:block;
        margin:5px auto;
        padding:0 15px;
    }
    .member-menu a{
        width:auto;
        height:3.5rem;
        line-height:3.5rem;
        font-size:1.6rem;
        color:var(--lightColor);
        text-align:center;
        display:inline-block;
        float:left;
        padding:0 5px;
    }
    .member-center-menu{
        display:flex !important;
        flex-wrap:wrap !important;
        gap:8px !important;
        border-radius:8px;
        margin:5px auto !important;
        padding:10px !important;
        background:var(--backgroundColor) !important;
    }
    .member-center-menu .nav-link{
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        float:none !important;
        width:auto !important;
        height:36px !important;
        line-height:20px !important;
        border:1px solid var(--borderColor) !important;
        border-radius:6px !important;
        background:var(--deepColor) !important;
        color:var(--lightColor) !important;
        font-size:14px !important;
        font-weight:500 !important;
        margin:0 !important;
        padding:0 14px !important;
        text-decoration:none !important;
        transition:all 0.2s !important;
    }
    .member-center-menu .nav-link i{
        color:var(--themeColor);
        margin-right:6px;
    }
    .member-center-menu .nav-link:hover{
        border-color:var(--themeColor) !important;
        background:var(--themeColor) !important;
        color:#fff !important;
    }
    .member-center-menu .nav-link.active{
        border-color:var(--themeColor) !important;
        background:var(--themeColor) !important;
        color:#fff !important;
    }
    .member-center-menu .nav-link:hover i,
    .member-center-menu .nav-link.active i{
        color:#fff;
    }
    .member-dashboard{
        width:100%;
        margin:0 auto 5px;
        padding:16px;
        overflow:hidden;
    }
    .member-dashboard-hero{
        display:flex;
        flex-direction:column;
        gap:16px;
        border-radius:16px;
        background:var(--heroGradient);
        padding:16px;
        position:relative;
        overflow:hidden;
    }
    .member-dashboard-hero:after{
        content:"";
        width:150px;
        height:150px;
        border:20px solid var(--decorCircleColorLarge);
        border-radius:50%;
        position:absolute;
        right:-48px;
        top:-62px;
    }
    .member-dashboard-user{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        text-align:center;
        position:relative;
        z-index:2;
    }
    .member-dashboard-avatar{
        width:96px;
        height:96px;
        padding:5px;
        border-radius:22px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        display:block;
    }
    .member-dashboard-avatar img{
        width:100%;
        height:100%;
        border-radius:17px;
        object-fit:cover;
        display:block;
    }
    .member-dashboard-kicker,
    .member-dashboard-panel-head span{
        color:var(--accentGreenColor);
        font-size:12px;
        font-weight:bold;
        letter-spacing:.08em;
    }
    .member-dashboard-user h1{
        color:var(--titleColor);
        font-size:26px;
        font-weight:bold;
        line-height:1.25;
        margin:4px 0 8px;
    }
    .member-dashboard-user p{
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.7;
        margin:0;
    }
    .member-dashboard-user .badge{
        font-size:14px;
        padding:5px 9px;
    }
    .member-dashboard-actions{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
        position:relative;
        z-index:2;
    }
    .member-dashboard-actions .btn{
        height:36px;
        line-height:34px;
        font-size:14px;
        padding:0 12px;
    }
    .member-dashboard-actions .member-btn-outline{
        background:transparent;
        border:1.5px solid var(--titleColor);
        color:var(--titleColor);
        opacity:.8;
    }
    .member-dashboard-actions .member-btn-outline:hover{
        background:var(--tagBgColor);
        border-color:var(--titleColor);
        color:var(--titleColor);
        opacity:1;
    }
    .member-dashboard-stats{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:10px;
        margin:12px 0;
    }
    .member-dashboard-stats a{
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        color:var(--subTitleColor);
        padding:14px 10px;
        text-align:center;
        text-decoration:none;
    }
    .member-dashboard-stats a:hover{
        border-color:var(--accentGreenColor);
        background:var(--emptyBgColor);
        text-decoration:none;
    }
    .member-dashboard-stats i{
        color:var(--accentGreenColor);
        display:block;
        font-size:20px;
        line-height:1;
        margin-bottom:8px;
    }
    .member-dashboard-stats strong{
        color:var(--titleColor);
        display:block;
        font-size:24px;
        line-height:1;
    }
    .member-dashboard-stats span{
        color:var(--subTitleColor);
        display:block;
        font-size:13px;
        margin-top:7px;
    }
    .member-dashboard-grid{
        margin:0 -5px 20px;
        overflow:hidden;
    }
    .member-dashboard-grid > [class*="col-"]{
        padding-left:5px;
        padding-right:5px;
    }
    .member-dashboard-panel{
        border:1px solid var(--borderColor);
        border-radius:16px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        margin-bottom:12px;
        padding:16px;
    }
    .member-dashboard-panel-head{
        margin-bottom:14px;
    }
    .member-dashboard-panel-head h2{
        color:var(--titleColor);
        font-size:18px;
        font-weight:bold;
        line-height:1.35;
        margin:4px 0 0;
    }
    .member-dashboard-progress{
        display:flex;
        align-items:center;
        gap:12px;
        margin-bottom:12px;
    }
    .member-dashboard-progress strong{
        color:var(--titleColor);
        font-size:24px;
        line-height:1;
        min-width:58px;
    }
    .member-dashboard-progress .progress{
        flex:1 1 auto;
        height:10px;
        border-radius:999px;
        background:var(--progressBgColor);
    }
    .member-dashboard-muted{
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.7;
        margin:0 0 10px;
    }
    .member-dashboard-tags{
        display:flex;
        flex-wrap:wrap;
        gap:6px;
        margin:0 0 12px;
    }
    .member-dashboard-tags span{
        border-radius:999px;
        background:var(--tagBgColor);
        color:var(--tagTextColor);
        font-size:13px;
        padding:4px 10px;
    }
    .member-dashboard-shortcuts{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }
    .member-dashboard-shortcuts a{
        display:grid;
        grid-template-columns:38px 1fr;
        column-gap:10px;
        border:1px solid var(--borderColor);
        border-radius:12px;
        color:var(--subTitleColor);
        padding:12px;
        text-decoration:none;
    }
    .member-dashboard-shortcuts a:hover{
        border-color:var(--accentGreenColor);
        background:var(--emptyBgColor);
        text-decoration:none;
    }
    .member-dashboard-shortcuts i{
        grid-row:1 / span 2;
        width:38px;
        height:38px;
        border-radius:12px;
        background:var(--iconBgColor);
        color:var(--accentGreenColor);
        font-size:18px;
        line-height:38px;
        text-align:center;
    }
    .member-dashboard-shortcuts strong{
        color:var(--titleColor);
        font-size:15px;
        line-height:1.3;
    }
    .member-dashboard-shortcuts span{
        color:var(--subTitleColor);
        font-size:13px;
        line-height:1.5;
    }
    .member-dashboard-empty{
        border:1px dashed var(--borderColor);
        border-radius:14px;
        background:var(--emptyBgColor);
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.7;
        padding:22px 12px;
        text-align:center;
    }
    .member-dashboard-empty i{
        color:var(--accentGreenColor);
        font-size:32px;
    }
    .member-dashboard-empty p{
        margin:8px 0 12px;
    }
    .member-dashboard-favorites{
        display:grid;
        gap:10px;
    }
    .member-dashboard-favorites article{
        display:grid;
        grid-template-columns:86px 1fr;
        gap:12px;
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--cardBgColor);
        padding:10px;
    }
    .member-dashboard-favorite-thumb{
        width:86px;
        height:64px;
        border-radius:10px;
        background:var(--thumbBgColor);
        overflow:hidden;
        display:block;
    }
    .member-dashboard-favorite-thumb img,
    .member-dashboard-favorite-thumb span{
        width:100%;
        height:100%;
        display:block;
    }
    .member-dashboard-favorite-thumb img{
        object-fit:cover;
    }
    .member-dashboard-favorite-thumb span{
        color:var(--accentGreenColor);
        font-size:24px;
        line-height:64px;
        text-align:center;
    }
    .member-dashboard-favorite-meta{
        display:flex;
        flex-wrap:wrap;
        align-items:center;
        gap:6px;
        margin-bottom:6px;
    }
    .member-dashboard-favorite-meta .badge{
        font-size:12px;
        padding:4px 7px;
    }
    .member-dashboard-favorite-meta em{
        color:var(--lightColor);
        font-size:12px;
        font-style:normal;
    }
    .member-dashboard-favorites h3{
        font-size:15px;
        font-weight:bold;
        line-height:1.5;
        margin:0;
    }
    .member-dashboard-favorites h3 a{
        color:var(--titleColor);
        text-decoration:none;
    }
    .member-dashboard-favorites h3 a:hover,
    .member-dashboard-more:hover{
        color:var(--tagTextColor);
        text-decoration:none;
    }
    .member-dashboard-more{
        color:var(--accentGreenColor);
        display:inline-block;
        font-size:14px;
        margin-top:12px;
        text-decoration:none;
    }
    .contribute-center-menu{
        margin-top:5px !important;
    }
    .contribute-manage{
        width:100%;
        margin:0 auto 5px;
        padding:16px;
        overflow:hidden;
    }
    .contribute-manage-head{
        display:flex;
        flex-direction:column;
        gap:12px;
        border-radius:16px;
        background:var(--heroGradient);
        margin-bottom:12px;
        padding:16px;
    }
    .contribute-manage-head span{
        color:var(--accentGreenColor);
        display:block;
        font-size:12px;
        font-weight:bold;
        letter-spacing:.08em;
        line-height:1.4;
        text-transform:uppercase;
    }
    .contribute-manage-head h2{
        color:var(--titleColor);
        font-size:22px;
        font-weight:bold;
        line-height:1.3;
        margin:4px 0 6px;
    }
    .contribute-manage-head p{
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.7;
        margin:0;
    }
    .contribute-manage-total{
        align-self:flex-start;
        min-width:96px;
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        padding:10px 14px;
        text-align:center;
    }
    .contribute-manage-total strong{
        color:var(--titleColor);
        display:block;
        font-size:24px;
        line-height:1;
    }
    .contribute-manage-total span{
        color:var(--subTitleColor);
        font-size:13px;
        margin-top:6px;
    }
    .contribute-empty{
        border:1px dashed var(--borderColor);
        border-radius:14px;
        background:var(--emptyBgColor);
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.7;
        padding:28px 12px;
        text-align:center;
    }
    .contribute-empty i{
        color:var(--accentGreenColor);
        font-size:34px;
    }
    .contribute-empty p{
        margin:8px 0 12px;
    }
    .contribute-card-list{
        display:grid;
        gap:10px;
    }
    .contribute-card{
        border:1px solid var(--borderColor);
        border-radius:16px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        display:flex;
        flex-direction:column;
        gap:14px;
        padding:14px;
    }
    .contribute-card-kicker{
        display:flex;
        flex-wrap:wrap;
        gap:6px;
        margin-bottom:8px;
    }
    .contribute-card-kicker .badge{
        font-size:12px;
        line-height:1.3;
        padding:5px 8px;
    }
    .contribute-card h3{
        color:var(--titleColor);
        font-size:17px;
        font-weight:bold;
        line-height:1.55;
        margin:0;
    }
    .contribute-card h3 a{
        color:var(--titleColor);
        text-decoration:none;
    }
    .contribute-card h3 a:hover{
        color:var(--tagTextColor);
        text-decoration:none;
    }
    .contribute-review-reason{
        border-left:3px solid var(--yellowColor);
        background:rgba(255,185,9,.12);
        color:var(--lightColor);
        font-size:13px;
        line-height:1.6;
        margin:10px 0 0;
        padding:8px 10px;
    }
    .contribute-card-meta{
        display:flex;
        flex-wrap:wrap;
        gap:8px 12px;
        color:var(--subTitleColor);
        font-size:13px;
        line-height:1.5;
        margin-top:10px;
    }
    .contribute-card-meta i{
        color:var(--accentGreenColor);
    }
    .contribute-card-actions{
        display:flex;
        flex-wrap:wrap;
        gap:8px;
    }
    .contribute-card-actions form{
        margin:0;
    }
    .contribute-card-actions .btn{
        height:32px;
        line-height:30px;
        font-size:13px;
        padding:0 10px;
    }
    .contribute-tag-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }
    .contribute-tag-card{
        border:1px solid var(--borderColor);
        border-radius:14px;
        background:var(--cardBgColor);
        box-shadow:var(--cardShadow);
        display:grid;
        grid-template-columns:38px 1fr;
        column-gap:10px;
        padding:14px;
    }
    .contribute-tag-card i{
        grid-row:1 / span 2;
        width:38px;
        height:38px;
        border-radius:12px;
        background:var(--iconBgColor);
        color:var(--accentGreenColor);
        font-size:18px;
        line-height:38px;
        text-align:center;
    }
    .contribute-tag-card strong{
        color:var(--titleColor);
        font-size:15px;
        line-height:1.4;
    }
    .contribute-tag-card em{
        color:var(--subTitleColor);
        font-size:13px;
        font-style:normal;
        line-height:1.5;
    }
    .member-edit{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        display:block;
        margin:0 auto 5px;
        padding:20px 20px 50px;
    }
    .member-edit h2{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:2rem;
        color:var(--titleColor);
        font-weight:bold;
        border-bottom:1px dashed var(--lightColor);;
        margin-bottom:2.5rem;
        padding-bottom:5px;
    }
    .member-edit-head{
        border-bottom:1px dashed var(--lightColor);
        margin-bottom:2rem;
        padding-bottom:10px;
    }
    .member-edit-head span{
        display:block;
        color:var(--lightColor);
        font-size:14px;
        font-weight:500;
        letter-spacing:.08em;
        line-height:1.4;
        margin-bottom:4px;
        text-transform:uppercase;
    }
    .member-edit-head h2{
        border:0;
        font-size:20px;
        line-height:1.3;
        margin:0 0 6px;
        padding:0;
    }
    .member-edit-head p{
        color:var(--subTitleColor);
        font-size:14px;
        line-height:1.6;
        margin:0;
    }
    .member-edit .avatar{
        width:100%;
        height:auto;
        margin-bottom:25px;
        text-align:center;
    }
    .avatar-img{
        width:100px;
        height:100px;
        display:block;
        text-align:center;
        margin:0 auto 10px;
    }
    .avatar-img img{
        width:100px;
        height:100px;
        display:block;
    }
    .member-edit .avatar .upload-avatar{
        width:100px;
        height:auto;
        text-align:center;
        margin:0 auto 10px;
    }
    .member-edit .avatar .upload-avatar input{
    
    }
    .member-edit-item{
        margin:0 0 10px;
    }
    .member-edit label{
        height:32px;
        line-height:32px;
        font-size:14px;
        color:var(--lightColor);
        display:inline-block;
        margin:0;
        padding:0;
    }
    .disable-username{
        color:var(--lightColor);
        margin:0;
        padding:0;
    }
    .member-edit input{
        height:3.2rem;
        line-height:3rem;
        font-size:1.6rem;
        color:var(--lightColor);
        border:0.1rem solid var(--deepColor);
        background:var(--deepColor);
        padding:0 0 0 5px;
        display:inline-block;
    }
    .member-edit input.form-control{
        height:38px;
        line-height:36px;
        font-size:14px;
        padding:0 10px;
    }
    .member-edit textarea{
        height:9.2rem;
        line-height:1.6;
        font-size:14px;
        color:var(--lightColor);
        border:1px solid var(--deepColor);
        background:var(--deepColor);
        padding:8px 10px;
        display:inline-block;
    }
    .member-edit textarea.form-control{
        min-height:120px;
        line-height:1.6;
        padding:8px 10px;
    }
    .member-form-help{
        display:block;
        color:var(--subTitleColor);
        font-size:13px;
        line-height:1.5;
        margin-top:6px;
    }
    .member-edit-btn{
        width:100%;
        height:auto;
        margin:0;
        padding:0;
    }
	.member-edit-btn button{
		line-height:140%;
		font-size:14px;
		color:#fff;
	}
    .member-edit-fontsize{
        font-size:1.6rem;
        margin:0;
        padding:0;
    }

/* 桌面端（≥768px） */
@media screen and (min-width:768px){
    .container{
        max-width:1140px;
    }
    /*member*/
    .user-info{
        width:100%;
        height:auto;
        margin:5px auto;
        padding:20px;
        background:var(--backgroundColor);
        overflow:hidden;
    }
    .user-info .avatar{
        width:145px;
        height:100px;
        margin:0 auto;
        position:relative;
    }
    .user-border{
        width:30px;
        height:80%;
        border:10px solid var(--redColor);
        border-right:none;
        position:absolute;
        left:0;
        top:10%;
        bottom:10%;
    }
    /*.user-topline{
        width:30px;
        height:10px;
        background:var(--redColor);
        position:absolute;
        left:0;
        top:10px;
    }
    .user-bottomline{
        width:30px;
        height:10px;
        background:var(--redColor);
        position:absolute;
        left:0;
        bottom:10px;
    }*/
    .user-blackblock{
        width:40px;
        height:calc(80% - 20px);
        background:var(--blackColor);
        position:absolute;
        left:10px;
        top:calc(10% + 10px);
        bottom:calc(10% + 10px);
        z-index:3;
    }
    .user-info .avatar img{
        width:100px;
        height:100px;
        display:block;
        position:absolute;
        left:45px;
        top:0;
        bottom:0;
        z-index:2;
    }
    .user-info h3{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:25px;
        color:var(--titleColor);
        font-weight:bold;
        text-align:center;
        margin:0;
        overflow:hidden;
    }
    .user-intro{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        text-align:center;
        padding:20px 0 0;
        overflow:hidden;
    }
    .user-intro p{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:14px;
        color:var(--subTitleColor);
        margin:0;
        padding:0 0 10px;
        overflow:hidden;
    }
    .member-profile-card{
        width:calc(100% - 5px);
        margin:5px 5px 5px 0;
    }
    .member-profile-cover{
        height:116px;
    }
    .member-profile-cover:after{
        width:180px;
        height:180px;
        right:-46px;
        top:-72px;
    }
    .member-profile-body{
        padding:0 24px 24px;
    }
    .member-profile-head{
        flex-direction:row;
        align-items:flex-end;
        gap:18px;
        text-align:left;
        margin-top:-58px;
    }
    .member-profile-avatar{
        width:122px;
        height:122px;
        border-radius:24px;
        flex:0 0 auto;
    }
    .member-profile-avatar img{
        border-radius:19px;
    }
    .member-profile-identity{
        flex:1 1 auto;
        padding-bottom:8px;
    }
    .member-profile-identity h1{
        font-size:30px;
    }
    .member-profile-badges{
        justify-content:flex-start;
    }
    .member-profile-actions{
        width:auto;
        flex:0 0 auto;
        justify-content:flex-end;
        padding-bottom:8px;
    }
    .member-profile-stats{
        gap:12px;
        margin-top:22px;
    }
    .member-profile-stats span,
    .member-profile-stats a{
        padding:13px 12px;
    }
    .member-profile-stats strong{
        font-size:24px;
    }
    .member-profile-detail-grid{
        margin-top:18px;
    }
    .member-profile-panel{
        margin-bottom:0;
    }
    .member-profile-meta{
        justify-content:flex-start;
        margin-top:18px;
    }
    .login{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        margin:5px auto;
        padding:20px;
    }
    .login-container{
        height:auto;
        margin:30px auto 0;
    }
    .login h4{
        width:100%;
        height:auto;
        line-height:100%;
        font-size:34px;
        color:var(--titleColor);
        font-weight:bold;
        text-align:center;
        margin:0 auto 50px;
    }
    .login .login-avatar{
        width:123px;
        height:100px;
        line-height:100px;
        font-size:80px;
        color:var(--titleColor);
        text-align: center;
        font-weight: bold;
        /*background:url('../img/icon_login_avatar.png') center center no-repeat;
        background-size:123px 100px;*/
        margin:0 auto 20px;
    }
    .login-item{
        width:100%;
        height:40px;
        margin:0 0 5px;
        padding:0;
        position:relative;
    }
    .login-item input.login-item-fontsize{
        width:100%;
        height:40px;
        line-height:38px;
        font-size:14px;
        color:var(--lightColor);
        background:var(--deepColor);
        border:1px solid var(--deepColor);
        padding:0 5px;
    }
    .login-item span.captcha{
        width:auto;
        height:38px;
        position:absolute;
        right:1px;
        top:0;
        bottom:0;
        z-index:2;
    }
    .login-item span.captcha img{
        width:auto;
        height:38px;
    }
    .login-btn{
        width:100%;
        height:auto;
        text-align:center;
        margin:30px 0 50px;
    }
    .login-btn .login-btn-fontsize{
        font-size:16px;
    }
    .login-item .email-code-btn{
        height:38px;
        line-height:1;
        font-size:12px;
        position:absolute;
        right:1px;
        top:1px;
        bottom:1px;
        z-index:2;
    }
    .login-message{
        min-height:20px;
        line-height:20px;
        font-size:12px;
        margin:5px 0 0;
    }
    .login-tips{
        line-height:140%;
        font-size:14px;
        color:var(--lightColor);
        text-align:center;
    }
    .member-menu{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        display:block;
        margin:5px auto;
        padding:0 15px;
    }
    .member-menu a{
        width:auto;
        height:35px;
        line-height:35px;
        font-size:14px;
        color:var(--lightColor);
        text-align:center;
        display:inline-block;
        float:left;
        padding:0 5px;
    }
    .member-center-menu{
        display:flex !important;
        flex-wrap:wrap !important;
        gap:6px !important;
        padding:10px !important;
    }
    .member-center-menu .nav-link{
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        float:none !important;
        width:auto !important;
        height:34px !important;
        line-height:20px !important;
        font-size:14px !important;
        padding:0 12px !important;
    }
    .member-dashboard{
        padding:20px;
    }
    .member-dashboard-hero{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:22px;
    }
    .member-dashboard-hero:after{
        width:220px;
        height:220px;
        right:-64px;
        top:-94px;
    }
    .member-dashboard-user{
        flex-direction:row;
        align-items:center;
        gap:16px;
        text-align:left;
    }
    .member-dashboard-avatar{
        width:108px;
        height:108px;
        border-radius:24px;
    }
    .member-dashboard-avatar img{
        border-radius:19px;
    }
    .member-dashboard-user h1{
        font-size:30px;
    }
    .member-dashboard-actions{
        justify-content:flex-end;
        flex:0 0 auto;
    }
    .member-dashboard-stats{
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:12px;
        margin:14px 0;
    }
    .member-dashboard-stats a{
        padding:16px 12px;
    }
    .member-dashboard-stats strong{
        font-size:28px;
    }
    .member-dashboard-panel{
        height:100%;
        margin-bottom:14px;
        padding:18px;
    }
    .member-dashboard-shortcuts{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .member-dashboard-recent{
        height:auto;
    }
    .member-dashboard-favorites{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:12px;
    }
    .member-dashboard-favorites article{
        grid-template-columns:1fr;
        gap:10px;
    }
    .member-dashboard-favorite-thumb{
        width:100%;
        height:120px;
    }
    .member-dashboard-favorite-thumb span{
        line-height:120px;
    }
    .contribute-manage{
        padding:20px;
    }
    .contribute-manage-head{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:20px;
    }
    .contribute-manage-head h2{
        font-size:24px;
    }
    .contribute-manage-total{
        align-self:center;
        flex:0 0 auto;
    }
    .contribute-card{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        padding:16px;
    }
    .contribute-card-main{
        flex:1 1 auto;
        min-width:0;
    }
    .contribute-card-actions{
        flex:0 0 260px;
        justify-content:flex-end;
    }
    .contribute-tag-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:12px;
    }
    .member-edit{
        width:100%;
        height:auto;
        background:var(--backgroundColor);
        display:block;
        margin:0 auto 5px;
        padding:20px 20px 50px;
    }
    .member-edit h2{
        width:100%;
        height:auto;
        line-height:140%;
        font-size:20px;
        color:var(--titleColor);
        font-weight:bold;
        border-bottom:1px dashed var(--lightColor);;
        margin-bottom:25px;
        padding-bottom:5px;
    }
    .member-edit-head h2{
        border:0;
        line-height:1.3;
        margin:0 0 6px;
        padding:0;
    }
    .member-edit .avatar{
        width:100%;
        height:auto;
        margin-bottom:25px;
        text-align:center;
    }
    .avatar-img{
        position: relative;
        width: 120px;
        height: 120px;
        display:block;
        text-align:center;
        margin:0 auto;
        border-radius: 50%;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,.15);
    }
    .avatar-img img{
        width: 100%;
        height: 100%;
        display:block;
        object-fit: cover;
    }
    /* loading */
    .avatar-loading {
        display: none;
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.45);
    }
    
    .avatar-loading span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 30px;
        margin: -15px 0 0 -15px;
        border: 3px solid #fff;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin .8s linear infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    .member-edit .avatar .upload-avatar{
        width:100px;
        height:auto;
        text-align:center;
        margin:0 auto 10px;
    }
    .member-edit .avatar .upload-avatar input{
    
    }
    .member-edit-item{
        margin:0 0 10px;
    }
    .member-edit label{
        height:32px;
        line-height:32px;
        font-size:14px;
        color:var(--lightColor);
        display:inline-block;
        margin:0;
        padding:0;
    }
    .disable-username{
        color:var(--lightColor);
        margin:0;
        padding:0;
    }
    .member-edit input{
		width:50%;
        height:32px;
        line-height:30px;
        font-size:14px;
        color:var(--lightColor);
        border:1px solid var(--deepColor);
        background:var(--deepColor);
        padding:0 0 0 5px;
        display:inline-block;
    }
    .member-edit select{
        height:32px;
        line-height:30px;
        font-size:14px;
        color:var(--lightColor);
        border:1px solid var(--deepColor);
        background:var(--deepColor);
        padding:0 0 0 5px;
        display:inline-block;
    }
    .member-edit textarea{
        height:92px;
        line-height:25px;
        font-size:14px;
        color:var(--lightColor);
        border:1px solid var(--deepColor);
        background:var(--deepColor);
        padding:0 0 0 5px;
        display:inline-block;
    }
    .member-edit-btn{
        width:100%;
        height:auto;
        margin:0;
        padding:0;
    }
    .member-edit-btn button{
		line-height:140%;
		font-size:14px;
		color:#fff;
    }
    .member-edit-fontsize{
        font-size:1.4rem;
    }
    .avatar-upload-row{
        flex-direction:row !important;
        align-items:center !important;
    }
    .avatar-upload-btn{
        width:auto !important;
    }
}

.avatar-upload-item{
    align-items:flex-start;
}
.avatar-upload-wrap{
    display:block;
    padding-left:0;
}
.avatar-preview-box{
    width:120px;
    height:120px;
    border:2px dashed var(--borderColor);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:8px;
    background:var(--deepColor);
    cursor:pointer;
}
.avatar-preview-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.avatar-upload-row{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:stretch;
    max-width:520px;
}
.avatar-progress-wrap{
    flex:1;
    position:relative;
    overflow:hidden;
    border-radius:4px;
    border:1px solid var(--deepColor);
    background:var(--backgroundColor);
}
.avatar-progress-bar{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    background:linear-gradient(90deg,var(--accentGreenColor),var(--themeColor));
    z-index:1;
    transition:width .3s;
}
.member-edit .avatar-progress-wrap input{
    width:100%;
    height:34px;
    line-height:32px;
    padding:0 12px;
    border:none;
    background:transparent;
    position:relative;
    z-index:2;
    box-sizing:border-box;
}
.avatar-upload-btn{
    width:100%;
    height:34px;
    padding:0 20px;
    background:#1890ff;
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
    white-space:nowrap;
    font-size:14px;
}
.avatar-upload-btn:hover{
    background:#40a9ff;
}

.member-favorites{
    width:100%;
    margin:0 auto 5px;
    padding:18px;
    background:var(--backgroundColor);
}
.member-favorites-head{
    display:flex;
    flex-direction:column;
    gap:12px;
    border-bottom:1px solid var(--borderColor);
    margin:0 0 18px;
    padding:0 0 16px;
}
.member-favorites-kicker{
    display:block;
    color:var(--accentGreenColor);
    font-size:12px;
    font-weight:bold;
    letter-spacing:1px;
    margin:0 0 6px;
}
.member-favorites h2,.member-follows h2{
    color:var(--titleColor);
    font-size:22px;
    font-weight:bold;
    line-height:1.2;
    margin:0;
}
.member-favorites-total{
    width:120px;
    min-height:68px;
    border-left:5px solid var(--accentGreenColor);
    border-radius:12px;
    background:var(--statCardGradient);
    box-shadow:var(--cardShadow);
    padding:12px 14px;
}
.member-favorites-total strong{
    display:block;
    color:var(--titleColor);
    font-size:24px;
    line-height:1;
}
.member-favorites-total span{
    display:block;
    color:var(--subTitleColor);
    font-size:13px;
    margin-top:8px;
}
.member-favorite-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.member-favorite-card{
    display:flex;
    flex-direction:column;
    position:relative;
    border:1px solid var(--borderColor);
    border-left:5px solid var(--accentGreenColor);
    border-radius:14px;
    background:var(--cardBgColor);
    box-shadow:var(--cardShadow);
    overflow:hidden;
}
.member-favorite-thumb{
    width:100%;
    height:160px;
    display:block;
    background:var(--statCardGradient);
    overflow:hidden;
}
.member-favorite-thumb img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.member-favorite-thumb span{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--accentGreenColor);
    font-size:42px;
}
.member-favorite-body{
    flex:1;
    min-width:0;
    padding:14px 16px;
}
.member-favorite-meta-top{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    color:var(--lightColor);
    font-size:13px;
    margin-bottom:8px;
}
.member-favorite-card h3{
    font-size:18px;
    font-weight:bold;
    line-height:1.45;
    margin:0 0 12px;
}
.member-favorite-card h3 a{
    color:var(--titleColor);
}
.member-favorite-card h3 a:hover{
    color:var(--accentGreenColor);
}
.member-favorite-stats{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    color:var(--subTitleColor);
    font-size:13px;
}
.member-favorite-stats a{
    color:var(--subTitleColor);
}
.member-favorite-stats a:hover{
    color:var(--accentGreenColor);
}
.member-favorite-stats i{
    color:var(--accentGreenColor);
    margin-right:4px;
}
.member-favorite-author,
.member-favorite-author a{
    display:inline-flex;
    align-items:center;
    gap:5px;
}
.member-favorite-author img{
    width:22px;
    height:22px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 2px 8px rgba(20,30,50,.12);
}
.member-favorite-agree{
    display:inline-flex;
    align-items:center;
    gap:4px;
    border-radius:999px;
    background:var(--tagBgColor);
    padding:3px 8px;
}
.member-favorite-agree.is-agreed{
    background:var(--tagBgColor);
    color:var(--accentGreenColor);
    font-weight:bold;
}
.member-favorite-agree.is-loading{
    opacity:.65;
    pointer-events:none;
}
.member-favorite-share{
    display:inline-flex;
    align-items:center;
    gap:4px;
    border-radius:999px;
    background:var(--tagBgColor);
    padding:3px 8px;
}
.member-favorite-share:hover{
    background:var(--iconBgColor);
}
.member-favorite-more-wrap{
    position:relative;
    margin-left:auto;
}
.member-favorite-more{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:transparent;
    color:var(--subTitleColor);
    font-size:18px;
    cursor:pointer;
    padding:0;
    transition:background .2s ease, color .2s ease;
}
.member-favorite-more:hover{
    background:var(--tagBgColor);
    color:var(--titleColor);
}
.member-favorite-more.is-active{
    background:var(--tagBgColor);
    color:var(--titleColor);
}
.member-favorite-dropdown{
    position:absolute;
    right:0;
    bottom:calc(100% + 8px);
    min-width:130px;
    background:var(--cardBgColor);
    border:1px solid var(--borderColor);
    border-radius:12px;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
    padding:6px;
    z-index:20;
    opacity:0;
    visibility:hidden;
    transform:translateY(6px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.member-favorite-dropdown.is-show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.member-favorite-dropdown::after{
    content:'';
    position:absolute;
    right:12px;
    bottom:-6px;
    width:10px;
    height:10px;
    background:var(--cardBgColor);
    border-right:1px solid var(--borderColor);
    border-bottom:1px solid var(--borderColor);
    transform:rotate(45deg);
}
.member-favorite-dropdown-item{
    display:flex;
    align-items:center;
    padding:8px 12px;
    border-radius:8px;
    color:var(--titleColor);
    font-size:14px;
    text-decoration:none;
    transition:background .15s ease, color .15s ease;
}
.member-favorite-dropdown-item:hover{
    background:var(--tagBgColor);
    color:var(--redColor);
    text-decoration:none;
}
.member-favorite-cancel.is-loading{
    opacity:.65;
    pointer-events:none;
}
.member-favorites-empty{
    border:1px dashed var(--borderColor);
    border-radius:14px;
    background:var(--emptyBgColor);
    color:var(--subTitleColor);
    text-align:center;
    padding:42px 18px;
}
.member-favorites-empty i{
    display:block;
    color:var(--accentGreenColor);
    font-size:42px;
    margin-bottom:12px;
}
.member-favorites-empty p{
    color:var(--subTitleColor);
    font-size:15px;
    margin:0 0 18px;
}
.member-follows,
.member-follow-feed{
    width:100%;
    margin:0 auto 5px;
    padding:18px;
    background:var(--backgroundColor);
}
.member-follow-list{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
}
.member-follow-card{
    display:flex;
    flex-direction:column;
    position:relative;
    border:1px solid var(--borderColor);
    border-left:5px solid var(--themeColor);
    border-radius:8px;
    background:var(--cardBgColor);
    box-shadow:var(--cardShadow);
    padding:18px;
}
.member-follow-avatar{
    width:72px;
    height:72px;
    display:block;
    margin:0 auto 12px;
}
.member-follow-avatar img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.member-follow-body{
    min-width:0;
    text-align:center;
}
.member-follow-body h3{
    font-size:18px;
    font-weight:bold;
    line-height:1.3;
    margin:0 0 8px;
}
.member-follow-body h3 a{
    color:var(--titleColor);
    text-decoration:none;
}
.member-follow-body h3 a:hover{
    color:var(--hoverColor);
}
.member-follow-body p{
    color:var(--subTitleColor);
    font-size:14px;
    line-height:1.6;
    margin:0 0 12px;
}
.member-follow-meta{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    color:var(--lightColor);
    font-size:13px;
}
.member-follow-meta i{
    color:var(--themeColor);
    margin-right:4px;
}
.member-follow-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:86px;
    height:32px;
    border-radius:4px;
    background:var(--deepColor);
    color:var(--lightColor);
    font-size:13px;
    margin:14px auto 0;
    padding:0 12px;
    text-decoration:none;
    transition:all 0.2s;
}
.member-follow-action:hover{
    background:var(--greenColor);
    color:#fff;
}
.member-follow-action.is-loading{
    opacity:.65;
    pointer-events:none;
}
.member-follow-back-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:86px;
    height:32px;
    border-radius:4px;
    background:var(--greenColor);
    color:#fff;
    font-size:13px;
    margin:14px auto 0;
    padding:0 12px;
    text-decoration:none;
    transition:all 0.2s;
}
.member-follow-back-btn:hover{
    filter:brightness(0.9);
    color:#fff;
}
.member-follow-back-btn.is-following{
    background:var(--deepColor);
    color:var(--lightColor);
}
.member-follow-back-btn.is-following:hover{
    background:var(--greenColor);
    color:#fff;
}
.member-follow-back-btn.is-loading{
    opacity:.65;
    pointer-events:none;
}
.member-follow-feed-totals{
    display:flex;
    gap:10px;
}
.member-follow-feed-breadcrumb{
    align-items:center !important;
    border-radius:0 !important;
    font-size:14px !important;
    line-height:1.5 !important;
    padding:10px 15px !important;
}
.member-feed-toolbar{
    border-radius:10px !important;
    font-size:14px !important;
    box-shadow:0 2px 8px rgba(0,0,0,.05) !important;
}
.member-feed-heading .small{
    display:block !important;
    color:var(--subTitleColor) !important;
    font-size:13px !important;
    line-height:1.4 !important;
    font-weight:500 !important;
    letter-spacing:.08em !important;
    margin-bottom:4px !important;
}
.member-feed-heading h1{
    color:var(--titleColor) !important;
    font-size:20px !important;
    font-weight:bold !important;
    line-height:1.3 !important;
    margin:0 0 8px 0 !important;
}
.member-feed-stats{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.member-feed-stats .badge{
    border:1px solid var(--borderColor) !important;
    border-radius:999px !important;
    background:var(--deepColor) !important;
    color:var(--lightColor) !important;
    font-size:12px !important;
    font-weight:normal !important;
    line-height:1.4 !important;
    padding:6px 12px !important;
}
.member-feed-stats .badge i{
    color:var(--themeColor) !important;
    margin-right:4px !important;
}
.member-feed-stats .badge strong{
    color:var(--titleColor) !important;
    font-weight:bold !important;
}
.member-feed-filter{
    width:100% !important;
}
.member-feed-filter .btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:1 1 0 !important;
    height:36px !important;
    border:1px solid var(--borderColor) !important;
    background:var(--deepColor) !important;
    color:var(--lightColor) !important;
    font-size:14px !important;
    font-weight:500 !important;
    line-height:34px !important;
    transition:all 0.2s !important;
}
.member-feed-filter .btn:hover{
    background:var(--themeColor) !important;
    border-color:var(--themeColor) !important;
    color:#fff !important;
}
.member-feed-filter .btn.active{
    background:var(--themeColor) !important;
    border-color:var(--themeColor) !important;
    color:#fff !important;
}
.member-follow-feed-list{
    margin:0;
    padding:0;
}
.feed-filter-tabs{
    display:flex;
    gap:0;
    margin:0 0 5px;
    padding:0 18px;
}
.feed-filter-tabs a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:64px;
    height:36px;
    line-height:36px;
    font-size:14px;
    color:var(--subTitleColor);
    border-bottom:2px solid transparent;
    padding:0 12px;
    text-decoration:none;
}
.feed-filter-tabs a:hover{
    color:var(--hoverColor,#236ddb);
    text-decoration:none;
}
.feed-filter-tabs a.active{
    color:var(--hoverColor,#236ddb);
    border-bottom-color:var(--hoverColor,#236ddb);
    font-weight:bold;
}
.member-follow-feed-list li{
    width:100%;
    margin-right:0;
    margin-bottom:4px;
}

@media screen and (min-width:768px){
    .member-favorites{
        padding:24px;
    }
    .member-favorites-head{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
    }
    .member-favorite-card{
        flex-direction:row;
        align-items:stretch;
    }
    .member-favorite-thumb{
        width:180px;
        height:auto;
        min-height:126px;
        flex:0 0 180px;
    }
    .member-favorite-body{
        padding:18px 20px;
    }
    .member-follows,
    .member-follow-feed{
        padding:24px;
    }
    .member-feed-toolbar{
        width:calc(100% - 5px) !important;
    }
    .member-feed-toolbar .card-body{
        padding:18px 20px !important;
    }
    .member-feed-filter{
        width:auto !important;
    }
    .member-feed-filter .btn{
        flex:0 0 auto !important;
        min-width:72px !important;
    }
    .member-follow-list{
        width:calc(100% - 5px) !important;
        padding-right:0 !important;
        column-gap:12px !important;
        row-gap:12px !important;
        grid-template-columns:repeat(2, calc((100% - 12px) / 2)) !important;
        justify-content:space-between !important;
    }
    .member-follow-card:nth-child(even){
        justify-self:end !important;
    }
    .member-follow-card{
        flex-direction:row;
        align-items:center;
        padding:18px 118px 18px 18px;
    }
    .member-follow-avatar{
        flex:0 0 72px;
        margin:0 16px 0 0;
    }
    .member-follow-body{
        text-align:left;
    }
    .member-follow-meta{
        justify-content:flex-start;
    }
    .member-follow-action{
        position:absolute;
        right:18px;
        top:50%;
        margin:0;
        transform:translateY(-50%);
    }
    .member-follow-back-btn{
        position:absolute;
        right:18px;
        top:50%;
        margin:0;
        transform:translateY(-50%);
    }
    .member-follow-feed-list li{
        width:calc((100% - 8px) / 3);
        margin-right:4px;
        margin-bottom:4px;
    }
    .member-follow-feed-list li:nth-child(3n){
        margin-right:0;
    }
	.member-favorites-empty{
	    border:1px dashed var(--borderColor);
	    border-radius:14px;
	    color:var(--subTitleColor);
	    text-align:center;
		width:100%;
		height:auto;
		background-color:var(--emptyBgColor);
		margin-bottom:5px;
		padding-top:20px;
	}
	.member-favorites-empty i{
	display:block;
	color:var(--accentGreenColor);
	font-size:42px;
	margin-bottom:12px;
	}
	.member-favorites-empty p{
		color:var(--subTitleColor);
		font-size:15px;
		margin:0 0 18px;
	}
}

.recommended-authors-section{
    max-width:720px;
    margin:0 auto 20px;
    text-align:left;
}
.recommended-authors-title{
    font-size:16px;
    font-weight:600;
    color:var(--titleColor);
    margin:0 0 15px 0;
    text-align:center;
}
.recommended-authors-title i{
    color:var(--yellowColor);
    margin-right:5px;
}
.recommended-follow-list{
    grid-template-columns:1fr;
    gap:10px;
}
.recommended-follow-list .member-follow-card{
    padding:14px;
    border-left-width:4px;
    box-shadow:0 4px 12px rgba(20,30,50,.04);
}
.recommended-follow-list .member-follow-avatar{
    width:48px;
    height:48px;
}
.recommended-follow-list .member-follow-avatar img{
    width:48px;
    height:48px;
}
.recommended-follow-list .member-follow-body h3{
    font-size:15px;
    margin:0 0 4px 0;
}
.recommended-follow-list .member-follow-body p{
    font-size:13px;
    margin:0 0 6px 0;
    -webkit-line-clamp:1;
}
.recommended-follow-list .member-follow-meta{
    font-size:12px;
}
.recommended-follow-list .member-follow-meta span{
    margin-right:12px;
}
.recommended-follow-list .member-follow-back-btn{
    padding:5px 14px;
    font-size:13px;
    right:14px;
    top:50%;
    transform:translateY(-50%);
}
@media (min-width:768px){
    .recommended-follow-list{
        grid-template-columns:repeat(2, calc((100% - 10px) / 2));
    }
    .recommended-follow-list .member-follow-card{
        flex-direction:row;
        align-items:center;
        padding:14px 100px 14px 14px;
    }
    .recommended-follow-list .member-follow-avatar{
        flex:0 0 48px;
        margin:0 12px 0 0;
    }
    .recommended-follow-list .member-follow-body{
        text-align:left;
    }
}
