base.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. body, html {
  2. line-height: 1;
  3. font-family: 'PingFang SC', 'STHeitiSC-Light', 'Helvetica-Light', arial, sans-serif, 'Droid Sans Fallback';
  4. // user-select: none;
  5. -webkit-tap-highlight-color: transparent;
  6. background: $color-background;
  7. color: $color-text;
  8. }
  9. .wrap{
  10. width: 1200px;
  11. margin: 0 auto;
  12. }
  13. .full-body{
  14. min-height: 100vh;
  15. }
  16. .middle-img{
  17. display: inline-block;
  18. vertical-align: middle;
  19. }
  20. .g-relative {
  21. position: relative;
  22. }
  23. .slide-enter-active, .slide-leave-active {
  24. transition: all 0.3s
  25. }
  26. .slide-enter-from, .slide-leave-to {
  27. transform: translate3d(100%, 0, 0)
  28. }
  29. .list-enter-active, .list-leave-active {
  30. transition: all 0.3s;
  31. }
  32. .list-enter-from, .list-leave-to {
  33. height: 0 !important;
  34. }
  35. .page-con{
  36. overflow: hidden;
  37. padding-top: 50px;
  38. margin-bottom: 50px;
  39. .base-info{
  40. float: right;
  41. width: 457px;
  42. padding-left: 45px;
  43. box-sizing: border-box;
  44. .name{
  45. font-size: 18px;
  46. font-weight: 400;
  47. color: #1C1C1C;
  48. line-height: 25px;
  49. margin-bottom: 27px;
  50. }
  51. .base-info-item{
  52. font-size: 14px;
  53. font-weight: 400;
  54. color: #1C1C1C;
  55. line-height: 20px;
  56. margin-bottom: 18px;
  57. i{
  58. margin-right: 5px;
  59. }
  60. }
  61. }
  62. .left-content{
  63. width: 743px;
  64. float: left;
  65. box-sizing: border-box;
  66. padding: 0px 59px 20px 0;
  67. border-right: 1px solid #CACACA;
  68. }
  69. }
  70. @keyframes rotate {
  71. 0% {
  72. transform: rotate(0)
  73. }
  74. 100% {
  75. transform: rotate(360deg)
  76. }
  77. }