skillcreate.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .banner{
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .banner>img{
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. width: 100%;
  12. }
  13. .introduction{
  14. display: flex;
  15. flex-direction: row;
  16. width: 100%;
  17. margin: 25px 0 20px 0;
  18. }
  19. .introduction>.author{
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. width: 36%;
  24. }
  25. .introduction>.author>img{
  26. display: flex;
  27. border: 1px solid #999999;
  28. width: 64%;
  29. }
  30. .introduction>div{
  31. display: flex;
  32. flex-direction: column;
  33. }
  34. .introduction>div>h2{
  35. font-size: 16px;
  36. margin: 0 0 10px 0;
  37. padding: 0;
  38. font-weight: 800;
  39. color: #111111;
  40. }
  41. .introduction>div>h4{
  42. font-size: 14px;
  43. margin: 0 0 5px 0;
  44. padding: 0;
  45. font-weight: bold;
  46. color: #333333;
  47. }
  48. .introduction>div>p{
  49. font-size: 14px;
  50. margin: 0;
  51. padding: 0;
  52. font-weight: 500;
  53. color: #666666;
  54. line-height: 22px;
  55. }
  56. .tablist{
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. width: 100%;
  61. }
  62. .tablist>ul{
  63. display: flex;
  64. width: 90%;
  65. }
  66. .tablist>ul>li{
  67. display: flex;
  68. flex: 1;
  69. flex-direction: column;
  70. justify-content: center;
  71. align-items: center;
  72. }
  73. .tablist>ul>li>div{
  74. display: flex;
  75. width: 28px;
  76. height: 36px;
  77. border: 1px solid #666666;
  78. color: #666666;
  79. justify-content: center;
  80. align-items: center;
  81. margin-bottom: 6px;
  82. }
  83. .tablist>ul>li>div>img{
  84. display: flex;
  85. width: 100%;
  86. }
  87. .tablist>ul>li>span{
  88. color: #333333;
  89. font-weight: bolder;
  90. line-height: 22px;
  91. }
  92. .infor{
  93. display: flex;
  94. padding: 30px 0 50px 0;
  95. justify-content: center;
  96. align-items: center;
  97. width: 100%;
  98. }
  99. .infor>.infor-bg{
  100. display: flex;
  101. width: 78%;
  102. background: url("../img/create_bg.png") center center/80% no-repeat;
  103. }
  104. .infor>.infor-bg>section:first-child{
  105. width: 84%;
  106. }
  107. .infor>.infor-bg>section:first-child>p{
  108. font-size: 14px;
  109. color: #666666;
  110. }
  111. .infor>.infor-bg>section:last-child{
  112. display: flex;
  113. flex-direction: column;
  114. justify-content: center;
  115. align-items: center;
  116. width: 16%;
  117. }
  118. .infor>.infor-bg>section:last-child>h6{
  119. font-size: 20px;
  120. color: #333333;
  121. font-weight: bolder;
  122. }