index.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. .recordTab{
  2. border-radius: 8px;
  3. z-index: 999;
  4. .at-tabs__header{
  5. width: 88%;
  6. }
  7. .at-tabs__item{
  8. font-size: 28px;
  9. color: #969696;
  10. padding: 11PX 24PX;
  11. }
  12. .at-tabs__item--active{
  13. color: #3C6EF0;
  14. }
  15. .at-tabs__item-underline{
  16. height: 2Px;
  17. margin: auto;
  18. right: 0;
  19. width: 40%;
  20. }
  21. }
  22. .taro-tabbar__panel{
  23. background-color: #F7F7F7;
  24. }
  25. .tab-content {
  26. // padding: 100px 50px;
  27. width: 100%;
  28. min-height: 700px;
  29. overflow-y: auto;
  30. font-size: 30px;
  31. text-align: center;
  32. background-color: #F7F7F7;
  33. }
  34. .recordList{
  35. width: 100%;
  36. padding: 0 30px;
  37. box-sizing: border-box;
  38. }
  39. .recordItem{
  40. width: 100%;
  41. height: 156px;
  42. margin-top: 20px;
  43. padding: 16px 0 16px 28px;
  44. background: #FFFFFF;
  45. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  46. box-sizing: border-box;
  47. border-radius: 8px;
  48. display: flex;
  49. align-items: center;
  50. .recordItemImg{
  51. width: 80px;
  52. height: 80px;
  53. // line-height: 90px;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. // border: 5px solid rgba(120, 164, 250, 0.4);
  58. // border-radius: 50%;
  59. margin-right: 28px;
  60. // text-align: center;
  61. .slockImg{
  62. width: 80px;
  63. height:100%;
  64. }
  65. }
  66. }
  67. //文本
  68. .recordItemRight{
  69. width: 83%;
  70. height: auto;
  71. text-align: left;
  72. .slock{
  73. width: 100%;
  74. height: 40px;
  75. font-size: 28px;
  76. text-align: left;
  77. display: flex;
  78. align-items: center;
  79. .slockName{
  80. width: 50%;
  81. font-family: '.PingFang SC';
  82. }
  83. .slockNum{
  84. width: 50%;
  85. height: 40px;
  86. display: flex;
  87. align-items: center;
  88. .numImg{
  89. width: 30px;
  90. height: 30px;
  91. margin-right: 10px;
  92. }
  93. }
  94. }
  95. .openMode{
  96. width: 100%;
  97. height: 36px;
  98. font-size: 24px;
  99. font-family: '.PingFang SC';
  100. font-weight: 300;
  101. margin: 10px 0;
  102. color: #3C6EF0;
  103. }
  104. // 开锁人,开锁时间
  105. .slockPerTime{
  106. width: 100%;
  107. height: 40px;
  108. font-size: 24px;
  109. text-align: left;
  110. display: flex;
  111. align-items: center;
  112. color: #969696;
  113. .slockPerson{
  114. width: 20%;
  115. }
  116. .slockTime{
  117. width: 60%;
  118. }
  119. }
  120. }
  121. .fabBtn{
  122. position: fixed;
  123. right: 0;
  124. top: 0px;
  125. .at-fab{
  126. border-radius: 50% 0 0 50%;
  127. height: 88px;
  128. width: 90px;
  129. display: flex;
  130. justify-content: center;
  131. align-self: center;
  132. .fabBtnImg{
  133. width: 40px;
  134. height: 44px;
  135. }
  136. }
  137. }