cuiqian2004
2025-06-19 619b47962e41f506baf7ce2b535b2de1fecc719e
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
.feedback body {
    background-color: #EFEFF4;
}
.feedback input,
.feedback textarea {
    border: none !important;
}
.feedback textarea {
    height: 100px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.feedback .row {
    width: 100%;
    background-color: #fff;
}
.feedback p {
    padding: 10px 15px 0;
}
.feedback button#submit { 
    width: 90%;
    height: 46px;
    left: 50%;
    -webkit-transform: translate(-50%);
}
.feedback .hidden {
    display: none;
}
.feedback .image-list {
    width: 100%;
    height: 85px;
    background-size: cover;
    padding: 10px 10px;
    overflow: hidden;
}
.feedback .image-item {
    width: 65px;
    height: 65px;
    background-image: url(../images/iconfont-tianjia.png);
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: solid 1px #e8e8e8;
}
.feedback .image-item input[type="file"] {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 0;
}
.feedback .image-item.space {
    border: none;
}
.feedback .image-item .image-close {
    position: absolute;
    display: inline-block;
    right: -6px;
    top: -6px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 12px;
    background-color: #FF5053;
    color: #f3f3f3;
    border: solid 1px #FF5053;
    font-size: 9px;
    font-weight: 200;
    z-index: 1;
}
.feedback .image-item.space .image-close {
    display: none;
}