index.module.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .codeDialog {
  2. width: 305px;
  3. background: linear-gradient( 89deg, #D0EFF7 0%, #D9F9DC 100%);
  4. position: relative;
  5. border-radius: 12px;
  6. }
  7. .header {
  8. position: absolute;
  9. left: 0;
  10. right: 0;
  11. top: 0;
  12. .leftTitle {
  13. position: absolute;
  14. top: 16px;
  15. left: 16px;
  16. img {
  17. height: 29px;
  18. width: auto;
  19. }
  20. &.info {
  21. img {
  22. height: 26px;
  23. }
  24. }
  25. }
  26. .rightTitle {
  27. position: absolute;
  28. right: 0;
  29. top: -23px;
  30. width: 133px;
  31. height: 118px;
  32. img {
  33. width: inherit;
  34. height: inherit;
  35. }
  36. }
  37. }
  38. .body {
  39. position: relative;
  40. z-index: 10;
  41. padding: 61px 6px 6px;
  42. }
  43. .container {
  44. border-radius: 12px;
  45. border: 1px solid #FFFFFF;
  46. }
  47. .section {
  48. background: #FFFFFF;
  49. border-radius: 12px;
  50. margin: 4px;
  51. padding: 15px 14px;
  52. .content {
  53. font-size: 15px;
  54. color: #666666;
  55. line-height: 23px;
  56. span {
  57. // color: #2B85FF;
  58. }
  59. }
  60. .btnGroup {
  61. padding: 20px 55px 0;
  62. .imgBtn {
  63. width: 148px;
  64. height: 48px;
  65. margin-bottom: -8px;
  66. }
  67. :global {
  68. .van-button {
  69. padding: 0;
  70. font-weight: 400;
  71. font-size: 16px;
  72. color: #FFFFFF;
  73. }
  74. }
  75. }
  76. }