wx_authority.wxss 1.8 KB

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