Blame view

public/scss/product/global/_list.css 3.58 KB
沈志敏 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
.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;
85
            padding: 0 8px;
沈志敏 authored
86
            font-size: 16px;
87
            height: 28px;
zhangxiaoru authored
88
            line-height: 28px;
沈志敏 authored
89 90 91 92 93 94 95 96 97 98 99 100

            span {
                float: left;
            }
        }

        .global-limited {
            float: left;
            border: 1px solid rgb(70, 46, 61);
            margin-left: 2px;
            padding: 0 5px;
            font-size: 16px;
101
            height: 28px;
zhangxiaoru authored
102
            line-height: 25px;
103
            box-sizing: border-box;
沈志敏 authored
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
        }

        .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;
zhangxiaoru authored
144
            margin-top: 2px;
沈志敏 authored
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
        }

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