123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @import '@css/mixin.scss';
- .scoped-sale {
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- height: 140px;
- background: #fff;
- display: flex;
- box-sizing: border-box;
- padding: 20px;
- z-index: 99;
- border: 1PX solid #f2f2f2;
- .ss-img {
- width: 90px;
- height: 90px;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 20px;
- .img {
- width: 90px;
- height: 90px;
- border-radius: 50%;
- overflow: hidden;
- }
- }
- .ss-info {
- flex: 1;
- .p1 {
- color: #313131;
- font-weight: bold;
- font-size: 30px;
- padding-bottom: 6px;
- padding-left: 10px;
- }
- .p2 {
- display: inline-block;
- padding: 6px 10px;
- color: #8b94b1;
- background: #eceff5;
- font-size: 24px;
- border-radius: 10px;
- }
- }
- .ss-r {
- width: 350px;
- display: flex;
- padding-top: 10px;
- justify-content: space-between;
- .b {
- width: 170px;
- height: 80px;
- line-height: 80px;
- text-align: center;
- background: #3bc48b;
- color: #fff;
- border-radius: 10px;
- &.t2 {
- background: #3072f6;
- }
- }
- }
- }
|