/*城市选择*/ #citySelector { width: 400px; height: 400px; box-shadow: 3px 3px 10px rgba(110, 110, 110, 0.5); background-color: #f5f6f5; z-index: 100; position: absolute; display: none; } #citySelector.open, #citySelector:hover { display: block; } #citySelector .allCityList { width: 100%; height: 100%; position: relative; } #citySelector .allCityList .city-recently-used { width: 100%; height: 48px; background: linear-gradient(to top, #f66d07, #fc9803); font-size: 12px; } #citySelector .allCityList .city-recently-used li { float: left; width: 50px; box-sizing: border-box; border-radius: 4px; color: #ffffff; margin: 8px 0 8px 15px; padding: 9px; text-align: center; cursor: pointer; font-weight: bold; } #citySelector .allCityList .city-recently-used li:hover, #citySelector .allCityList .city-recently-used li.selected { background: #fff linear-gradient(to top, #f1f1f1, #ffffff); background: #fff -moz-linear-gradient(to top, #f1f1f1, #ffffff); color: #f17206; } #citySelector .allCityList .common p { padding: 14px 0 10px 30px; font-weight: bold; color: #74848d; } #citySelector .allCityList .common .commonCityList { margin: 0 12px 12px 12px; overflow: hidden; } #citySelector .allCityList .common .commonCityList dd { margin: 0; border: 1px solid #d0d0d0; border-radius: 4px; color: #7d848d; width: 72px; float: left; line-height: 32px; background-color: #f9f8f3; text-align: center; cursor: pointer; } #citySelector .allCityList .common .commonCityList dd:hover { background-color: #ff9b00; color: #ffffff; } #citySelector .allCityList .common .commonCityList dd + dd { margin-left: 7px; } #citySelector .allCityList .cityList { border-left: 1px solid #e1e1e1; margin: 0 12px 12px 12px; overflow: hidden; color: #7b848d; border-right: 1px solid #e1e1e1; border-bottom: 1px solid #e1e1e1; } #citySelector .allCityList .cityList li { float: left; width: 25%; line-height: 35px; text-align: center; border-left: 1px solid #e1e1e1; border-top: 1px solid #e1e1e1; box-sizing: border-box; cursor: pointer; } #citySelector .allCityList .cityList li:hover { background-color: #ff9b00; color: white; } #citySelector .allCityList .cityList li:active { background-color: #f78800; color: white; } #citySelector .allCityList .cityPager { position: absolute; bottom: 0; left: 0; padding-bottom: 9px; text-align: center; width: 100%; } #citySelector .allCityList .cityPager button { line-height: 24px; background: linear-gradient(0, #e6e6e6, #f9f9f9); color: #7d848d; border: 1px solid #bdbcbc; border-radius: 4px; cursor: pointer; } #citySelector .allCityList .cityPager button:hover { background: linear-gradient(to top, #efefef, #ffffff); } #citySelector .allCityList .cityPager button:disabled { border: 1px solid transparent; background: none transparent; color: #9da2a8; }