| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .page {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- margin: 0%;
- }
- .filter {
- position: fixed;
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 75rpx;
- width: 100%;
- z-index: 100;
- }
- .filter-item {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- width: 33%;
- font-size: 30rpx;
- }
- .filter-arrow {
- height: 30rpx;
- width: 30rpx;
- margin-left: 10rpx;
- }
- .filter-line {
- height: 60%;
- width: 4rpx;
- }
- .filter-lists {
- position: fixed;
- top: 75rpx;
- left: 0rpx;
- display: flex;
- justify-content: space-around;
- align-items: flex-start;
- width: 100%;
- z-index: 100;
- }
- .filter-list1 {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 100%;
- font-size: 25rpx;
- background: rgba(255, 255, 255, 0.95);
- opacity: 0;
- }
- .filter-list {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 33%;
- font-size: 25rpx;
- background: rgba(255, 255, 255, 0.95);
- opacity: 0;
- }
- .filter-list-title {
- display: flex;
- justify-content: space-between;
- height: 40rpx;
- font-size: 25rpx;
- line-height: 40rpx;
- margin-left: 15rpx;
- margin-right: 15rpx;
- }
- .filter-list-subtitle {
- display: flex;
- justify-content: space-between;
- height: 40rpx;
- font-size: 25rpx;
- line-height: 40rpx;
- margin-left: 20rpx;
- margin-right: 15rpx;
- }
- .filter-list-item {
- display: flex;
- justify-content: space-between;
- height: 60rpx;
- line-height: 60rpx;
- margin-left: 20rpx;
- margin-right: 25rpx;
- }
|