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;
    background: #409eff;

    #header,
    #footer {
        width: 100%;
        position: fixed;
        display: flex;
        left: 0px;
        padding: 10px 10%;
        margin: 0px !important;
        align-items: center;
        align-content: center;
        z-index: 2;
    }

    #header {
        height: 50px;
        top: 0px;
        background-color: white;

        #last {
            display: flex;
            justify-content: flex-end;
        }

        div {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }

        .el-menu-demo {
            background-color: unset !important;
        }

        .fl-icon-websiteName {
            cursor: pointer;
        }
    }

    #footer {
        height: 70px;
        bottom: 0px;
        background: #f3f3f3;
        color: #606061;
        justify-content: center;
        border-top: 1px solid #dfe1e6;

        .footer-copyright {
            margin-left: var(--area-distance);
            display: flex;
        }
    }

    #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;

        .fl-mail-manager-form {
            width: 400px;

            .el-form-item {
                margin: 20px 0px;
            }

            .fl-mail-manager-form-button {
                .el-form-item__content {
                    justify-content: center
                }
            }
        }

    }

}


.fl-tip {
    position: absolute;
    top: 10px;
    display: none;
    z-index: 3;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px 5px #2a6db3;
    background: white;

    .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;
    }
}