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
| .dentalMorphologyFunction {
| width: 100%;
| height: 100%;
|
|
| .page-box {
| max-width: 816px;
| margin: 0 auto;
| box-sizing: border-box;
| min-height: 1080px;
| margin-bottom: 20px;
| box-shadow: 0 3px 6px 1px #00000029;
| background-color: #fff;
| position: relative;
| }
|
| .cover {
| width: 100%;
| padding: 0px;
| }
|
| .w100 {
| width: 100%;
| }
|
| .content {
| text-indent: 2em;
| font-size: 15px;
| line-height: 25px;
| margin: 0 0 10px 0;
| }
|
| .header {
| display: flex;
| align-items: center;
| height: 2em;
| font-size: 12px;
| font-family: "Microsoft YaHei", sans-serif;
| color: #333;
| padding-top: 4em;
| padding-left: 8.6em;
| padding-bottom: 2em;
| }
|
| .header-divider {
| width: 1.5px;
| height: 1em;
| background-color: #00918F;
| margin: 0px 8px 0px 0px;
| }
|
| .header-right {
| padding: 3px 0%;
| /* 上下内边距确保垂直居中 */
| color: #00918F;
| line-height: 1;
| /* 消除行高影响 */
| display: inline-flex;
| /* 确保水平居中 */
| align-items: center;
| /* 垂直居中 */
| justify-content: center;
| /* 水平居中 */
|
| }
|
| .footer-container {
| position: absolute;
| bottom: 0;
| font-family: "Times New Roman";
| left: 694px;
| bottom: 40px;
| font-size: 15px;
| font-weight: 600;
| }
|
| .footerstyle {
| position: absolute;
| bottom: 0;
| font-family: "Times New Roman";
| left: 100px;
| bottom: 40px;
| font-size: 15px;
| font-weight: 600;
| }
|
| /* 页眉 */
| .header-container {
| padding: 15px 0;
| }
|
| .header-content {
| max-width: 730px;
| margin: 0 auto;
| padding: 0 30px;
| margin-top: 50px;
| display: flex;
| /* 开启弹性布局,子元素横向排列 */
| align-items: center;
| /* 子元素垂直居中对齐 */
| justify-content: flex-end;
| /* 文字居左,图片居右(两端对齐) */
| }
|
| .header-title {
| font-size: 13px;
| font-weight: bold;
| text-align: right;
| margin-bottom: 0;
| }
|
| .cs {
| width: 4%;
| margin: 0em 1em 0em 0.5em;
| }
|
| .bodystyle {
| text-align: justify;
| margin: 0 12%;
| padding-bottom: 10%;
| line-height: 30px;
| }
| }
|
|