index.wxss 1.6 KB

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