12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .lin-down-arrow{
- position: relative;
- top: -2px;
- left: 5px;
- height: 10px;
- width: 10px;
- border-bottom: 3px solid #E1E1E1;
- border-right: 3px solid #E1E1E1;
- display: inline-block;
- transform:rotate(45deg);
- -ms-transform:rotate(45deg); /* IE 9 */
- -moz-transform:rotate(45deg); /* Firefox */
- -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
- -o-transform:rotate(45deg); /* Opera */
- zoom: 1;
- }
- .lin-sel-group{
- position: fixed;
- top: 45px;
- background: #fff;
- width: 100%;
- height: -webkit-calc(100%);
- height: -moz-calc(100%);
- height: calc(100%);
- overflow-y: scroll;
- overflow-x: hidden;
- z-index: 11;
- display: none;
- }
- .lin-sel-group li{
- text-align: center;
- color: #17b3ec;
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- border-bottom: 1px solid #f3f3f3;
- }
- .lin-sel-group img{
- width: 20px;
- margin: 10px;
- display: none;
- }
- .lin-sel-group li.checked img{
- display: inline;
- }
- .lin-mask{
- position: fixed;
- top: 45px;
- height: 100%;
- width: 100%;
- /*background: #000;*/
- height: 100%;
- z-index: 10;
- display: none;
- background-color: rgba(0,0,0,0.7);
- }
- .page-content { padding: 5px; }
|