goodscomments.css 1.4 KB
Newer Older
G
gongfuxiang 已提交
1
/**
D
devil_gong 已提交
2
 * 公共
G
gongfuxiang 已提交
3
 */
D
devil_gong 已提交
4 5 6 7 8 9 10 11 12
.content-right table.am-table td.user-info,
.content-right table.am-table td.goods-info,
.content-right table.am-table td.content-info {
    width: 20%;
}
@media only screen and (max-width: 641px) {
    .content-right table.am-table td.content-info {
        width: 45%;
    }
G
gongfuxiang 已提交
13
}
D
devil_gong 已提交
14 15 16 17

/**
 * 用户信息
 */
G
gongfuxiang 已提交
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
.content-right .user-info img {
    max-width: 35px;
    max-height: 35px;
    margin: 0 5px 2px 0;
}
.content-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/**
 * 商品信息
 */
.content-right .goods-info .base {
    min-height: 57px;
}
.content-right .goods-info img {
    width: 55px;
    height: 55px;
    margin: 2px 5px 0px 0;
}
.content-right .goods-info p {
    margin: 3px 0 0 0;
}

/**
 * 列表
 */
.content-right table.am-table .reply-content {
D
devil_gong 已提交
48
    max-width: 100%;
G
gongfuxiang 已提交
49 50 51 52 53 54 55 56 57
    max-height: 130px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.content-right table.am-table .reply-content p {
    margin: 5px 0 0 0;
}
.content-right table.am-table .view-operation {
    width: 85px;
D
devil_gong 已提交
58
}
D
devil_gong 已提交
59 60 61 62 63 64 65
.content-right table.am-table .am-slider {
    width: 100px;
    max-height: 108px;
    overflow: hidden;
    box-shadow: none;
    -webkit-box-shadow: none;
}
D
devil_gong 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78


/**
 * 编辑
 */
.content-right .am-alert.goods-info a {
    color: #0e90d2;
}
.content-right .am-alert p.title {
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #888;
G
gongfuxiang 已提交
79
}