index.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @import "~taro-ui/dist/style/components/icon.scss";
  2. .container {
  3. width: 96vw;
  4. height: 100vh;
  5. padding: 0 2vw;
  6. overflow: auto;
  7. background: linear-gradient(#1D2045 30%, #1D2045, #2C2B40);
  8. .header {
  9. font-size: 30px;
  10. height: 80px;
  11. line-height: 80px;
  12. color: #fff;
  13. background-color: rgb(23, 204, 99);
  14. width: 80%;
  15. text-align: center;
  16. margin: 20px auto;
  17. border-radius: 40px;
  18. box-shadow: 4px 4px 10px rgb(11, 51, 2);
  19. }
  20. .body {
  21. .trade-time {
  22. font-size: 32px;
  23. margin: 30px 0 10px;
  24. color: #fff;
  25. }
  26. .record-item {
  27. height: 220px;
  28. margin-bottom: 10px;
  29. padding: 0 20px;
  30. font-size: 28px;
  31. color: #333;
  32. background: #fff;
  33. border-radius: 5px;
  34. display: flex;
  35. justify-content: space-between;
  36. .left {
  37. width: 550px;
  38. font-size: 28px;
  39. view {
  40. margin-top: 12px;
  41. }
  42. }
  43. .right {
  44. font-size: 28px;
  45. display: flex;
  46. align-items: center;
  47. flex-direction: column;
  48. justify-content: center;
  49. .share {
  50. background: linear-gradient(to right, rgb(250, 213, 3), #e2740c);
  51. }
  52. .down {
  53. background: rgb(13, 168, 8);
  54. }
  55. .button {
  56. height: 50px;
  57. font-size: 24px;
  58. line-height: 2.1;
  59. color: #fff;
  60. border: none;
  61. margin: 8px 0;
  62. padding: 0 10px;
  63. &::after {
  64. content: "";
  65. border: none;
  66. }
  67. }
  68. }
  69. }
  70. }
  71. }