<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header{
    width: 100%;
    height: 1rem;
}
#main{
    display: flex;
    flex-direction: column;
}
.header h1{
    padding:0.2rem 0;
    text-align: center;
    font-size: 0.4rem;
    background-color: #fff;
    border-bottom: 1px solid #F0F0F0;
}
.main{
    position: absolute;
    margin-bottom: 0.8rem;
    top: 0.95rem;
    bottom: 0.2rem;
    display: flex;
    background: #ffff;
}
.main .parent{
    width: 35%;
    background-color: #F0F0F0;
}
.main .parent ul.list{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.main .parent ul.list li a{
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 1rem;
    line-height: 1rem;
    padding: 0rem 0.2rem 0rem 0.2rem;
    font-size: 0.26rem;
    color: #111111;
}
.main .parent ul.list li a.active,.main .parent ul.list li:hover{
    background-color: #fff;
}
.main .child{
    width: 75%;
    height: 100%;
}
.main .child ul.list{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.main .child ul.list li{
    display: flex;
    align-items: center;
    padding: 0 0.2rem;
    height: 1rem;
    line-height: 0.4rem;
    font-size: 0.24rem;
    border-bottom: 1px solid #F0F0F0;
}
.main .child ul.list li a{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main .child ul.list li a.active,.main .child ul.list li a:hover{
    color: #F6701F;
}</pre></body></html>