index.acss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .healthy-card-info-container {
  2. padding: 12rpx;
  3. }
  4. .healthy-card-info-container .healthy-card-layer {
  5. height: 380rpx;
  6. margin: auto;
  7. overflow: hidden;
  8. border-radius: 16rpx;
  9. background-color: #f6f6f6;
  10. position: relative;
  11. background-repeat: no-repeat;
  12. background-size: cover;
  13. background-position: center;
  14. }
  15. .healthy-card-info-container .healthy-card-layer .healthy-card-background {
  16. position: absolute;
  17. left: 0;
  18. top: 0;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .healthy-card-info-container .user-info-container {
  23. position: absolute;
  24. left: 24rpx;
  25. top: 200rpx;
  26. z-index: 1;
  27. }
  28. .healthy-card-info-container .user-info-container .user-name {
  29. color: #333;
  30. font-size: 32rpx;
  31. }
  32. .healthy-card-info-container .user-info-container .user-id-card {
  33. color: #333;
  34. font-size: 32rpx;
  35. margin-top: 30rpx;
  36. }
  37. .healthy-card-info-container .qrcode-container {
  38. top: 108rpx;
  39. right: 20rpx;
  40. position: absolute;
  41. }
  42. .healthy-card-info-container .qrcode-container .qr-code-image {
  43. width: 188rpx;
  44. height: 188rpx;
  45. z-index: 1;
  46. position: relative;
  47. }
  48. .healthy-card-info-container .qrcode-container .qrcode-code-icon-container {
  49. left: 50%;
  50. top: 50%;
  51. z-index: 2;
  52. width: 24rpx;
  53. height: 24rpx;
  54. position: absolute;
  55. border-radius: 8rpx;
  56. background-color: #fff;
  57. overflow: hidden;
  58. transform: translate3d(-50%, -50%, 0);
  59. }
  60. .healthy-card-info-container .qrcode-container .qrcode-code-icon-container image {
  61. width: 100%;
  62. height: 100%;
  63. }
  64. .healthy-card-info-container .buttons-container {
  65. display: flex;
  66. padding-top: 50rpx;
  67. }
  68. .healthy-card-info-container .cus-button {
  69. flex: 1;
  70. height: 80rpx;
  71. border-radius: 8rpx;
  72. line-height: 80rpx;
  73. text-align: center;
  74. font-size: 32rpx;
  75. color: #fff;
  76. }
  77. .healthy-card-info-container .cus-button.red {
  78. margin-right: 28rpx;
  79. background-color: #DB2D37;
  80. }
  81. .healthy-card-info-container .cus-button.disabled {
  82. margin-right: 28rpx;
  83. background-color: #ff7ca8;
  84. }
  85. .healthy-card-info-container .cus-button.blue {
  86. background-color: #0e72ff;
  87. }
  88. .healthy-card-info-container .cus-button:active {
  89. opacity: 0.8;
  90. }