12345678910111213141516171819202122232425262728293031323334353637 |
- .wrap{
- .s1{
- display: block;
- min-height: 200px;
- overflow: hidden;
- .fl{
- width: 340px;
- margin-right: 1%;
- text-align: center;
- padding-bottom: 0;
- min-height: 700px;
- float: left;
- .item{
- margin-bottom: 40px;
- img{
- width: 100px;
- }
- p{
- font-size: 14px;
- color: #999;
- }
- .t1{
- font-size: 16px;
- color: #333;
- margin: 5px 0;
- }
- }
- }
- .fr{
- width: calc(98% - 340px);
- margin-left: 1%;
- min-height: 700px;
- float: right;
- }
- }
-
- }
|