conmon.css 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*清除自带样式*/
  2. *{
  3. margin: 0;
  4. padding: 0;
  5. outline: none;
  6. border: 0;
  7. font-family: Microsoft YaHei;
  8. }
  9. textarea,button{
  10. resize: none;
  11. }
  12. ul,li{
  13. list-style: none;
  14. }
  15. a{
  16. text-decoration: none;
  17. }
  18. /*适配*/
  19. @media screen and (max-width: 320px) {
  20. html {
  21. font-size: 9px;
  22. }
  23. }
  24. @media screen and (min-width: 320px) {
  25. html {
  26. font-size: 14px;
  27. }
  28. }
  29. @media screen and (min-width: 360px) {
  30. html {
  31. font-size: 16px;
  32. }
  33. }
  34. @media screen and (min-width: 400px) {
  35. html {
  36. font-size: 18px;
  37. }
  38. }
  39. @media screen and (min-width: 440px) {
  40. html {
  41. font-size: 20px;
  42. }
  43. }
  44. @media screen and (min-width: 480px) {
  45. html {
  46. font-size: 22px;
  47. }
  48. }
  49. @media screen and (min-width: 640px) {
  50. html {
  51. font-size: 28px;
  52. }
  53. }
  54. /*蒙层*/
  55. .mask{
  56. width: 100%;
  57. height: 100%;
  58. background: rgba(0, 0, 0, 0.7);
  59. position: absolute;
  60. z-index: 998;
  61. }