@media (min-width: 75rem) {
    .listmain{
        width: 75rem;
        height: auto;
        background-color: #fff;
        padding: 5rem;
        margin: 0 auto;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2), 5px 0 10px rgba(0, 0, 0, 0.2);
    }
    .dqwz{
        width: 100%;
        height: 2.2rem;
        color: #4aa48e;
        font-size: 1.25rem;
        font-weight: 600;
        border-bottom: 2px solid #4aa48e;
        margin-bottom: 2rem;
    }
    .dqwz a{
        color: #4aa48e;
        font-size: 1.25rem;
        font-weight: 600;
    }
    .list{
        width: 100%;
        height: auto;
    }
    .list ul li{
        display: block;
        width: 100%;
        height: 2.3rem;
        font-size: 1.125rem;
    }
    .list ul li a{
        text-decoration: none;
        color: #444444;
    }
    .list ul li a:hover{
        color: #4aa48e;
    }
    .list ul li a .date{
        float: right;
        text-align: right;
        color: #444444;
    }
    .list ul li a .date:hover{
        color: #4aa48e;
    }
}
/* 新增：75rem以下自适应样式 */
@media (max-width: 75rem) {
    .listmain{
        /*width: 100%; /* 自适应宽度 */*/
        height: auto;
        background-color: #fff;
        padding: 0rem 1rem; /* 上下保留5rem，左右改为1rem */
        margin: 0 auto;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2), 5px 0 10px rgba(0, 0, 0, 0.2);
    }
    .dqwz{
        width: 100%;
        height: auto; /* 高度自适应 */
        line-height: 2.2rem; /* 保证文字垂直居中 */
        color: #4aa48e;
        font-size: 1.1rem; /* 适配小屏缩小字号 */
        font-weight: 600;
        border-bottom: 2px solid #4aa48e;
        margin-bottom: 1.5rem; /* 缩小底部间距 */
        padding: 0.5rem 0; /* 增加上下内边距 */
    }
    .dqwz a{
        color: #4aa48e;
        font-size: 1.1rem; /* 同步缩小字号 */
        font-weight: 600;
    }
    .list{
        width: 100%;
        height: auto;
    }
    .list ul li{
        display: block;
        width: 100%;
        height: auto; /* 高度自适应 */
        font-size: 1.1rem; /* 适配小屏缩小字号 */
        border-bottom: 1px dashed #eee; /* 新增虚线底边框 */
        padding: 0.8rem 0; /* 增加上下内边距，提升可读性 */
        line-height: 1.4rem;
    }
    .list ul li a{
        text-decoration: none;
        color: #444444;
        display: block; /* 保证点击区域完整 */
    }
    .list ul li a:hover{
        color: #4aa48e;
    }
    .list ul li a .date{
        display: none;
        float: right;
        text-align: right;
        color: #444444;
        font-size: 1rem; /* 日期字号稍小 */
    }
    .list ul li a .date:hover{
        color: #4aa48e;
    }
}
/* 新增：40rem以下小屏强化自适应 */
@media (max-width: 40rem) {
    .listmain{
        padding: 0rem 1rem; /* 小屏进一步缩小上下内边距 */
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1), 2px 0 5px rgba(0, 0, 0, 0.1); /* 弱化阴影 */
    }
    .dqwz{
        font-size: 1rem; /* 进一步缩小字号 */
        margin-bottom: 1rem;
        border-bottom: 1px solid #4aa48e; /* 缩小底边框 */
    }
    .dqwz a{
        font-size: 1rem;
    }
    .list ul li{
        font-size: 1rem; /* 小屏最终字号 */
        padding: 0.6rem 0; /* 缩小内边距 */
        line-height: 1.4rem;
    }
    .list ul li a .date{
        display: none;
        font-size: 0.9rem; /* 日期进一步缩小 */
    }
}