扩展链接高佣版

qrcode.wxss 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* pages/qrcode/qrcode.wxss */
  2. .qrcode {
  3. width: 100vw;
  4. padding: 30rpx;
  5. }
  6. .step {
  7. padding: 30rpx 50rpx;
  8. margin-bottom: 20rpx;
  9. }
  10. .item1 {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. background: #FCEDE3;
  15. margin-bottom: 30rpx;
  16. padding: 30rpx 50rpx;
  17. }
  18. .item1 image {
  19. width: 90rpx;
  20. height: 90rpx;
  21. }
  22. .item1 text {
  23. color: #F86B38;
  24. font-size: 32rpx;
  25. flex: 1;
  26. padding-left: 70rpx;
  27. text-align: left;
  28. }
  29. .start {
  30. display: block;
  31. width: 80%;
  32. height: 80rpx;
  33. line-height: 80rpx;
  34. margin: 50rpx auto;
  35. background: #2662FF;
  36. color: #fff;
  37. border-radius: 50rpx;
  38. text-align: center;
  39. font-size: 32rpx;
  40. }
  41. .base {
  42. max-width: 680rpx;
  43. display: block;
  44. margin: 50rpx auto;
  45. }
  46. .item {
  47. margin-top: 20rpx;
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. background: #fff;
  52. padding: 20rpx;
  53. font-size: 30rpx;
  54. border-bottom: 2rpx solid #EDEDED;
  55. }
  56. .info {
  57. color: #999;
  58. }
  59. .info image {
  60. width: 40rpx;
  61. height: 40rpx;
  62. vertical-align: middle;
  63. }