@charset "utf-8";
.text-list-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 500px;
}
.text-list-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.text-list-wrap li {
    border-bottom: 1px solid #f0f0f0;
}
.text-list-wrap li:last-child {
    border-bottom: none;
}
.text-list-wrap li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    gap: 15px;
}
.text-list-wrap li a:hover {
    background: #faf6f6;
    color: #9f0303;
    border-left-color: #9f0303;
}
.text-list-wrap li a span {
    flex-shrink: 0;
    color: #999;
    font-size: 16px;
    white-space: nowrap;
}

/* 平板：≤991px */
@media (max-width: 991px) {
    .text-list-wrap {
        padding: 15px;
        box-sizing: border-box;
    }
    .text-list-wrap li a {
        padding: 12px 18px;
        font-size: 15px;
    }
    .text-list-wrap li a span {
        font-size: 14px;
    }
}

/* 手机：≤767px */
@media (max-width: 767px) {
    .text-list-wrap {
        padding: 10px;
        box-sizing: border-box;
    }
    .text-list-wrap li a {
        padding: 10px 14px;
        font-size: 14px;
        gap: 10px;
    }
    .text-list-wrap li a span {
        font-size: 14px;
    }
}
