about.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. font-family: Helvetica;
  5. }
  6. *{
  7. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  8. -moz-tap-highlight-color:rgba(0, 0, 0, 0);
  9. -ms-tap-highlight-color:rgba(0, 0, 0, 0);
  10. -o-tap-highlight-color:rgba(0, 0, 0, 0);
  11. tap-highlight-color:rgba(0, 0, 0, 0);
  12. }
  13. body {
  14. background-color: #110D24;
  15. font-size: 14px;
  16. font-family: "微软雅黑";
  17. }
  18. .icon_area{
  19. height: 100px;
  20. line-height: 100px;
  21. margin-top: 30px;
  22. text-align: center;
  23. }
  24. .icon_area img{
  25. width: 60px;
  26. height: 60px;
  27. vertical-align: middle;
  28. max-width: 100px;
  29. max-height: 100px;
  30. }
  31. .edition{
  32. height: 50px;
  33. line-height: 50px;
  34. text-align: center;
  35. color: #8C8C8D;
  36. font-size: 1.0rem;
  37. }
  38. .artice_list{
  39. background: #15102C;
  40. }
  41. .artice_list li{
  42. height: 50px;
  43. line-height: 50px;
  44. border-bottom: 1px solid #1D1934;
  45. color: #939394;
  46. width: 90%;
  47. margin-left: 5%;
  48. font-size: 1rem;
  49. background: url(../images/right.png) no-repeat center right -3%;
  50. list-style: none;
  51. }
  52. a{
  53. text-decoration: none;
  54. }
  55. .fl{
  56. float: left;
  57. }
  58. .fr{
  59. float: right;
  60. }
  61. .clearboth{
  62. clear: both;
  63. }