about.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .about {
  2. position: relative;
  3. width: 538px;
  4. height: 100%;
  5. padding: 32px 470px 32px 16px;
  6. margin-left: auto;
  7. margin-right: auto;
  8. }
  9. .about-img-container {
  10. position: absolute;
  11. width: 450px;
  12. height: 780px;
  13. right: 0;
  14. top: 32px;
  15. }
  16. /*.about-img {
  17. position: absolute;
  18. right: 0;
  19. top: 0;
  20. }*/
  21. .about h2 {
  22. font-size: 36px;
  23. color: #666;
  24. margin-top: 0;
  25. margin-bottom: 32px;
  26. position: relative;
  27. }
  28. .about p {
  29. font-size: 14px;
  30. color: #333;
  31. line-height: 20px;
  32. // margin-bottom: 20px;
  33. }
  34. address {
  35. font-size: 16px;
  36. color: #333;
  37. font-style: normal;
  38. padding-left: 20px;
  39. }
  40. i.icon {
  41. display: inline-block;
  42. vertical-align: middle;
  43. }
  44. .about h2 .icon {
  45. border: 1px solid #d9d9d9;
  46. border-radius: 50%;
  47. width: 48px;
  48. height: 48px;
  49. background-repeat: no-repeat;
  50. background-size: 50%;
  51. background-position: center center;
  52. }
  53. .icon-weibo {
  54. background-image: url(http://wozhua-others.qiniudn.com/weibo_grey.png);
  55. }
  56. .icon-wechat {
  57. background-image: url(http://wozhua-others.qiniudn.com/wechat_grey.png);
  58. }
  59. .icon-mail {
  60. background-image: url(http://wozhua-others.qiniudn.com/mail_grey.png);
  61. }
  62. .about h2 a {
  63. position: absolute;
  64. }
  65. .about h2 .weibo {
  66. right: 150px;
  67. }
  68. .about h2 .wechat {
  69. right: 80px;
  70. }
  71. .about h2 .mail {
  72. right: 10px;
  73. }
  74. .about h2 .weibo:hover .icon {
  75. background-image: url(http://wozhua-others.qiniudn.com/weibo.png);
  76. }
  77. .about h2 .wechat:hover .icon {
  78. background-image: url(http://wozhua-others.qiniudn.com/wechat.png);
  79. }
  80. .about h2 .mail:hover .icon {
  81. background-image: url(http://wozhua-others.qiniudn.com/mail.png);
  82. }