12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .inputalertlayer{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 8;
- background: transparent;
- }
- .inputalertbox{
- position: absolute;
- top: 100%;
- left: 20rpx;
- z-index: 9;
- width: 710rpx;
- background: #FFFFFF;
- border: 1px solid rgba(212,228,237,1);/*np*/
- box-shadow: 0px 4rpx 16rpx 0px rgba(36,158,251,0.3);
- border-radius: 4rpx;
- padding: 20rpx;
- }
- .inputalertbox view{
- width: auto;
- height: 48rpx;
- background: #FFFFFF;
- border: 1px solid rgba(157,182,207,1);
- border-radius: 4rpx;
- display: flex;
- justify-content: center;
- align-items:center;
- padding: 0 10rpx;
- margin-right: 24rpx;
- margin-bottom: 24rpx;
- }
- .inputalertbox view.nowtap{
- background: #249EFB;
- border-color: #249EFB;
- color: #fff;
- }
- .pull-left {float: left;}
- .clearfix:after {
- clear: both;
- content: ' ';
- display: table;
- }
- .clearfix:before {
- content: ' ';
- display: table;
- }
|