nav.scss 2.47 KB
.reds-shop .filter-box {
    display: none;

    .list-nav {
        border-top: 2px solid #fff;
        border-bottom: 1px solid #e6e6e6;

        > li {
            float: left;
            width: 20%;
            height: 33PX;
            line-height: 33PX;
            text-align: center;
            font-size: 14PX;
        }

        .bytouch {
            background: #eee;
        }

        a {
            display: block;
            box-sizing: border-box;
            width: 100%;
            height: 100%;
            color: #999;
        }

        .nav-txt {
            display: inline-block;
            height: 100%;
            box-sizing: border-box;
        }

        .active > a {
            color: #000;

            .iconfont {
                color: #999;

                &.cur {
                    color: #000;
                }

                &.drop {
                    color: #000;
                }
            }
        }

        .new .iconfont {
            transform: scale(0.8);
            font-weight: bold;
            font-size: 12PX;
        }

        .filter .iconfont {
            font-size: 12PX;
            transition: transform 0.1 ease-in;
        }

        .filter.active .iconfont {
            transform: rotate(-180deg);
        }

        .icon {
            position: relative;

            i {
                position: absolute;
                transform: scale(0.8);
                font-weight: bold;
            }

            .up {
                top: -11PX;
            }

            .down {
                top: -4PX;
            }
        }
    }

    .drop-list {
        padding-left: 30px;
        position: absolute;
        z-index: 10;
        background: #fff;
        width: 100%;

        li {
            width: 100%;
            height: 88px;
            font-size: 28px;
            color: #b0b0b0;
            line-height: 88px;
            border-bottom: 1px solid #e0e0e0;
        }

        li:last-child {
            border-bottom: none;
        }

        .active {
            color: #444;

            .chose {
                display: inline-block;
                width: 30px;
                height: 22px;
                background-image: url("img/product/chose.png");
                background-size: 100%;
                float: right;
                margin-top: 33px;
                margin-right: 30px;
                background-repeat: no-repeat;
            }
        }
    }

    .hide {
        display: none;
    }
}