index.less 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. .research-interests{
  2. &{
  3. background-color: #005389F5;
  4. }
  5. .head{
  6. height: 180px;
  7. background-image: url(../../images/version2/index/research-interests-head.png);
  8. background-size: 28% 100%;
  9. background-repeat: no-repeat;
  10. font-size: 40px;
  11. color: #fff;
  12. .body-container{
  13. height: 100%;
  14. display: flex;
  15. align-items: center;
  16. .title{
  17. width: 640px;
  18. text-align: justify;
  19. }
  20. }
  21. }
  22. .research-interests-content{
  23. padding: 120px 0;
  24. .body-container{
  25. &{
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. flex-wrap: wrap;
  30. }
  31. .item{
  32. &{
  33. width: 50%;
  34. padding-right: 50px;
  35. box-sizing: border-box;
  36. display: flex;
  37. justify-content: flex-start;
  38. align-items: center;
  39. margin-top: 50px;
  40. }
  41. &:nth-child(2n){
  42. padding-right: 0;
  43. padding-left: 50px;
  44. }
  45. &:nth-child(1),&:nth-child(2) {
  46. margin-top: 0;
  47. }
  48. .logo{
  49. width: 100px;
  50. height: 76px;
  51. img{
  52. display: block;
  53. width: 100%;
  54. height: 100%;
  55. }
  56. }
  57. .info{
  58. width: 478px;
  59. height: 76px;
  60. flex: 1;
  61. background-image: url(../../images/version2/index/research-interests-bg.png);
  62. background-size: 100% 100%;
  63. background-repeat: no-repeat;
  64. text-indent: 30px;
  65. line-height: 76px;
  66. text-overflow: ellipsis;
  67. overflow: hidden;
  68. a{
  69. font-size: 18px;
  70. color: #fff;
  71. }
  72. &:hover{
  73. a{
  74. color: #E0620D;
  75. text-decoration: underline;
  76. }
  77. }
  78. }
  79. }
  80. }
  81. }
  82. }
  83. .new_center{
  84. &{
  85. background-image: url(../../images/version2/index/newsBg.png);
  86. background-size: 100% 100%;
  87. background-repeat: no-repeat;
  88. padding-bottom: 100px;
  89. }
  90. .body-container{
  91. .head{
  92. height: 194px;
  93. display: flex;
  94. justify-content: space-between;
  95. align-items: center;
  96. .title{
  97. color: #E0620D;
  98. font-size: 40px;
  99. font-weight: bold;
  100. position: relative;
  101. &::after{
  102. display: block;
  103. content: "";
  104. position: absolute;
  105. width: 199px;
  106. height: 52px;
  107. top: 26px;
  108. left: 0;
  109. z-index: 9999;
  110. background-image: url(../../images/version2/index/NEWS.png);
  111. background-size: 100% 100%;
  112. background-repeat: no-repeat;
  113. }
  114. }
  115. .more{
  116. width: 122px;
  117. height: 30px;
  118. line-height: 30px;
  119. background-image: url(../../images/version2/index/news_more.png);
  120. background-size: 100% 100%;
  121. background-repeat: no-repeat;
  122. text-align: center;
  123. span{
  124. position: relative;
  125. &::after{
  126. display: block;
  127. content: "";
  128. width: 20px;
  129. background-color: #333;
  130. height: 1px;
  131. position: absolute;
  132. left: 100%;
  133. top: 50%;
  134. margin-left: 3px;
  135. }
  136. a{
  137. color: #333;
  138. font-size: 14px;
  139. }
  140. }
  141. &:hover{
  142. background-image: url(../../images/version2/index/news_more_hover.png);
  143. span{
  144. a{
  145. color: #fff;
  146. }
  147. &::after{
  148. background-color: #fff;
  149. }
  150. }
  151. }
  152. }
  153. }
  154. .news_content{
  155. &{
  156. display: flex;
  157. justify-content: space-between;
  158. }
  159. .new_card{
  160. img{
  161. width: 600px;
  162. height: 398px;
  163. display: block;
  164. }
  165. .info{
  166. &{
  167. width: 600px;
  168. height: 132px;
  169. color: #333;
  170. background-color: #fff;
  171. padding: 34px 0 0 40px;
  172. position: relative;
  173. box-sizing: border-box;
  174. }
  175. &::after{
  176. display: block;
  177. content: "";
  178. position: absolute;
  179. width: 4px;
  180. height: 70%;
  181. left: 0;
  182. top: 50%;
  183. transform: translateY(-50%);
  184. background-color: #ED6D17;
  185. }
  186. .time{
  187. font-size: 16px;
  188. line-height: 22px;
  189. }
  190. .message{
  191. white-space: nowrap;
  192. text-overflow: ellipsis;
  193. overflow: hidden;
  194. word-break: break-all;
  195. line-height: 28px;
  196. margin-top: 12px;
  197. a{
  198. color: #333;
  199. font-size: 16px;
  200. &:hover{
  201. color: #E0620D;
  202. text-decoration: underline;
  203. }
  204. }
  205. }
  206. }
  207. }
  208. .new_list_container{
  209. .item{
  210. &{
  211. width: 500px;
  212. height: 76px;
  213. display: flex;
  214. justify-content: flex-start;
  215. align-items: center;
  216. padding: 8px;
  217. box-sizing: border-box;
  218. background-color: #E2D8CF;
  219. margin-top: 24px;
  220. }
  221. .logo{
  222. .number,.time{
  223. width: 66px;
  224. height: 30px;
  225. background-color: #ED6D17;
  226. font-size: 18px;
  227. font-weight: 600;
  228. color: #fff;
  229. text-align: center;
  230. line-height: 30px;
  231. }
  232. .time{
  233. background-color: #005389;
  234. font-size: 12px;
  235. }
  236. }
  237. .info{
  238. flex: 1;
  239. line-height: 22px;
  240. padding: 16px;
  241. a{
  242. font-size: 14px;
  243. color: #333;
  244. text-overflow: -o-ellipsis-lastline;
  245. overflow: hidden;
  246. text-overflow: ellipsis;
  247. display: -webkit-box;
  248. -webkit-line-clamp: 3;
  249. line-clamp: 3;
  250. -webkit-box-orient: vertical;
  251. &:hover{
  252. color: #E0620D;
  253. }
  254. }
  255. }
  256. }
  257. }
  258. }
  259. }
  260. }