.list .container {
    background-color: #efefef;
    display: flex;
    justify-content: center;
    padding: 0px;
}

.list .home-container{
   flex-direction: column;
}

.list .home-container {
    background-color: white;
    width: 1080px;
    margin: 10px 0 40px;
    padding: 20px;
    border-radius: 10px;

    display: flex;
    justify-content: space-between;
}

.list .home-container .header-tip{
  margin-bottom: 10px;
  color: grey;
}

.list .home-container .header-tip a{
    color: grey;  
} 

.list .home-container .header-tip a:hover{
    text-decoration: underline;
}

.list .left-container {
    width: 63%;
}

.list .right-container {
    width: 35%;
}

.list .mobile-item {
    display: none;
}

.list .pc-item {
    display: block;
}

@media (max-width: 1100px) {
    .list .mobile-item {
        display: block;
        
    }

    .list .home-container {
        width: 100%;
        gap: inherit !important;
    }

    .list .pc-item {
        display: none;
    }

    .list .left-container {
        width: 100%;
    }
}

/* 增强移动端适配 */
@media (max-width: 768px) {
    .list .home-container {
        width: 100%;
        padding: 8px;
        margin: 10px auto 15px;
    }

    /* 减小广告和组件之间的间距 */
    .list .right-container>* {
        margin-bottom: 8px;
    }
}

/* 确保页面底部无多余空白 */
@media (max-height: 800px) {
    .list .home-container {
        margin-bottom: 15px;
    }
}