scan-result.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .loading-w {
  2. text-align: center;
  3. color: #17D2D2;
  4. font-size: 30rpx;
  5. }
  6. .loading {
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. height: 204rpx;
  11. }
  12. .loading-item {
  13. width: 14rpx;
  14. height: 14rpx;
  15. position: relative;
  16. border-radius: 50%;
  17. background: #17D2D2;
  18. margin-right: 14rpx;
  19. animation: bouncedelay 1.4s ease-in-out infinite;
  20. }
  21. .loading-item2 {
  22. animation-delay: -0.32s;
  23. }
  24. .loading-item3 {
  25. animation-delay: -0.16s;
  26. }
  27. @keyframes bouncedelay {
  28. 0%,
  29. 80%,
  30. 100% {
  31. transform: scale(0.2);
  32. }
  33. 40% {
  34. transform: scale(1.0);
  35. }
  36. }
  37. .detail-header {
  38. background: url(https://4d-tjw.oss-cn-shenzhen.aliyuncs.com/domain/exhibition/demo/img_cardm_bg%402x.png) no-repeat center bottom;
  39. width: 100%;
  40. height: 410rpx;
  41. }
  42. .detail-content {
  43. padding: 30rpx 56rpx 200rpx;
  44. }
  45. .info-item {
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. height: 100rpx;
  50. border-bottom: 1rpx solid #E5E5E5;
  51. color: #131D34;
  52. font-size: 30rpx;
  53. }
  54. .value {
  55. text-align: right;
  56. flex: 1;
  57. margin-left: 30rpx;
  58. }
  59. .value input {
  60. width: 100%;
  61. }
  62. .action-btn {
  63. padding: 28rpx 46rpx;
  64. background:rgba(255,255,255,1);
  65. box-shadow:0px -2px 8px rgba(0,0,0,0.05);
  66. position: fixed;
  67. bottom: 0;
  68. width: 100%;
  69. z-index: 1111;
  70. }
  71. .action-btn view {
  72. background: #17D2D2;
  73. line-height: 96rpx;
  74. color: #131D34;
  75. font-size: 34rpx;
  76. text-align: center;
  77. }
  78. input {
  79. text-align: right;
  80. }