index.acss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .detailsCard-index {
  2. display: block;
  3. height: initial;
  4. }
  5. /* components/detailsCard/index.wxss */
  6. @import "../../styles/index.acss";
  7. .detailsCard-index .card-padding {
  8. padding: 10rpx;
  9. }
  10. .detailsCard-index .card-cont {
  11. position: relative;
  12. border: 1rpx solid #e4efff;
  13. border-radius: 8rpx;
  14. }
  15. /* 三角形icon */
  16. .detailsCard-index .triangle {
  17. position: absolute;
  18. top: 0;
  19. left: 50%;
  20. transform: translateX(-50%);
  21. width: 36rpx;
  22. height: 22rpx;
  23. }
  24. .detailsCard-index .audit {
  25. position: absolute;
  26. right: 48rpx;
  27. top: 21rpx;
  28. width: 113rpx;
  29. height: 106rpx;
  30. }
  31. /* 标题 */
  32. .detailsCard-index .title {
  33. margin-top: 50rpx;
  34. text-align: center;
  35. }
  36. .detailsCard-index .title > text {
  37. background: linear-gradient(180deg, #90bbec 0%, #2074d6 100%);
  38. -webkit-background-clip: text;
  39. background-clip: text;
  40. color: transparent;
  41. font-weight: 700;
  42. font-size: 40rpx;
  43. }
  44. .detailsCard-index .van-cell {
  45. line-height: 30rpx;
  46. }
  47. /* 内容 */
  48. .detailsCard-index .cont {
  49. margin-top: 64rpx;
  50. }
  51. .detailsCard-index .photo {
  52. width: 174rpx;
  53. height: 216rpx;
  54. background-color: #c4c4c4;
  55. }
  56. /* 二维码 */
  57. .detailsCard-index .qrcode-area {
  58. width: 100%;
  59. margin-top: 80rpx;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. flex-direction: column;
  64. }
  65. .detailsCard-index .qrcode-area > image,
  66. .detailsCard-index .img {
  67. width: 320rpx;
  68. height: 320rpx;
  69. }
  70. .detailsCard-index .qrcode-area > text {
  71. color: #90bbec;
  72. font-size: 26rpx;
  73. margin-top: 12rpx;
  74. }
  75. /* 提示信息 */
  76. .detailsCard-index .tip {
  77. margin-top: 24rpx;
  78. font-size: 26rpx;
  79. color: #b7c7de;
  80. text-align: center;
  81. margin-bottom: 8rpx;
  82. }
  83. .detailsCard-index .flex-sm {
  84. flex: 2 !important;
  85. }