_header.css 3.19 KB
@define-extend nav {
    display: block;
    position: absolute;
    top: 0;
    width: 90px;
    height: 90px;
    font-size: 20PX;
    line-height: 90px;
    color: #fff;
    text-align: center;
    outline: none;
}

.yoho-header {
    position: relative;
    background-color: #000;
    color: #fff;
    width: 100%;
    overflow: hidden;
    height: 90px;
    line-height: 90px;
    z-index: 1;

    &.boys {
        background-image: linear-gradient(#323232, #414141);
    }

    &.girls {
        background: #ff88ae;
    }

    &.kids {
        background: #7ad9f9;
    }

    &.life-style {
        background: #4f4138;
    }

    a.highlight {
        background: rgba(200,200,200,.1);
    }

    .nav-back {
        @extend nav;
        left: 10px;
    }

    .nav-home {
        @extend nav;
        right: 10px;
    }

    .nav-btn {
        @extend nav;
        right: 10px;
        font-size: 14PX;
    }

    .nav-title {
        position: absolute;
        margin-left: 100px;
        margin-right: 100px;
        height: 100%;
        font-size: 36px;
        color: #fff;
        font-weight: bold;
        top: 0;
        right: 0;
        left: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-align: center;
    }

}

.systemUpdate{
    width: 100%;
    height: 90px;
    overflow: hidden;
    line-height: 90px;
    display: none;
    background-image: linear-gradient(#323232, #414141);

    .systemHeader{
        width: 85%;
        height: 100%;
        overflow: hidden;
        font-size: 60px;
        color:#fff;
        float: left;
        text-align: center;
    }
    span{
        width: 14%;
        height: 100%;
        overflow: hidden;
        float: left;
        text-align: center;
        font-size: 80px;
        font-weight: bold;
        color: #fff;
    }
}

.systemMain{
    width: 92%;
    height: 100%;
    overflow: hidden;
    background-color:#444;
    color: #fff;
    padding:0 4%;
    position: absolute;
    top: 0;
    left: 0;

    p {
        font-size: 52px;
        line-height: 60px;
        &:first-of-type{
            padding-top: 90px;
        }
    }
}

.homebuttom{
    width: 100%;
    height: 90px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    z-index: 2;
    position: relative;

    &.boys {
        background-image: linear-gradient(#323232, #414141);
    }

    &.girls {
        background: #ff88ae;
    }

    &.kids {
        background: #7ad9f9;
    }

    &.life-style {
        background: #4f4138;
    }

    ul {
        width: 100%;
        height: 90%;
        overflow: hidden;
        padding-top: 12px;

        li {
            width: 25%;
            height: 100%;
            overflow: hidden;
            float: left;
            text-align: center;
            i{
                width: 100%;
                height: 40%;
                display: block;
                color: #fff;
                margin-bottom: 8px;
            }
            span{
                width: 100%;
                height: auto;
                overflow: hidden;
                display: block;
                line-height: 40px;
                color: #fff;
            }
        }
    }
}