style.css 917 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .van-field {
  2. font-size: 14px;
  3. }
  4. /* 导航栏样式 */
  5. .van-nav-bar {
  6. background-color: #36a7f3!important;
  7. }
  8. .van-nav-bar__title {
  9. color: #fff!important;
  10. }
  11. .van-badge__wrapper {
  12. color: #fff!important;
  13. }
  14. /* 表单页样式 */
  15. /* 表单标题样式 */
  16. .miniTitle,
  17. .title {
  18. height: 40px;
  19. line-height: 40px;
  20. color: #36a7f3;
  21. }
  22. .title {
  23. font-size: 24px;
  24. font-weight: 700;
  25. padding-left: 20px;
  26. border-bottom: 1px solid #eee;
  27. margin-top: 5px;
  28. }
  29. .miniTitle {
  30. font-size: 18px;
  31. }
  32. /* 表单域 */
  33. .formArea {
  34. padding: 0px 20px;
  35. }
  36. .formArea .van-cell-group .van-field__label {
  37. height: 35px;
  38. line-height: 35px;
  39. font-size: 16px;
  40. }
  41. /* 下拉箭头 */
  42. .formArea .van-badge__wrapper {
  43. color: #999999!important;
  44. }
  45. /* 提交按钮 */
  46. .subbtn {
  47. margin: 20px;
  48. text-align: center;
  49. }
  50. .subbtn .van-button {
  51. width: 40%;
  52. margin: 5px;
  53. }