index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. page{
  2. background-color: #f2f2f2;
  3. }
  4. .content{
  5. width: 690rpx;
  6. margin: 0 auto;
  7. display: flex;
  8. flex-direction: column;
  9. }
  10. .content-title{
  11. height: 86rpx;
  12. border-bottom: 1rpx solid #efefef;
  13. font-size: 30rpx;
  14. color: #333;
  15. display: flex;
  16. align-items: center;
  17. font-weight: bold;
  18. }
  19. .content-text{
  20. display: flex;
  21. min-height: 70rpx;
  22. align-items: center;
  23. }
  24. .content-text-title{
  25. font-size: 26rpx;
  26. color: #333;
  27. /* width: 220rpx; */
  28. margin-left: 20rpx;
  29. font-weight: 600;
  30. flex: 1;
  31. }
  32. .content-number{
  33. font-size: 26rpx;
  34. color: #666;
  35. flex: 3;
  36. }
  37. .success{
  38. color: #33ad37;
  39. }
  40. .ps{
  41. font-size: 26rpx;
  42. color: #333;
  43. margin-left: 20rpx;
  44. }
  45. .submit{
  46. display: flex;
  47. justify-content: space-around;
  48. padding: 80rpx;
  49. }
  50. .button::after{
  51. border:1px solid transparent;
  52. }
  53. .submit button{
  54. width: 240rpx;
  55. height: 70rpx;
  56. font-size: 30rpx;
  57. /* border:4rpx solid #33ad37; */
  58. border-radius: 70rpx;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. background:transparent;
  63. cursor:pointer;
  64. outline: none;
  65. padding:0;
  66. box-sizing: inherit;
  67. margin:0;
  68. /* border: none; */
  69. }
  70. .submit :first-child{
  71. background: #33ad37;
  72. color: #fff;
  73. }
  74. .back{
  75. border:1rpx solid #33ad37;
  76. }