index.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .tab-view {
  2. position: sticky;
  3. top: 0;
  4. z-index: 999;
  5. }
  6. .cers {
  7. display: flex;
  8. flex-wrap: wrap;
  9. margin-top: 15px;
  10. align-items: center;
  11. width: 100%;
  12. button {
  13. width: 17%;
  14. font-size: 13px;
  15. margin-bottom: 10px;
  16. }
  17. /* 选中时添加这个 样式 */
  18. .active {
  19. background: #dae9fd;
  20. }
  21. /* 三角形 */
  22. .active::before {
  23. content: '';
  24. display: inline-block;
  25. position: absolute;
  26. right: 0;
  27. bottom: 0;
  28. width: 0;
  29. height: 0;
  30. border-bottom: 15px solid #407DB8;
  31. border-left: 14px solid transparent;
  32. }
  33. }
  34. .container {
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: flex-start;
  38. align-items: center;
  39. align-content: center;
  40. width: 100%;
  41. .input-view {
  42. margin: 20px 0px;
  43. width: 100%;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. align-content: center;
  48. margin-bottom: 10px;
  49. .field-view {
  50. width: 95%;
  51. }
  52. .label {
  53. width: 100%;
  54. text-align: center;
  55. font-size: 15px;
  56. color: #333;
  57. height: 35px;
  58. margin-top: 10px;
  59. }
  60. .clicpboard {
  61. padding-bottom: 10px;
  62. text-decoration: underline;
  63. }
  64. }
  65. }
  66. .button-view {
  67. display: flex;
  68. justify-content: space-between;
  69. margin: 10px 10px 10px 10px;
  70. van-button {
  71. width: 48%;
  72. height: 40px;
  73. }
  74. }