login.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .dialog {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: rgba(0, 0, 0, .4);
  8. z-index:9999;
  9. }
  10. .dialog-contain {
  11. position: absolute;
  12. left: 0;
  13. top: -125rpx;
  14. bottom: 0;
  15. right: 0;
  16. width: 70%;
  17. height: 216rpx;
  18. background: #fff;
  19. margin: auto;
  20. border-radius: 20rpx;
  21. text-align: center;
  22. box-sizing: border-box;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: space-around;
  26. align-items: center;
  27. font-size: 32rpx;
  28. }
  29. .title {
  30. font-size: 36rpx;
  31. width: 100%;
  32. border-bottom: 2rpx solid #ccc;
  33. padding: 28rpx 0;
  34. }
  35. .head-bg {
  36. width: 72rpx;
  37. height: 72rpx;
  38. border-radius: 50%;
  39. }
  40. .text {
  41. font-size: 28rpx;
  42. width: 95%;
  43. /* border-bottom: 2rpx solid #ccc; */
  44. padding: 28rpx 0;
  45. margin-top:12rpx;
  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. }