1
0

moretitle.wxss 1.1 KB

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