demo1.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .box {
  2. width: 480px;
  3. height: 850px;
  4. border: 3px solid green;
  5. /* 已知宽高的盒子在浏览器中居中
  6. margin:0 auto(自适应);
  7. */
  8. margin: 0 auto;
  9. }
  10. .main {
  11. width: 443px;
  12. height: 816px;
  13. margin: 17px;
  14. }
  15. .head {
  16. /*
  17. 继承父级宽高为100%
  18. */
  19. width: 100%;
  20. height: 35px;
  21. background: #ccc;
  22. line-height: 35px;
  23. }
  24. .head span:first-child {
  25. font-weight: 800;
  26. }
  27. .head span:last-child {
  28. color: rgb(0, 140, 255);
  29. /* 浏览器默认字体16px */
  30. font-size: 14px;
  31. padding-left: 10px;
  32. }
  33. .list .title {
  34. font-weight: bold;
  35. color: orange;
  36. margin-bottom: 0;
  37. }
  38. .list .title>span {
  39. color: rgb(0, 140, 255);
  40. }
  41. .list .word {
  42. color: #ccc;
  43. font-size: 15px;
  44. text-indent: 2em;
  45. margin-top: 5px;
  46. }
  47. .list ul li a{
  48. text-decoration: none;
  49. color: #000;
  50. font-size: 16px;
  51. }
  52. .list ul li a span {
  53. color: rgb(0, 140, 255);
  54. }
  55. .advertising {
  56. width: 100%;
  57. height: 95px;
  58. }
  59. .advertising img {
  60. width: 100%;
  61. height: 100%;
  62. }