.main{width: 1200px; margin: 0 auto; flex-direction: column;  justify-content: flex-start; gap: 20px; padding: 20px 0;}

.list{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.list.loading{
    opacity: .5;
}
.list.loading::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255, .3) url(/images/loading3.gif) center center no-repeat;
    z-index: 999;
    line-height: 60px;
    backdrop-filter: blur(5px);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list .item{width: 100%; height: 70px; overflow: hidden; transition: all .3s;}
.list .item.active{ height: auto;}
.list .item .hd{display: flex; align-items: center; height: 70px; background: #e3e3e3; padding: 10px; color: #808080; cursor: pointer; transition: all .3s; user-select: none;}
.list .item.active .hd{background: var(--theme-color); color: #FFFFFF;}
.list .item .hd > *{text-align: center;}
.list .item .hd .name{flex: 6; text-align: left; font-size: 17px; font-weight: bold; color: #333333;}
.list .item.active .hd .name{color: #FFFFFF;}
.list .item .hd .need_number{flex: 1}
.list .item .hd .main_name{flex: 5; font-size: 16px;}
.list .item .hd .date{flex: 2}
.list .item .hd .openBtn{margin-left: 30px;width: 30px; height: 30px; line-height: 30px;}

.list .item .bd{width: 100%; height: 0; padding: 0 30px; border: 1px solid #dddddd; overflow: hidden; border-top: none; transition: all .3s; transform-origin: top center; position: relative;}
.list .item.active .bd{padding: 30px; height: auto; min-height: 220px;}

.list .item .bd .describe{
    white-space: pre-line;
    line-height: 26px;
    color: #666666;
}

.list .item .bd .qrcode{position: absolute; width: 140px; height: 160px; bottom: 30px; right: 30px;}
.list .item .bd .qrcode .qrcode_img{width: 140px; height: 140px; border-radius: 10px; overflow: hidden;}
.list .item .bd .qrcode .qrcode_img img{width: 100%; }
.list .item .bd .qrcode .qrcode_text{line-height: 20px; color: #666666;}

.page{width: 1200px; margin: 0 auto; padding: 30px 0; display: flex; gap: 20px; justify-content: center; align-items: center; user-select: none;}
.page .btn{
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    background: #FFFFFF;
    cursor: pointer;
    min-width: 40px;
}
.page label{
    height: 40px;
    padding: 0 15px;
    line-height: 40px;
    font-weight: bold;

}
.page .label{
    color: #7b7b7b;
}

.page .current{background: var(--theme-color); color: #FFFFFF;}
.page .btn:hover{
    background: var(--theme-color);
    color: #FFFFFF;
}