index.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .list {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-between;
  5. align-items: center;
  6. height: 77rpx;
  7. padding-right: 30rpx;
  8. padding-left: 30rpx;
  9. }
  10. .list text {
  11. font-size: 28rpx;
  12. font-family: SourceHanSansCN-Regular;
  13. font-weight: 400;
  14. color: rgba(34, 34, 34, 1);
  15. }
  16. .list view {
  17. width: 70%;
  18. height: 100%;
  19. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  20. }
  21. .list view input {
  22. display: flex;
  23. align-items: center;
  24. width: 100%;
  25. height: 100%;
  26. text-align: left;
  27. padding-left: 23rpx;
  28. font-size: 28rpx;
  29. font-family: SourceHanSansCN-Regular;
  30. font-weight: 400;
  31. color: rgba(153, 153, 153, 1);
  32. }
  33. .list view picker {
  34. line-height: 77rpx;
  35. width: 100%;
  36. height: 100%;
  37. text-align: left;
  38. padding-left: 30rpx;
  39. font-size: 28rpx;
  40. font-family: SourceHanSansCN-Regular;
  41. font-weight: 400;
  42. color: rgba(153, 153, 153, 1);
  43. }
  44. /* btn */
  45. .fixed-footer {
  46. position: fixed;
  47. left: 0;
  48. bottom: 0;
  49. width: 100%;
  50. }
  51. .btn-group {
  52. background: #fff;
  53. padding: 20rpx;
  54. box-sizing: border-box;
  55. }
  56. .selfBtn {
  57. display: flex;
  58. height: 88rpx;
  59. line-height: 88rpx;
  60. align-items: center;
  61. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  62. background: linear-gradient(90deg, rgba(59, 120, 207, 1), rgba(80, 166, 195, 1));
  63. border-radius: 44rpx;
  64. justify-content: center;
  65. font-size: 38rpx;
  66. font-family: SourceHanSansCN-Normal;
  67. font-weight: 400;
  68. color: rgba(255, 254, 254, 1);
  69. }