demo.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-decoration: none;
  6. box-sizing: border-box;
  7. }
  8. #container {
  9. width: 960px;
  10. height: 627px;
  11. padding-left: 23px;
  12. /* 已知宽高盒子 在页面居中 */
  13. margin: 20px auto;
  14. border: 1px solid #000;
  15. }
  16. /* 头部样式 */
  17. #header {
  18. width: 100%;
  19. height: 58px;
  20. overflow: hidden;
  21. }
  22. /* 100 376 91 */
  23. #header .logo {
  24. width: 100px;
  25. height: 100%;
  26. float: left;
  27. padding-top: 11px;
  28. }
  29. #header .logo img {
  30. width: 100px;
  31. height: 36px;
  32. }
  33. /* 、48 237 84 */
  34. #header .search {
  35. width: 376px;
  36. height: 26px;
  37. float: left;
  38. overflow: hidden;
  39. margin-left: 178px;
  40. margin-top: 17px;
  41. border-radius: 20px;
  42. background: #eee;
  43. border: 1px solid #ccc;
  44. }
  45. #header .search .tit {
  46. width: 48px;
  47. height: 100%;
  48. float: left;
  49. font-size: 13px;
  50. color: #ccc;
  51. text-align: center;
  52. line-height: 26px;
  53. }
  54. #header .search input {
  55. width: 237px;
  56. height: 100%;
  57. float: left;
  58. border:none;
  59. outline: none;
  60. background-color: #eee;
  61. }
  62. #header .search .btn {
  63. width: 84px;
  64. height: 100%;
  65. float: right;
  66. font-size: 13px;
  67. background-color: #00f;
  68. border-radius: 20px;
  69. text-align: center;
  70. line-height: 24px;
  71. color: #fff;
  72. }
  73. #header .login {
  74. width: 91px;
  75. height: 100%;
  76. float: right;
  77. padding-top: 12px;
  78. overflow: hidden;
  79. }
  80. .icon-xin:before {
  81. content: "\e90f";
  82. font-size: 23px;
  83. }
  84. .icon-shoucang:before {
  85. content: "\e626";
  86. font-size: 23px;
  87. }
  88. #header .login .user {
  89. width: 32px;
  90. height: 27px;
  91. font-size: 12px;
  92. text-align: center;
  93. line-height: 27px;
  94. color:#00f;
  95. float: right;
  96. /* display: inline-block; */
  97. background-color: #eee;
  98. }
  99. /* 内容样式 */
  100. #main {
  101. width: 100%;
  102. height: 499px;
  103. }
  104. #main .nav {
  105. width: 100%;
  106. height: 40px;
  107. border-radius: 2px;
  108. background: #00f;
  109. }
  110. #main .nav ul {
  111. overflow: hidden;
  112. }
  113. #main .nav ul li {
  114. float: left;
  115. padding: 6.3px 7px;
  116. /* margin: 7px 0 0px 38px; */
  117. }
  118. #main .nav ul li a {
  119. color: #fff;
  120. }
  121. #main .nav ul li:hover {
  122. background-color: #f00;
  123. }
  124. #main .nav ul li:hover a {
  125. color: #ff0;
  126. }
  127. #main .television {
  128. width: 100%;
  129. height: 217px;
  130. margin-top: 22px;
  131. }
  132. #main .television .title {
  133. width: 100%;
  134. height: 28px;
  135. overflow: hidden;
  136. }
  137. #main .television .title .left {
  138. width: 227px;
  139. height: 100%;
  140. float: left;
  141. }
  142. #main .television .title .left ul {
  143. overflow: hidden;
  144. }
  145. #main .television .title .left ul li {
  146. float: left;
  147. font-size: 16px;
  148. }
  149. #main .television .title .left ul li:nth-child(odd) {
  150. padding: 3px 9px;
  151. }
  152. #main .television .title .left ul li:nth-child(odd):hover {
  153. color: #00f;
  154. border-bottom: 2px solid #00f;
  155. }
  156. #main .television .title .left ul li:nth-child(even) {
  157. width: 1px;
  158. height: 21px;
  159. margin: 4px 3px 0;
  160. background: #eee;
  161. }
  162. #main .television .title .right {
  163. width: 177px;
  164. height: 100%;
  165. float: right;
  166. }
  167. #main .television .title .right ul {
  168. overflow: hidden;
  169. }
  170. #main .television .title .right ul li{
  171. float: left;
  172. font-size: 14px;
  173. color: #ccc;
  174. margin-top: 4px;
  175. margin-left: 16px;
  176. }
  177. #main .television .works {
  178. width: 100%;
  179. height: 165px;
  180. margin-top: 19px;
  181. overflow: hidden;
  182. }
  183. #main .television .works .left {
  184. width: 293px;
  185. height: 100%;
  186. float: left;
  187. background: #ff0;
  188. }
  189. #main .television .works .left img {
  190. width: 100%;
  191. height: 100%;
  192. border-radius: 2px;
  193. }
  194. #main .television .works .right {
  195. width: 613px;
  196. height: 100%;
  197. float: right;
  198. overflow: hidden;
  199. }
  200. #main .television .works .right dl {
  201. width: 142px;
  202. height: 165px;
  203. float: left;
  204. margin-left: 15px;
  205. border-top-left-radius: 3px;
  206. border-top-right-radius: 3px;
  207. border: 1px solid #ccc;
  208. }
  209. #main .television .works .right dl:first-child {
  210. margin-left: 0;
  211. }
  212. #main .television .works .right dl dt {
  213. width: 100%;
  214. height: 78px;
  215. }
  216. #main .television .works .right dl dt img {
  217. width: 100%;
  218. height: 100%;
  219. }
  220. #main .television .works .right dl dd .tit {
  221. font-size: 16px;
  222. margin-top: 2px;
  223. color: #000;
  224. }
  225. #main .television .works .right dl dd .option {
  226. font-size: 11px;
  227. margin-top: 5px;
  228. color: #38445a;
  229. }
  230. #main .television .works .right dl dd .person {
  231. font-size: 11px;
  232. margin-top: 18px;
  233. color: #ccc;
  234. }
  235. /* 页尾样式 */
  236. #footer {
  237. width: 100%;
  238. height: 68px;
  239. background: #f00;
  240. }