.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

.site-footer {
    background-color:  inherit;
    padding: 1rem 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #cccccc;
}

.icon-link:hover {
    background-color:inherit;
    transform: translateY(-2px);
    color:  var(--footer-text-color);
    border: 1px solid var(--footer-text-color);
}

.footer-contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1rem;
}

.footer-section {
    flex: 0 0 auto;
    min-width: 150px;
    height: auto;
}

.footer-section h3 {
    color:  var(--footer-text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    color: var(--footer-text-color);
    background: linear-gradient(90deg, #0d0d0d, transparent);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-section ul li {
    margin: 0;
    white-space: nowrap;
    position: relative;
    padding-left: 0.8rem;
    line-height: 1.2;
    max-width: 150px;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    color:  #0d0d0d;
    background-color:#0d0d0d;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.footer-section ul li:hover::before {
    background-color:inherit;
}

.footer-section ul li a {
    color: var(--footer-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.footer-section ul li a:hover {
    color:  var(--footer-text-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-time {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--footer-border-color);
    color:  var(--footer-text-color);
    font-size: 0.9rem;
}

.refresh-icon {
    font-size: 0.9rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-icon:hover {
    opacity: 1;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .footer-contents {
        justify-content: center;
        align-content: center;
        padding-bottom: 0.76rem;
    }
    .footer-section{
        display: none;
    }
    .show-to-footer{
        display: block;
    }
    .show-to-footer h3{
        margin-left: 30px;
    }
    .show-to-footer ul li{
        margin-left: 30px;
    }
    .show-to-footer ul li a{
        display: block;
        width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
/* 旅行者信息样式 */
/*.voyager-info {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.voyager-icon {*/
/*    animation: rocketFloat 3s ease-in-out infinite;*/
/*}*/

/*@keyframes rocketFloat {*/
/*    0%, 100% {*/
/*        transform: translateY(0) rotate(-45deg);*/
/*    }*/
/*    50% {*/
/*        transform: translateY(-3px) rotate(-45deg);*/
/*    }*/
/*}*/

:root{
    --footer-bg-color:#fff;
    --footer-text-color:#1a1a1a;
    --footer-border-color:rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .site-footer{
    --footer-bg-color: #1a1a1a;
    --footer-text-color:  rgba(255, 255, 255, 0.8);
    --footer-border-color:rgba(0, 0, 0, 0.1);
}