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