common.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. @import url("reset.css");
  2. *{
  3. font-family: "microsoft yahei"
  4. }
  5. .fl{
  6. float: left;
  7. }
  8. .fr{
  9. float: right;
  10. }
  11. .clear{
  12. overflow: hidden;
  13. }
  14. .clear2{
  15. clear: both;
  16. }
  17. .ib{
  18. display:inline-block;
  19. zoom: 1;
  20. *display: inline;
  21. }
  22. .bg-white{
  23. background-color: #FFFFFF;
  24. }
  25. .lightgray{
  26. color: #959595;
  27. }
  28. .gray{
  29. color: #737373;
  30. }
  31. .deepgray{
  32. color: #464646;
  33. }
  34. .red{
  35. color: #FF4400;
  36. }
  37. .blue{
  38. color: #1f50bf;
  39. }
  40. .white{
  41. color: white;
  42. }
  43. .black{
  44. color: black;
  45. }
  46. .container{
  47. width: 1200px;
  48. margin: 0 auto;
  49. }
  50. .text-center{
  51. text-align: center;
  52. }
  53. .text-right{
  54. text-align: right;
  55. }
  56. .text-left{
  57. text-align: left;
  58. }
  59. .normal{
  60. font-style: normal;
  61. font-weight: 100;
  62. }
  63. .nowrap{
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. white-space: nowrap;
  67. }
  68. .bold{
  69. font-weight: bold;
  70. }
  71. .font12{
  72. font-size: 12px;
  73. }
  74. .font14{
  75. font-size: 14px;
  76. }
  77. .font16{
  78. font-size: 16px;
  79. }
  80. .font18{
  81. font-size: 18px;
  82. }
  83. .font20{
  84. font-size: 20px;
  85. }
  86. .font22{
  87. font-size: 22px;
  88. }
  89. .font24{
  90. font-size: 24px;
  91. }
  92. .vertical-top{
  93. vertical-align: top;
  94. }
  95. .hidden{
  96. display: none;
  97. }
  98. .row{
  99. margin-top: 25px;
  100. }
  101. .red-title{
  102. padding: 0 10px 5px 10px;
  103. border-bottom: 1px solid #FF4400;
  104. margin-bottom: 15px;
  105. }
  106. .gray-title{
  107. line-height: 1;
  108. padding: 0 10px 5px 10px;
  109. border-bottom: 2px solid #cccccc;
  110. margin-bottom: 15px;
  111. }
  112. .more{
  113. padding-top: 5px;
  114. }
  115. .m a:link, .m a:visited, .m a:active {
  116. color: #333333;
  117. text-decoration: none;
  118. }
  119. .foot{
  120. color: #666666;
  121. text-align: center;
  122. line-height: 32px;
  123. padding: 10px 0 10px 0;
  124. }