public.css 929 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. a {
  6. color: #409eff;
  7. text-decoration: none;
  8. cursor: pointer;
  9. font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;
  10. font-weight: 400;
  11. -webkit-font-smoothing: antialiased;
  12. font-size: 14px;
  13. }
  14. html,body{
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .button {
  19. display: inline-block;
  20. line-height: 1;
  21. white-space: nowrap;
  22. cursor: pointer;
  23. background: #fff;
  24. border: 1px solid #dcdfe6;
  25. border-color: #dcdfe6;
  26. color: #606266;
  27. -webkit-appearance: none;
  28. text-align: center;
  29. box-sizing: border-box;
  30. outline: none;
  31. margin: 0;
  32. transition: .1s;
  33. font-weight: 500;
  34. -moz-user-select: none;
  35. -webkit-user-select: none;
  36. -ms-user-select: none;
  37. padding: 12px 20px;
  38. font-size: 14px;
  39. border-radius: 4px;
  40. color: #fff;
  41. background-color: #409eff;
  42. border-color: #409eff;
  43. }