123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .components.LiveSale {
- position: relative;
- overflow: visible;
- padding: 0 30px;
- margin-top: 40px;
- > view {
- position: relative;
- overflow: hidden;
- > .Menu {
- position: relative;
- overflow: hidden;
- font-size: 0;
- white-space: nowrap;
- > view {
- display: inline-block;
- vertical-align: middle;
- font-size: 28px;
- font-weight: bold;
- line-height: 70px;
- padding: 0 23px;
- background: rgba(0, 0, 0, 0.056);
- border-radius: 8px;
- margin-right: 30px;
- color: #383838;
- &.active {
- color: #193c83;
- }
- }
- }
- > .Content {
- position: relative;
- overflow: hidden;
- margin-top: 20px;
- > scroll-view {
- font-size: 0;
- white-space: nowrap;
- width: 100%;
- height: 201px;
- .ListItem {
- display: inline-block;
- vertical-align: middle;
- width: 335px;
- height: 100%;
- border-radius: 8px;
- background: #eee;
- position: relative;
- overflow: hidden;
- margin-right: 20px;
- > image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- }
- }
|