base.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @charset "utf-8";
  2. /* CSS Document */
  3. *{ margin:0;padding:0;
  4. -moz-box-sizing:border-box;/*火狐浏览器*/
  5. -webkit-box-sizing:border-box;/*火狐浏览器*/
  6. box-sizing:border-box;/*padding和border算在盒子内*/
  7. }
  8. body,html{ height: 100%; width: 100%;font-family:"微软雅黑"; color:#333;}
  9. @font-face {
  10. font-family:my; /*字体名称*/
  11. src: url(../font/Digital-7Mono.ttf); /*字体源文件*/
  12. }
  13. .bgimg{
  14. position:fixed;
  15. top: 0;
  16. left: 0;
  17. width:100%;
  18. height:100%;
  19. min-width: 1000px;
  20. z-index:-10;
  21. zoom: 1;
  22. background-color: #00061d;
  23. background: url(../img/bj.jpg) no-repeat;
  24. background-size: cover;
  25. -webkit-background-size: cover;
  26. -o-background-size: cover;
  27. background-position: center 0;
  28. }
  29. b{ font-weight:normal}
  30. i{ font-style: normal}
  31. a,a:hover,a:active{ text-decoration:none; color:#333;}
  32. input,textarea,select{ outline:none}
  33. img{ border:none; vertical-align:top;}
  34. li{ list-style:none;}
  35. .fl{float:left}
  36. .fr{float:right}
  37. .cl{ clear:both}
  38. .clearfix::after{
  39. content:"";
  40. display:table;
  41. clear:both;}