<style>
    /* ===== 基础全宽重置 ===== */
    html, body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* 防止水平滚动 */
    }
    
    /* 基础重置 */
    *, *::before, *::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    /* 链接样式 */
    a {
        color: #4ECDC4;
        text-decoration: none;
        -webkit-transition: color .3s;
        -moz-transition: color .3s;
        -o-transition: color .3s;
        transition: color .3s;
    }
    
    a:hover {
        color: #FF8B94;
        text-decoration: none;
    }
    
    /* ===== 全宽容器 ===== */
    /* 移除或修改容器限制 */
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    
    /* ===== 卡片样式 - 调整宽度 ===== */
    .card {
        position: relative;
        background: #ffffff00;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        margin: 8px;
        overflow: hidden;
        border: 1px solid #ff000000;
        width: calc(100% - 16px); /* 全宽减去边距 */
    }
    
    /* ===== 顶部广告 - 全宽 ===== */
    #topgg {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        display: block;
    }
    
    #topgg img {
        height: 55px;
        width: 100%;
        margin-bottom: 1px;
        display: block;
    }
    
    #topgg img:hover {
        transition-duration: 0.3s;
        transition-property: box-shadow;
        box-shadow: 0 0 10px #0370e5;
        cursor: pointer;
        filter: alpha(Opacity=80);
        -moz-opacity: 0.9;
        opacity: 0.9;
    }
    
    /* ===== 网格布局 - 全宽 ===== */
    .top-grid {
        font-size: 0;
        padding: 8px;
        background: #ffffff00;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: block;
    }
    
    .top-grid .item {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        width: 8.25%;
        color: #333;
        font-size: 13px;
        padding: 10px 1px;
        border-radius: 6px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    
    .top-grid .item:hover {
        background: #4ECDC4;
        color: #fff;
        font-weight: 600;
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -o-transform: scale(1.05);
        transform: scale(1.05);
    }
    
    .top-grid .item .icon {
        width: 40px;
        height: 40px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }
    
    .top-grid .item:hover .icon {
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
    
    .top-grid .item .icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .top-grid .item .name {
        width: 100%;
        text-align: center;
        margin-top: 8px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    /* ===== 强制全宽的工具类 ===== */
    .full-width {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 0;
        padding-right: 0;
    }
    
    .width-100 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* ===== 响应式设计 ===== */
    @media(max-width:1300px) {
        .top-grid .item {
            width: 16.6666667%;
        }
    }
    
    @media(max-width:767px) {
        .top-grid .item {
            width: 20%;
        }
        
        .card {
            width: calc(100% - 10px); /* 移动端边距调整 */
            margin: 5px;
        }
    }
    
    @media(max-width:480px) {
        .top-grid .item {
            width: 25%;
            padding: 10px 5px;
            font-size: 12px;
        }
    }
    
    @media screen and (max-width: 768px) {
        #topgg img {
            width: 100%;
            height: 55px;
        }
    }
    
    @media(max-width: 450px) {
        #topgg img {
            width: 100%;
            height: 3.5rem;
        }
        
        .card {
            width: calc(100% - 8px);
            margin: 4px;
        }
    }
</style>