index.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #main_index{
  2. width:98%;
  3. margin:0 auto;
  4. }
  5. /************indexbox************/
  6. .indexbox{
  7. float:left;
  8. width:30%;
  9. margin-top:30px;
  10. margin-left:30px;
  11. }
  12. .indexbox .title{
  13. height:35px;
  14. line-height:35px;
  15. color:#113452;
  16. padding-left:16px;
  17. font-weight:bold;
  18. background-color:#bbdcf3;
  19. }
  20. .indexbox .title.orange{
  21. background-color:orange;
  22. }
  23. .indexbox .title.green{
  24. background-color:#98FB98;
  25. }
  26. .indexbox .title.blue{
  27. background-color:#6495ED;
  28. }
  29. .indexbox .title.blue2{
  30. background-color:#B0E0E6;
  31. }
  32. .indexbox .title.golden{
  33. background-color:#FFD700;
  34. }
  35. .indexbox .title.chocolate{
  36. background-color:#D2691E;
  37. }
  38. .indexbox .title.brown{
  39. background-color:#F4A460;
  40. }
  41. .indexbox .content{
  42. border:1px solid #ccc;
  43. height:145px;
  44. }
  45. /************indextable************/
  46. .indextable{
  47. border-collapse:collapse;
  48. border:0;
  49. width:100%;
  50. text-align:center;
  51. }
  52. .indextable tr{
  53. height:29px;
  54. }
  55. .indextable td{
  56. padding-left:20px;
  57. }
  58. .indextable td.c1{
  59. text-align:right;
  60. font-weight:bold;
  61. }
  62. .indextable td.c2{
  63. color:red;
  64. }
  65. .indextable td.c2 a{
  66. color:red;
  67. }
  68. .indextable td.c2 a:hover{
  69. text-decoration:underline;
  70. }
  71. .indextable td.c3 a{
  72. color:#16568b;
  73. text-decoration:underline;
  74. }