Blame view

public/scss/guang/detail/_comments.css 1.97 KB
郭成尧 authored
1 2 3 4
/*
 * @Author: Targaryen
 * @Date: 2017-05-25 15:49:46
 * @Last Modified by: Targaryen
郭成尧 authored
5
 * @Last Modified time: 2017-06-02 10:43:21
郭成尧 authored
6 7 8 9
 */

.guang-detail-page .comments {
    margin-top: 30px;
郭成尧 authored
10
    background-color: #fff;
郭成尧 authored
11 12 13

    .comments-title {
        color: #444;
郭成尧 authored
14
        padding: 30px;
郭成尧 authored
15 16
        border-bottom: 1px solid #b0b0b0;
        line-height: 70px;
郭成尧 authored
17 18 19

        .avatar-list {
            float: left;
郭成尧 authored
20
            margin-right: 30px;
郭成尧 authored
21 22 23 24 25

            img {
                width: 70px;
                height: 70px;
                border-radius: 35px;
郭成尧 authored
26 27 28 29 30 31 32
                margin-left: -35px;
                float: left;
                border: 2px solid #fff;
            }

            img:first-child {
                margin-left: 0;
郭成尧 authored
33 34 35 36 37 38 39 40 41 42 43 44
            }
        }

        .agree {
            float: left;
        }

        .seenum {
            float: right;
        }
    }
郭成尧 authored
45
    .comments-num {
郭成尧 authored
46
        padding: 0 30px;
郭成尧 authored
47 48 49 50
        height: 50px;
        line-height: 50px;
    }
郭成尧 authored
51 52 53 54 55
    .comments-num > span {
        color: #b0b0b0;
    }

    .comments-list {
郭成尧 authored
56 57
        padding-bottom: 40px;
        margin: 30px;
郭成尧 authored
58 59 60 61 62
        border-bottom: 1px solid #b0b0b0;

        &:last-child {
            border-bottom: none;
        }
郭成尧 authored
63
郭成尧 authored
64 65 66
        .avatar {
            float: left;
            width: 70px;
郭成尧 authored
67
            overflow: hidden;
郭成尧 authored
68 69 70
            margin-right: 30px;
        }
郭成尧 authored
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
        .avatar > img {
            width: 70px;
            height: 70px;
            border-radius: 35px;
        }

        .info-box {
            float: left;
            width: 480px;
            overflow: hidden;
        }

        .info-top {
            .username {
                font-size: 26px;
                font-weight: 700;
                color: #444;
            }

            .info-right {
                float: right;
                color: #b0b0b0;
            }

            .time {
                color: #b0b0b0;
                padding: 5px 0;
            }
        }

        .info-bottom {
            color: #444;
郭成尧 authored
103 104 105
        }
    }
}