QrCode.wxss 939 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page {
  2. background-color: #ffffff;
  3. }
  4. .box {
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. }
  9. #Logo {
  10. width: 230rpx;
  11. margin: 150rpx 0 80rpx
  12. }
  13. /* 按钮 */
  14. .buttom {
  15. display: flex;
  16. justify-content: space-around;
  17. align-items: center;
  18. width: 80vw;
  19. height: 80rpx;
  20. margin: 80rpx auto 0;
  21. }
  22. .but-custom-class {
  23. height: 60rpx !important;
  24. width: 160rpx !important;
  25. color: #ffffff;
  26. border-radius: 30rpx !important;
  27. font-weight: 550;
  28. }
  29. /* 文字 */
  30. .textTips {
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. padding: 0 30rpx;
  35. min-height: 80rpx;
  36. width: 80vw;
  37. font-size: 30rpx;
  38. box-sizing: border-box;
  39. background-color: rgba(0, 0, 0, .02);
  40. border: 1px solid #dbdada;
  41. border-radius: 15rpx;
  42. color: rgba(0, 0, 0, .7);
  43. }
  44. .shop {
  45. padding: 20rpx 30rpx;
  46. }
  47. .textTips .select {
  48. margin-top: 30rpx;
  49. }