#home{
    height: 100%;
    margin: unset;
    background: #f5f5fa;
    color: #47474f;
    font-display: auto;
    #header{
        background: #fff;
        width: 100%;
        height: 60px;
        z-index: 1041;
        position: fixed;
        right: 0;
        left: 0;
        top: 0;
        box-shadow: 0 3px 6px 0 rgba(50,50,50,.3);
        padding: 0 24px;
        >nav{
            display: flex;
            align-items: center;
            font-size: 12px;
            height: 60px;
            >a{
                order: 1;
                display: block;
                color: #47474f;
                text-decoration: none;
                background: rgba(0,0,0,0);
                cursor: pointer;
                line-height: 20px;
                >img{
                    height: 40px;
                }
            }
            #menu{
                order: 2;
                margin: 0 24px;
                font-size: 22px;
            }
            #action{
                order: 3;
                margin-left: auto;
                margin-right: 48px;
                >button{
                    margin-bottom: 0px;
                }
            }
        }
    }
    #main{
        margin-top: 60px;
        overflow: hidden;
        #pattern-bg{
            overflow: hidden;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            position: fixed;
            background-position: center center;
            background-size: 100% auto;
            background-image: url("background.svg");
        }
        #tools{
            margin: auto;
            max-width: 1440px;
            padding: 24px 68px 42px;
        }
    }
}
#page-title{
    padding: 24px 24px 0px;
    position: relative;
    text-align: center;
    >h1{
        font-size: 20px;
        line-height: 30px;
        font-weight: 600;
        color: #33333b;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4px;
        max-width: 1100px;
    }
    >h2{
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 28px;
        font-weight: 400;
        color: #47474f;
        max-width: 980px;
        margin: auto;
    }
}