regular_msg.acss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. }