123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- page {
- padding-bottom: 180rpx;
- }
- /* 礼包列表 */
- .giftBagList {
- width: 710rpx;
- margin-left: 20rpx;
- border-radius: 24rpx;
- padding: 30rpx 20rpx;
- box-sizing: border-box;
- background-color: #fff;
- margin-top: 20rpx;
- }
- .giftBagList .title{
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- }
- .giftBagList-item {
- width: 662rpx;
- height: 140rpx;
- border-radius: 20rpx;
- padding: 20rpx;
- box-sizing: border-box;
- margin-top: 20rpx;
- display: flex;
- }
- .giftBagList-item image{
- width: 100rpx;
- height: 100rpx;
- border-radius: 24rpx;
- margin-right: 20rpx;
- }
- .giftBagList-item .right{
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- position: relative;
- }
- .giftBagList-item .right .name{
- width: 500rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- font-size: 28rpx;
- color: #333;
- }
- .giftBagList-item .right .num{
- font-size: 28rpx;
- color: #333;
- text-align: right;
- }
- .giftBagList-item .right .radio{
- width: 40rpx;
- height: 40rpx;
- border: 2rpx solid #FA7D22;
- border-radius: 50%;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- .giftBagList-item .right .radio-box image {
- width: 53rpx;
- height: 53rpx;
- position: absolute;
- right: -24rpx;
- bottom: 0;
- }
- .giftBagList-item .right .radioB{
- display: flex;
- justify-content: flex-end;
- }
- .giftBagList-item .right .radioB image{
- width: 40rpx;
- height: 40rpx;
- margin: 0;
- }
- .giftBagList-item .right .radioNum{
- margin: 0 10rpx;
- }
- .activeExchange{
- background-color: #fff7f2;
- border: 2rpx solid #FA7D22;
- }
- /* 确认选择 */
- .btn {
- width: 750rpx;
- height: 140rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- }
- .affirm {
- width: 670rpx;
- height: 84rpx;
- background: #FA7D22;
- border-radius: 42rpx;
- margin-left: 40rpx;
- margin-top: 30rpx;
- font-size: 32rpx;
- color: #FFFFFF;
- text-align: center;
- line-height: 84rpx;
- }
|