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
|
| page{
| background: #ffffff;
| }
| .detail_data{
| background-color: #ffffff;
| padding: 30rpx;
| /* width: 85%; */
| margin: 0 auto;
| }
| .detail_data_title{
| font-size: 28rpx;
| margin-bottom: 18rpx;
| }
| .detail_data_date{
| font-size: 23rpx;
| }
| .detail_data_content{
| background-color: #e4ecff;
| border-radius: 15rpx;
| padding-top: 20rpx;
| display: flex;
| flex-wrap: wrap;
| }
| .detail_data_item{
| width: 33%;
| margin: 15rpx 0;
| text-align: center;
| }
| .data_price{
| color: #000000;
| font-size: 28rpx;
| margin-bottom: 14rpx;
| }
| .data_txt{
| font-size: 23rpx;
| color: #8d95a0;
| margin-bottom: 30rpx;
| }
| .detail_prolist_img{
| width: 120rpx;
| height: 120rpx;
| border-radius: 10rpx;
| margin-right: 15rpx;
| }
| .detail_prolist_name{
| overflow: hidden;
| text-overflow: ellipsis;
| display: -webkit-box;
| -webkit-box-orient: vertical;
| -webkit-line-clamp: 2;
| }
| .m-bottom20{
| margin-bottom: 20rpx;
| }
|
|