common.css 732 B

12345678910111213141516171819202122232425262728293031
  1. /* Fixed Internet Explorer 10 和 Windows Phone 8 媒体查询功能 */
  2. @-webkit-viewport { width: device-width; }
  3. @-moz-viewport { width: device-width; }
  4. @-ms-viewport { width: device-width; }
  5. @-o-viewport { width: device-width; }
  6. @viewport { width: device-width; }
  7. body, h1, h2, h3, h4, h5, h6{
  8. font-family:Microsoft Yahei, SimHei, SimSun, sans-serif;
  9. }
  10. .last-form-group{
  11. margin-bottom:0;
  12. }
  13. .btn-extent{
  14. padding-left:2em;
  15. padding-right:2em;
  16. }
  17. /* 背景自适应 */
  18. .fullBg {
  19. position:fixed;
  20. left:0;
  21. top:0;
  22. overflow:hidden;
  23. z-index:-99;
  24. height:100%;
  25. width:100%;
  26. -webkit-background-size:cover;
  27. -moz-background-size:cover;
  28. background-size:cover;
  29. background-position:50% 0;
  30. }