loginPopup.wxss 818 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* components/loginPopup/loginPopup.wxss */
  2. .login-popup{
  3. background: rgba(0, 0, 0, 0.5);
  4. width:100%;
  5. height:100%;
  6. position: fixed;
  7. top:0;
  8. left:0;
  9. z-index: 1000;
  10. }
  11. .log-pop-main{
  12. position: absolute;
  13. background: #fff;
  14. bottom:50rpx;
  15. width:570rpx;
  16. height:200rpx;
  17. left:50rpx;
  18. right:0;
  19. padding:40rpx;
  20. padding-top:20rpx;
  21. border-radius: 10rpx;
  22. }
  23. .log-pop-tit{
  24. font-size: 34rpx;
  25. font-weight: bold;
  26. height:80rpx;
  27. line-height: 80rpx;
  28. }
  29. .log-pop-msg {
  30. font-size: 28rpx;
  31. height:60rpx;
  32. line-height: 60rpx;
  33. }
  34. .log-pop-btns{
  35. display: flex;
  36. height:90rpx;
  37. line-height: 90rpx;
  38. }
  39. .log-pop-btns button{
  40. background: #fff;
  41. font-size: 30rpx;
  42. height:90rpx;
  43. line-height: 90rpx;
  44. }
  45. .log-pop-btns button::after{
  46. border:0;
  47. }
  48. .log-pop-no{
  49. color:#999;
  50. }
  51. .log-pop-ok{
  52. color:red;
  53. }