﻿:root {
    --un-radius: 5px;   /* option */
    --un-sidenav-width:150px;
}

:root, .un-light{
    --un-color-primary: #0066ff; /* option */
    --un-color-success: #67c23a;
    --un-color-success-light-3: rgb(148.6, 212.3, 117.1);
    --un-color-success-light-5: rgb(179, 224.5, 156.5);
    --un-color-success-light-7: rgb(209.4, 236.7, 195.9);
    --un-color-success-light-8: rgb(224.6, 242.8, 215.6);
    --un-color-success-light-9: rgb(239.8, 248.9, 235.3);
    --un-color-success-dark: rgb(82.4, 155.2, 46.4);
    --un-color-warning: #e6a23c;
    --un-color-warning-light-3: rgb(237.5, 189.9, 118.5);
    --un-color-warning-light-5: rgb(242.5, 208.5, 157.5);
    --un-color-warning-light-7: rgb(247.5, 227.1, 196.5);
    --un-color-warning-light-8: rgb(250, 236.4, 216);
    --un-color-warning-light-9: rgb(252.5, 245.7, 235.5);
    --un-color-warning-dark: rgb(184, 129.6, 48);
    --un-color-danger: #f56c6c;
    --un-color-danger-light-3: rgb(248, 152.1, 152.1);
    --un-color-danger-light-5: rgb(250, 181.5, 181.5);
    --un-color-danger-light-7: rgb(252, 210.9, 210.9);
    --un-color-danger-light-8: rgb(253, 225.6, 225.6);
    --un-color-danger-light-9: rgb(254, 240.3, 240.3);
    --un-color-danger-dark: rgb(196, 86.4, 86.4);
    --un-color-error: #f56c6c;
    --un-color-error-light-3: rgb(248, 152.1, 152.1);
    --un-color-error-light-5: rgb(250, 181.5, 181.5);
    --un-color-error-light-7: rgb(252, 210.9, 210.9);
    --un-color-error-light-8: rgb(253, 225.6, 225.6);
    --un-color-error-light-9: rgb(254, 240.3, 240.3);
    --un-color-error-dark: rgb(196, 86.4, 86.4);
    --un-color-info: #909399;
    --un-color-info-light-3: rgb(177.3, 179.4, 183.6);
    --un-color-info-light-5: rgb(199.5, 201, 204);
    --un-color-info-light-7: rgb(221.7, 222.6, 224.4);
    --un-color-info-light-8: rgb(232.8, 233.4, 234.6);
    --un-color-info-light-9: #f7f7f7;
    --un-color-info-dark: rgb(115.2, 117.6, 122.4);

    --un-color-text-1: #3c3c43;
    --un-color-text-2: #67676c;
    --un-color-text-3: #929295;

    --un-color-bg: #f7f9fa;
    --un-color-box:#fff;
    --un-color-shadow: rgb(181 181 181 / 32%);
    --un-color-disabled: #c0c4cc;
    --un-color-border: #dcdfe6;
    --un-color-border-light-1: #f3f3f4
}

.un-dark{
    --un-color-text-1: #dfdfd6;
    --un-color-text-2: #98989f;
    --un-color-text-3: #6a6a71;

    --un-color-bg: #15181d;
    --un-color-shadow: rgb(0 0 0 / 32%);
    --un-color-border: #43464b;
    --un-color-border-light-1: #3b3b3b;
    --un-color-box: #202328;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--un-color-text-1);
    background: var(--un-color-bg);
}


a:hover{
    color: var(--un-color-primary);
}

#content {
    flex: 1;
    padding: calc(var(--un-header-height) + 30px) 0 30px;
}
.has-hero #content{
    padding:0 0 30px;
}

.wrapper {
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}




.box{
    background: var(--un-color-box);
    box-shadow: 0 0 2px rgb(98 124 153 / 10%);
    border-radius: var(--un-radius);
}

input:not([type="button"]):not([type="reset"]):not([type="submit"]){
    border-radius: var(--un-radius);
    border: 1px solid var(--un-color-info-light-7);
}
input::placeholder{
    color: var(--un-color-info-light-5);
}
input:focus {
    border-color: var(--un-color-primary);
}

button.btn, input[type="button"], input[type="submit"], input[type="reset"]{
    display: inline-block;
    line-height: 1;
    padding: 8px 15px;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
    color: #fff;
    border: 1px solid var(--un-color-primary);
    background: var(--un-color-primary);
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    border-radius: var(--un-radius);
    transition: .1s;
    font-weight: 500;
}
button.btn:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover
{
    background: var(--un-color-primary-light-1);
}


/*配合 lazyload.min.js */
img.lazy:not(.loaded) {
    opacity: 0;
}
img.lazy.loaded {
    opacity: 1;
    transition: opacity .4s;
}


/* 小 */
.empty-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ccc;
}
.empty-page .empty-img{
    width: 320px;
}

.phone{
    display: none;
}

@media screen and (max-width: 768px){
    .phone{
        display: unset;
    }
    .pc{
        display: none !important;
    }
    .wrapper{
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
    #content{
        padding: calc(var(--un-header-height) + 0px) 0 30px;
    }
}


/****************************************** header*/

/*.un-header {
    height: var(--un-header-height);
}*/
.un-header .header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    height: var(--un-header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 5px 40px 0 rgba(17, 58, 93, .1);
    backdrop-filter: saturate(180%) blur(6px);
    background: var(--un-color-box);
}
.has-hero .un-header:not(.header-bg) .header-wrap {
    box-shadow: unset;
    backdrop-filter: unset;
    background: unset;
}


.un-header ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.un-header .nav li {
    margin-right: 26px;
}

.un-header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(100% - 50px);
}

.un-header .nav .logo {
    display: flex;
    font-weight: 500;
    margin-right: 30px;
    font-size: 22px;
    letter-spacing: 1px;
}

.un-header .nav .logo:hover {
    color: unset;
}

.un-header .nav .logo img {
    height: 38px;
}

.un-header .nav .menu > li {
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
}

.un-header .nav .menu .sub-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 15px;
    padding: 15px;
    width: 150px;
    gap: 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
    border-radius: var(--un-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.un-header .nav .menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);
}

.un-header .nav .user-wrap .avatar {
    width: 34px;
    height: 34px;
    border-radius: var(--un-radius);
    cursor: pointer;
}

.un-header .nav .user-wrap .button {
    height: 35px;
    background: #f4f4f4;
    color: #555;
    margin-left: 8px;
    letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
    /*.un-header {
        padding: 10px;
        margin-bottom: 10px;
    }*/
    .un-header .header-wrap {
        box-shadow: unset;
        border-bottom: 1px solid var(--un-color-border);

    }
    .un-header.header-fixed .header-wrap{
        background: #fff;
    }

    .un-header .nav {
        max-width: 100%;
    }

    .un-header .nav .logo {
        font-size: 18px;
    }

    .un-header .menu {
        position: absolute;
        display: none;
        flex-direction: column;
        top: var(--un-header-height);
        left: 0;
        width: 100%;
        background: var(--un-color-box);
        padding: 50px 20px;
        box-sizing: border-box;
        border-bottom: 1px solid var(--un-color-info-light-8);
        line-height: 3;
        font-size: 16px;
        height: 100vh;
    }
    .un-header .menu.show {
        display: flex;
    }
    .un-header .show-menu-icon i {
        font-size: 22px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        display: inline-block;
    }



    .un-header .user-wrap i {
        font-size: 20px;
    }

}


/****************************************  */

.sidenav-wrap{
    display: flex;
}


.sidenav-wrap .sidenav {
    position: sticky;
    top: calc(var(--un-header-height) + 30px);
    left: 0;
    margin-right: 14px;
    overflow-y: auto;
    //width: var(--un-sidenav-width);
    height: calc(100vh - var(--un-header-height) - 30px - 30px);
}


.sidenav-wrap .sidenav::-webkit-scrollbar {
    /*display: none;*/
    width: 0;
    /*background-color: #0c1e35;*/
}

.sidenav-wrap .sidenav::-webkit-scrollbar-thumb {
    border-radius: 4px;
    /*background: #fff972;*/
}

.sidenav-wrap .sidenav:hover::-webkit-scrollbar-thumb {
    /*background-color: #eaeaea;*/
}

.sidenav-wrap .sidenav .menu {
    min-width: var(--un-sidenav-width);
    padding: 10px 15px;
    height: 100%;
}
/*.sidenav-wrap .sidenav .menu-item {
    padding: 0 15px;
}*/
/*.sidenav-wrap .sidenav .menu-item:first-of-type{
    padding-top: 10px;
}
.sidenav-wrap .sidenav .menu-item:last-of-type {
    padding-top: 10px;
}*/

.sidenav-wrap .sidenav .menu-a{
    display: block;
    padding: 12px 15px;
    font-size: 14px;
}

.sidenav-wrap .sidenav .menu-a,
.sidenav-wrap .sidenav .menu-a:hover{
    color: unset;
}
.sidenav-wrap .sidenav .child-wrap{
    margin-left: 19px;
}

.sidenav-wrap .sidenav .menu-a .icon,
.sidenav-wrap .sidenav-content h2 .icon,
.sidenav-wrap .sidenav-content h3 .icon{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 2px;
    object-fit: cover;
    //vertical-align: middle;
}
.sidenav-wrap .sidenav .menu-a img.icon,
.sidenav-wrap .sidenav-content h2 img.icon,
.sidenav-wrap .sidenav-content h3 img.icon{
    vertical-align: middle;
}
.sidenav-wrap .sidenav-content h2 .icon,
.sidenav-wrap .sidenav-content h3 .icon{
    width: 30px;
    height: 30px;
}
.sidenav-wrap .sidenav .collapse-item-header .arrow{
    width: 14px;
    color: var(--un-color-info-light-5);
}

.sidenav-wrap .sidenav-content{
    flex: 1;
/ / padding: 0 30 px;
    width: 100%;
    overflow: hidden;
}

.sidenav-wrap .section{
    padding: 5px 10px;
    margin-bottom: 30px;
}

.sidenav-wrap .section:last-of-type{
    margin-bottom: 0;
}

.sidenav-wrap .sidenav-content h2,
.sidenav-wrap .sidenav-content h3{
    margin: 0;
    padding: 10px;
    font-weight: 500;
    font-size: 22px;
}
.sidenav-wrap .sidenav-content h3{
    font-size: 18px;
}
.sidenav-wrap .sidenav-content .child-section{
    //margin: 30px 0;
}

._tabs.sidenav-wrap .sidenav{
    position: unset;
    border-radius: var(--un-radius) 0 0 var(--un-radius);
    margin-right: 0;
    box-shadow:unset;
    border-right: 1px solid rgb(98 124 153 / 10%);
}
._tabs.sidenav-wrap .sidenav .menu-item{
    padding-right: 12px;
}
._tabs.sidenav-wrap .sidenav .menu-item.active {
    background-color: var(--un-color-info-light-9);
    background: var(--un-color-primary-light-8);
    color: var(--un-color-primary);
    border-radius: var(--un-radius);
}
._tabs.sidenav-wrap .sidenav .menu-a:hover,
._tabs.sidenav-wrap .sidenav .menu-item.active a {
    color: var(--un-color-primary);
}
._tabs.sidenav-wrap .sidenav-content .tab-content-item{
    margin-bottom: 0;
    border-radius: 0 var(--un-radius) var(--un-radius) 0 ;
    box-shadow: unset;
    height: 100%;
    box-sizing: border-box;
}


.show-sidenav-menu-icon{
    display: none;
}
@media screen and (max-width: 768px) {

    /*._tabs.sidenav-wrap #sidenav.sidenav{
        visibility: hidden;
        opacity: 0;
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .6);
        transition: opacity .3s, visibility .3s;
    }
    ._tabs.sidenav-wrap #sidenav.show{
        opacity:1;
        visibility: visible;
    }
    ._tabs #sidenav .menu{
        transform: translateX(-100%);
        border-right: 1px solid var(--un-color-info-light-8);
        background: #fff;
        width: 75%;
        padding: 30px 20px;
        transition: transform .3s;
    }
    ._tabs #sidenav.show .menu{
        transform: translateX(0);
    }
    ._tabs .show-sidenav-menu-icon{
        position: fixed;
        right: 20px;
        bottom: 10%;
        font-size: 24px;
        background: var(--un-color-primary);
        color: #fff;
        border-radius: 999px;
        width: 44px;
        height: 44px;
        text-align: center;
        line-height: 44px;
        z-index: 5;
    }*/


    .section.box {
        box-shadow: unset;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .sidenav-wrap .sidenav-content h2{
        font-size: 20px;
    }
    .sidenav-wrap .sidenav-content h3 {
        font-size: 17px;
    }

    #sidenav .menu li {
        white-space: nowrap;
        padding: 0;

    }

    #sidenav .menu-a {
        font-size: 15px;
    }

    #sidenav li .arrow,
    #sidenav .child-wrap {
        display: none;
    }


    /*非tabs导航，放在顶部*/
    .sidenav-wrap{
        display: flex;
        flex-direction: column;
        padding: 0;
    }

     #sidenav{
         position: sticky;
         top: var(--un-header-height);
         left: 0;
         border-bottom: 1px solid var(--un-color-border);
         margin: 0 0 10px;
         height: unset;
         border-radius: 0;
         z-index: 6;
         //background: transparent;
    }

     ._tabs #sidenav{
         position: unset;
     }

    #sidenav .menu{
        display: flex;
        flex-wrap: nowrap;
    }

    ._tabs #sidenav .menu {
        flex-wrap: wrap;
    }

}




.component.images ul{
    display: flex;
    flex-wrap: wrap;
}
.component.images li .a-wrap{
    margin: 0 16px 16px 0;
    position: relative;
}
.component.images li .a-wrap .mask{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
    background: #00000040;
    width: 100%;
    height: 100%;
    border-radius: var(--un-radius);
    letter-spacing: 4px;
}
.component.images a img{
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    border-radius: var(--un-radius);
}




/**/
.list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.list h3 {
    margin: 0;
}
.list a {
    display: block;
}
.list .item-wrap{
    padding: 10px;
}
.list .item {
    //margin: 0 20px 20px 0;
    border-radius: var(--un-radius);
    //box-shadow: 0 0 2px #bcc2cb;
    transition: all .3s;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .03);
    background: #fdfdfd;
    background: var(--un-color-box);
    width: 100%;
    height: 100%;
}
.un-dark .list .item {
    border-color: var(--un-color-bg);
}
.list .item:hover {
    transform: translateY(-5px);
}

.list .item:hover .title {
/ / color: var(--un-color-primary);
}
.list .thumbnail-wrap {
    margin-right: 8px;
}
.list .thumbnail {
    border-radius: 100%;
}
.list .go {
    display: none;
    align-items: center;
    position: absolute;
    right: 0;
    top: 28px;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: bold;
    background: var(--un-color-primary-light-3);
    color: #fff;
    padding: 3px 6px 3px 9px;
    border-radius: 99px 0 0 99px;
}
.list .go:hover {
    background: var(--un-color-primary);
}
.list .go-text {
    margin-right: 3px;
    letter-spacing: 2px;
}
.list .item:hover .go {
    display: flex;
}
.list .title {
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    -o-text-overflow: clip;
    text-overflow: clip;
}
.list .excerpt {
    //max-height: 33px;
    line-height: 1.4;
    font-size: 12px;
    color: var(--un-color-info);;
}
.list .is-scale-thumbnail {
    position: relative;
    background: #f5f6f7;
    overflow: hidden;
    border-radius: var(--un-radius) var(--un-radius) 0 0;
    margin-right: unset;
}
.un-dark .list .is-scale-thumbnail{
    background-color: #595959;
}
.list .is-scale-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.list_n1 .item, .list_n2 .item {
    //background: var(--un-color-info-light-9);
    //background: #fcfcfc;
}
.list_n1 .main, .list_n2 .main {
    padding: 14px;
}

.list_n1 .excerpt {
    margin-top: 10px;
}
.list_n1 .thumbnail-wrap,
.list_n1 .thumbnail {
    width: 28px;
    height: 28px;
}
.list_n2 .main {
    display: flex;
    align-items: center;
}
.list_n2 .thumbnail-wrap,
.list_n2 .thumbnail {
    width: 48px;
    height: 48px;
}
.list_n2 .excerpt {
    margin-top: 7px;
}
.list_n2 .go {
    top: 24px;
}
.list_n3 {
    background: #fff;
    border-radius: var(--un-radius);
}

.list_n3 .item {
    margin: 0;
    height: 50px;
    box-shadow: unset;
    background: unset;
    border: 0;
}
.list_n3 .item .main {
    display: flex;
}
.list_n3 .thumbnail-wrap,
.list_n3 .thumbnail {
    width: 25px;
    height: 25px;
}
.list_n3 .title {
    font-size: 15px;
}
.list_n3 .go {
    position: relative;
    right: unset;
    top: unset;
    transform: translateY(0);
    margin-left: 7px;
    padding: 3px 6px;
    border-radius: 3px;
}


/*风格1
.sidenav.box,
.content-main .box.section{
    background: unset;
    box-shadow: unset;
}
.sidenav.box{
    box-shadow: 1px 1px 3px #bcc2cb;
}
.content-main .section{
    padding: 0 15px;
}
.list .item{
    background: #fff;
    box-shadow: 0 0 2px rgb(98 124 153 / 15%);
}
.list_n3 .item{
    box-shadow: unset;
}
*/

.list_g1 .info{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 15px;
    border-radius:0 0 var(--un-radius) var(--un-radius);
}
.list_g1 .title,
.list_g1 .excerpt
{

}


.list_g2 .img-box{
    border-radius: var(--un-radius);
}
.list_g2 .info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 8px 20px;
    width: 100%;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(0 0 0 / 36%) 100%);
    border-radius: 0 0 var(--un-radius) var(--un-radius);
    color: #fff;
    transform: translateY(100%);
    transition: transform .4s;
}
.list_g2 .item:hover .info{
    transform: translateY(0px);
}
.list_g2 .info .title{
    color: #fff;
}


.list_p1{
    flex-direction: column;
}
.section:has(.list_p1) > h2 {
    padding: 15px 20px 20px;
}
.list_p1 .item{
    padding: 20px;
    box-sizing: border-box;
    align-items: stretch;
    border-bottom: 1px solid #f5f6f7 !important;
    box-shadow: unset;
    border: 0;
    background: transparent;
    border-radius: 0;
}
.list_p1 .item:hover {
    transform: unset;
}

.list_p1 .item .is-scale-thumbnail {
    border-radius: var(--un-radius);
    width: 175px;
}

.list_p1 .info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    margin-left: 18px;
}

.list_p1 .info .title{
    font-size: 17px;
}
.list_p1  .excerpt{
    font-size: 14px;
}

.list_p1 .info .meta{
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 12px;
    color: var(--un-color-info);
}
.list_p1 .info .meta .cats a{
    margin-right: 10px;
}

.section:has(.list_p1){
    padding: 0;
}

.list_p1 .item{

}







/*.no-sidenav .section{
    background: unset;
    box-shadow: unset;
    padding: 0;
}
.no-sidenav .section .item{
    background: #fff;
    border: 0;
    box-shadow: unset;
}*/

@media screen and (max-width: 768px) {
    .list .item-wrap{
        padding: 10px 6px;
    }

    .list .item{
        box-shadow: unset;
    }

    .list .title{
        font-size: 14px;
    }

    .list .excerpt{
        font-size: 12px;
    }

    .list_n1 .item-wrap,
    .list_n2 .item-wrap{
        width: 100% !important;
    }

    .list_n3 .item-wrap,
    .list_g1 .item-wrap,
    .list_g2 .item-wrap{
        width: 50% !important;
    }

    .list_n1 .main, .list_n2 .main {
        padding: 12px;
    }

    .list_n1 .excerpt {
        margin-top: 4px;
    }

    .list_g2 .info{
        transform: translateY(0);
    }

    .list_n2 .excerpt{
        -webkit-line-clamp:1;
        margin-top: 3px;
    }

    .list_p1 .item .is-scale-thumbnail {
        width: 100px;
    }

    .list_p1 .info{
        gap: 3px;
    }

    .list_p1 .info .title {
        -webkit-line-clamp: 2;
        font-size: 15px;
    }
    .list_p1 .excerpt {
        display: none !important;
        -webkit-line-clamp: 1;
    }
    .list_p1 .info .meta .cats a{
        display: none;
    }
    .list_p1 .info .meta .cats a:first-of-type {
        display: inline-block;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}




/***************************************************** footer*/
#footer{
    background: var(--un-color-box);
    margin-top: 20px;
    /*padding: 20px 0 0;*/
}

#footer {
    color: var(--un-color-text-1);
    font-size: 13px;
}

.footer-friends-box{
    padding: 25px 0 10px;
    border-bottom: 1px solid var(--un-color-border);
}

.footer-friends{
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 3px;
    position: relative;
    background: rgb(0 0 0 / 3%);
    background: var(--un-color-box);
}

.footer-friends ul.friends {
    display: flex;
    flex-wrap: wrap;
}

.footer-friends ul li {
    padding: 5px 8px;
}


.footer-info{
    padding: 20px 0;
    justify-content: space-between;
}

.footer-info img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

#aside{
    position: fixed;
    right: 0;
    bottom: 30%;
    transform: translateY(50%);
}

#aside .item{
    position: relative;
    //color: #fff;
    background: var(--un-color-box);
    border-radius: 99px 0 0 99px;
    margin-bottom: 15px;
    box-shadow: -1px 2px 4px 0 var(--un-color-shadow);
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    transform: translateX(66px);
    transition: transform .3s;
}

#aside .item:hover{
    transform: translateX(0);
    color: #fff;
    background: var(--un-color-primary);
}
#aside .qrcodes {
    position: absolute;
    top: 0;
    right: 110px;
    transform: translateY(-50%);
    display: none;
    gap: 10px;
}
#aside .item:hover .qrcodes {
    display: flex;
}
#aside .qrcodes {

}
#aside .qrcodes li{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--un-color-border);
    border-radius: var(--un-radius);
    padding: 7px 10px 10px;
    background: var(--un-color-box);
}
#aside .qrcodes li img{
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px){

    .footer-info {
        padding: 15px 0;
        flex-direction: column-reverse;
        justify-content: space-evenly;
        align-items: center;
        gap: 10px;
        font-size: 12px;
    }

    #aside{
        display: none;
    }


}


/*
#aside .block{
    position: relative;
    background: #fff;
    border-radius: 5px 0 0 5px;
    margin-bottom: 15px;
    box-shadow: -8px 0 35px 0 rgb(181 181 181 / 32%);
}
#aside .block .item{
    position: relative;
    padding: 7px 10px;
    cursor: pointer;
}
#aside .block .item i{
    position: relative;
    font-size: 20px;
    z-index: 2;
    color: #5f6575;
}
#aside .block .item:hover i{
    color: #fff;
}
#aside .block .item .desc{
    display: none;
    position: absolute;
    width: 120px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--un-color-primary);
    color: #fff;
    padding: 9px 45px 9px 5px;
    border-radius: 99px 0 0 99px;
    box-sizing: border-box;
    text-align: right;
}
#aside .block .item:hover .desc{
    display: block;
}

#aside .block .item .qrcode{
    width: auto;
    background: unset;
}*/



.archive .head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}
.archive .head h1{
    font-size: 28px;
    color: var(--un-color-primary);
}

.archive .head .des {
    font-size: 15px;
    color: var(--un-color-primary-light-3);
}


/*评论*/
.comments-area{
    margin-top: 20px;
    padding: 20px;
}


/*默认评论框美化*/
.comment-form{

}
.comment-form .comment-form-comment{
    display: flex;
    flex-direction: column;
}
.comment-form label{
    display: inline-block;
    margin: 15px 0 8px;
}
.comment-form-author,.comment-form-email{
    display: inline-block;
    width: 50%;
}
.comment-form-cookies-consent{
    margin: 15px 0;
}
.comment-form-cookies-consent input#wp-comment-cookies-consent{
   width: unset;
}
.comment-form-cookies-consent label{
    margin: unset;
    flex: 1;
}

.comments-area .author-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
}