_index.css 1.58 KB
/* 个人中心页面背景 */
body.for-me {
    background: #f5f5f5;
}

.me-page {
    margin-bottom: 30px;

    /* 左侧导航 */
    .me-navigation {
        width: 150px;
        margin-right: 10px;

        .title {
            height: 60px;
            line-height: 60px;
            text-align: center;
            background: #fff;
        }

        .nav-row {
            height: 40px;
            line-height: 40px;
            color: #cecece;
            background: #fff;

            a {
                display: block;
                height: 100%;
                width: 100%;
                padding-left: 20px;
                border-left: 2px solid #fff;
            }

            &.focus {
                background: #eee;
                color: #000;

                a {
                    border-color: #000;
                }
            }
        }

        .banner-img {
            margin-top: 10px;
        }
    }

    .me-main {
        width: 990px;
    }

    .service-top {
        position: fixed;
        left: 50%;
        bottom: 20px;
        border: 1px solid #eee;
        background: #fff;
        cursor: pointer;
        z-index: 2;
        margin-left: 625px;

        .service,
        .return-top {
            display: block;
            width: 50px;
            height: 50px;
            padding-top: 13px;
            text-align: center;

            &:hover {
                padding-top: 8px;
            }
        }

        .return-top {
            border-top: 1px solid #eee;
        }

        .hover-text {
            font-size: 12px;
        }
    }
}