channelsignup.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* mycustomer/pages/channelsignup/channelsignup.wxss */
  2. page {
  3. background-color: #f5f5f5;
  4. }
  5. .signupBox {
  6. position: fixed;
  7. width: 100%;
  8. height: 140rpx;
  9. background-color: #fff;
  10. bottom: 0rpx;
  11. left: 0rpx;
  12. display: flex;
  13. flex-direction: row;
  14. }
  15. .leftBox {
  16. flex: 3;
  17. display: flex;
  18. align-items: center;
  19. font-size: 28rpx;
  20. box-sizing: border-box;
  21. padding: 0px 30rpx;
  22. }
  23. .leftBox > text {
  24. margin-left: 20rpx;
  25. }
  26. .logoBox {
  27. width: 60rpx;
  28. height: 60rpx;
  29. }
  30. .rightBox {
  31. flex:2;
  32. display: flex;
  33. align-items: center;
  34. box-sizing: border-box;
  35. padding-right: 30rpx;
  36. justify-content: flex-end;
  37. }
  38. .rightBox button {
  39. height: 80rpx;
  40. background-color: #24A1F9;
  41. font-size: 28rpx;
  42. color: #fff;
  43. line-height: 80rpx;
  44. width: 260rpx;
  45. border-radius: 40rpx;
  46. }
  47. .success-bottom {
  48. width: 100%;
  49. height: 80%;
  50. position: relative;
  51. display: flex;
  52. justify-content: center;
  53. align-items: center;
  54. }
  55. .success-bottom .bottomBg {
  56. position: absolute;
  57. width: 100%;
  58. height: 100%;
  59. z-index: 0;
  60. }
  61. .successQrBox {
  62. width: 80%;
  63. height: 500rpx;
  64. position: relative;
  65. z-index: 2;
  66. margin-top: 30%;
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. align-items: center;
  71. }
  72. .qrBox {
  73. width: 450rpx;
  74. height: 450rpx;
  75. position: relative;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. top: 20rpx;
  80. }
  81. .qrBox .qrBoxBg {
  82. position: absolute;
  83. width: 450rpx;
  84. height: 450rpx;
  85. }
  86. .text1 {
  87. font-size: 32rpx;
  88. color: #333333;
  89. font-weight: 700;
  90. }
  91. .text2 {
  92. font-size: 24rpx;
  93. color: #999999;
  94. margin: 10rpx 0rpx;
  95. }
  96. .pt20 {
  97. position: relative;
  98. top: 60rpx;
  99. }