1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .sel-bg{
- display: none;
- position: fixed;
- top: 0px;
- left: 0px;
- right: 0px;
- bottom: 0px;
- z-index: 5;
- background-color: rgba(0,0,0,0.2);
- }
- .sel-main{
- display: none;
- position: absolute;
- width: 100%;
- background-color: #fff;
- bottom: 0px;
- z-index: 10;
- }
- .sel-head{
- padding: 0px 15px;
- height: 40px;
- background-color: #d9d9db;
- }
- .sel-ok{
- height: 40px;
- font-size: 16px;
- color: #007AFF;
- font-weight: bold;
- float: right;
- line-height: 40px;
- }
- .sel-cancel{
- float: left;
- height: 40px;
- font-size: 16px;
- color: #007AFF;
- line-height: 40px;
- }
- .sel-search{
- display: none;
- width: 100%;
- padding: 10px 10px;
- margin: 0 auto;
- background-color: #d9d9db;
- position: absolute;
- top: 45px;
- z-index: 15;
- }
- .sel-search input{
- width: 100%;
- border: solid 1px #d9d9db;
- border-radius: 5px;
- font-size: 14px;
- color: #333;
- margin-bottom: 0px;
- }
- .sel-contain{
- position: relative;
- padding: 10px 0px;
- }
- .sel-list{
- width: 80%;
- height: 200px;
- margin: 0 auto;
- overflow-y: auto;
- }
- .sel-list li{
- width: 100%;
- height: 40px;
- line-height: 40px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: center;
- font-size: 17px;
- color: #333;
- padding: 0px 40px;
- }
- .sel-list li.active{
- background: url('../images/gouxuan_lanse_icon.png') no-repeat;
- background-size:20px 20px;
- background-position: 15px center;
- color: #007aff;
|