123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- .lin-checkbox{
- width: 24px;
- height: 24px;
- border-radius: 15px;
- border: 1px solid #ccc;
- margin: 22px 20px 0px 0px;
- }
- .doc-item div.content{
- -webkit-box-flex: 1;
- }
- .doc-item.checked div.lin-checkbox, .lin-checkbox.checked{
- background: url(../images/checked_blue.png) no-repeat;
- background-size: 24px 24px;
- border: none;
- }
- .doc-item .p2{
- padding: 0px 0px 0px 10px;
- color: #999;
- }
- .lin-radio{
- width: 24px;
- height: 24px;
- border-radius: 15px;
- margin: 22px 30px 0px 0px;
- background: url(../images/xanxuan_btn.png) no-repeat;
- background-size: 24px 24px;
- }
- .doc-item.checked div.lin-radio{
- background: url(../images/banxuan_pre.png) no-repeat;
- background-size: 24px 24px;
- border: none;
- }
- .lin-footer {
- position: absolute;
- z-index: 2;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 48px;
- background: #fff;
- padding: 0;
- border-top: 1px solid #ddd;
- display: -webkit-box;
- }
- .asel-text{
- width: 70px;
- font-size: 16px;
- color: #333;
- line-height: 47px;
- }
- .checked-num{
- -webkit-box-flex: 1;
- text-align: right;
- padding-right: 20px;
- font-size: 14px;
- line-height: 47px;
- /*color: #909090;*/
- }
- .checked-num label{
- color: #17B3EC;
- margin: 0px 4px;
- }
- .search-box{
- background: #fff; padding: 10px 16px;
- }
- .search-box>div{
- background: #f2f4f6; border-radius: 8px;
- }
- .search-box input{
- height: 40px; font-size: 14px; width: 100%;
- background: url(../../../images/sousuo_icon.png) no-repeat;
- background-size: 40px 40px;
- -webkit-background-size: 40px 40px;
- -moz-background-size: 40px 40px;
- -o-background-size: 40px 40px;
- padding-left: 40px;
- }
- .loading{
- height: 100%;
- position: absolute;
- width: 100%;
- padding-top: 150px;
- text-align: center;
- background: #fff;
- line-height: 32px;
- font-size: 16px;
- display: none;
- }
- .jm-title{
- background: #fff;
- border-bottom: 1px solid #f2f4f6;
- border-top: 1px solid #f2f4f6;
- color: #909090;
- font-size: 12px;
- padding: 8px 16px;
- }
- .jm-more{
- font-size: 12px;
- color: #909090;
- text-align: center;
- background: #fff;
- padding: 8px;
- border-bottom: 1px solid #f2f4f6;
- }
- .c-17b3ec{
- color: #17B3EC;
- }
- /*不用任何图标实现删除icon效果*/
- .u-icon-delete
- {
- position: absolute;
- top: 54px;
- right: 16px;
- width: 40px;
- height: 40px;
- }
- /*给before伪类设置一个默认背景色 设置content*/
- .u-icon-delete:before
- {
- position: absolute;
- top: 10px;
- left: 10px;
- width: 20px;
- height: 20px;
- border-radius: 20px;
- background-color: #8e8e93;
- content: '';
- }
- /*给after伪类 -webkit-transform: rotate(-45deg);旋转 background-color: #e1e2e4;设置X的一边的颜色*/
- .u-icon-delete:after
- {
- position: absolute;
- top: 19px;
- left: 14px;
- width: 12px;
- height: 2px;
- -webkit-transform: rotate(-45deg);
- background-color: #e1e2e4;
- content: '';
- }
- /* -webkit-transform: rotate(45deg); 运用的特别巧秒*/
- .u-icon-delete i
- {
- position: absolute;
- top: 19px;
- left: 14px;
- width: 12px;
- height: 2px;
- background-color: #e1e2e4;
- -webkit-transform: rotate(45deg);
- }
- .checked-num.disabled{
- color: #909090;
- }
|