dialog.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* compontents/dialog/dialog.wxss */
  2. .dialog {
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100%;
  8. background: rgba(0, 0, 0, .4);
  9. z-index:9999;
  10. }
  11. .dialog-contain {
  12. position: absolute;
  13. left: 0;
  14. top: -125rpx;
  15. bottom: 0;
  16. right: 0;
  17. width: 70%;
  18. height: 216rpx;
  19. background: #fff;
  20. margin: auto;
  21. border-radius: 20rpx;
  22. text-align: center;
  23. box-sizing: border-box;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: space-around;
  27. align-items: center;
  28. font-size: 32rpx;
  29. }
  30. .title {
  31. font-size: 36rpx;
  32. width: 100%;
  33. border-bottom: 2rpx solid #ccc;
  34. padding: 28rpx 0;
  35. }
  36. .head-bg {
  37. width: 72rpx;
  38. height: 72rpx;
  39. border-radius: 50%;
  40. }
  41. .text {
  42. font-size: 28rpx;
  43. width: 95%;
  44. /* border-bottom: 2rpx solid #ccc; */
  45. padding: 28rpx 0;
  46. margin-top:12rpx;
  47. }
  48. .shuoming {
  49. font-size: 28rpx;
  50. width: 100%;
  51. border-bottom: 2rpx solid #ccc;
  52. padding: 14rpx 0 46rpx 0;
  53. }
  54. .btn {
  55. margin: 0;
  56. padding: 0;
  57. font-size: 36rpx;
  58. color: #16B016;
  59. background: #fff;
  60. width: 100%;
  61. }
  62. .btn::after {
  63. border: none;
  64. }