style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .van-field {
  2. font-size: 14px;
  3. }
  4. /* 导航栏样式 */
  5. :root:root {
  6. /* 导航栏组件样式 */
  7. --van-nav-bar-height: 40px;
  8. --van-nav-bar-background: #36a7f3;
  9. --van-nav-bar-title-text-color: #fff;
  10. --van-nav-bar-z-index: 10000;
  11. --van-nav-bar-icon-color: #fff;
  12. }
  13. /* 表单页样式 */
  14. /* 表单标题样式 */
  15. .miniTitle,
  16. .title {
  17. color: #36a7f3;
  18. }
  19. .title {
  20. height: 50px;
  21. line-height: 50px;
  22. font-size: 20px;
  23. font-weight: 700;
  24. padding-left: 20px;
  25. border-bottom: 1px solid #eee;
  26. margin-top: 3px;
  27. }
  28. .miniTitle {
  29. font-size: 16px;
  30. height: 40px;
  31. line-height: 40px;
  32. }
  33. /* 表单域 */
  34. .formArea {
  35. padding: 0px 20px;
  36. }
  37. .formArea .van-cell-group .van-field__label {
  38. height: 35px;
  39. line-height: 35px;
  40. font-size: 16px;
  41. }
  42. /* 下拉箭头 */
  43. .formArea .van-icon-arrow-down {
  44. color: #999999!important;
  45. }
  46. /* 提交按钮 */
  47. .subbtn {
  48. margin: 20px;
  49. text-align: center;
  50. }
  51. .subbtn .van-button {
  52. width: 40%;
  53. margin: 5px;
  54. }
  55. /* 详情页 */
  56. /* banner 图片 */
  57. .banner {
  58. width: 100vw;
  59. }
  60. .banner img {
  61. width: 100%;
  62. height: 100%;
  63. }
  64. /* 内容区域 */
  65. .info {
  66. position: relative;
  67. width: 86vw;
  68. margin: 10px auto;
  69. padding: 10px;
  70. background: #fff;
  71. border-radius: 10px;
  72. top: -50px;
  73. font-size: 14px;
  74. border: 1px solid #f5f5f5;
  75. }
  76. /* 列表页 */
  77. .van-list {
  78. height: 80%;
  79. margin-top: 5px;
  80. }
  81. /* */
  82. .list_item {
  83. display: table;
  84. background: #fff;
  85. width: 100%;
  86. }
  87. .item-left {
  88. text-align: center;
  89. display: table-cell;
  90. vertical-align: middle;
  91. width: 120px;
  92. font-size: 12px;
  93. border-right: 1px solid #eee;
  94. }
  95. .van-cell__title {
  96. font-size: 14px !important;
  97. font-weight: 700;
  98. }
  99. .van-cell__label {
  100. font-size: 12px !important;
  101. font-weight: 400;
  102. }
  103. .list_item .van-cell__right-icon {
  104. color: #999999!important;
  105. }
  106. .van-swipe-cell__right .button,
  107. .van-swipe-cell__left .button {
  108. height: 100%;
  109. }