About-US.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. body, html {
  2. margin: 0;
  3. width: 100%;
  4. height: 100%;
  5. padding: 0;
  6. }
  7. .wrap {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .wrap .logo {
  12. display: inline-block;
  13. width: 100%;
  14. text-align: center;
  15. }
  16. .wrap .content{
  17. padding: 1rem;
  18. }
  19. .wrap .logo > img {
  20. width: 20%;
  21. padding: 1.5rem 0 1.2rem;
  22. }
  23. .wrap .content > p {
  24. width: 100%;
  25. font-size: 1rem;
  26. letter-spacing: 3px;
  27. font-family: "微软雅黑";
  28. font-weight: bold;
  29. color: #666;
  30. text-align: justify;
  31. text-indent: 24px;
  32. line-height: 1.5rem;
  33. margin: 0;
  34. }
  35. .wrap .name{
  36. text-align: center;
  37. margin-top: 3rem;
  38. }
  39. .wrap .name > span {
  40. color: #00B7FF;
  41. font-family: "微软雅黑";
  42. font-size:1rem;
  43. font-weight: bold;
  44. line-height: 2rem;
  45. }
  46. .wrap .address{
  47. text-align: center;
  48. margin-bottom: 5rem;
  49. }
  50. .wrap .address span{
  51. font-family: "微软雅黑";
  52. color: #8489A3;
  53. font-size: .8rem;
  54. font-weight: bold;
  55. }
  56. .wrap .bottom{
  57. display: inline-block;
  58. bottom: 0;
  59. padding-right: 1rem;
  60. }
  61. .wrap .bottom > img {
  62. width: 35%;
  63. float: right;
  64. }