log.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. * {
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box; }
  5. a:hover, a:visited, a:link, a:active {
  6. text-decoration: none; }
  7. body {
  8. background-color: #F5F5F5;
  9. min-height: 100vh; }
  10. .tab {
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. background-color: #FFFFFF;
  15. padding: 0 0.2rem;
  16. margin-bottom: 0.05rem; }
  17. .tab_cell {
  18. flex: 1;
  19. text-align: center;
  20. line-height: 0.48rem;
  21. font-size: 0.16rem;
  22. color: #666666; }
  23. .tab .active {
  24. color: #333333;
  25. position: relative; }
  26. .tab .active:before {
  27. content: '';
  28. position: absolute;
  29. bottom: 0;
  30. left: calc(50% - 0.15rem);
  31. width: 0.3rem;
  32. height: 0.04rem;
  33. background: #1A83FF;
  34. -webkit-border-radius: 0.065rem;
  35. -moz-border-radius: 0.065rem;
  36. border-radius: 0.065rem; }
  37. .exchangeList_item {
  38. height: 0.81rem;
  39. width: 100%;
  40. background: #FFFFFF;
  41. padding: 0.16rem 0.25rem;
  42. border-bottom: 1px solid #F5F5F5;
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between; }
  46. .exchangeList_item .info .title {
  47. font-size: 0.16rem;
  48. color: #333333;
  49. margin-bottom: 0.065rem;
  50. letter-spacing: 0.0034rem; }
  51. .exchangeList_item .info .time {
  52. font-size: 0.14rem;
  53. line-height: 0.2rem;
  54. color: #999999;
  55. letter-spacing: 0.003rem; }
  56. .exchangeList_item .money {
  57. font-size: 0.2rem;
  58. color: #FD0808;
  59. line-height: 0.26rem;
  60. letter-spacing: 0.0043rem; }
  61. .lotteryList_item {
  62. height: 0.48rem;
  63. background: #FFFFFF;
  64. border-bottom: 1px solid #F5F5F5;
  65. padding-right: 0.175rem;
  66. padding-left: 0.25rem;
  67. display: flex;
  68. align-items: center;
  69. justify-content: space-between; }
  70. .lotteryList_item .money {
  71. font-size: 0.16rem;
  72. color: #333333; }
  73. .lotteryList_item .time {
  74. font-size: 0.14rem;
  75. color: #999999; }
  76. /*# sourceMappingURL=log.css.map */