Blame view

uniapp_jiju/pages/new/xxts/index.scss 1.28 KB
d56bd957   “wangming”   修复问题,组建AI
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
  .main{
  		padding: 7px;
  		padding-top: 87px; // 标题栏80px + 间距7px
  		background-color: #F8F8F8;
  		min-height: 100vh;
  		.toptitle{
  			position: fixed;
  			top: 0;
  			left: 0;
  			right: 0;
  			width: 100%;
  			background-color: #0052D8;
  			display: flex;
  			height: 80px;
  			justify-content: center;
  			align-items: center;
  			z-index: 200;
  			.toptitle_left{
  				padding-top: 20px;
  				position: absolute;
  				left: 10px;
  				z-index: 1000;
  			}
  			.toptitle_title{
  				color: #fff;
  				font-size: 14px;
  				padding-top: 20px;
  			}
  		}
  		.title{
  			padding: 10px;
  			background-color: #fff;
  			border-radius: 5px;
  			margin-bottom: 10px;
  			display: flex;
  			align-items: center;
  			.l1{
  				margin-right: 10px;
  				display: flex;align-items: center;
  			}
  		}
  		.box{
  			padding: 10px;
  			background-color: #fff;
  			border-radius: 5px;
  			margin-bottom: 10px;
  			display: flex;
  			align-items: center;
  			.l1{
  				width: 20%;
  			}
  			.center{
  				width: 70%;
  				.f1{
  					margin-bottom: 10px;
  					font-size: 14px;
  					font-weight: 600;
  					width: 90%;
  					overflow:hidden; //超出的文本隐藏
  					text-overflow:ellipsis; //溢出用省略号显示
  					white-space:nowrap; //溢出不换行
  					color: #7b7b7b;
  				}
  				.f2{
  					color: #c7c7c7;
  				}
  			}
  			.r1{
  				width: 10%;
  			}
  		}
  	}