| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* components/newPicker/newPicker.wxss */
- .search {
- width: 78vw;
- text-align: center;
- margin: 30rpx auto;
- height: 80rpx;
- line-height: 80rpx;
- background: #eee;
- }
- .cancel {
- margin: 30rpx auto;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 32rpx;
- color: #999;
- }
- .items {
- padding-left: 40rpx;
- height: 100rpx;
- line-height: 100rpx;
- border-bottom: 1rpx solid #eee;
- }
- .df {
- display: flex;
- }
- .jcsa {
- justify-content: space-around;
- }
- .btn {
- padding-left: 20rpx;
- border: 1px solid grey;
- height: 80rpx;
- line-height: 80rpx;
- width: 50vw;
- }
- .modal {
- position: absolute;
- bottom: 0;
- animation: moveUp 0.3s 1 forwards;
- }
- .modal-down {
- animation: moveDown 0.3s 1 forwards;
- }
- @keyframes moveUp {
- from {
- top: 100vh;
- }
- to {
- top: 0;
- }
- }
- @keyframes moveDown {
- from {
- top: 0;
- }
- to {
- top: 100vh;
- }
- }
|