* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.float-toolbar {
    position: fixed !important;
    right: 20px !important;
    bottom: 80px !important;
    z-index: 9999 !important;
    display: block !important;
    width: 60px !important;
    height: auto !important;
}
.float-toolbar ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}
.float-toolbar li {
    position: relative !important;
    width: 50px !important;
    height: 50px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}
.float-toolbar li:hover {
    background: #0088ff !important;
    transform: translateY(-3px) !important;
}
.float-toolbar li i {
    font-size: 22px !important;
    color: #333333 !important;
    display: block !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}
.float-toolbar li:hover i {
    color: #ffffff !important;
}
.float-toolbar .float-tip {
    position: absolute !important;
    right: 65px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    display: none !important;
    z-index: 10000 !important;
    white-space: nowrap !important;
    color: #333 !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}
.float-toolbar .qrcode-tip {
    padding: 5px !important;
}
.float-toolbar .qrcode-tip img {
    width: 140px !important;
    height: auto !important;
    display: block !important;
    border: none !important;
}
.float-toolbar li:hover .float-tip {
    display: block !important;
}
@media (max-width: 768px) {
    .float-toolbar li {
        width: 45px !important;
        height: 45px !important;
    }
    .float-toolbar li i {
        font-size: 18px !important;
    }
    .float-toolbar .float-tip {
        display: none !important;
    }
}
.footer {
    background-image: url('https://cocscn.cn/2026.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 30px !important;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(245, 245, 245, 0.9);
    z-index: 1;
}
.samebox {
    position: relative;
    z-index: 2;
}
.footer-logo {
    margin: 5px 0 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo img {
    height: 60px;
    width: auto;
}
.AboutUs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    justify-content: center;
    margin-bottom: 20px;
}
.AboutUs a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: bold; 
}
.AboutUs a:hover {
    color: #0088ff;
}
.copy {
    color: #666;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 0 !important;
}
.copy a {
    text-decoration: none;
}
.copy a:hover {
    text-decoration: underline;
}
.stats-clock-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    color: #333;
    padding: 8px 0 !important;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    border-top: 1px solid #e0e0e0;
}
.clock-part, .stats-part {
    display: inline-block;
    padding: 0 15px;
}
.stats-part span {
    margin: 0 8px;
}
@media (max-width: 768px) {
    .stats-clock-container {
        font-size: 12px;
        padding: 8px 0 !important;
    }
    .clock-part, .stats-part {
        padding: 0 8px;
    }
    .stats-part span {
        margin: 0 4px;
    }
    .footer-logo img {
        height: 40px;
    }
}