store.ttss 2.0 KB

12345678910111213141516171819202122
  1. .search{padding: 20rpx;display: flex;align-items: center;background-color: #fff;width: calc(95% - 60rpx);margin: 20rpx auto;border-radius: 60rpx;}
  2. .search image{width: 50rpx;height: 46rpx;}
  3. .search .search-input{border-radius: 30rpx;font-size: 28rpx;height: 60rpx;margin-left: 20rpx;}
  4. .store-item{background-color: #fff;width: calc(95% - 40rpx);padding: 20rpx;border-radius: 20rpx;display: flex;align-items: center;justify-content: space-between;margin: 20rpx auto;position: relative;}
  5. .store-item.active{border: 2rpx solid #fe2c56;}
  6. .store-item .check{display: none;position: absolute;top: 0;right: 0;background-color: #fe2c56;width: 40rpx;height: 40rpx;border-radius: 0 20rpx 0 20rpx;}
  7. .store-item .check image{width: 30rpx;height: 30rpx;display: flex;align-items: center;justify-content: center;padding: 5rpx;}
  8. .store-item.active .check{display: block;}
  9. .store-item .item-left{flex: 1;}
  10. .store-item .name{font-size: 32rpx;color: #333;line-height: 48rpx;font-weight: bold;}
  11. .store-item .desc{font-size: 24rpx;color: #666;line-height: 36rpx;margin-top: 10rpx;}
  12. .store-item .item-right{text-align: center;margin-left: 20rpx;border-left: 2rpx solid #f8f8f8;padding-left: 20rpx;}
  13. .store-item .item-right .footer{font-size: 24rpx;color: #666;}
  14. .store-item .item-right .top{display: flex;align-items: center;gap: 20rpx;margin-bottom: 20rpx;}
  15. .store-item .item-right .top .icon-img{width: 60rpx;height: 60rpx;background-color: #f8f8f8;border-radius: 60rpx;display: flex;align-items: center;justify-content: center;}
  16. .store-item .item-right .top .icon-img image{width: 40rpx;height: 40rpx;}
  17. .flx-footer{position: fixed;bottom: 0;background-color: #fff;padding: 20rpx;border-top: 2rpx solid #f8f8f8;left: 0;right: 0;}
  18. .flx-footer .footer-safe {height: env(safe-area-inset-bottom);width: 100%;}
  19. .flx-footer .btn{font-size: 28rpx;height: 80rpx;border-radius: 10rpx;line-height: 80rpx;text-align: center;width: 100%;color: #333;background-color: #fe2c56;color: #fff;border:2rpx solid #fe2c56;}
  20. .flx-footer .btn[disabled],.flx-footer .btn.disabled{background-color: rgba(34, 77, 122, 0.3);}