_left-content.scss 2.77 KB
.product-page {
    .sort-container {
        width: 100%;
        font-size: 12px;
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 10px;
        margin-bottom: 10px;

        h2 {
            height: 28px;
            line-height: 28px;
            color: #222;
            font-weight: bold;
            position: relative;

            span {
                color: #bbb;
                padding-left: 5px;
            }
        }

        .product-list-nav {
            h3 {
                height: 28px;
                line-height: 28px;
                color: #222;
                font-weight: bold;
                position: relative;
                text-indent: 10px;
                cursor: pointer;

                span {
                    color: #bbb;
                    padding-left: 5px;

                    &.icon-triangle {
                        display: inline-block;
                        padding-left: 0;
                        width: 0;
                        height: 0;
                        border-top: 6px solid #fff;
                        border-left: 6px solid #000;
                        border-bottom: 6px solid #fff;
                        position: absolute;
                        top: 50%;
                        margin-top: -6px;
                        left: 0;
                        @include transition(transform .3s)
                    }
                }
            }

            &.active {
                h3 {
                    span {
                        &.icon-triangle {
                            @include rotate(90deg)
                        }
                    }
                }
                ul.sort-child-list {
                    display: block;
                }
            }
        }

        ul.sort-child-list {
            display: none;

            &.new-sale {
                display: block;
            }
            li {
                color: #bbb;

                &.active {
                    background: #333;
                    color: #fff;

                    a {
                        color: #fff;
                    }
                }

                span {
                    padding-left: 5px;
                }
            }
            
            a {
                display: block;
                color: #666;
                padding-left: 10px;
                height: 22px;
                line-height: 22px;
            }
        }
    }

    .nav-pic-title {
        height: 35px;
        line-height: 35px;
        color: #000;
        font-weight: bold;
        border-bottom: 1px solid #ebebeb;
        font-size: 12px;
    }

    .pic-nav {
        display: block;

        li, img {
            display: block;
            width: 100%;
            overflow: hidden;
        }
    }
}