forked from nsjcy/frontEnd/nsjcy

LAPTOP-RI7D261L\Mr Ke
2020-02-26 8f619dde9e2382fc8a4f1e04fafde1418f06165b
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
.questionnair-page {
  flex: 1;
  background: #fff;
  box-shadow: 0 3px 4px 0 rgba(202, 202, 202, 0.5);
  margin-left: 20px;
  overflow: auto;
  position: absolute;
  left: 170px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  width: 1000px;
  margin: auto;
}
.questionnair-page-banner {
  height: 46px;
  width: 700px;
  margin: 0 auto;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.banner-text {
  cursor: pointer;
  display: inline-block;
  color: #999;
}
.questionnair-page-title {
  margin: 10px 0;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  &:hover {
    border-color: #dbdbdb;
    background: #fafafa;
    :global {
      .title-inner {
        border-color: #dbdbdb;
      }
    }
  }
}
.questionnair-page-content {
  width: 100%;
}
.questionnair-page-footer {
  height: 46px;
  width: 700px;
  margin: 0 auto;
  border-top: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-text {
  cursor: pointer;
  display: inline-block;
  color: #999;
}
.questionnair-page-default {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-default-text {
  font-size: 16px;
  color: #999;
  margin-top: 20px;
}