/*COMMON CSS*/
@charset "UTF-8";


body,h1, ul, li, p {
    margin: 0;
    padding: 0;
}

/*头部*/
header {
    position: relative;

    .logo{
        position: absolute;
    }
    .background-img{
        width: 100%;
        height: 175px;
    }

    .title {
        top: 80px;
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        font-family: 'Ma Shan Zheng', cursive;
        font-size: 70px;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
        margin-bottom: 10px;
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .login-box{
        top: 30px;
        position: absolute;
        right: 30px;
        font-size:16px;
        font-weight: 600;
        line-height: 25px;
    }

    .icon {
        font-size: 18px;
        font-family: 'icomoon';
        color: white;
        vertical-align: bottom;
    }
}

/*中部主容器内容*/
.main-container {
    margin: auto;
    width: 80%;
    clear: both;
    overflow: hidden;
    padding: 20px;
}
