Blame view

pages/official/official.scss 1003 Bytes
290144e9   易尊强   第一次
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  .official {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	background-color: #fff;
  	box-shadow: 0 -10rpx 20rpx 0 #efefef;
  	height: 120rpx;
  	width: 100%;
  	padding: 20rpx;
  	border-radius: 20rpx 20rpx 0 0;
  	position: fixed;
  	bottom: 0;
  	.official-btn {
  		background-color: #E60012;
  		color: #fff;
bd028579   易尊强   2/28
16
  		font-size: 20rpx;
290144e9   易尊强   第一次
17
18
19
20
21
22
23
24
25
  		border-radius: 100rpx;
  		padding: 0 50rpx;
  		height: 70rpx;
  		line-height: 70rpx;
  	}
  	.official-num {
  		color: #E60012;
  		font-weight: bold;
  	}
5bbfac44   易尊强   28号下午提交
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
  }
  .page1{
  		width: 100%;
  		height: 100vh;
  		background-color: #f4f4f4;
  		.fileName{
  			width: 400rpx;
  			white-space: nowrap;
  			text-overflow: ellipsis;
  			overflow: hidden;
  		}
  		.item {
  			display: flex;
  			justify-content: space-between;
  			align-items: center;
  			background-color: #ffffff;
  			border-radius: 20rpx;
  			height: 80rpx;
  			margin-top: 30rpx;
  		
  			button {
  				height: 60rpx;
  				text-align: center;
  				line-height: 60rpx;
  				margin: 0;
  				font-size: 20rpx;
  				margin-right: 30rpx;
  			}
  		}
  	}