index.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* pages/index/index.wxss */
  2. @import '../../templates/loading/loading.wxss';
  3. page{
  4. background: #FFC674
  5. }
  6. .bg {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .logo {
  14. text-align: center;
  15. padding: 180rpx 0;
  16. }
  17. .logo image {
  18. width: 140rpx;
  19. height: 170rpx;
  20. }
  21. .content {
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. width: 100%;
  26. height: 100%;
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .button {
  33. width: 463rpx;
  34. height: 97rpx;
  35. background: #fff;
  36. cursor: pointer;
  37. position: relative;
  38. margin-top: 50rpx;
  39. }
  40. button::after{
  41. border: none;
  42. }
  43. .button-bg {
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. width: 463rpx;
  48. height: 96rpx;
  49. }
  50. .button-text {
  51. font-size: 36rpx;
  52. color: #fff;
  53. margin-top: 20rpx;
  54. text-align: center
  55. }
  56. .no{
  57. text-align: center;
  58. margin-top: 40%;
  59. font-size: 36rpx;
  60. color: #BFBFBF;
  61. }
  62. .noImg{
  63. width: 551rpx;
  64. height: 400rpx;
  65. }
  66. .deal{
  67. margin-top: 73rpx;
  68. color: #7C819D;
  69. font-size: 24rpx;
  70. text-align: center;
  71. }
  72. .deal-item{
  73. display: inline-block;
  74. text-decoration: underline;
  75. }
  76. radio .wx-radio-input{
  77. border-radius: 50%;
  78. width: 26rpx;
  79. height: 26rpx;
  80. border: 1rpx solid #FF6465;
  81. }
  82. /* 选中后的 背景样式 */
  83. radio .wx-radio-input.wx-radio-input-checked{
  84. border: none;
  85. background: #FF6465;
  86. }
  87. /* 选中后的 对勾样式 */
  88. radio .wx-radio-input.wx-radio-input-checked::before{
  89. border-radius: 50%;
  90. width: 26rpx;
  91. height: 26rpx;
  92. line-height: 26rpx;
  93. text-align: center;
  94. font-size:20rpx; /* 对勾大小 */
  95. color:#fff;
  96. background: #FF6465;
  97. transform:translate(-50%, -50%) scale(1);
  98. -webkit-transform:translate(-50%, -50%) scale(1);
  99. }