design.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. @CHARSET "UTF-8";
  2. /* 付款码组件 */
  3. .payment-qrocde-box {
  4. overflow: hidden;
  5. display: flex;
  6. background-color: #fff;
  7. border-radius: 8px;
  8. }
  9. .payment-qrocde-box .qrocde-left {
  10. flex: 1;
  11. }
  12. .payment-qrocde-box .qrocde-left .qrocde-desc {
  13. margin-top: 10px;
  14. margin-bottom: 15px;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. color: #999999;
  19. font-size: 12px;
  20. }
  21. .payment-qrocde-box .qrocde-left .qrocde-desc .iconfont {
  22. margin-left: 5px;
  23. font-size: 12px;
  24. }
  25. .payment-qrocde-box .qrocde-left .qrocde-action {
  26. padding-bottom: 15px;
  27. display: flex;
  28. justify-content: center;
  29. }
  30. .payment-qrocde-box .qrocde-left .qrocde-action div {
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. margin: 0;
  35. width: 115px;
  36. height: 43px;
  37. border-radius: 25px;
  38. color: #fff;
  39. }
  40. .payment-qrocde-box .qrocde-left .qrocde-action div:first-of-type {
  41. margin-right: 23px;
  42. background-color: #58be6a;
  43. }
  44. .payment-qrocde-box .qrocde-left .qrocde-action div:last-of-type {
  45. background-color: #999999;
  46. }
  47. .payment-qrocde-box .qrocde-left .qrocde-action div .iconfont {
  48. margin-right: 5px;
  49. }
  50. .payment-qrocde-box .qrocde-left .qrocde-action div .action-name {
  51. font-size: 15px;
  52. }
  53. .payment-qrocde-box .qrocde-right {
  54. position: relative;
  55. display: flex;
  56. flex-direction: column;
  57. align-items: center;
  58. justify-content: center;
  59. padding-left: 8px;
  60. width: 45px;
  61. z-index: 2;
  62. box-sizing: border-box;
  63. }
  64. .payment-qrocde-box .qrocde-right .name {
  65. font-size: 13px;
  66. writing-mode: tb-rl;
  67. color: #fff;
  68. letter-spacing: 3px;
  69. margin-top: 6px;
  70. }
  71. .payment-qrocde-box .qrocde-right .iconfont {
  72. color: #fff;
  73. }
  74. .payment-qrocde-box .qrocde-right::after {
  75. content: "";
  76. position: absolute;
  77. top: 50%;
  78. left: 0;
  79. width: 250px;
  80. height: 250px;
  81. border-radius: 50%;
  82. background-color: #58be6a;
  83. transform: translateY(-50%);
  84. z-index: -1;
  85. }
  86. .payment-popup {
  87. padding: 0 15px 20px;
  88. background-color: #fff;
  89. }
  90. .payment-popup .head-wrap {
  91. font-size: 16px;
  92. line-height: 50px;
  93. height: 50px;
  94. display: block;
  95. text-align: center;
  96. position: relative;
  97. border-bottom: 1px solid #eeeeee;
  98. margin-bottom: 10px;
  99. }
  100. .payment-popup .head-wrap .iconfont {
  101. position: absolute;
  102. float: right;
  103. right: 0;
  104. font-size: 16px;
  105. }
  106. .payment-popup .content-wrap {
  107. max-height: 300px;
  108. overflow-y: auto;
  109. }
  110. .payment-popup button {
  111. margin-top: 20px;
  112. }