index.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @charset "UTF-8";
  2. /* 水平间距 */
  3. /* 水平间距 */
  4. .content {
  5. display: flex;
  6. flex-direction: column;
  7. width: 100vw;
  8. height: 100vh;
  9. }
  10. .content .one {
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. padding: 2vw;
  15. }
  16. .content .one .one_1 {
  17. padding: 0 2vw;
  18. width: 75vw;
  19. }
  20. .content .one .one_1 input {
  21. padding: 2vw;
  22. background-color: var(--f1Color);
  23. font-size: var(--font14Size);
  24. border-radius: 5px;
  25. }
  26. .content .one .button {
  27. background-color: var(--f3CColor);
  28. color: var(--mainColor);
  29. }
  30. .content .two {
  31. position: relative;
  32. flex-grow: 1;
  33. background-color: var(--f9Color);
  34. }
  35. .content .two .list {
  36. background-color: #fff;
  37. border: 1px solid var(--f5Color);
  38. padding: 2vw;
  39. margin: 0 2vw 2vw 2vw;
  40. border-radius: 5px;
  41. }
  42. .content .two .list .btn {
  43. text-align: right;
  44. margin: 1vw 0 0 0;
  45. }
  46. .content .two .list .btn button {
  47. margin: 0 1vw 0 0;
  48. }
  49. .scroll-view {
  50. position: absolute;
  51. top: 0;
  52. left: 0;
  53. right: 0;
  54. bottom: 0;
  55. }
  56. .scroll-view .list-scroll-view {
  57. display: flex;
  58. flex-direction: column;
  59. }
  60. .is_bottom {
  61. text-align: center;
  62. }
  63. .is_bottom text {
  64. padding: 2vw 0;
  65. display: inline-block;
  66. color: var(--f85Color);
  67. font-size: var(--font14Size);
  68. }