/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-content {
        padding: 0.3rem;
    }
    .index-list>li{
        border-bottom: 0.01rem solid #c8ced5;
        transition: all 0.5s ease;

    }
    .index-list>li:hover>a {
        background-size: 100% 0.02rem;
        transition: all .5s ease;

    }
    .index-list>li>a{
        height: 0.7rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 1s ease; 
        background-image: linear-gradient(var(--zt_color--), var(--zt_color--));
        background-position: 0 100%;
        background-size: 0 0.02rem;
        background-repeat: no-repeat;
    }
    .index-list>li:hover >a>p {
        color: var(--zt_color--);
        font-weight: 700;
    }
    .index-list>li:hover >a>h2 {
        color: var(--zt_color--);
        font-weight: 700;
    }
    .index-list>li>a>p{
        position: relative;
        flex: 1;
        padding-left: 0.2rem;
        color: #333333;
        font-size: 0.2rem;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .index-list>li>a>p::after {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
        content: "";
        display: block;
        width: 0.1rem;
        height: 0.1rem;
        border-radius: 50%;
        background-color: #0145a1;
    }
    .index-list>li>a>h2{
        text-align: right;
        width: 1.5rem;
        font-weight: 500;
        color: #888;
        font-size: 0.18rem;
    }

}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right-content {
        padding: 0.3rem;
    }
    .index-list>li{
        border-bottom: 0.01rem solid #c8ced5;
        transition: all 0.5s ease;

    }
    .index-list>li:hover>a {
        background-size: 100% 0.02rem;
        transition: all .5s ease;

    }
    .index-list>li>a{
        height: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 1s ease; 
        background-image: linear-gradient(var(--zt_color--), var(--zt_color--));
        background-position: 0 100%;
        background-size: 0 0.02rem;
        background-repeat: no-repeat;
    }
    .index-list>li:hover >a>p {
        color: var(--zt_color--);
        font-weight: 700;
    }
    .index-list>li:hover >a>h2 {
        color: var(--zt_color--);
        font-weight: 700;
    }
    .index-list>li>a>p{
        position: relative;
        flex: 1;
        padding-left: 20px;
        color: #333333;
        font-size: 16px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .index-list>li>a>p::after {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0,-50%);
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #0145a1;
    }
    .index-list>li>a>h2{
        text-align: right;
        width: 100px;
        font-weight: 500;
        color: #888;
        font-size: 16px;
    }

}

@media screen and (max-width: 800px) {
    

}