_floor-header.css 779 Bytes
/*
 *楼层头部样式
 */
.floor-header {
    position: relative;
    margin: 80px 0 40px;

    .floor-title {
        margin: 0 auto;
        width: 298px;
        height: 31px;
        line-height: 31px;
        border: 1px solid #000;
        font-size: 16px;
        text-align: center;
    }

    .header-navs {
        position: absolute;
        padding: 10px 0;
        top: 0;
        right: 0;
        font-size: 14px;

        li {
            float: left;
            padding: 1px 15px;
            border-left: 1px solid #ccc;

            &:first-child {
                border-left: none;
            }

            &:hover {
                text-decoration: underline;
            }

            a {
                color: #333;
            }
        }
    }
}