12345678910111213141516171819202122232425 |
- .text {
- color:brown;
- font-weight: bold; /* 设置字体加粗 */
- font-style: italic; /* 设置字体斜体 */
- font-size: 30px; /* 设置字体大小为 30px */
- text-align: center; /* 文字居中 */
- }
- .sou {
- display: flex;
- margin-top: 0px; /* 顶部外边距 */
- margin-left: 300px; /* 左侧外边距 */
- width:800px;
- }
- .report1{
- display: flex;
- color: aqua;
- }
- .custom-content {
- margin-top: 50px;
- }
-
|