index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .container{
  2. padding: 0;
  3. }
  4. .c_bg{
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. height: 100%;
  9. z-index: -1;
  10. width: 100%;
  11. }
  12. .btn_con{
  13. position: absolute;
  14. top: 50%;
  15. left: 50%;
  16. transform: translate(-50%,-50%);
  17. color: #fff;
  18. text-align: center;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. flex-direction: column;
  23. font-size: 34rpx;
  24. }
  25. .btn_con .use{
  26. width: 220rpx;
  27. height: 220rpx;
  28. border-radius: 50%;
  29. background: #ff8512;
  30. overflow: hidden;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. box-shadow: 0 0 12rpx rgba(0, 0, 0, 0.5);
  35. margin: 40rpx 0;
  36. }
  37. .body{
  38. width: 100%;
  39. height: 100%;
  40. background-color: rgba(0, 0, 0, 0.5);
  41. position: fixed;
  42. z-index: 9999;
  43. display: flex;
  44. left: 0;
  45. top: 0;
  46. }
  47. .modalDlg{
  48. width: 80%;
  49. position: absolute;
  50. left: 50%;
  51. top: 50%;
  52. transform: translate(-50%,-50%);
  53. z-index: 9999;
  54. background-color: #fff;
  55. border-radius: 4rpx;
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. padding: 28rpx 28rpx 40rpx;
  60. }
  61. .windowRow{
  62. display: flex;
  63. flex-direction: row;
  64. justify-content: space-between;
  65. height: 100rpx;
  66. width: 100%;
  67. box-sizing: border-box;
  68. }
  69. .back{
  70. text-align: center;
  71. color: rgba(0, 0, 0, 0.5);
  72. font-size: 28rpx;
  73. }
  74. .userTitle{
  75. font-size: 32rpx;
  76. }
  77. .wishName{
  78. width: 100%;
  79. justify-content: center;
  80. flex-direction: row;
  81. display: flex;
  82. margin-bottom: 20rpx;
  83. }
  84. .wish_put{
  85. width: 80%;
  86. border: 1px solid rgba(0, 0, 0, 0.1);
  87. padding-left: 10rpx;
  88. height: 80rpx;
  89. line-height: 80rpx;
  90. font-size: 28rpx;
  91. margin-bottom: 28rpx;
  92. }
  93. .wishbnt{
  94. width: 100%;
  95. font-size: 30rpx;
  96. }
  97. .wishbnt .wishbnt_bt{
  98. background-color: #ff8512;
  99. color: #fbf1e8;
  100. font-size: 30rpx;
  101. border: 0;
  102. line-height: 40rpx;
  103. width: 40%!important;
  104. }