| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- .recordTab{
- border-radius: 8px;
- z-index: 999;
- .at-tabs__header{
- width: 88%;
- }
- .at-tabs__item{
- font-size: 28px;
- color: #969696;
- padding: 11PX 24PX;
- }
- .at-tabs__item--active{
- color: #3C6EF0;
- }
- .at-tabs__item-underline{
- height: 2Px;
- margin: auto;
- right: 0;
- width: 40%;
- }
- }
- .taro-tabbar__panel{
- background-color: #F7F7F7;
- }
- .tab-content {
- // padding: 100px 50px;
- width: 100%;
- min-height: 700px;
- overflow-y: auto;
- font-size: 30px;
- text-align: center;
- background-color: #F7F7F7;
-
-
- }
- .recordList{
- width: 100%;
- padding: 0 30px;
- box-sizing: border-box;
- }
- .recordItem{
- width: 100%;
- height: 156px;
- margin-top: 20px;
- padding: 16px 0 16px 28px;
-
- background: #FFFFFF;
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
- box-sizing: border-box;
- border-radius: 8px;
- display: flex;
- align-items: center;
- .recordItemImg{
- width: 80px;
- height: 80px;
- // line-height: 90px;
- display: flex;
- justify-content: center;
- align-items: center;
- // border: 5px solid rgba(120, 164, 250, 0.4);
- // border-radius: 50%;
- margin-right: 28px;
- // text-align: center;
- .slockImg{
- width: 80px;
- height:100%;
- }
- }
- }
- //文本
- .recordItemRight{
- width: 83%;
- height: auto;
- text-align: left;
- .slock{
- width: 100%;
- height: 40px;
- font-size: 28px;
- text-align: left;
- display: flex;
- align-items: center;
- .slockName{
- width: 50%;
-
- font-family: '.PingFang SC';
- }
- .slockNum{
- width: 50%;
- height: 40px;
- display: flex;
- align-items: center;
- .numImg{
- width: 30px;
- height: 30px;
- margin-right: 10px;
- }
- }
- }
- .openMode{
- width: 100%;
- height: 36px;
- font-size: 24px;
- font-family: '.PingFang SC';
- font-weight: 300;
- margin: 10px 0;
- color: #3C6EF0;
- }
- // 开锁人,开锁时间
- .slockPerTime{
- width: 100%;
- height: 40px;
- font-size: 24px;
- text-align: left;
- display: flex;
- align-items: center;
- color: #969696;
- .slockPerson{
- width: 20%;
- }
- .slockTime{
- width: 60%;
- }
- }
-
- }
- .fabBtn{
- position: fixed;
- right: 0;
- top: 0px;
- .at-fab{
- border-radius: 50% 0 0 50%;
- height: 88px;
- width: 90px;
- display: flex;
- justify-content: center;
- align-self: center;
- .fabBtnImg{
- width: 40px;
- height: 44px;
- }
- }
- }
|