.index-list {
    width: 100%;
    padding: 20px;
    background-color: #fff;
}

.index-list .title {
    width: 100%;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    text-indent: 10px;
    font-weight: 700;
    color: var(--bs-gray-800);
}

.index-list .title::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 20px;
    top: 5px;
    left: 0;
    background-color: var(--ay-blue);
}

.index-list ul {
    display: flex;
    flex-wrap: wrap;
}

.index-list ul li {
    width: calc(100% / 5);
    height: 50px;
    margin-top: 20px;
}

.index-list ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.index-list ul li a img {
    width: 50px;
    height: 100%;
    margin-right: 15px;
    border-radius: 10px;
}

.index-list ul li a p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* ============ 首页三栏（照 ziqidonglai 模板布局：左分类 / 中轮播 / 右个人信息）
   配色跟 classic 主题走蓝色；全部挂在 .zl-trio 作用域下，不与原有样式冲突 ============ */
.zl-trio {
    align-items: stretch;
    /* Bootstrap 的 .row 有 -12px 负外边距，这里抵消掉，保证与上方那块左右对齐 */
    margin-left: 0;
    margin-right: 0;
}

/* 自定义列宽：左右各 20%、中间 60%；每列左右内边距 1px → 相邻两列缝隙 2px */
.zl-trio > .zl-col {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding-left: 1px;
    padding-right: 1px;
}

.zl-trio > .zl-col-side { width: 20%; }
.zl-trio > .zl-col-mid { width: 60%; }

.zl-trio .zl-hotlist {
    display: flex;
    flex-direction: column;
    height: 380px;
    overflow: hidden;
    background-color: var(--ay-blue);
    background-image: linear-gradient(to bottom, var(--ay-blue), #4a8bff);
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0 18px 16px;
}

.zl-trio .zl-hotlist .item {
    flex: none;
    padding-top: 12px;
    margin-bottom: 12px;
}

.zl-trio .zl-hotlist .item + .item {
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.zl-trio .zl-hotlist .item .tit {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.zl-trio .zl-hotlist .item .tit .zl-ico {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.zl-trio .zl-hotlist .item .list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.zl-trio .zl-hotlist .item .list a {
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    margin: 0 10px 4px 0;
}

.zl-trio .zl-hotlist .item .list a:hover {
    text-decoration: underline;
}

.zl-trio .zl-hotlist .but-go {
    display: flex;
    flex: none;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 8px;
    background: rgb(255 255 255 / 20%);
    color: #fff;
    font-size: 14px;
}

.zl-trio .zl-hotlist .but-go:hover {
    background: rgb(255 255 255 / 40%);
}

.zl-trio .zl-swiper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
}

.zl-trio .zl-swiper .swiper-wrapper,
.zl-trio .zl-swiper .swiper-slide {
    height: 100%;
}

.zl-trio .zl-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.zl-trio .zl-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zl-trio .zl-swiper .swiper-pagination-bullet {
    width: 35px;
    height: 6px;
    border-radius: 8px;
    background: #fff;
    opacity: .8;
}

.zl-trio .zl-swiper .swiper-pagination-bullet-active {
    background: var(--ay-blue);
    box-shadow: 0 0 0 2px rgb(255 255 255 / 80%);
}

.zl-trio .zl-user {
    height: 380px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    background-image: linear-gradient(to bottom, #dbe9ff, #fff);
    box-shadow: 0 0 10px rgb(0 102 255 / 20%);
}

.zl-trio .zl-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.zl-trio .zl-portrait {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgb(0 102 255 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zl-trio .zl-portrait svg {
    width: 70px;
    height: 70px;
    color: #a9c6ef;
}

.zl-trio .zl-text {
    margin-top: 22px;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

.zl-trio .zl-grade {
    margin-top: 6px;
    padding: 2px 10px;
    border-radius: 20px;
    background: #dbe9ff;
    color: var(--ay-blue);
    font-size: 12px;
}

.zl-trio .zl-buts {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 34px;
}

.zl-trio .zl-buts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #fff;
    color: var(--ay-blue);
    font-size: 14px;
}

.zl-trio .zl-buts a:hover {
    border-color: var(--ay-blue);
    background: var(--ay-blue);
    color: #fff;
}

.zl-trio .zl-buts a.zl-main {
    border-color: var(--ay-blue);
    background: var(--ay-blue);
    color: #fff;
}

.zl-trio .zl-buts a.zl-main:hover {
    background: #3d7dff;
    border-color: #3d7dff;
}
