start.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .money {
  12. color: #f65067;
  13. }
  14. .disagree {
  15. padding: 10rpx 30rpx;
  16. font-size: 28rpx;
  17. width: 200rpx;
  18. height: 64rpx;
  19. color: #f65067;
  20. border-radius: 999rpx;
  21. border: 2rpx solid #f65067;
  22. }
  23. .agree {
  24. padding: 10rpx 30rpx;
  25. width: 210rpx;
  26. height: 64rpx;
  27. font-size: 28rpx;
  28. color: #fff;
  29. background-color: #f65067;
  30. border-radius: 999rpx;
  31. border: 2rpx solid #f65067;
  32. }
  33. .button {
  34. position: absolute;
  35. left: 0;
  36. right: 0;
  37. bottom: 0;
  38. z-index: 0;
  39. display: flex;
  40. padding: 24rpx;
  41. justify-content: center;
  42. text-align: center;
  43. justify-content: space-around;
  44. }
  45. .content {
  46. position: absolute;
  47. left: 0;
  48. right: 0;
  49. top: 100rpx;
  50. bottom: 120rpx;
  51. z-index: 0;
  52. font-size: 28rpx;
  53. padding: 0 50rpx;
  54. line-height: 44rpx;
  55. }
  56. .title {
  57. font-size: 36rpx;
  58. padding: 20rpx 50rpx;
  59. }
  60. .background {
  61. position: fixed;
  62. left: 0;
  63. right: 0;
  64. top: 0;
  65. bottom: 0;
  66. z-index: 0;
  67. background-color: rgba(0, 0, 0, 0.4);
  68. }
  69. .popup {
  70. position: absolute;
  71. z-index: 0;
  72. left: 50%;
  73. top: 50%;
  74. -webkit-transform: translate(-50%, -50%);
  75. transform: translate(-50%, -50%);
  76. width: 600rpx;
  77. height: 700rpx;
  78. background-color: #fff;
  79. border-radius: 30rpx;
  80. }