Light12306/Web12306/css/ui/city-selector.css

138 lines
2.9 KiB
CSS
Raw Normal View History

2014-05-05 19:34:47 +08:00
/*城市选择*/
2014-05-16 20:10:45 +08:00
#city_selector {
2014-05-05 19:34:47 +08:00
width: 400px;
box-shadow: 3px 3px 10px rgba(110, 110, 110, 0.5);
background-color: #f5f6f5;
z-index: 100;
position: absolute;
display: none;
}
2014-05-16 20:10:45 +08:00
#city_selector.open,
#city_selector:hover {
2014-05-05 19:34:47 +08:00
display: block;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-tab-nav {
2014-05-05 19:34:47 +08:00
width: 100%;
height: 48px;
background: linear-gradient(to top, #f66d07, #fc9803);
font-size: 12px;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-tab-nav li {
2014-05-05 19:34:47 +08:00
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;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-tab-nav li:hover,
#city_selector .city-tab-nav li.selected {
2014-05-05 19:34:47 +08:00
background: #fff linear-gradient(to top, #f1f1f1, #ffffff);
background: #fff -moz-linear-gradient(to top, #f1f1f1, #ffffff);
color: #f17206;
}
2014-05-16 20:10:45 +08:00
#city_selector p {
2014-05-05 19:34:47 +08:00
padding: 14px 0 10px 30px;
font-weight: bold;
color: #74848d;
}
2014-05-16 20:10:45 +08:00
#city_selector .recent-city-list dl {
2014-05-05 19:34:47 +08:00
margin: 0 12px 12px 12px;
overflow: hidden;
}
2014-05-16 20:10:45 +08:00
#city_selector .recent-city-list dd {
2014-05-05 19:34:47 +08:00
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;
}
2014-05-16 20:10:45 +08:00
#city_selector .recent-city-list dd:hover {
2014-05-05 19:34:47 +08:00
background-color: #ff9b00;
color: #ffffff;
}
2014-05-16 20:10:45 +08:00
#city_selector .recent-city-list dd + dd {
2014-05-05 19:34:47 +08:00
margin-left: 7px;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-container {
margin: 0 auto 50px auto;
2014-05-05 19:34:47 +08:00
overflow: hidden;
color: #7b848d;
border-right: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
2014-05-16 20:10:45 +08:00
width: 390px;
2014-05-05 19:34:47 +08:00
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-container li {
2014-05-05 19:34:47 +08:00
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;
}
2014-05-27 19:40:21 +08:00
#city_selector .city-list-container li:hover,
#city_selector .city-list-container li.selected {
2014-05-05 19:34:47 +08:00
background-color: #ff9b00;
color: white;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-container li:active {
2014-05-05 19:34:47 +08:00
background-color: #f78800;
color: white;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-search {
display: none;
}
#city_selector .city-list-pager {
2014-05-05 19:34:47 +08:00
position: absolute;
bottom: 0;
left: 0;
padding-bottom: 9px;
text-align: center;
width: 100%;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-pager button {
2014-05-05 19:34:47 +08:00
line-height: 24px;
background: linear-gradient(0, #e6e6e6, #f9f9f9);
color: #7d848d;
border: 1px solid #bdbcbc;
border-radius: 4px;
cursor: pointer;
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-pager button:hover {
2014-05-05 19:34:47 +08:00
background: linear-gradient(to top, #efefef, #ffffff);
}
2014-05-16 20:10:45 +08:00
#city_selector .city-list-pager button:disabled {
2014-05-05 19:34:47 +08:00
border: 1px solid transparent;
background: none transparent;
color: #9da2a8;
}