123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- .search-right {
- padding: 0 10rpx !important;
- }
- page {
- width: 100vw;
- overflow: hidden;
- }
- .groud {
- width: 100%;
- padding: 30rpx;
- border-bottom: 1px solid #DDDDDD;
- .label {
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .content {
- display: flex;
- flex-wrap: wrap;
- width: 100%;
- .but {
- width: 188rpx;
- height: 72rpx;
- background: #F5F5F5;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-top: 20rpx;
- padding: 0;
- }
- .active {
- border: 1px solid #3874F6;
- color: #3874F6;
- font-weight: bold;
- background-color: #F5F5F5;
- }
- }
- .time {
- .partition {
- margin-right: 20rpx;
- display: flex;
- align-items: center;
- }
- .tbox {
- width: 220rpx;
- height: 72rpx;
- text-align: center;
- line-height: 72rpx;
- background: #F5F5F5;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- box-sizing: border-box;
- margin-right: 20rpx;
- margin-top: 20rpx;
- }
- }
- }
- .DrawerPage {
- position: fixed;
- width: 100vw;
- height: 100vh;
- left: 0vw;
- background-color: #f1f1f1;
- transition: all 0.4s;
- }
- .DrawerPage.show {
- transform: scale(0.9, 0.9);
- left: 85vw;
- box-shadow: 0 0 60rpx rgba(0, 0, 0, 0.2);
- transform-origin: 0;
- }
- .DrawerWindow {
- position: absolute;
- width: 85vw;
- height: 100vh;
- left: 0;
- top: 0;
- transform: scale(0.9, 0.9) translateX(-100%);
- opacity: 0;
- pointer-events: none;
- transition: all 0.4s;
- }
- .DrawerWindow.show {
- transform: scale(1, 1) translateX(0%);
- opacity: 1;
- pointer-events: all;
- }
- .DrawerClose {
- position: absolute;
- width: 40vw;
- height: 100vh;
- right: 0;
- top: 0;
- color: transparent;
- padding-bottom: 30rpx;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.6));
- letter-spacing: 5px;
- font-size: 50rpx;
- opacity: 0;
- pointer-events: none;
- transition: all 0.4s;
- }
- .DrawerClose.show {
- opacity: 1;
- pointer-events: all;
- width: 15vw;
- color: #fff;
- }
- .DrawerPage .cu-bar.tabbar .action button.icon {
- width: 64rpx;
- height: 64rpx;
- line-height: 64rpx;
- margin: 0;
- display: inline-block;
- }
- .DrawerPage .cu-bar.tabbar .action .cu-avatar {
- margin: 0;
- }
- .DrawerPage .nav {
- flex: 1;
- }
- .DrawerPage .nav .cu-item.cur {
- border-bottom: 0;
- position: relative;
- }
- .DrawerPage .nav .cu-item.cur::after {
- content: "";
- width: 10rpx;
- height: 10rpx;
- background-color: currentColor;
- position: absolute;
- bottom: 10rpx;
- border-radius: 10rpx;
- left: 0;
- right: 0;
- margin: auto;
- }
- .DrawerPage .cu-bar.tabbar .action {
- flex: initial;
- }
|