1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .popup-container {
- height: 100vh;
- padding: 66px 0 0 0;
- box-sizing: border-box;
- overflow-y: scroll;
- }
- .popup-container .popup-radio {
- padding: 10px 0 10px 0;
- }
- .popup-container .popup-radio .popup-radio-item {
- color: #000;
- font-size: 16px;
- font-weight: bold;
- line-height: 50px;
- text-align: center;
- }
- .popup-container .popup-radio .popup-radio-item.selected {
- color: #409EFF;
- }
- .popup-container .popup-checkbox {
- padding: 0 16px 0 16px;
- box-sizing: border-box;
- position: relative;
- height: 100%;
- min-height: 100%;
- overflow: hidden;
- }
- .popup-container .popup-checkbox .msgTitle {
- background: #67C23A;
- font-size: 12px;
- text-align: center;
- height: 30px;
- line-height: 26px;
- color: #fff;
- margin: 0 -16px 20px -16px;
- }
- .popup-container .popup-checkbox .popup-checkbox-item {
- color: #000;
- font-size: 16px;
- font-weight: bold;
- line-height: 50px;
- background: #f4f4f5;
- padding: 6px 12px;
- margin: 0 0 10px 0;
- border-radius: 7px;
- border: 1px solid #f4f4f5;
- display: flex;
- }
- .popup-container .popup-checkbox .popup-checkbox-item.selected {
- color: #409EFF;
- border: 1px solid #409EFF;
- }
- .popup-container .popup-checkbox .popup-checkbox-item .popup-checkbox-label {
- flex: 5;
- }
- .popup-container .popup-checkbox .popup-checkbox-item .popup-checkbox-icon {
- width: 20px;
- height: 20px;
- line-height: 20px;
- display: block;
- border-radius: 50%;
- overflow: hidden;
- margin: 15px 0 0 0;
- }
- .popup-container .popup-time {
- position: relative;
- height: calc(100vh - 66px);
- }
- .popup-container .popup-city {
- height: calc(100vh - 66px);
- overflow: hidden;
- }
|