1
0

inputalert.wxss 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .inputalertlayer{
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 8;
  8. background: transparent;
  9. }
  10. .inputalertbox{
  11. position: absolute;
  12. top: 100%;
  13. left: 20rpx;
  14. z-index: 9;
  15. width: 710rpx;
  16. background: #FFFFFF;
  17. border: 1px solid rgba(212,228,237,1);/*np*/
  18. box-shadow: 0px 4rpx 16rpx 0px rgba(36,158,251,0.3);
  19. border-radius: 4rpx;
  20. padding: 20rpx;
  21. }
  22. .inputalertbox view{
  23. width: auto;
  24. height: 48rpx;
  25. background: #FFFFFF;
  26. border: 1px solid rgba(157,182,207,1);
  27. border-radius: 4rpx;
  28. display: flex;
  29. justify-content: center;
  30. align-items:center;
  31. padding: 0 10rpx;
  32. margin-right: 24rpx;
  33. margin-bottom: 24rpx;
  34. }
  35. .inputalertbox view.nowtap{
  36. background: #249EFB;
  37. border-color: #249EFB;
  38. color: #fff;
  39. }
  40. .pull-left {float: left;}
  41. .clearfix:after {
  42. clear: both;
  43. content: ' ';
  44. display: table;
  45. }
  46. .clearfix:before {
  47. content: ' ';
  48. display: table;
  49. }