Blame view

public/scss/home/_default.css 3.89 KB
weiqingting 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
.default-me-page {
    .message-tip {
        box-sizing: border-box;
        width: 800px;
        height: 40px;
        line-height: 40px;
        padding: 0 10px;
        margin-bottom: 10px;
        background: #faf6d9;
        border: 1px solid #f5e8c5;
        border-radius: 2px;
        font-weight: bold;
        font-size: 12px;

        a {
            color: #468fa2;
            font-weight: normal;
        }

        b {
            color: #e8044f;
            margin-right: 5px;
        }

        .close {
            float: right;
            cursor: pointer;
            font-weight: normal;
        }
    }

    .more {
        display: block;
        float: right;
        height: 21px;
        line-height: 22px;
        width: 63px;
        margin-top: 8px;
        padding-right: 8px;
        font-size: 12px;
        color: #fdfdfd;
        text-align: center;
        border-radius: 2px;
htoooth authored
44
        background: resolve(home/btn-more.png) no-repeat;
weiqingting authored
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
    }

    .brands ul {
        padding: 10px 0 10px 10px;

        li {
            float: left;
            width: 122px;
            height: 103px;
            border: 1px solid #f6f6f6;
            margin-right: 7px;
            overflow: hidden;
        }

        img {
            width: 80px;
            height: 50px;
            display: block;
            vertical-align: middle;
            margin: 15px auto;
        }

        .brand-name {
            display: block;
            width: 114px;
            height: 18px;
            line-height: 18px;
            color: #333;
            background: #f4f4f4;
            font-size: 12px;
            text-align: center;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            margin: 0 auto;
        }
    }
yyq authored
83 84
    .new-arrival,
    .recommend {
weiqingting authored
85 86 87 88 89
        overflow: hidden;

        .na-pager-wrap {
            float: right;
yyq authored
90 91
            .pre,
            .next {
weiqingting authored
92 93 94 95 96 97 98 99 100 101 102 103 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 144
                display: inline-block;
                height: 22px;
                line-height: 22px;
                margin-top: 8px;
                padding: 0 6px;
                font-size: 12px;
                color: #fff;
                background: #646464;
                text-align: center;
                border-radius: 2px;
                cursor: pointer;

                .iconfont {
                    font-size: 12px;
                }
            }

            .no-visible {
                visibility: hidden;
            }
        }

        ul {
            width: 800px;
            height: 218px;
            overflow: hidden;
        }

        li {
            float: left;
            width: 101px;
            height: 160px;
            padding: 29px;
            border-right: 1px solid #e3e3e3;
            text-align: center;
            font-size: 12px;
            overflow: hidden;

            .thumb {
                width: 100px;
                height: 100px;
            }

            .name {
                margin: 10px 0;
                text-decoration: underline;
                color: #666;
                line-height: 14px;
            }

            .price {
                color: #000;
            }
htoooth authored
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

            p {
                height: 28px;
                overflow: hidden;
            }
        }
    }

    .recommend {
        margin-bottom: 10px;

        ul {
            width: 990px;
        }

        li {
            width: 106px;
weiqingting authored
162 163 164
        }
    }
yyq authored
165
    .ho-btm {
htoooth authored
166 167 168 169
        float: right;
        width: 800px;
    }
weiqingting authored
170 171 172 173 174 175 176
    .banner {
        display: block;
        width: 800px;
        border: none;
    }

    .latest-orders .title {
htoooth authored
177
        background-image: resolve(home/latest-orders.png);
weiqingting authored
178 179 180
    }

    .brands .title {
htoooth authored
181
        background-image: resolve(home/brands.png);
weiqingting authored
182 183 184
    }

    .new-arrival .title {
htoooth authored
185 186 187 188 189
        background-image: resolve(home/new-arrival.png);
    }

    .recommend .title {
        background-image: resolve(home/recommend.png);
weiqingting authored
190
    }
htoooth authored
191
}