_list.css 3.61 KB
.global-list-page {
    .list-nav {
        border-top: 2px solid #fff;
        border-bottom: 1px solid #e6e6e6;

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

        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;
                }
            }
        }

        .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;
            }
        }
    }

    .global-container {
        position: relative;
        min-height: auto !important;
        padding-left: 15px;
        padding-top: 20px;

        .global-country {
            float: left;
            background: rgb(70, 46, 61);
            color: #fff;
            padding: 0 8px;
            font-size: 16px;
            height: 28px;
            display: flex;
            align-items: center;

            span {
                float: left;
            }
        }

        .global-limited {
            float: left;
            border: 1px solid rgb(70, 46, 61);
            margin-left: 2px;
            padding: 0 5px;
            font-size: 16px;
            height: 28px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
        }

        .global-saleout {
            width: 50px;
            height: 50px;
            position: absolute;
            top: 0;
            right: 5px;

            .text {
                width: 100%;
                text-align: center;
                font-size: 16px;
                line-height: 24px;
                position: absolute;
                color: #fff;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .bg {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                background: #999;
                border-radius: 30%;
                transform: rotate(45deg);
            }
        }

        .global-plane {
            width: 21px;
            height: 21px;
            background-image: resolve("product/airplane.png");
            background-repeat: no-repeat;
            background-size: cover;
            margin-right: 10px;
        }

        .sale-price {
            color: #000;
        }
    }

    .no-result-new {
        text-align: center;
        padding-top: 90px;
        padding-bottom: 110px;

        p {
            color: #ccc;
            margin-bottom: 25px;
            font-size: 26px;

            &:first-child {
                color: #444;
                font-size: 32px;
            }
        }
    }
}