forked from nsjcy/frontEnd/nsjcy

liyj
2020-02-03 7a4d973140ee0168f509098b52745c8a7947ca74
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
81
82
83
84
85
86
87
88
89
90
91
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
.container-box {
  background-image: url(https://mc.qcloudimg.com/static/img/7da57e0050d308e2e1b1e31afbc42929/bg.png);
  background-color: #fff;
  background-repeat:no-repeat;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
}
 
.camera-box {
  width:100vw;
}
 
.operate {
  margin-top: 1vh;
  text-align: center;
  height: 10vh;
}
 
.switchtab {
  text-align: center;
  background: #fff;
  height: 5vh;
}
 
.switchtab .tab {
  display: inline-block;
  height: 5vh;
  line-height: 5vh;
}
 
.switchtab .tab .text {
  height: calc(5vh - 0.5vw);
  line-height: calc(5vh - 0.5vw);
  font-size: 16px;
  color: #333;
  border-bottom: 0.5vw solid #fff;
  display:inline-block;
  font-weight:700;
  padding:0 5vw;
  text-align:center;
}
 
.switchtab .tab .text.checked { 
  color: #006eff;
  border-bottom: 0.5vw solid #006eff;
}
 
.img-box {
  display:inline-block;
  width: 13.6vw;
  text-align: center;
  
}
.img-box image {
  display: inline-block;
  width: 8vw;
  height: 8vw;
}
.img-box image :active{
  opacity: 0.55
}
.img-box text {
  display: block;
  color: #ffffff;
  width: 100%;
  font-size:10px;
  text-align: center;
}
 
 
.im_box {
  width: 100vw;
  height: 100%;
}
.im_box.hide {
  display:none;
}
 
.board_box {
  width: 100vw;
  height: 100%;
}
 
.board_box.hide {
  display:none;
}
 
.comment {
  width: 100vw;
  font-size: 12px;
  height: calc(100vh - 100vw*9/16 - 100vw/3 - 1vh - 10vh - 5vh + 2vw/3 - 5vh - 4vw);
}
 
.comment .comment-detail {
  padding: 0.2vh 2vw;
  color: #999;
}
 
.color-blue {
  color: #00ecfe;
}
.color-org {
  color: #fe9500;
}
 
.comment-input {
  display: block;
  color: #b8b8b8;
  border-top: 1px solid #ddd;
  padding: 2vw 2vw;
  height: 5vh;
}
 
.comment-input input {
  color: #333;
}
 
 
.in-container {
  background: #fff;
  height: calc(100vh - 100vw*9/16 - 100vw/3 - 1vh - 10vh - 5vh + 2vw/3);
}