123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- .components.SpecialPriceHouse {
- position: relative;
- overflow: hidden;
- padding: 40px 0;
- >.Title {
- align-items: center;
- padding: 0 30px;
- >.flex-item {
- >text {
- display: inline-block;
- font-size: 34px;
- color: #333;
- line-height: 1;
- letter-spacing: 4px;
- font-weight: bold;
- }
- }
- >text {
- font-size: 26px;
- color: #A1A1A1;
- }
- }
- >.List {
- position: relative;
- overflow: hidden;
- margin-top: 28px;
- height: 222px;
- >scroll-view {
- width: 100%;
- height: 100%;
- font-size: 0;
- white-space: nowrap;
- .ListItem {
- width: 336px;
- height: 100%;
- box-sizing: border-box;
- border: 2px solid rgba(0, 0, 0, 0.2);
- margin-right: 20px;
- display: inline-block;
- vertical-align: middle;
- position: relative;
- overflow: hidden;
- border-radius: 10px;
- &:first-child {
- margin-left: 30px;
- }
- >.Tips {
- min-width: 90px;
- display: inline-block;
- padding: 0 10px;
- font-size: 16px;
- color: #fff;
- background: #193C83;
- border-radius: 0 0 0 10px;
- text-align: center;
- position: absolute;
- right: 0;
- top: 0;
- line-height: 24px;
- }
- >.Price {
- white-space: nowrap;
- margin-top: 30px;
- padding: 0 20px;
- >text {
- display: inline-block;
- vertical-align: middle;
- font-size: 32px;
- font-weight: bold;
- color: red;
- line-height: 1;
- &:last-child {
- color: #ccc;
- text-decoration: line-through;
- margin-left: 20px;
- font-size: 28px;
- }
- }
- }
- >.Time {
- display: block;
- padding: 0 20px;
- font-size: 20px;
- color: red;
- line-height: 1;
- margin-top: 20px;
- }
- >.HouseType {
- display: block;
- padding: 0 20px;
- font-size: 24px;
- line-height: 1;
- margin-top: 30px;
- font-weight: bold;
- }
- >.DoorNumber {
- display: block;
- padding: 0 20px;
- font-size: 20px;
- line-height: 1;
- margin-top: 20px;
- color: #999;
- }
- }
- }
- }
- }
|