12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .wrap{
- .s1{
- display: flex;
- height: 706px;
- overflow: hidden;
- margin-bottom: 20px;
- .fl{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 338px;
- height: 100%;
- text-align: center;
- float: left;
- .item{
- width: 234px;
- height: 156px;
- margin-bottom: 10px;
- img{
- width: 100px;
- object-fit: contain;
- }
- p{
- font-weight: 400;
- font-size: 14px;
- color: #282E30;
- }
- .t1{
- font-weight: bold;
- font-size: 20px;
- color: #282E30;
- margin: 5px 0;
- }
- }
- }
- .fr{
- width: 100%;
- flex: 1;
- height: 100%;
- }
- }
-
- }
|