dialog.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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:100;
  10. }
  11. .dialog-contain {
  12. position: absolute;
  13. left: 0;
  14. top: -125rpx;
  15. bottom: 0;
  16. right: 0;
  17. width: 70%;
  18. height: 470rpx;
  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: 14rpx 0;
  46. }
  47. .shuoming {
  48. font-size: 28rpx;
  49. width: 100%;
  50. border-bottom: 2rpx solid #ccc;
  51. padding: 14rpx 0 46rpx 0;
  52. }
  53. .btn {
  54. margin: 0;
  55. padding: 0;
  56. font-size: 36rpx;
  57. color: #16B016;
  58. background: #fff;
  59. width: 100%;
  60. }
  61. .btn::after {
  62. border: none;
  63. }