问星数据小程序

index.wxss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .mask {
  2. width: 100vw;
  3. height: 100vh;
  4. background: rgba(0,0,0,.5);
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. z-index: 101;
  9. }
  10. .toast {
  11. width: 600rpx;
  12. height: 496rpx;
  13. border-radius: 12rpx;
  14. position: absolute;
  15. top: 46%;
  16. left: 50%;
  17. transform: translate(-50%,-50%);
  18. background: #fff;
  19. text-align: center;
  20. }
  21. .content{
  22. padding: 40rpx 56rpx 46rpx 44rpx;
  23. }
  24. .notice_box {
  25. height: 346rpx;
  26. color: #666666;
  27. }
  28. .notice_box .toast_title {
  29. margin-bottom: 30rpx;
  30. }
  31. .notice_main {
  32. line-height: 40rpx;
  33. padding-bottom: 50rpx;
  34. font-size: 28rpx;
  35. text-align: left;
  36. text-align: center;
  37. }
  38. .know {
  39. font-size: 30rpx;
  40. color: #2562FF;
  41. padding: 22rpx 0;
  42. font-weight: bold;
  43. border-top: 2rpx solid #D8D8D8;
  44. }
  45. .toast_title {
  46. color: #000000;
  47. font-size: 36rpx;
  48. line-height: 50rpx;
  49. font-weight: bold;
  50. margin-bottom: 50rpx;
  51. }
  52. .buttones{
  53. width: 100%;
  54. display: flex;
  55. align-items: center;
  56. position: absolute;
  57. bottom: 0;
  58. }
  59. .buttones .button{
  60. width: 50%;
  61. line-height: 98rpx;
  62. border-top: 2rpx solid #D8D8D8;
  63. color: #101426;
  64. font-size: 32rpx;
  65. text-align: center;
  66. }
  67. .buttones .button_yes{
  68. background: #2662FF;
  69. border-color: #2662FF;
  70. color: #FFFFFF;
  71. }