body {
    padding: 0;
    margin: 0;
    font-family: 'STXinwei';
    font-size: 14px;
    color: black;
}

:root {
    --area-distance: 20px;
    --border-radius: 10px;
}

body>* ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body>* ::-webkit-scrollbar-track {
    background-color: transparent
}

body ::-moz-scrollbar-track {
    background-color: transparent
}

body>* ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #adb0b8;
}

body>* ::-webkit-scrollbar-thumb:hover {
    background-color: #8a8e99;
}

body>* ::-webkit-scrollbar-corner {
    background-color: transparent
}

#main {
    width: 100%;
    display: flex;
    justify-content: center;
    min-width: 1114px;
    overflow-x: auto;

    #con {
        display: flex;
        padding-top: 50px;
        padding-bottom: 70px;
        width: 100%;
        flex-direction: column;
        align-items: center;
        min-height: calc(100vh - 120px);
        justify-content: center;
        position: relative;
        background-color: #409eff;

        .el-card {
                width: 70%;
                min-height: 200px;
                margin: var(--area-distance) 0px;
                border: unset;
                border-radius: var(--border-radius);
        
                .el-card__header {
                    display: flex;
                    justify-content: center;
                    border-bottom: unset;
                    font-size: 20px;
                    font-weight: bold;
                    flex-direction: column;
        
                    .card-header {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
        
                        .fl-detail-updateTime {
                            margin-top: 5px;
                            font-size: 12px;
                            font-weight: normal;
                        }
                    }
                    .card-desc{
                        display: flex;
                        font-size: 12px;
                        color: grey;
                        justify-content: space-between;
                    }
                }
        
                .fl-detail-con {
        
                    img {
                        max-width: 100%;
                    }
                }
            }

    }

}


.fl-tip {
    position: absolute;
    top: 10px;
    display: none;
    z-index: 3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px 5px #ccc;

    .fl-tip-icon {
        width: 15px;
        display: none;
    }

    .fl-tip-icon-success {
        color: green;
    }

    .fl-tip-icon-failed {
        color: red;
    }

    span {
        padding-left: 10px;
        font-size: 14px;
    }
}