.download-head{
    display: flex;
    justify-content: center;
    span{
        width: 320px;
        height: 60px;
        border-radius: 6px 6px 0px 0px;
        background: rgba(250, 250, 250, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 400;
        cursor: pointer;
        color: rgba(153, 153, 153, 1);  
        &.active{
            background: rgba(255, 255, 255, 1);
            box-shadow: 0px -6px 16px 0px rgba(122, 126, 140, 0.08);
            color: rgba(59, 92, 188, 1);
            font-weight: 600;
        }
        &:hover{
            color: rgba(59, 92, 188, 1);
        }
    }
}
.download-content{
    display: flex;
    flex-wrap: nowrap;
    padding: 47px 50px 0;
    border-radius: 6px 6px 0px 0px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 6px 16px 0px rgba(122, 126, 140, 0.08);
    // margin-bottom: -40px;
    .download-nav-main{
        display: flex;
        flex-direction: column;
        flex: 0 0 250px;
        background: rgba(59, 92, 188, 0.8);
        color: #fff;
        span{
            height: 60px;
            display: block;
            font-size: 16px;
            font-weight: 400;
            padding-left: 29px;
            line-height: 60px;
            overflow: hidden;
            cursor: pointer;
            &:hover{
                background: rgba(59, 92, 188,0.5);
            }
            &.active{
                font-weight: 800;
                background: rgba(59, 92, 188, 1);
                padding-left: 46px;      
            }
            
        }
    }
    .download-nav-list{
        display: flex;
        flex-direction: column;
        flex: 0 0 250px;
        background: rgba(240, 245, 255, 1);
        color: rgba(56, 56, 56, 1);
        font-weight: 400;
        font-size: 16px;
        overflow-y: auto;
        span{
            flex: 0 0 60px;
            height: 60px;
            line-height: 60px;
            text-align: center;
            cursor: pointer;
            overflow: hidden;
            font-weight: 400;
            
            &:hover{
                background: rgba(225, 231, 247, 0.5);
            }
            &.active{
                font-weight: 600;
                background: rgba(225, 231, 247, 1);
            }
        }
    }
    .download-tables{
        margin-left: 28px;
        flex: 1;
        padding-bottom: 10px;
        overflow-y: auto;
        table{
            border-left: 1px solid rgba(166, 166, 166, 1);
            border-top: 1px solid rgba(166, 166, 166, 1);
            border-right: 1px solid rgba(166, 166, 166, 1);
            th{
                background: rgba(59, 92, 188, 1);
                border-right: 1px solid rgba(255, 255, 255, 1);
                font-size: 14px;   
                font-weight: 700; 
                color: #fff;
                height: 32px;
                text-align: center;
                &:last-child{
                    border-color: rgba(166, 166, 166, 1);
                }
            }
            td{
                border-right: 1px solid rgba(166, 166, 166, 1);
                border-bottom: 1px solid rgba(166, 166, 166, 1);
                height: 42px;
                font-size: 12px;
                padding-left: 10px;
                p{
                    margin-bottom: 10px;
                    line-height: 1.5;
                }
            }
            .log-hide{
                display: none;
            }
            .log-hide.active {
                display: table-row;
            }
            .log-btn{
                user-select: none;
                cursor: pointer;
                img{
                    width: 10px;
                    margin-left: 10px;
                }
                &:hover{
                    color: #5D95E6;
                }
            }
        }
    }
}
.loading{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 576px){
    .download-content{
        padding: 17px 10px 0;
        .download-tables{
            margin-left: 0;
        }
    }
}