1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .inputalertlayer {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- z-index: 1001;
- background: transparent;
- }
- .inputalertbox {
- position: absolute;
- top: 100%;
- left: 20rpx;
- z-index: 1002;
- 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.everydiv {
- 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;
- }
- .top{
- border-top: 1px solid #EAF0F4;
- padding-top: 16rpx;
- }
|