12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .mainPage{
- padding: .3rem .16rem .45rem;
- box-sizing: border-box;
- .title{
- font-size: .18rem;
- font-weight: bold;
- padding-bottom: .14rem;
- padding-left: .2rem;
- }
- .content{
- background:#fff;
- box-shadow:0px .08rem .37rem 0px rgba(202,202,202,0.42);
- border-radius:.1rem;
- padding: .12rem 0;
- &.opacity {
- opacity: .5;
- }
- &.gray {
- filter: grayscale(100%);
- }
- .list-item{
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- padding: 0 .22rem;
- margin-bottom: .1rem;
- span{
- display: block;
- color: #666;
- }
- span:nth-of-type(2){
- width: 60%;
- text-align: right;
- color: #000;
- .coupon-name{
- color: #FF2B00;
- font-size: .12rem;
- }
- }
- }
- .half-cic{
- height: .25rem;
- display: flex;
- justify-content: space-between;
- overflow: hidden;
- span{
- display: block;
- width: .25rem;
- height: .25rem;
- border-radius: 50%;
- background: rgba(202,202,202,0.2);
- }
- span:nth-of-type(1){
- transform: translateX(-50%);
- }
- span:nth-of-type(2){
- transform: translateX(50%);
- }
- }
- .number{
- text-align: center;
- color:rgba(143,143,143,1);
- margin-top: .2rem;
- }
- }
- .useType{
- position: absolute;
- bottom: 1.6rem;
- right: .8rem;
- width: .76rem;
- height: .76rem;
- }
- }
|