index.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .QueryRecord {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background: #F9F9F9;
  5. overflow: hidden;
  6. padding-bottom: 20px;
  7. }
  8. .QueryRecord-item {
  9. width: 686px;
  10. height: 200px;
  11. background: #FFFFFF;
  12. box-shadow: 0px 4px 8px 0px rgba(220, 220, 220, 0.5);
  13. border-radius: 20px;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. margin: 0 auto;
  18. margin-top: 40px;
  19. padding-left: 32px;
  20. box-sizing: border-box;
  21. Image {
  22. width: 204px;
  23. height: 136px;
  24. }
  25. .shop-info {
  26. flex: 1;
  27. margin-left: 35px;
  28. .shop-version {
  29. font-size: 32px;
  30. font-family: PingFangSC-Medium, PingFang SC;
  31. font-weight: 500;
  32. color: #161616;
  33. }
  34. .shop-cate {
  35. font-size: 24px;
  36. font-family: PingFangSC-Regular, PingFang SC;
  37. font-weight: 400;
  38. color: #666666;
  39. }
  40. }
  41. .button {
  42. margin-right: 38px;
  43. width: 124px;
  44. height: 60px;
  45. border-radius: 44px;
  46. background: #F3F3F3;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. font-size: 24px;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: #999999;
  54. }
  55. .unclaimed {
  56. color: #FFFFFF;
  57. background: #002F95;
  58. box-shadow: 0px 4px 20px 0px rgba(0, 47, 149, 0.52);
  59. }
  60. }