12345678910111213141516171819202122232425262728293031323334 |
- @import "@/assets/css/function.scss";
- @import "@/assets/css/mixin.scss";
- .index{
- .main{
- position: relative;
- height: halfH(1080 - 60);
- overflow: hidden;
- }
- .index-body{
- width: 100vw;
- display: flex;
- justify-content: space-between;
- padding-top: halfH(18);
- .index-body-cent{
- height: 200px;
- flex: 1;
- margin: 0 halfW(18);
- }
- .index-body-lf{
- width:halfW(356);
- margin-left: halfW(20);
- }
- .index-body-lr{
- width:halfW(356);
- margin-right: halfW(20);
- }
- .ibl-item{
- padding-bottom: halfH(18);
- &:last-child{
- padding-bottom: 0;
- }
- }
- }
- }
|