regular_msg.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* pages/regular_msg/regular_msg.wxss */
  2. .card-padding {
  3. padding: 10rpx;
  4. }
  5. .card-cont {
  6. position: relative;
  7. border: 1rpx solid #E4EFFF;
  8. border-radius: 8rpx;
  9. }
  10. /* 三角形icon */
  11. .triangle {
  12. position: absolute;
  13. top: 0;
  14. left: 50%;
  15. transform: translateX(-50%);
  16. width: 36rpx;
  17. height: 22rpx;
  18. }
  19. /* 标题 */
  20. .title {
  21. margin-top: 50rpx;
  22. text-align: center;
  23. }
  24. .title>text {
  25. background: linear-gradient(180deg, #90BBEC 0%, #2074D6 100%);
  26. -webkit-background-clip: text;
  27. background-clip: text;
  28. color: transparent;
  29. font-weight: 700;
  30. font-size: 40rpx;
  31. }
  32. /* 内容 */
  33. .cont {
  34. margin-top: 64rpx;
  35. }
  36. /* 二维码 */
  37. .qrcode-area {
  38. width: 100%;
  39. margin-top: 136rpx;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. flex-direction: column;
  44. }
  45. .qrcode-area>image {
  46. width: 320rpx;
  47. height: 320rpx;
  48. }
  49. .qrcode-area>text {
  50. color: #90BBEC;
  51. font-size: 26rpx;
  52. margin-top: 12rpx;
  53. }
  54. /* 提示信息 */
  55. .tip {
  56. margin-top: 24rpx;
  57. font-size: 26rpx;
  58. color: #B7C7DE;
  59. text-align: center;
  60. margin-bottom: 8rpx;
  61. }
  62. .qrcode-box {
  63. height: 680rpx;
  64. margin: 32rpx 32rpx;
  65. background-color: #fff;
  66. border-radius: 10rpx;
  67. padding: 24rpx 32rpx;
  68. box-sizing: border-box;
  69. position: relative;
  70. }
  71. .tit {
  72. font-size: 32rpx;
  73. font-weight: bold;
  74. }
  75. .qrcode-img {
  76. width: 400rpx;
  77. height: 400rpx;
  78. margin-top: 60rpx;
  79. position: absolute;
  80. left: 50%;
  81. transform: translateX(-50%);
  82. }
  83. .qrcode-tip {
  84. font-size: 26rpx;
  85. font-weight: 400;
  86. text-align: center;
  87. color: rgba(175, 189, 210, 1);
  88. background-color: #f5f9ff;
  89. border-radius: 25rpx;
  90. padding: 8rpx 42rpx;
  91. position: absolute;
  92. bottom: 52rpx;
  93. }
  94. .qrcode-tip1 {
  95. font-size: 28rpx;
  96. color: rgba(175, 189, 210, 1);
  97. position: absolute;
  98. top: 50%;
  99. transform: translateY(-50%);
  100. left: 50%;
  101. transform: translateX(-50%);
  102. width: 100%;
  103. text-align: center;
  104. }