Blame view

public/scss/service/chat/_rating.css 3.05 KB
zzzzzzz authored
1 2 3
.service-chat {
    /* 评价 */
    .comment {
zzzzzzz authored
4
        display: none;
zzzzzzz authored
5 6 7 8 9 10 11 12 13 14 15 16
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);

        &-inner {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: #fff;
zzzzzzz authored
17
            padding: 0 30px;
zzzzzzz authored
18 19 20 21 22 23 24 25 26 27 28

            .intro {
                height: 90px;
                text-align: center;
                color: #444;
                font-size: 32px;
                line-height: 90px;
                border-bottom: 1px solid #e0e0e0;

                span {
                    float: right;
29 30
                    min-width: 80px;
                    text-align: right;
zzzzzzz authored
31 32 33 34
                }
            }

            .stars {
zzzzzzz authored
35
                padding: 50px 0 40px;
zzzzzzz authored
36 37 38 39
                text-align: center;

                i {
                    display: inline-block;
zzzzzzz authored
40
                    height: 50px;
zzzzzzz authored
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
                    width: 53px;
                    margin-left: 40px;
                    background: resolve("service/chat/star-trans.png");
                    background-size: 100% 100%;
                }

                i:nth-child(1) {
                    margin: 0;
                }

                i.rated {
                    background: resolve("service/chat/star-yellow.png");
                    background-size: 100% 100%;
                }
            }
zzzzzzz authored
56 57 58 59 60 61 62

            .rank {
                text-align: center;
                font-size: 32px;
                color: #b0b0b0;
            }
李奇 authored
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
            .cause {
                font-size: 0;

                span {
                    position: relative;
                    display: inline-block;
                    margin: 10px;
                    width: 328px;
                    width: calc(50% - 20px);
                    font-size: 28px;
                    border: 1px solid #000;
                    line-height: 70px;
                    text-align: center;
                    border-radius: 5px;
                }

                .select:after {
                    position: absolute;
                    bottom: -1px;
                    right: -1px;
                    width: 30px;
                    height: 30px;
                    content: "";
                    display: inline-block;
                    background: resolve("service/chat/cause-select.png");
                    background-size: cover;
                }
            }
zzzzzzz authored
92 93 94
            .words-to-say {
                height: 110px;
                width: 100%;
李奇 authored
95
                margin: 10px 0 0;
96
                padding: 16px;
zzzzzzz authored
97 98 99 100 101 102 103 104
                resize: none;
                border: 1px solid #e0e0e0;
                border-radius: 5px;
            }

            .submit {
                height: 85px;
                width: 100%;
李奇 authored
105
                margin: 25px 0;
zzzzzzz authored
106 107 108 109 110 111 112
                color: #fff;
                background: #444;
                font-size: 32px;
                text-align: center;
                line-height: 85px;
                border-radius: 5px;
            }
zzzzzzz authored
113 114 115
        }
    }
}