12345678910111213141516171819202122232425262728293031323334 |
- .section_list{
- height: 20mm;
- margin-bottom: 5mm;
- }
- .section_item{
- width: 26mm;
- background-color: #f5f7f9;
- border-radius: 3mm;
- height: 20mm;
- float: left;
- margin-right: 2mm;
- padding-top: 4mm;
- box-sizing: border-box;
- }
- .section_item:nth-last-child(1){
- margin-right: 0;
- }
- .item_num{
- height: 5mm;
- font-size: 3mm;
- color: #999999;
- text-align: center;
- margin-bottom: 2mm;
- }
- .item_num>span{
- font-size: 5mm;
- color: #ff6b00;
- }
- .item_title{
- text-align: center;
- height: 4mm;
- font-size: 4mm;
- color: #333333;
- }
|