123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .popup-container {
- height: 100vh;
- padding: 66px 0 0 0;
- box-sizing: border-box;
- overflow: hidden;
- // 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 {
- box-sizing: border-box;
- position: relative;
- height: calc(100vh - 66px);
- min-height: calc(100vh - 66px);
- overflow: hidden;
- padding: 0;
- .popup-checkbox-header {
- background: #67C23A;
- font-size: 12px;
- text-align: center;
- height: 30px;
- line-height: 26px;
- color: #fff;
- margin: 0;
- position: absolute;
- width: 100%;
- top: 0;
- left: 0;
- z-index: 9999;
- }
- .popup-checkbox-main {
- padding: 42px 16px 100px 16px;
- overflow: scroll;
- box-sizing: border-box;
- height: 100%;
- .popup-checkbox-item {
- color: #000;
- font-size: 16px;
- font-weight: bold;
- line-height: 42px;
- 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: 11px 0 0 0;
- }
- }
- }
- .popup-checkbox-footer {
- position: absolute;
- z-index: 9999;
- left: 0;
- bottom: 0;
- height: 66px;
- width: 100%;
- padding: 5px 16px;
- box-sizing: border-box;
- background: #fff;
- border-top: 1px solid #f0f0f0;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
- }
- }
- .popup-time {
- position: relative;
- height: calc(100vh - 66px);
- }
- .popup-city {
- height: calc(100vh - 66px);
- overflow: scroll;
- .city-item {
- background: #eee;
- .city-value-row {
- background: #fff;
- &.current-city-value {
- height: 50px;
- line-height: 50px;
- text-align: center;
- color: #409EFF;
- }
- }
- .city-value-item {
- text-align: center;
- height: 50px;
- line-height: 50px;
- border-bottom: 2px solid #eee;
- overflow: hidden;
- text-overflow: ellipsis;
- &.not-border {
- border: 2px solid transparent;
- }
- &.changed {
- color: #409EFF;
- }
- }
- }
- }
- }
|