index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .main {
  2. float: left;
  3. width: 88%;
  4. height: 100%;
  5. margin: 0 50rpx;
  6. }
  7. .main .title {
  8. float: left;
  9. width: 100%;
  10. margin: 180rpx 0 100rpx 0;
  11. }
  12. .main .title text {
  13. float: left;
  14. width: 100%;
  15. font-size: 40rpx;
  16. font-family: Source Han Sans SC;
  17. font-weight: bold;
  18. color: rgba(40, 40, 40, 1);
  19. }
  20. .main .form {
  21. float: left;
  22. width: 100%;
  23. }
  24. .main .form input {
  25. height: 108rpx;
  26. border-bottom: 1px solid #ccc;
  27. }
  28. .main .form .save {
  29. float: left;
  30. width: 650rpx;
  31. height: 108rpx;
  32. background: rgba(233, 2, 29, 1);
  33. border-radius: 54px;
  34. margin: 100rpx 0 0 0;
  35. }
  36. .main .form .save button {
  37. padding: 0;
  38. float: left;
  39. width: 100%;
  40. height: 108rpx;
  41. line-height: 108rpx;
  42. padding: 0;
  43. background: transparent;
  44. color: #fff;
  45. }
  46. .agreement {
  47. float: left;
  48. width: 84%;
  49. margin: 50rpx 0 0 0;
  50. padding: 0 0 0 90rpx;
  51. }
  52. .agreement radio {
  53. float: left;
  54. width: 10%;
  55. }
  56. .agreement view {
  57. float: left;
  58. width: 90%;
  59. font-size: 28rpx;
  60. font-family: Source Han Sans SC;
  61. font-weight: 400;
  62. color: rgba(153, 153, 153, 1);
  63. margin: 7rpx 0 0 0;
  64. }
  65. .agreement view text {
  66. color: red;
  67. }
  68. .codeBtn {
  69. position: absolute;
  70. right: 0;
  71. top: 25rpx;
  72. background: #07c160;
  73. color: #fff;
  74. z-index: 999;
  75. }
  76. button[disabled]:not([type]){
  77. background: red!important;
  78. color: #fff!important;
  79. }