.footer-box{
    width: 100%;
    z-index: -2;
    border-top: 1px solid #aaaaaa;
}

.site-footer {
    position: relative;
    color: var(--footer-text-color);
    font-size: 15px;
    width: 100%;
    /*background-color: var(--footer-bg-color);*/
    z-index: 1;
}
.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
}
.blog-info p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.site-info {
    text-align: right;
}

.site-info p {
    line-height: 1.8;
    font-size: 14px;
}
.site-info .hidden_{
    display: none;
}

.site-info a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.site-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background:var(--footer-text-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.site-info a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%;
    }

    .site-info, .service-links {
        text-align: center;
        margin-top: 15px;
    }

    .service-links a {
        margin: 0 5px;
    }
}

/* 框架和主题信息的容器 */
.framework-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 分隔样式 */
.framework-info span {
    color: var(--footer-text-color);
    font-weight: 300;
}

/* 框架和主题链接样式 */
.framework-info a {
    position: relative;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.framework-info a:hover {
    transform: translateY(-2px);
    text-shadow: var(--footer-text-color);
}



/* 备案信息样式 */
.beian-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.beian {
    align-items: center;
    color: var(--footer-text-color);
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.beian:hover {
    opacity: 1;
}

.beian img {
    width: 14px;
    height: 14px;
    margin-right: 2px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {

    .footer-box{
        height: auto;
    }
    .footer-content::after,.footer-content::before{
        display: none;
    }
    .footer-left{
        display: none;
    }
    .footer-right{
        display: flex;
        flex-direction: column;
    }
    .site-info{
      display: flex;
      flex-direction: column;
    }
    .beian-container {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    .site-footer{
      height: auto;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        height: auto;
    }
}

/* 社交链接样式 */
.blog-contact {
    display: flex;
    flex-direction: row;
}

.icon {
    vertical-align: middle;
}



/* 响应式设计 */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .framework-info{
        display: block;
        text-align: center;
    }
    .site-info .hidden_{
        display: block;
    }
}

:root{
    --footer-bg-color:linear-gradient(to top, #dfe9f3 0%, white 100%);
    --footer-text-color:#1a1a1a;
}

[data-theme="dark"] .site-footer{
    --footer-bg-color: linear-gradient(60deg, #29323c 0%, #485563 100%);
    --footer-text-color:  rgba(255, 255, 255, 0.8);
}

