index.less 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168
  1. // 第一部分
  2. @media screen and (min-width: 1401px) {
  3. .part1 {
  4. font-family: '微软雅黑';
  5. width: 1400PX;
  6. margin: 20PX auto;
  7. display: flex;
  8. justify-content: space-between;
  9. .part1Left {
  10. width: 49%;
  11. .el-carousel {
  12. position: relative;
  13. span {
  14. display: block;
  15. width: 100%;
  16. height: 75PX;
  17. line-height: 50PX;
  18. background-color: rgba(0, 0, 0, 0.5);
  19. position: absolute;
  20. bottom: 0;
  21. left: 50%;
  22. transform: translateX(-50%);
  23. color: #fff;
  24. font-size: 15PX;
  25. text-align: center;
  26. }
  27. // 左右箭头按钮
  28. .el-carousel__arrow--right :deep(.class-name),
  29. .el-carousel__arrow--left :deep(.class-name) {
  30. width: 68PX;
  31. height: 68PX;
  32. }
  33. img {
  34. width: 100%;
  35. height: 500PX;
  36. }
  37. //左右箭头图片
  38. :deep(.el-icon svg) {
  39. height: 1em;
  40. width: 1em;
  41. background-color: transparent;
  42. }
  43. :deep(.el-carousel__arrow) {
  44. border-radius: 0;
  45. background-color: transparent;
  46. }
  47. :deep(.el-carousel__arrow i) {
  48. font-size: 68PX !important;
  49. }
  50. // 箭头按钮距离左右边框的距离
  51. :deep(.el-carousel__arrow--left) {
  52. left: -15PX;
  53. left: 10PX;
  54. }
  55. :deep(.el-carousel__arrow--right) {
  56. right: -15PX;
  57. right: 10PX;
  58. }
  59. :deep(.el-carousel__indicators--horizontal) {
  60. bottom: -18PX;
  61. bottom: -10PX;
  62. left: 50%;
  63. transform: translateX(-50%);
  64. }
  65. // 指示器按钮
  66. :deep(.el-carousel__button) {
  67. width: 50PX;
  68. height: 8PX;
  69. border-radius: 4PX;
  70. border: none;
  71. opacity: 1;
  72. background-color: #ff9b9b;
  73. }
  74. :deep(.is-active .el-carousel__button) {
  75. // 指示器激活按钮
  76. background: #ff0024;
  77. }
  78. :deep(.el-carousel__container) {
  79. height: 100%;
  80. }
  81. :deep(.custom-indicators) {
  82. position: absolute;
  83. bottom: 10PX;
  84. left: 50%;
  85. transform: translateX(-50%);
  86. }
  87. // 将指示器的所有样式都不显示
  88. // :deep(.el-carousel__indicators) {
  89. // display: none;
  90. // }
  91. }
  92. }
  93. .part1Right {
  94. width: 49%;
  95. .part1Right_title {
  96. width: 100%;
  97. height: 40PX;
  98. overflow: hidden;
  99. border-bottom: solid 2PX #b41c2a;
  100. a {
  101. display: block;
  102. width: 107PX;
  103. height: 40PX;
  104. line-height: 40PX;
  105. background: #b41c2a;
  106. text-align: center;
  107. color: #fff;
  108. font-size: 20PX;
  109. font-weight: bold;
  110. border-top-left-radius: 10PX;
  111. border-top-right-radius: 10PX;
  112. }
  113. }
  114. .part1Right_content {
  115. width: 100%;
  116. div {
  117. width: 100%;
  118. height: 43PX;
  119. line-height: 38PX;
  120. list-style-position: inside;
  121. list-style-image: url(../../public/index/index_42.png);
  122. border-bottom: 1PX solid #ccc;
  123. &:last-child {
  124. margin-bottom: 0;
  125. }
  126. a {
  127. font-size: 16PX;
  128. color: #333;
  129. em {
  130. display: inline-block;
  131. width: 16PX;
  132. height: 16PX;
  133. background: url(../../public/index/index_42.png) no-repeat;
  134. vertical-align: -3PX;
  135. }
  136. }
  137. &:nth-child(1),
  138. &:nth-child(2),
  139. &:nth-child(3) {
  140. a {
  141. em {
  142. background: url(../../public/index/index_31.png) no-repeat;
  143. vertical-align: -3PX;
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }
  152. @media screen and (min-width: 801px) and (max-width: 1400px) {
  153. .part1 {
  154. font-family: '微软雅黑';
  155. width: 100%;
  156. margin: 20PX auto;
  157. display: flex;
  158. justify-content: space-between;
  159. padding: 0 5PX;
  160. box-sizing: border-box;
  161. .part1Left {
  162. width: 49%;
  163. .el-carousel {
  164. position: relative;
  165. span {
  166. display: block;
  167. width: 100%;
  168. height: 75PX;
  169. line-height: 50PX;
  170. background-color: rgba(0, 0, 0, 0.5);
  171. position: absolute;
  172. bottom: 0;
  173. left: 50%;
  174. transform: translateX(-50%);
  175. color: #fff;
  176. font-size: 15PX;
  177. text-align: center;
  178. }
  179. // 左右箭头按钮
  180. .el-carousel__arrow--right :deep(.class-name),
  181. .el-carousel__arrow--left :deep(.class-name) {
  182. width: 68PX;
  183. height: 68PX;
  184. }
  185. img {
  186. width: 100%;
  187. height: 500PX;
  188. }
  189. //左右箭头图片
  190. :deep(.el-icon svg) {
  191. height: 1em;
  192. width: 1em;
  193. background-color: transparent;
  194. }
  195. :deep(.el-carousel__arrow) {
  196. border-radius: 0;
  197. background-color: transparent;
  198. }
  199. :deep(.el-carousel__arrow i) {
  200. font-size: 68PX !important;
  201. }
  202. // 箭头按钮距离左右边框的距离
  203. :deep(.el-carousel__arrow--left) {
  204. left: -15PX;
  205. left: 10PX;
  206. }
  207. :deep(.el-carousel__arrow--right) {
  208. right: -15PX;
  209. right: 10PX;
  210. }
  211. :deep(.el-carousel__indicators--horizontal) {
  212. bottom: -18PX;
  213. bottom: -10PX;
  214. left: 50%;
  215. transform: translateX(-50%);
  216. }
  217. // 指示器按钮
  218. :deep(.el-carousel__button) {
  219. width: 20px;
  220. height: 8PX;
  221. border-radius: 4PX;
  222. border: none;
  223. opacity: 1;
  224. background-color: #ff9b9b;
  225. }
  226. :deep(.is-active .el-carousel__button) {
  227. // 指示器激活按钮
  228. background: #ff0024;
  229. }
  230. :deep(.el-carousel__container) {
  231. height: 100%;
  232. }
  233. :deep(.custom-indicators) {
  234. position: absolute;
  235. bottom: 10PX;
  236. left: 50%;
  237. transform: translateX(-50%);
  238. }
  239. // 将指示器的所有样式都不显示
  240. // :deep(.el-carousel__indicators) {
  241. // display: none;
  242. // }
  243. }
  244. }
  245. .part1Right {
  246. width: 49%;
  247. .part1Right_title {
  248. width: 100%;
  249. height: 40PX;
  250. overflow: hidden;
  251. border-bottom: solid 2PX #b41c2a;
  252. a {
  253. display: block;
  254. width: 107PX;
  255. height: 40PX;
  256. line-height: 40PX;
  257. background: #b41c2a;
  258. text-align: center;
  259. color: #fff;
  260. font-size: 20PX;
  261. font-weight: bold;
  262. border-top-left-radius: 10PX;
  263. border-top-right-radius: 10PX;
  264. }
  265. }
  266. .part1Right_content {
  267. width: 100%;
  268. div {
  269. width: 100%;
  270. height: 43PX;
  271. line-height: 38PX;
  272. list-style-position: inside;
  273. list-style-image: url(../../public/index/index_42.png);
  274. border-bottom: 1PX solid #ccc;
  275. &:last-child {
  276. margin-bottom: 0;
  277. }
  278. a {
  279. font-size: 16PX;
  280. color: #333;
  281. em {
  282. display: inline-block;
  283. width: 16PX;
  284. height: 16PX;
  285. background: url(../../public/index/index_42.png) no-repeat;
  286. vertical-align: -3PX;
  287. }
  288. }
  289. &:nth-child(1),
  290. &:nth-child(2),
  291. &:nth-child(3) {
  292. a {
  293. em {
  294. background: url(../../public/index/index_31.png) no-repeat;
  295. vertical-align: -3PX;
  296. }
  297. }
  298. }
  299. }
  300. }
  301. }
  302. }
  303. }
  304. @media screen and (max-width: 800px) {
  305. .part1 {
  306. font-family: '微软雅黑';
  307. width: 100%;
  308. margin: 40px auto;
  309. padding: 0 20px;
  310. box-sizing: border-box;
  311. .part1Left {
  312. width: 100%;
  313. height: 190PX;
  314. margin-bottom: 40px;
  315. .el-carousel {
  316. position: relative;
  317. height: 260PX;
  318. span {
  319. display: block;
  320. width: 100%;
  321. height: 75px;
  322. line-height: 75px;
  323. background-color: rgba(0, 0, 0, 0.5);
  324. position: absolute;
  325. bottom: 6PX;
  326. // left: 50%;
  327. // transform: translateX(-50%);
  328. color: #fff;
  329. font-size: 30px;
  330. text-align: center;
  331. }
  332. // 左右箭头按钮
  333. .el-carousel__arrow--right :deep(.class-name),
  334. .el-carousel__arrow--left :deep(.class-name) {
  335. width: 68PX;
  336. height: 68PX;
  337. }
  338. img {
  339. width: 100%;
  340. height: 190PX;
  341. }
  342. //左右箭头图片
  343. :deep(.el-icon svg) {
  344. display: none;
  345. height: 1em;
  346. width: 1em;
  347. background-color: transparent;
  348. }
  349. :deep(.el-carousel__arrow) {
  350. border-radius: 0;
  351. background-color: transparent;
  352. }
  353. :deep(.el-carousel__arrow i) {
  354. font-size: 68PX !important;
  355. }
  356. // 箭头按钮距离左右边框的距离
  357. :deep(.el-carousel__arrow--left) {
  358. left: -15PX;
  359. left: 10PX;
  360. }
  361. :deep(.el-carousel__arrow--right) {
  362. right: -15PX;
  363. right: 10PX;
  364. }
  365. :deep(.el-carousel__indicators--horizontal) {
  366. bottom: -18PX;
  367. bottom: -10PX;
  368. left: 50%;
  369. transform: translateX(-50%);
  370. }
  371. // 指示器按钮
  372. :deep(.el-carousel__button) {
  373. width: 50PX;
  374. height: 8PX;
  375. border-radius: 4PX;
  376. border: none;
  377. opacity: 1;
  378. background-color: #ff9b9b;
  379. }
  380. :deep(.is-active .el-carousel__button) {
  381. // 指示器激活按钮
  382. background: #ff0024;
  383. }
  384. :deep(.el-carousel__container) {
  385. height: 100%;
  386. }
  387. :deep(.custom-indicators) {
  388. position: absolute;
  389. bottom: 10PX;
  390. left: 50%;
  391. transform: translateX(-50%);
  392. }
  393. // 将指示器的所有样式都不显示
  394. :deep(.el-carousel__indicators) {
  395. display: none;
  396. }
  397. }
  398. :deep(.el-carousel__item) {
  399. display: inline-block;
  400. width: 100%;
  401. height: 41%;
  402. overflow: hidden;
  403. position: absolute;
  404. top: 0;
  405. left: 0;
  406. }
  407. }
  408. .part1Right {
  409. width: 100%;
  410. .part1Right_title {
  411. width: 100%;
  412. height: 80px;
  413. overflow: hidden;
  414. border-bottom: solid 4px #b41c2a;
  415. a {
  416. display: block;
  417. width: 214px;
  418. height: 80px;
  419. line-height: 80px;
  420. background: #b41c2a;
  421. text-align: center;
  422. color: #fff;
  423. font-size: 40px;
  424. font-weight: bold;
  425. border-top-left-radius: 20px;
  426. border-top-right-radius: 20px;
  427. }
  428. }
  429. .part1Right_content {
  430. width: 100%;
  431. display: flex;
  432. flex-wrap: wrap;
  433. justify-content: space-between;
  434. div {
  435. width: 48%;
  436. height: 80px;
  437. line-height: 80px;
  438. list-style-position: inside;
  439. list-style-image: url(../../public/index/index_42.png);
  440. border-bottom: 2px solid #ccc;
  441. &:last-child {
  442. margin-bottom: 0;
  443. }
  444. a {
  445. font-size: 32px;
  446. color: #333;
  447. em {
  448. display: inline-block;
  449. width: 32px;
  450. height: 32px;
  451. background: url(../../public/index/index_42.png) no-repeat;
  452. vertical-align: -6px;
  453. }
  454. }
  455. &:nth-child(1),
  456. &:nth-child(2),
  457. &:nth-child(3) {
  458. a {
  459. em {
  460. background: url(../../public/index/index_31.png) no-repeat;
  461. vertical-align: -6px;
  462. }
  463. }
  464. }
  465. }
  466. }
  467. }
  468. }
  469. }
  470. // 第二部分
  471. @media screen and (min-width: 1401px) {
  472. .part2 {
  473. font-family: '微软雅黑';
  474. width: 1400PX;
  475. margin: 20PX auto;
  476. display: flex;
  477. justify-content: space-between;
  478. .part2_left {
  479. width: 30%;
  480. .part2_left_title {
  481. width: 100%;
  482. height: 40PX;
  483. overflow: hidden;
  484. border-bottom: solid 2PX #b41c2a;
  485. a {
  486. display: block;
  487. width: 107PX;
  488. height: 40PX;
  489. line-height: 40PX;
  490. background: #b41c2a;
  491. text-align: center;
  492. color: #fff;
  493. font-size: 20PX;
  494. font-weight: bold;
  495. border-top-left-radius: 10PX;
  496. border-top-right-radius: 10PX;
  497. }
  498. }
  499. .part2_left_content {
  500. width: 100%;
  501. div {
  502. width: 100%;
  503. height: 43PX;
  504. line-height: 38PX;
  505. list-style-position: inside;
  506. list-style-image: url(../../public/index/index_42.png);
  507. border-bottom: 1PX solid #ccc;
  508. &:last-child {
  509. margin-bottom: 0;
  510. }
  511. a {
  512. font-size: 16PX;
  513. color: #333;
  514. em {
  515. display: inline-block;
  516. width: 16PX;
  517. height: 16PX;
  518. background: url(../../public/index/index_42.png) no-repeat;
  519. vertical-align: -3PX;
  520. }
  521. }
  522. &:nth-child(1),
  523. &:nth-child(2),
  524. &:nth-child(3) {
  525. a {
  526. em {
  527. background: url(../../public/index/index_31.png) no-repeat;
  528. vertical-align: -3PX;
  529. }
  530. }
  531. }
  532. }
  533. }
  534. }
  535. .part2_right {
  536. width: 68%;
  537. .part2_right_title {
  538. width: 100%;
  539. height: 40PX;
  540. overflow: hidden;
  541. border-bottom: solid 2PX #b41c2a;
  542. a {
  543. display: block;
  544. width: 107PX;
  545. height: 40PX;
  546. line-height: 40PX;
  547. background: #b41c2a;
  548. text-align: center;
  549. color: #fff;
  550. font-size: 20PX;
  551. font-weight: bold;
  552. border-top-left-radius: 10PX;
  553. border-top-right-radius: 10PX;
  554. }
  555. }
  556. .part2_right_content {
  557. padding: 0 10PX;
  558. .part2_right_contentItem {
  559. width: 100%;
  560. height: auto;
  561. overflow: hidden;
  562. padding: 21PX 0;
  563. border-bottom: 1PX solid #f2f2f2;
  564. a {
  565. display: flex;
  566. img {
  567. width: 175PX;
  568. height: 92PX;
  569. margin-right: 20PX;
  570. }
  571. .right_text {
  572. .left_text_title {
  573. display: block;
  574. width: 100%;
  575. line-height: 30PX;
  576. overflow: hidden;
  577. font-size: 18PX;
  578. color: #000;
  579. font-weight: bold;
  580. }
  581. .left_text_desc {
  582. width: 100%;
  583. height: 60PX;
  584. line-height: 20PX;
  585. overflow: hidden;
  586. font-size: 14PX;
  587. color: #7d7d7d;
  588. text-indent: 28PX;
  589. }
  590. }
  591. }
  592. }
  593. }
  594. }
  595. }
  596. }
  597. @media screen and (min-width: 801px) and (max-width: 1400px) {
  598. .part2 {
  599. font-family: '微软雅黑';
  600. width: 100%;
  601. margin: 20PX auto;
  602. display: flex;
  603. justify-content: space-between;
  604. padding: 0 5PX;
  605. box-sizing: border-box;
  606. .part2_left {
  607. width: 30%;
  608. .part2_left_title {
  609. width: 100%;
  610. height: 40PX;
  611. overflow: hidden;
  612. border-bottom: solid 2PX #b41c2a;
  613. a {
  614. display: block;
  615. width: 107PX;
  616. height: 40PX;
  617. line-height: 40PX;
  618. background: #b41c2a;
  619. text-align: center;
  620. color: #fff;
  621. font-size: 20PX;
  622. font-weight: bold;
  623. border-top-left-radius: 10PX;
  624. border-top-right-radius: 10PX;
  625. }
  626. }
  627. .part2_left_content {
  628. width: 100%;
  629. div {
  630. width: 100%;
  631. height: 43PX;
  632. line-height: 38PX;
  633. list-style-position: inside;
  634. list-style-image: url(../../public/index/index_42.png);
  635. border-bottom: 1PX solid #ccc;
  636. &:last-child {
  637. margin-bottom: 0;
  638. }
  639. a {
  640. font-size: 16PX;
  641. color: #333;
  642. em {
  643. display: inline-block;
  644. width: 16PX;
  645. height: 16PX;
  646. background: url(../../public/index/index_42.png) no-repeat;
  647. vertical-align: -3PX;
  648. }
  649. }
  650. &:nth-child(1),
  651. &:nth-child(2),
  652. &:nth-child(3) {
  653. a {
  654. em {
  655. background: url(../../public/index/index_31.png) no-repeat;
  656. vertical-align: -3PX;
  657. }
  658. }
  659. }
  660. }
  661. }
  662. }
  663. .part2_right {
  664. width: 68%;
  665. .part2_right_title {
  666. width: 100%;
  667. height: 40PX;
  668. overflow: hidden;
  669. border-bottom: solid 2PX #b41c2a;
  670. a {
  671. display: block;
  672. width: 107PX;
  673. height: 40PX;
  674. line-height: 40PX;
  675. background: #b41c2a;
  676. text-align: center;
  677. color: #fff;
  678. font-size: 20PX;
  679. font-weight: bold;
  680. border-top-left-radius: 10PX;
  681. border-top-right-radius: 10PX;
  682. }
  683. }
  684. .part2_right_content {
  685. padding: 0 10PX;
  686. .part2_right_contentItem {
  687. width: 100%;
  688. height: auto;
  689. overflow: hidden;
  690. padding: 21PX 0;
  691. border-bottom: 1PX solid #f2f2f2;
  692. a {
  693. display: flex;
  694. img {
  695. width: 175PX;
  696. height: 92PX;
  697. margin-right: 20PX;
  698. }
  699. .right_text {
  700. .left_text_title {
  701. display: block;
  702. width: 100%;
  703. line-height: 30PX;
  704. overflow: hidden;
  705. font-size: 18PX;
  706. color: #000;
  707. font-weight: bold;
  708. }
  709. .left_text_desc {
  710. width: 100%;
  711. height: 60PX;
  712. line-height: 20PX;
  713. overflow: hidden;
  714. font-size: 14PX;
  715. color: #7d7d7d;
  716. text-indent: 28PX;
  717. }
  718. }
  719. }
  720. }
  721. }
  722. }
  723. }
  724. }
  725. @media screen and (max-width: 800px) {
  726. .part2 {
  727. font-family: '微软雅黑';
  728. width: 100%;
  729. margin: 20px auto;
  730. padding: 0 20px;
  731. box-sizing: border-box;
  732. .part2_left {
  733. width: 100%;
  734. margin-bottom: 40px;
  735. .part2_left_title {
  736. width: 100%;
  737. height: 80px;
  738. overflow: hidden;
  739. border-bottom: solid 2px #b41c2a;
  740. a {
  741. display: block;
  742. width: 214px;
  743. height: 80px;
  744. line-height: 80px;
  745. background: #b41c2a;
  746. text-align: center;
  747. color: #fff;
  748. font-size: 40px;
  749. font-weight: bold;
  750. border-top-left-radius: 20px;
  751. border-top-right-radius: 20px;
  752. }
  753. }
  754. .part2_left_content {
  755. width: 100%;
  756. display: flex;
  757. flex-wrap: wrap;
  758. justify-content: space-between;
  759. div {
  760. width: 48%;
  761. height: 80px;
  762. line-height: 80px;
  763. list-style-position: inside;
  764. list-style-image: url(../../public/index/index_42.png);
  765. border-bottom: 1px solid #ccc;
  766. &:last-child {
  767. margin-bottom: 0;
  768. }
  769. a {
  770. font-size: 32px;
  771. color: #333;
  772. em {
  773. display: inline-block;
  774. width: 32px;
  775. height: 32px;
  776. background: url(../../public/index/index_42.png) no-repeat;
  777. vertical-align: -6px;
  778. }
  779. }
  780. &:nth-child(1),
  781. &:nth-child(2),
  782. &:nth-child(3) {
  783. a {
  784. em {
  785. background: url(../../public/index/index_31.png) no-repeat;
  786. vertical-align: -6px;
  787. }
  788. }
  789. }
  790. }
  791. }
  792. }
  793. .part2_right {
  794. width: 100%;
  795. .part2_right_title {
  796. width: 100%;
  797. height: 80px;
  798. overflow: hidden;
  799. border-bottom: solid 2px #b41c2a;
  800. a {
  801. display: block;
  802. width: 214px;
  803. height: 80px;
  804. line-height: 80px;
  805. background: #b41c2a;
  806. text-align: center;
  807. color: #fff;
  808. font-size: 40px;
  809. font-weight: bold;
  810. border-top-left-radius: 20px;
  811. border-top-right-radius: 20px;
  812. }
  813. }
  814. .part2_right_content {
  815. padding: 0 20px;
  816. box-sizing: border-box;
  817. .part2_right_contentItem {
  818. width: 100%;
  819. height: auto;
  820. overflow: hidden;
  821. padding: 20px 0;
  822. border-bottom: 2px solid #f2f2f2;
  823. a {
  824. img {
  825. width: 100%;
  826. height: 300px;
  827. margin-right: 20px;
  828. }
  829. .right_text {
  830. .left_text_title {
  831. display: block;
  832. width: 100%;
  833. line-height: 60px;
  834. overflow: hidden;
  835. font-size: 32px;
  836. color: #000;
  837. font-weight: bold;
  838. }
  839. .left_text_desc {
  840. width: 100%;
  841. height: 120px;
  842. line-height: 40px;
  843. overflow: hidden;
  844. font-size: 28px;
  845. color: #7d7d7d;
  846. text-indent: 56px;
  847. }
  848. }
  849. }
  850. }
  851. }
  852. }
  853. }
  854. }
  855. // 第三部分
  856. @media screen and (min-width: 1401px) {
  857. .part3 {
  858. width: 1400PX;
  859. margin: 20PX auto;
  860. .part3_title {
  861. width: 100%;
  862. height: 40PX;
  863. overflow: hidden;
  864. border-bottom: solid 2PX #b41c2a;
  865. margin-bottom: 20PX;
  866. a {
  867. display: block;
  868. width: 107PX;
  869. height: 40PX;
  870. line-height: 40PX;
  871. background: #b41c2a;
  872. text-align: center;
  873. color: #fff;
  874. font-size: 20PX;
  875. font-weight: bold;
  876. border-top-left-radius: 10PX;
  877. border-top-right-radius: 10PX;
  878. }
  879. }
  880. .part3_content {
  881. width: 100%;
  882. display: flex;
  883. flex-wrap: wrap;
  884. justify-content: space-between;
  885. .part3_contentList {
  886. width: 23%;
  887. height: auto;
  888. overflow: hidden;
  889. border: 1PX solid #ccc;
  890. margin-bottom: 20PX;
  891. a {
  892. img {
  893. display: block;
  894. width: 100%;
  895. height: 175PX;
  896. }
  897. .contentListText {
  898. padding: 0 5PX;
  899. box-sizing: border-box;
  900. .contentListText_title {
  901. font-family: '微软雅黑';
  902. display: block;
  903. width: 100%;
  904. height: 50PX;
  905. line-height: 50PX;
  906. overflow: hidden;
  907. font-size: 16PX;
  908. color: #333;
  909. font-weight: bold;
  910. padding: 0 5PX;
  911. box-sizing: border-box;
  912. }
  913. .contentListText_desc {
  914. font-family: '微软雅黑';
  915. width: 100%;
  916. height: 60PX;
  917. line-height: 20PX;
  918. font-size: 13PX;
  919. color: #727272;
  920. text-indent: 26PX;
  921. padding: 0 5PX;
  922. box-sizing: border-box;
  923. }
  924. }
  925. }
  926. &:hover {
  927. border: 1PX solid #ff0024;
  928. }
  929. &:nth-child(5),
  930. &:nth-child(6),
  931. &:nth-child(7),
  932. &:nth-child(8) {
  933. margin-bottom: 0;
  934. }
  935. }
  936. }
  937. }
  938. }
  939. @media screen and (min-width: 801px) and (max-width: 1400px) {
  940. .part3 {
  941. width: 100%;
  942. margin: 20PX auto;
  943. padding: 0 5PX;
  944. box-sizing: border-box;
  945. .part3_title {
  946. width: 100%;
  947. height: 40PX;
  948. overflow: hidden;
  949. border-bottom: solid 2PX #b41c2a;
  950. margin-bottom: 20PX;
  951. a {
  952. display: block;
  953. width: 107PX;
  954. height: 40PX;
  955. line-height: 40PX;
  956. background: #b41c2a;
  957. text-align: center;
  958. color: #fff;
  959. font-size: 20PX;
  960. font-weight: bold;
  961. border-top-left-radius: 10PX;
  962. border-top-right-radius: 10PX;
  963. }
  964. }
  965. .part3_content {
  966. width: 100%;
  967. display: flex;
  968. flex-wrap: wrap;
  969. justify-content: space-between;
  970. .part3_contentList {
  971. width: 23%;
  972. height: auto;
  973. overflow: hidden;
  974. border: 1PX solid #ccc;
  975. margin-bottom: 20PX;
  976. a {
  977. img {
  978. display: block;
  979. width: 100%;
  980. height: 175PX;
  981. }
  982. .contentListText {
  983. padding: 0 5PX;
  984. box-sizing: border-box;
  985. .contentListText_title {
  986. font-family: '微软雅黑';
  987. display: block;
  988. width: 100%;
  989. height: 50PX;
  990. line-height: 50PX;
  991. overflow: hidden;
  992. font-size: 16PX;
  993. color: #333;
  994. font-weight: bold;
  995. padding: 0 5PX;
  996. box-sizing: border-box;
  997. }
  998. .contentListText_desc {
  999. font-family: '微软雅黑';
  1000. width: 100%;
  1001. height: 60PX;
  1002. line-height: 20PX;
  1003. font-size: 13PX;
  1004. color: #727272;
  1005. text-indent: 26PX;
  1006. padding: 0 5PX;
  1007. box-sizing: border-box;
  1008. }
  1009. }
  1010. }
  1011. &:hover {
  1012. border: 1PX solid #ff0024;
  1013. }
  1014. &:nth-child(5),
  1015. &:nth-child(6),
  1016. &:nth-child(7),
  1017. &:nth-child(8) {
  1018. margin-bottom: 0;
  1019. }
  1020. }
  1021. }
  1022. }
  1023. }
  1024. @media screen and (max-width: 800px) {
  1025. .part3 {
  1026. width: 100%;
  1027. margin: 40px auto;
  1028. padding: 0 20px;
  1029. box-sizing: border-box;
  1030. .part3_title {
  1031. width: 100%;
  1032. height: 80px;
  1033. overflow: hidden;
  1034. border-bottom: solid 2px #b41c2a;
  1035. margin-bottom: 20px;
  1036. a {
  1037. display: block;
  1038. width: 214px;
  1039. height: 80px;
  1040. line-height: 80px;
  1041. background: #b41c2a;
  1042. text-align: center;
  1043. color: #fff;
  1044. font-size: 40px;
  1045. font-weight: bold;
  1046. border-top-left-radius: 20px;
  1047. border-top-right-radius: 20px;
  1048. }
  1049. }
  1050. .part3_content {
  1051. width: 100%;
  1052. display: flex;
  1053. flex-wrap: wrap;
  1054. justify-content: space-between;
  1055. .part3_contentList {
  1056. width: 48%;
  1057. height: auto;
  1058. overflow: hidden;
  1059. border: 2px solid #ccc;
  1060. margin-bottom: 40px;
  1061. a {
  1062. img {
  1063. display: block;
  1064. width: 100%;
  1065. height: 186px;
  1066. }
  1067. .contentListText {
  1068. padding: 0 10px;
  1069. box-sizing: border-box;
  1070. .contentListText_title {
  1071. font-family: '微软雅黑';
  1072. display: block;
  1073. width: 100%;
  1074. height: 80px;
  1075. line-height: 80px;
  1076. overflow: hidden;
  1077. font-size: 32px;
  1078. color: #333;
  1079. font-weight: bold;
  1080. padding: 0 10px;
  1081. box-sizing: border-box;
  1082. }
  1083. .contentListText_desc {
  1084. font-family: '微软雅黑';
  1085. width: 100%;
  1086. height: 120px;
  1087. line-height: 40px;
  1088. font-size: 26px;
  1089. color: #727272;
  1090. text-indent: 52px;
  1091. padding: 0 10px;
  1092. box-sizing: border-box;
  1093. }
  1094. }
  1095. }
  1096. &:hover {
  1097. border: 2px solid #ff0024;
  1098. }
  1099. &:nth-child(7),
  1100. &:nth-child(8) {
  1101. margin-bottom: 0;
  1102. }
  1103. }
  1104. }
  1105. }
  1106. }
  1107. // 第四部分
  1108. @media screen and (min-width: 1401px) {
  1109. .part4 {
  1110. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1111. width: 1400PX;
  1112. margin: 0 auto;
  1113. overflow: hidden;
  1114. display: flex;
  1115. justify-content: space-between;
  1116. // margin-bottom: 500px;
  1117. .part4Left {
  1118. width: 30%;
  1119. margin-bottom: 0;
  1120. .part4Left_title {
  1121. width: 100%;
  1122. height: 40PX;
  1123. overflow: hidden;
  1124. border-bottom: solid 2PX #b41c2a;
  1125. margin-bottom: 20PX;
  1126. a {
  1127. display: block;
  1128. width: 107PX;
  1129. height: 40PX;
  1130. line-height: 40PX;
  1131. background: #b41c2a;
  1132. text-align: center;
  1133. color: #fff;
  1134. font-size: 20PX;
  1135. font-weight: bold;
  1136. border-top-left-radius: 10PX;
  1137. border-top-right-radius: 10PX;
  1138. }
  1139. }
  1140. .part4Left_content {
  1141. .part4Left_contentList {
  1142. width: 100%;
  1143. height: auto;
  1144. overflow: hidden;
  1145. padding: 10PX 0;
  1146. border-bottom: 1PX dashed #ccc;
  1147. box-sizing: border-box;
  1148. margin-bottom: 10PX;
  1149. a {
  1150. .contentTitle {
  1151. display: block;
  1152. width: 100%;
  1153. height: 36PX;
  1154. overflow: hidden;
  1155. line-height: 36PX;
  1156. font-size: 18PX;
  1157. color: #333;
  1158. font-weight: bold;
  1159. }
  1160. .contentDesc {
  1161. display: block;
  1162. width: 100%;
  1163. max-height: 66PX;
  1164. line-height: 22PX;
  1165. overflow: hidden;
  1166. font-size: 14PX;
  1167. color: #666;
  1168. display: -webkit-box;
  1169. -webkit-box-orient: vertical;
  1170. -webkit-line-clamp: 3;
  1171. overflow: hidden;
  1172. text-overflow: ellipsis;
  1173. word-break: break-all;
  1174. }
  1175. .textdetail {
  1176. float: right;
  1177. color: #ff0024;
  1178. font-size: 14PX;
  1179. }
  1180. }
  1181. &:last-child {
  1182. margin-bottom: 0;
  1183. }
  1184. }
  1185. }
  1186. }
  1187. .part4Right {
  1188. width: 68%;
  1189. .part4Right_title {
  1190. width: 100%;
  1191. height: 40PX;
  1192. overflow: hidden;
  1193. border-bottom: solid 2PX #b41c2a;
  1194. margin-bottom: 20PX;
  1195. box-sizing: border-box;
  1196. a {
  1197. display: block;
  1198. width: 107PX;
  1199. height: 40PX;
  1200. line-height: 40PX;
  1201. background: #b41c2a;
  1202. text-align: center;
  1203. color: #fff;
  1204. font-size: 20PX;
  1205. font-weight: bold;
  1206. border-top-left-radius: 10PX;
  1207. border-top-right-radius: 10PX;
  1208. }
  1209. }
  1210. .part4Right_content {
  1211. width: 100%;
  1212. display: flex;
  1213. justify-content: space-between;
  1214. .rightContent_img {
  1215. width: 50%;
  1216. .rightImg1 {
  1217. width: 100%;
  1218. height: 167PX;
  1219. position: relative;
  1220. margin-bottom: 10PX;
  1221. a {
  1222. img {
  1223. width: 100%;
  1224. height: 167PX;
  1225. }
  1226. span {
  1227. display: block;
  1228. width: 100%;
  1229. line-height: 30PX;
  1230. overflow: hidden;
  1231. background: rgba(0, 0, 0, .5);
  1232. font-size: 15PX;
  1233. color: #fff;
  1234. padding: 0 10PX;
  1235. box-sizing: border-box;
  1236. position: absolute;
  1237. bottom: 0;
  1238. left: 0;
  1239. white-space: nowrap;
  1240. overflow: hidden;
  1241. text-overflow: ellipsis;
  1242. }
  1243. }
  1244. }
  1245. .rightImg2 {
  1246. width: 100%;
  1247. height: 120PX;
  1248. margin-bottom: 10PX;
  1249. box-sizing: border-box;
  1250. display: flex;
  1251. justify-content: space-between;
  1252. div {
  1253. width: 49%;
  1254. position: relative;
  1255. a {
  1256. img {
  1257. width: 100%;
  1258. height: 120PX;
  1259. }
  1260. span {
  1261. display: block;
  1262. width: 100%;
  1263. line-height: 30PX;
  1264. overflow: hidden;
  1265. background: rgba(0, 0, 0, .5);
  1266. font-size: 15PX;
  1267. color: #fff;
  1268. padding: 0 10PX;
  1269. box-sizing: border-box;
  1270. position: absolute;
  1271. bottom: 0;
  1272. left: 0;
  1273. white-space: nowrap;
  1274. overflow: hidden;
  1275. text-overflow: ellipsis;
  1276. }
  1277. }
  1278. }
  1279. }
  1280. .rightImg3 {
  1281. width: 100%;
  1282. height: 120PX;
  1283. margin-bottom: 10PX;
  1284. display: flex;
  1285. justify-content: space-between;
  1286. div {
  1287. width: 49%;
  1288. position: relative;
  1289. a {
  1290. img {
  1291. width: 100%;
  1292. height: 120PX;
  1293. }
  1294. span {
  1295. display: block;
  1296. width: 100%;
  1297. line-height: 30PX;
  1298. overflow: hidden;
  1299. background: rgba(0, 0, 0, .5);
  1300. font-size: 15PX;
  1301. color: #fff;
  1302. padding: 0 10PX;
  1303. box-sizing: border-box;
  1304. position: absolute;
  1305. bottom: 0;
  1306. left: 0;
  1307. white-space: nowrap;
  1308. overflow: hidden;
  1309. text-overflow: ellipsis;
  1310. }
  1311. }
  1312. }
  1313. }
  1314. .rightImg4 {
  1315. width: 100%;
  1316. height: 167PX;
  1317. position: relative;
  1318. a {
  1319. img {
  1320. width: 100%;
  1321. height: 167PX;
  1322. }
  1323. span {
  1324. display: block;
  1325. width: 100%;
  1326. line-height: 30PX;
  1327. overflow: hidden;
  1328. background: rgba(0, 0, 0, .5);
  1329. font-size: 15PX;
  1330. color: #fff;
  1331. padding: 0 10PX;
  1332. box-sizing: border-box;
  1333. position: absolute;
  1334. bottom: 0;
  1335. left: 0;
  1336. white-space: nowrap;
  1337. overflow: hidden;
  1338. text-overflow: ellipsis;
  1339. }
  1340. }
  1341. }
  1342. }
  1343. .rightContent_text {
  1344. width: 45%;
  1345. .rightContent_text_item {
  1346. width: 100%;
  1347. height: 39PX;
  1348. line-height: 39PX;
  1349. overflow: hidden;
  1350. text-overflow: ellipsis;
  1351. white-space: nowrap;
  1352. a {
  1353. font-size: 16PX;
  1354. color: #000;
  1355. }
  1356. &:nth-child(5n+1) {
  1357. margin-top: 10PX;
  1358. a {
  1359. color: #ff0024;
  1360. }
  1361. }
  1362. &:first-child {
  1363. margin-top: 0PX;
  1364. }
  1365. }
  1366. }
  1367. }
  1368. }
  1369. }
  1370. }
  1371. @media screen and (min-width: 801px) and (max-width: 1400px) {
  1372. .part4 {
  1373. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1374. width: 100%;
  1375. margin: 0 auto;
  1376. overflow: hidden;
  1377. display: flex;
  1378. justify-content: space-between;
  1379. padding: 0 5PX;
  1380. box-sizing: border-box;
  1381. .part4Left {
  1382. width: 30%;
  1383. margin-bottom: 0;
  1384. .part4Left_title {
  1385. width: 100%;
  1386. height: 40PX;
  1387. overflow: hidden;
  1388. border-bottom: solid 2PX #b41c2a;
  1389. margin-bottom: 20PX;
  1390. a {
  1391. display: block;
  1392. width: 107PX;
  1393. height: 40PX;
  1394. line-height: 40PX;
  1395. background: #b41c2a;
  1396. text-align: center;
  1397. color: #fff;
  1398. font-size: 20PX;
  1399. font-weight: bold;
  1400. border-top-left-radius: 10PX;
  1401. border-top-right-radius: 10PX;
  1402. }
  1403. }
  1404. .part4Left_content {
  1405. .part4Left_contentList {
  1406. width: 100%;
  1407. height: auto;
  1408. overflow: hidden;
  1409. padding: 10PX 0;
  1410. border-bottom: 1PX dashed #ccc;
  1411. box-sizing: border-box;
  1412. margin-bottom: 10PX;
  1413. a {
  1414. .contentTitle {
  1415. display: block;
  1416. width: 100%;
  1417. height: 36PX;
  1418. overflow: hidden;
  1419. line-height: 36PX;
  1420. font-size: 18PX;
  1421. color: #333;
  1422. font-weight: bold;
  1423. }
  1424. .contentDesc {
  1425. display: block;
  1426. width: 100%;
  1427. max-height: 66PX;
  1428. line-height: 22PX;
  1429. overflow: hidden;
  1430. font-size: 14PX;
  1431. color: #666;
  1432. display: -webkit-box;
  1433. -webkit-box-orient: vertical;
  1434. -webkit-line-clamp: 3;
  1435. overflow: hidden;
  1436. text-overflow: ellipsis;
  1437. word-break: break-all;
  1438. }
  1439. .textdetail {
  1440. float: right;
  1441. color: #ff0024;
  1442. font-size: 14PX;
  1443. }
  1444. }
  1445. &:last-child {
  1446. margin-bottom: 0;
  1447. }
  1448. }
  1449. }
  1450. }
  1451. .part4Right {
  1452. width: 68%;
  1453. .part4Right_title {
  1454. width: 100%;
  1455. height: 40PX;
  1456. overflow: hidden;
  1457. border-bottom: solid 2PX #b41c2a;
  1458. margin-bottom: 20PX;
  1459. box-sizing: border-box;
  1460. a {
  1461. display: block;
  1462. width: 107PX;
  1463. height: 40PX;
  1464. line-height: 40PX;
  1465. background: #b41c2a;
  1466. text-align: center;
  1467. color: #fff;
  1468. font-size: 20PX;
  1469. font-weight: bold;
  1470. border-top-left-radius: 10PX;
  1471. border-top-right-radius: 10PX;
  1472. }
  1473. }
  1474. .part4Right_content {
  1475. width: 100%;
  1476. display: flex;
  1477. justify-content: space-between;
  1478. .rightContent_img {
  1479. width: 50%;
  1480. .rightImg1 {
  1481. width: 100%;
  1482. height: 167PX;
  1483. position: relative;
  1484. margin-bottom: 10PX;
  1485. a {
  1486. img {
  1487. width: 100%;
  1488. height: 167PX;
  1489. }
  1490. span {
  1491. display: block;
  1492. width: 100%;
  1493. line-height: 30PX;
  1494. overflow: hidden;
  1495. background: rgba(0, 0, 0, .5);
  1496. font-size: 15PX;
  1497. color: #fff;
  1498. padding: 0 10PX;
  1499. box-sizing: border-box;
  1500. position: absolute;
  1501. bottom: 0;
  1502. left: 0;
  1503. white-space: nowrap;
  1504. overflow: hidden;
  1505. text-overflow: ellipsis;
  1506. }
  1507. }
  1508. }
  1509. .rightImg2 {
  1510. width: 100%;
  1511. height: 120PX;
  1512. margin-bottom: 10PX;
  1513. box-sizing: border-box;
  1514. display: flex;
  1515. justify-content: space-between;
  1516. div {
  1517. width: 49%;
  1518. position: relative;
  1519. a {
  1520. img {
  1521. width: 100%;
  1522. height: 120PX;
  1523. }
  1524. span {
  1525. display: block;
  1526. width: 100%;
  1527. line-height: 30PX;
  1528. overflow: hidden;
  1529. background: rgba(0, 0, 0, .5);
  1530. font-size: 15PX;
  1531. color: #fff;
  1532. padding: 0 10PX;
  1533. box-sizing: border-box;
  1534. position: absolute;
  1535. bottom: 0;
  1536. left: 0;
  1537. white-space: nowrap;
  1538. overflow: hidden;
  1539. text-overflow: ellipsis;
  1540. }
  1541. }
  1542. }
  1543. }
  1544. .rightImg3 {
  1545. width: 100%;
  1546. height: 120PX;
  1547. margin-bottom: 10PX;
  1548. display: flex;
  1549. justify-content: space-between;
  1550. div {
  1551. width: 49%;
  1552. position: relative;
  1553. a {
  1554. img {
  1555. width: 100%;
  1556. height: 120PX;
  1557. }
  1558. span {
  1559. display: block;
  1560. width: 100%;
  1561. line-height: 30PX;
  1562. overflow: hidden;
  1563. background: rgba(0, 0, 0, .5);
  1564. font-size: 15PX;
  1565. color: #fff;
  1566. padding: 0 10PX;
  1567. box-sizing: border-box;
  1568. position: absolute;
  1569. bottom: 0;
  1570. left: 0;
  1571. white-space: nowrap;
  1572. overflow: hidden;
  1573. text-overflow: ellipsis;
  1574. }
  1575. }
  1576. }
  1577. }
  1578. .rightImg4 {
  1579. width: 100%;
  1580. height: 167PX;
  1581. position: relative;
  1582. a {
  1583. img {
  1584. width: 100%;
  1585. height: 167PX;
  1586. }
  1587. span {
  1588. display: block;
  1589. width: 100%;
  1590. line-height: 30PX;
  1591. overflow: hidden;
  1592. background: rgba(0, 0, 0, .5);
  1593. font-size: 15PX;
  1594. color: #fff;
  1595. padding: 0 10PX;
  1596. box-sizing: border-box;
  1597. position: absolute;
  1598. bottom: 0;
  1599. left: 0;
  1600. white-space: nowrap;
  1601. overflow: hidden;
  1602. text-overflow: ellipsis;
  1603. }
  1604. }
  1605. }
  1606. }
  1607. .rightContent_text {
  1608. width: 45%;
  1609. .rightContent_text_item {
  1610. width: 100%;
  1611. height: 39PX;
  1612. line-height: 39PX;
  1613. overflow: hidden;
  1614. text-overflow: ellipsis;
  1615. white-space: nowrap;
  1616. a {
  1617. font-size: 16PX;
  1618. color: #000;
  1619. }
  1620. &:nth-child(5n+1) {
  1621. margin-top: 10PX;
  1622. a {
  1623. color: #ff0024;
  1624. }
  1625. }
  1626. &:first-child {
  1627. margin-top: 0PX;
  1628. }
  1629. }
  1630. }
  1631. }
  1632. }
  1633. }
  1634. }
  1635. @media screen and (max-width: 800px) {
  1636. .part4 {
  1637. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1638. width: 100%;
  1639. margin: 0 auto;
  1640. overflow: hidden;
  1641. padding: 0 20px;
  1642. box-sizing: border-box;
  1643. .part4Left {
  1644. width: 100%;
  1645. margin-bottom: 20px;
  1646. .part4Left_title {
  1647. width: 100%;
  1648. height: 40PX;
  1649. overflow: hidden;
  1650. border-bottom: solid 2PX #b41c2a;
  1651. margin-bottom: 20px;
  1652. a {
  1653. display: block;
  1654. width: 107PX;
  1655. height: 40PX;
  1656. line-height: 40PX;
  1657. background: #b41c2a;
  1658. text-align: center;
  1659. color: #fff;
  1660. font-size: 20PX;
  1661. font-weight: bold;
  1662. border-top-left-radius: 10PX;
  1663. border-top-right-radius: 10PX;
  1664. }
  1665. }
  1666. .part4Left_content {
  1667. .part4Left_contentList {
  1668. width: 100%;
  1669. height: auto;
  1670. overflow: hidden;
  1671. padding: 20px 0;
  1672. border-bottom: 2px dashed #ccc;
  1673. box-sizing: border-box;
  1674. a {
  1675. .contentTitle {
  1676. display: block;
  1677. width: 100%;
  1678. height: 72px;
  1679. overflow: hidden;
  1680. line-height: 72px;
  1681. font-size: 32px;
  1682. color: #333;
  1683. font-weight: bold;
  1684. }
  1685. .contentDesc {
  1686. display: block;
  1687. width: 100%;
  1688. max-height: 132px;
  1689. line-height: 44px;
  1690. overflow: hidden;
  1691. font-size: 28px;
  1692. color: #666;
  1693. display: -webkit-box;
  1694. -webkit-box-orient: vertical;
  1695. -webkit-line-clamp: 3;
  1696. overflow: hidden;
  1697. text-overflow: ellipsis;
  1698. word-break: break-all;
  1699. }
  1700. .textdetail {
  1701. float: right;
  1702. color: #ff0024;
  1703. font-size: 28px;
  1704. }
  1705. }
  1706. &:last-child {
  1707. margin-bottom: 0;
  1708. }
  1709. }
  1710. }
  1711. }
  1712. .part4Right {
  1713. width: 100%;
  1714. .part4Right_title {
  1715. width: 100%;
  1716. height: 80px;
  1717. overflow: hidden;
  1718. border-bottom: solid 2px #b41c2a;
  1719. margin-bottom: 20px;
  1720. box-sizing: border-box;
  1721. a {
  1722. display: block;
  1723. width: 214px;
  1724. height: 80px;
  1725. line-height: 80px;
  1726. background: #b41c2a;
  1727. text-align: center;
  1728. color: #fff;
  1729. font-size: 40px;
  1730. font-weight: bold;
  1731. border-top-left-radius: 20px;
  1732. border-top-right-radius: 20px;
  1733. }
  1734. }
  1735. .part4Right_content {
  1736. width: 100%;
  1737. display: flex;
  1738. justify-content: space-between;
  1739. .rightContent_img {
  1740. width: 50%;
  1741. .rightImg1 {
  1742. width: 100%;
  1743. height: 186px;
  1744. position: relative;
  1745. margin-bottom: 20px;
  1746. a {
  1747. img {
  1748. width: 100%;
  1749. height: 186px;
  1750. }
  1751. span {
  1752. display: block;
  1753. width: 100%;
  1754. line-height: 60px;
  1755. overflow: hidden;
  1756. background: rgba(0, 0, 0, .5);
  1757. font-size: 30px;
  1758. color: #fff;
  1759. padding: 0 20px;
  1760. box-sizing: border-box;
  1761. position: absolute;
  1762. bottom: 0;
  1763. left: 0;
  1764. white-space: nowrap;
  1765. overflow: hidden;
  1766. text-overflow: ellipsis;
  1767. }
  1768. }
  1769. }
  1770. .rightImg2 {
  1771. width: 100%;
  1772. height: 150px;
  1773. margin-bottom: 20px;
  1774. box-sizing: border-box;
  1775. display: flex;
  1776. justify-content: space-between;
  1777. div {
  1778. width: 49%;
  1779. position: relative;
  1780. a {
  1781. img {
  1782. width: 100%;
  1783. height: 150px;
  1784. }
  1785. span {
  1786. display: block;
  1787. width: 100%;
  1788. line-height: 60px;
  1789. overflow: hidden;
  1790. background: rgba(0, 0, 0, .5);
  1791. font-size: 30px;
  1792. color: #fff;
  1793. padding: 0 20px;
  1794. box-sizing: border-box;
  1795. position: absolute;
  1796. bottom: 0;
  1797. left: 0;
  1798. white-space: nowrap;
  1799. overflow: hidden;
  1800. text-overflow: ellipsis;
  1801. }
  1802. }
  1803. }
  1804. }
  1805. .rightImg3 {
  1806. width: 100%;
  1807. height: 150px;
  1808. margin-bottom: 20px;
  1809. display: flex;
  1810. justify-content: space-between;
  1811. div {
  1812. width: 49%;
  1813. position: relative;
  1814. a {
  1815. position: static;
  1816. img {
  1817. width: 100%;
  1818. height: 150px;
  1819. }
  1820. span {
  1821. display: block;
  1822. width: 100%;
  1823. line-height: 30PX;
  1824. overflow: hidden;
  1825. background: rgba(0, 0, 0, .5);
  1826. font-size: 15PX;
  1827. color: #fff;
  1828. padding: 0 10PX;
  1829. box-sizing: border-box;
  1830. position: absolute;
  1831. bottom: 0;
  1832. left: 0;
  1833. white-space: nowrap;
  1834. overflow: hidden;
  1835. text-overflow: ellipsis;
  1836. }
  1837. }
  1838. }
  1839. }
  1840. .rightImg4 {
  1841. width: 100%;
  1842. height: 186px;
  1843. position: relative;
  1844. a {
  1845. img {
  1846. width: 100%;
  1847. height: 186px;
  1848. }
  1849. span {
  1850. display: block;
  1851. width: 100%;
  1852. line-height: 30PX;
  1853. overflow: hidden;
  1854. background: rgba(0, 0, 0, .5);
  1855. font-size: 15PX;
  1856. color: #fff;
  1857. padding: 0 10PX;
  1858. box-sizing: border-box;
  1859. position: absolute;
  1860. bottom: 0;
  1861. left: 0;
  1862. white-space: nowrap;
  1863. overflow: hidden;
  1864. text-overflow: ellipsis;
  1865. }
  1866. }
  1867. }
  1868. }
  1869. .rightContent_text {
  1870. width: 45%;
  1871. .rightContent_text_item {
  1872. width: 100%;
  1873. height: 46px;
  1874. line-height: 46px;
  1875. overflow: hidden;
  1876. white-space: nowrap;
  1877. text-overflow: ellipsis;
  1878. a {
  1879. font-size: 30px;
  1880. color: #333;
  1881. }
  1882. &:nth-child(5n+1) {
  1883. margin-top: 20px;
  1884. a {
  1885. color: #ff0024;
  1886. }
  1887. }
  1888. &:first-child {
  1889. margin-top: 0px;
  1890. }
  1891. }
  1892. }
  1893. }
  1894. }
  1895. }
  1896. }
  1897. // 第五部分
  1898. @media screen and (min-width: 1401px) {
  1899. .part5 {
  1900. width: 1400PX;
  1901. height: auto;
  1902. margin: 0 auto;
  1903. margin-top: 20PX;
  1904. box-sizing: border-box;
  1905. overflow: hidden;
  1906. .part5Left {
  1907. width: 68%;
  1908. float: left;
  1909. margin-right: 2%;
  1910. margin-top: 0PX;
  1911. .part5Left_title {
  1912. width: 100%;
  1913. height: 40PX;
  1914. overflow: hidden;
  1915. border-bottom: solid 2PX #b41c2a;
  1916. a {
  1917. display: inline-block;
  1918. width: 107PX;
  1919. height: 40PX;
  1920. line-height: 40PX;
  1921. text-align: center;
  1922. color: #b41c2a;
  1923. font-size: 20PX;
  1924. font-weight: bold;
  1925. border-top-left-radius: 10PX;
  1926. border-top-right-radius: 10PX;
  1927. }
  1928. .active {
  1929. background: #b41c2a;
  1930. color: #fff;
  1931. }
  1932. }
  1933. .part5Left_content {
  1934. width: 100%;
  1935. height: auto;
  1936. overflow: hidden;
  1937. .part5Left_content_item {
  1938. width: 100%;
  1939. height: auto;
  1940. overflow: hidden;
  1941. padding: 10PX 0 0;
  1942. border-bottom: solid 1PX #ccc;
  1943. a {
  1944. display: flex;
  1945. img {
  1946. min-width: 220PX;
  1947. height: 100PX;
  1948. padding-bottom: 10PX;
  1949. margin-right: 11PX;
  1950. }
  1951. .part5LeftContentText {
  1952. .title {
  1953. width: 100%;
  1954. height: 34PX;
  1955. line-height: 34PX;
  1956. overflow: hidden;
  1957. font-size: 16PX;
  1958. color: #b41c2a;
  1959. font-weight: bold;
  1960. overflow: hidden;
  1961. text-overflow: ellipsis;
  1962. white-space: nowrap;
  1963. }
  1964. .desc {
  1965. width: 100%;
  1966. height: 66PX;
  1967. line-height: 22PX;
  1968. overflow: hidden;
  1969. font-size: 13PX;
  1970. color: #333;
  1971. }
  1972. }
  1973. }
  1974. }
  1975. }
  1976. }
  1977. .part5Right {
  1978. width: 29%;
  1979. float: left;
  1980. .part5_right_title {
  1981. width: 100%;
  1982. height: 40PX;
  1983. overflow: hidden;
  1984. border-bottom: solid 2PX #b41c2a;
  1985. margin-bottom: 20PX;
  1986. a {
  1987. display: block;
  1988. width: 107PX;
  1989. height: 40PX;
  1990. line-height: 40PX;
  1991. background: #b41c2a;
  1992. text-align: center;
  1993. color: #fff;
  1994. font-size: 20PX;
  1995. font-weight: bold;
  1996. border-top-left-radius: 10PX;
  1997. border-top-right-radius: 10PX;
  1998. }
  1999. }
  2000. .part5_right_content {
  2001. width: 100%;
  2002. height: auto;
  2003. overflow: hidden;
  2004. .part5Right_content_item {
  2005. width: 100%;
  2006. height: 40PX;
  2007. line-height: 40PX;
  2008. border-bottom: 2PX solid #dcdcdc;
  2009. a {
  2010. width: 100%;
  2011. .textNumber {
  2012. display: block;
  2013. width: 40PX;
  2014. height: 40PX;
  2015. text-align: center;
  2016. line-height: 40PX;
  2017. border-bottom: 2PX solid #b41c2a;
  2018. font-size: 18PX;
  2019. color: #b41c2a;
  2020. font-weight: bold;
  2021. position: absolute;
  2022. }
  2023. .textTitle {
  2024. display: inline-block;
  2025. width: 88%;
  2026. font-size: 16PX;
  2027. color: #333;
  2028. padding-left: 50PX;
  2029. white-space: nowrap;
  2030. overflow: hidden;
  2031. text-overflow: ellipsis;
  2032. vertical-align: middle;
  2033. }
  2034. }
  2035. }
  2036. }
  2037. }
  2038. }
  2039. }
  2040. @media screen and (min-width: 801px) and (max-width: 1400px) {
  2041. .part5 {
  2042. width: 100%;
  2043. height: auto;
  2044. margin: 0 auto;
  2045. margin-top: 20PX;
  2046. box-sizing: border-box;
  2047. overflow: hidden;
  2048. padding: 0 5PX;
  2049. box-sizing: border-box;
  2050. .part5Left {
  2051. width: 68%;
  2052. float: left;
  2053. margin-right: 2%;
  2054. margin-top: 0PX;
  2055. .part5Left_title {
  2056. width: 100%;
  2057. height: 40PX;
  2058. overflow: hidden;
  2059. border-bottom: solid 2PX #b41c2a;
  2060. a {
  2061. display: inline-block;
  2062. width: 107PX;
  2063. height: 40PX;
  2064. line-height: 40PX;
  2065. text-align: center;
  2066. color: #b41c2a;
  2067. font-size: 20PX;
  2068. font-weight: bold;
  2069. border-top-left-radius: 10PX;
  2070. border-top-right-radius: 10PX;
  2071. }
  2072. .active {
  2073. background: #b41c2a;
  2074. color: #fff;
  2075. }
  2076. }
  2077. .part5Left_content {
  2078. width: 100%;
  2079. height: auto;
  2080. overflow: hidden;
  2081. .part5Left_content_item {
  2082. width: 100%;
  2083. height: auto;
  2084. overflow: hidden;
  2085. padding: 10PX 0 0;
  2086. border-bottom: solid 1PX #ccc;
  2087. a {
  2088. display: flex;
  2089. img {
  2090. min-width: 200PX;
  2091. height: 100PX;
  2092. padding-bottom: 10PX;
  2093. margin-right: 11PX;
  2094. }
  2095. .part5LeftContentText {
  2096. width: calc(100% - 200PX);
  2097. .title {
  2098. width: 100%;
  2099. height: 34PX;
  2100. line-height: 34PX;
  2101. overflow: hidden;
  2102. font-size: 16PX;
  2103. color: #b41c2a;
  2104. font-weight: bold;
  2105. overflow: hidden;
  2106. text-overflow: ellipsis;
  2107. white-space: nowrap;
  2108. }
  2109. .desc {
  2110. width: 100%;
  2111. height: 66PX;
  2112. line-height: 22PX;
  2113. overflow: hidden;
  2114. font-size: 13PX;
  2115. color: #333;
  2116. }
  2117. }
  2118. }
  2119. }
  2120. }
  2121. }
  2122. .part5Right {
  2123. width: 29%;
  2124. float: left;
  2125. .part5_right_title {
  2126. width: 100%;
  2127. height: 40PX;
  2128. overflow: hidden;
  2129. border-bottom: solid 2PX #b41c2a;
  2130. margin-bottom: 20PX;
  2131. a {
  2132. display: block;
  2133. width: 107PX;
  2134. height: 40PX;
  2135. line-height: 40PX;
  2136. background: #b41c2a;
  2137. text-align: center;
  2138. color: #fff;
  2139. font-size: 20PX;
  2140. font-weight: bold;
  2141. border-top-left-radius: 10PX;
  2142. border-top-right-radius: 10PX;
  2143. }
  2144. }
  2145. .part5_right_content {
  2146. width: 100%;
  2147. height: auto;
  2148. overflow: hidden;
  2149. .part5Right_content_item {
  2150. width: 100%;
  2151. height: 40PX;
  2152. line-height: 40PX;
  2153. border-bottom: 2PX solid #dcdcdc;
  2154. overflow: hidden;
  2155. text-overflow: ellipsis;
  2156. vertical-align: middle;
  2157. a {
  2158. width: 100%;
  2159. overflow: hidden;
  2160. text-overflow: ellipsis;
  2161. vertical-align: middle;
  2162. .textNumber {
  2163. display: block;
  2164. width: 40PX;
  2165. height: 40PX;
  2166. text-align: center;
  2167. line-height: 40PX;
  2168. border-bottom: 2PX solid #b41c2a;
  2169. font-size: 18PX;
  2170. color: #b41c2a;
  2171. font-weight: bold;
  2172. position: absolute;
  2173. }
  2174. .textTitle {
  2175. display: inline-block;
  2176. width: 85%;
  2177. font-size: 16PX;
  2178. color: #333;
  2179. padding-left: 50PX;
  2180. white-space: nowrap;
  2181. overflow: hidden;
  2182. text-overflow: ellipsis;
  2183. vertical-align: middle;
  2184. }
  2185. }
  2186. }
  2187. }
  2188. }
  2189. }
  2190. }
  2191. @media screen and (max-width: 800px) {
  2192. .part5 {
  2193. width: 100%;
  2194. height: auto;
  2195. margin: 0 auto;
  2196. margin-top: 40px;
  2197. padding: 0 20px;
  2198. box-sizing: border-box;
  2199. overflow: hidden;
  2200. .part5Left {
  2201. width: 100%;
  2202. margin-top: 0px;
  2203. margin-bottom: 40px;
  2204. .part5Left_title {
  2205. width: 100%;
  2206. height: 80px;
  2207. overflow: hidden;
  2208. border-bottom: solid 2px #b41c2a;
  2209. a {
  2210. display: inline-block;
  2211. width: 214px;
  2212. height: 80px;
  2213. line-height: 80px;
  2214. text-align: center;
  2215. color: #b41c2a;
  2216. font-size: 40px;
  2217. font-weight: bold;
  2218. border-top-left-radius: 20px;
  2219. border-top-right-radius: 20px;
  2220. }
  2221. .active {
  2222. background: #b41c2a;
  2223. color: #fff;
  2224. }
  2225. }
  2226. .part5Left_content {
  2227. width: 100%;
  2228. height: auto;
  2229. overflow: hidden;
  2230. display: flex;
  2231. flex-wrap: wrap;
  2232. justify-content: space-between;
  2233. .part5Left_content_item {
  2234. width: 48%;
  2235. height: auto;
  2236. overflow: hidden;
  2237. padding: 20px 0 0;
  2238. border-bottom: solid 2px #ccc;
  2239. a {
  2240. img {
  2241. min-width: 100%;
  2242. height: 166px;
  2243. padding-bottom: 20px;
  2244. }
  2245. .part5LeftContentText {
  2246. .title {
  2247. width: 100%;
  2248. height: 68px;
  2249. line-height: 68px;
  2250. overflow: hidden;
  2251. font-size: 32px;
  2252. color: #b41c2a;
  2253. font-weight: bold;
  2254. overflow: hidden;
  2255. text-overflow: ellipsis;
  2256. white-space: nowrap;
  2257. }
  2258. .desc {
  2259. width: 100%;
  2260. height: 132px;
  2261. line-height: 44px;
  2262. overflow: hidden;
  2263. font-size: 26px;
  2264. color: #333;
  2265. }
  2266. }
  2267. }
  2268. }
  2269. }
  2270. }
  2271. .part5Right {
  2272. width: 100%;
  2273. .part5_right_title {
  2274. width: 100%;
  2275. height: 80px;
  2276. overflow: hidden;
  2277. border-bottom: solid 2px #b41c2a;
  2278. margin-bottom: 20px;
  2279. a {
  2280. display: block;
  2281. width: 214px;
  2282. height: 80px;
  2283. line-height: 80px;
  2284. background: #b41c2a;
  2285. text-align: center;
  2286. color: #fff;
  2287. font-size: 40px;
  2288. font-weight: bold;
  2289. border-top-left-radius: 20px;
  2290. border-top-right-radius: 20px;
  2291. }
  2292. }
  2293. .part5_right_content {
  2294. width: 100%;
  2295. height: auto;
  2296. overflow: hidden;
  2297. display: flex;
  2298. flex-wrap: wrap;
  2299. justify-content: space-between;
  2300. .part5Right_content_item {
  2301. width: 49%;
  2302. height: 80px;
  2303. line-height: 80px;
  2304. border-bottom: 2px solid #dcdcdc;
  2305. a {
  2306. width: 100%;
  2307. .textNumber {
  2308. display: block;
  2309. width: 80px;
  2310. height: 80px;
  2311. text-align: center;
  2312. line-height: 80px;
  2313. border-bottom: 2px solid #b41c2a;
  2314. font-size: 32px;
  2315. color: #b41c2a;
  2316. font-weight: bold;
  2317. position: absolute;
  2318. }
  2319. .textTitle {
  2320. width: 88%;
  2321. font-size: 32px;
  2322. color: #333;
  2323. padding-left: 100px;
  2324. white-space: nowrap;
  2325. overflow: hidden;
  2326. text-overflow: ellipsis;
  2327. vertical-align: middle;
  2328. }
  2329. }
  2330. }
  2331. }
  2332. }
  2333. }
  2334. }
  2335. // 第六部分
  2336. @media screen and (min-width: 1401px) {
  2337. .part6 {
  2338. width: 1400PX;
  2339. height: auto;
  2340. margin: 20PX auto 0;
  2341. overflow: hidden;
  2342. display: flex;
  2343. justify-content: space-between;
  2344. .part6Left {
  2345. width: 68%;
  2346. margin-top: 0PX;
  2347. .part6_left_title {
  2348. width: 100%;
  2349. height: 40PX;
  2350. overflow: hidden;
  2351. border-bottom: solid 2PX #b41c2a;
  2352. margin-bottom: 20PX;
  2353. a {
  2354. display: block;
  2355. width: 107PX;
  2356. height: 40PX;
  2357. line-height: 40PX;
  2358. background: #b41c2a;
  2359. text-align: center;
  2360. color: #fff;
  2361. font-size: 20PX;
  2362. font-weight: bold;
  2363. border-top-left-radius: 10PX;
  2364. border-top-right-radius: 10PX;
  2365. }
  2366. }
  2367. .part6_left_content {
  2368. width: 100%;
  2369. height: auto;
  2370. overflow: hidden;
  2371. .part6Left_content_item {
  2372. width: 100%;
  2373. height: auto;
  2374. overflow: hidden;
  2375. padding: 0PX 0 11PX;
  2376. margin-bottom: 10PX;
  2377. border-bottom: 1PX solid #ccc;
  2378. a {
  2379. display: flex;
  2380. justify-content: space-between;
  2381. img {
  2382. width: 175PX;
  2383. height: 92PX;
  2384. overflow: hidden;
  2385. margin-right: 11PX;
  2386. }
  2387. .part6LeftContentText {
  2388. width: 760PX;
  2389. height: auto;
  2390. overflow: hidden;
  2391. .title {
  2392. display: block;
  2393. width: 100%;
  2394. line-height: 30PX;
  2395. overflow: hidden;
  2396. font-size: 18PX;
  2397. color: #333;
  2398. font-weight: bold;
  2399. }
  2400. .desc {
  2401. height: 60PX;
  2402. line-height: 20PX;
  2403. font-size: 14PX;
  2404. color: #666;
  2405. }
  2406. }
  2407. }
  2408. }
  2409. }
  2410. }
  2411. .part6Right {
  2412. width: 30%;
  2413. .part6_right_title {
  2414. width: 100%;
  2415. height: 40PX;
  2416. overflow: hidden;
  2417. border-bottom: solid 2PX #b41c2a;
  2418. margin-bottom: 10PX;
  2419. a {
  2420. display: block;
  2421. width: 107PX;
  2422. height: 40PX;
  2423. line-height: 40PX;
  2424. background: #b41c2a;
  2425. text-align: center;
  2426. color: #fff;
  2427. font-size: 20PX;
  2428. font-weight: bold;
  2429. border-top-left-radius: 10PX;
  2430. border-top-right-radius: 10PX;
  2431. }
  2432. }
  2433. .part6_right_content {
  2434. .part6Right_content_item {
  2435. width: 100%;
  2436. height: auto;
  2437. overflow: hidden;
  2438. padding: 10PX 0;
  2439. border-bottom: 1PX dashed #ccc;
  2440. box-sizing: border-box;
  2441. a {
  2442. .part6contentTitle {
  2443. display: block;
  2444. width: 100%;
  2445. height: 36PX;
  2446. overflow: hidden;
  2447. line-height: 36PX;
  2448. font-size: 18PX;
  2449. color: #333;
  2450. font-weight: bold;
  2451. }
  2452. .part6contentDesc {
  2453. display: block;
  2454. width: 100%;
  2455. max-height: 66PX;
  2456. line-height: 22PX;
  2457. overflow: hidden;
  2458. font-size: 14PX;
  2459. color: #666;
  2460. display: -webkit-box;
  2461. -webkit-box-orient: vertical;
  2462. -webkit-line-clamp: 3;
  2463. overflow: hidden;
  2464. text-overflow: ellipsis;
  2465. word-break: break-all;
  2466. }
  2467. .part6textdetail {
  2468. float: right;
  2469. color: #ff0024;
  2470. font-size: 14PX;
  2471. }
  2472. }
  2473. }
  2474. }
  2475. }
  2476. }
  2477. }
  2478. @media screen and (min-width: 801px) and (max-width: 1400px) {
  2479. .part6 {
  2480. width: 100%;
  2481. height: auto;
  2482. margin: 20PX auto 0;
  2483. overflow: hidden;
  2484. display: flex;
  2485. justify-content: space-between;
  2486. padding: 0 5PX;
  2487. box-sizing: border-box;
  2488. .part6Left {
  2489. width: 68%;
  2490. margin-top: 0PX;
  2491. .part6_left_title {
  2492. width: 100%;
  2493. height: 40PX;
  2494. overflow: hidden;
  2495. border-bottom: solid 2PX #b41c2a;
  2496. margin-bottom: 20PX;
  2497. a {
  2498. display: block;
  2499. width: 107PX;
  2500. height: 40PX;
  2501. line-height: 40PX;
  2502. background: #b41c2a;
  2503. text-align: center;
  2504. color: #fff;
  2505. font-size: 20PX;
  2506. font-weight: bold;
  2507. border-top-left-radius: 10PX;
  2508. border-top-right-radius: 10PX;
  2509. }
  2510. }
  2511. .part6_left_content {
  2512. width: 100%;
  2513. height: auto;
  2514. overflow: hidden;
  2515. .part6Left_content_item {
  2516. width: 100%;
  2517. height: auto;
  2518. overflow: hidden;
  2519. padding: 0PX 0 11PX;
  2520. margin-bottom: 10PX;
  2521. border-bottom: 1PX solid #ccc;
  2522. a {
  2523. display: flex;
  2524. justify-content: space-between;
  2525. img {
  2526. width: 175PX;
  2527. height: 92PX;
  2528. overflow: hidden;
  2529. margin-right: 11PX;
  2530. }
  2531. .part6LeftContentText {
  2532. width: 760PX;
  2533. height: auto;
  2534. overflow: hidden;
  2535. .title {
  2536. display: block;
  2537. width: 100%;
  2538. line-height: 30PX;
  2539. overflow: hidden;
  2540. font-size: 18PX;
  2541. color: #333;
  2542. font-weight: bold;
  2543. }
  2544. .desc {
  2545. height: 60PX;
  2546. line-height: 20PX;
  2547. font-size: 14PX;
  2548. color: #666;
  2549. }
  2550. }
  2551. }
  2552. }
  2553. }
  2554. }
  2555. .part6Right {
  2556. width: 30%;
  2557. .part6_right_title {
  2558. width: 100%;
  2559. height: 40PX;
  2560. overflow: hidden;
  2561. border-bottom: solid 2PX #b41c2a;
  2562. margin-bottom: 10PX;
  2563. a {
  2564. display: block;
  2565. width: 107PX;
  2566. height: 40PX;
  2567. line-height: 40PX;
  2568. background: #b41c2a;
  2569. text-align: center;
  2570. color: #fff;
  2571. font-size: 20PX;
  2572. font-weight: bold;
  2573. border-top-left-radius: 10PX;
  2574. border-top-right-radius: 10PX;
  2575. }
  2576. }
  2577. .part6_right_content {
  2578. .part6Right_content_item {
  2579. width: 100%;
  2580. height: auto;
  2581. overflow: hidden;
  2582. padding: 10PX 0;
  2583. border-bottom: 1PX dashed #ccc;
  2584. box-sizing: border-box;
  2585. a {
  2586. .part6contentTitle {
  2587. display: block;
  2588. width: 100%;
  2589. height: 36PX;
  2590. overflow: hidden;
  2591. line-height: 36PX;
  2592. font-size: 18PX;
  2593. color: #333;
  2594. font-weight: bold;
  2595. }
  2596. .part6contentDesc {
  2597. display: block;
  2598. width: 100%;
  2599. max-height: 66PX;
  2600. line-height: 22PX;
  2601. overflow: hidden;
  2602. font-size: 14PX;
  2603. color: #666;
  2604. }
  2605. .part6textdetail {
  2606. float: right;
  2607. color: #ff0024;
  2608. font-size: 14PX;
  2609. }
  2610. }
  2611. }
  2612. }
  2613. }
  2614. }
  2615. }
  2616. @media screen and (max-width: 800px) {
  2617. .part6 {
  2618. width: 100%;
  2619. height: auto;
  2620. margin: 40px auto;
  2621. overflow: hidden;
  2622. padding: 0 20px;
  2623. box-sizing: border-box;
  2624. .part6Left {
  2625. width: 100%;
  2626. .part6_left_title {
  2627. width: 100%;
  2628. height: 80px;
  2629. overflow: hidden;
  2630. border-bottom: solid 2px #b41c2a;
  2631. margin-bottom: 40px;
  2632. a {
  2633. display: block;
  2634. width: 214px;
  2635. height: 80px;
  2636. line-height: 80px;
  2637. background: #b41c2a;
  2638. text-align: center;
  2639. color: #fff;
  2640. font-size: 40px;
  2641. font-weight: bold;
  2642. border-top-left-radius: 20px;
  2643. border-top-right-radius: 20px;
  2644. }
  2645. }
  2646. .part6_left_content {
  2647. width: 100%;
  2648. height: auto;
  2649. overflow: hidden;
  2650. .part6Left_content_item {
  2651. width: 100%;
  2652. height: auto;
  2653. overflow: hidden;
  2654. padding: 0px 0 22px;
  2655. margin-bottom: 20px;
  2656. border-bottom: 1px solid #ccc;
  2657. a {
  2658. img {
  2659. width: 100%;
  2660. height: 260px;
  2661. overflow: hidden;
  2662. margin-right: 22px;
  2663. }
  2664. .part6LeftContentText {
  2665. width: 100%;
  2666. height: auto;
  2667. overflow: hidden;
  2668. .title {
  2669. display: block;
  2670. width: 100%;
  2671. line-height: 60px;
  2672. overflow: hidden;
  2673. font-size: 32px;
  2674. color: #333;
  2675. font-weight: bold;
  2676. }
  2677. .desc {
  2678. height: 120px;
  2679. line-height: 40px;
  2680. font-size: 28px;
  2681. color: #666;
  2682. }
  2683. }
  2684. }
  2685. }
  2686. }
  2687. }
  2688. .part6Right {
  2689. width: 100%;
  2690. .part6_right_title {
  2691. width: 100%;
  2692. height: 80px;
  2693. overflow: hidden;
  2694. border-bottom: solid 2px #b41c2a;
  2695. margin-bottom: 20px;
  2696. a {
  2697. display: block;
  2698. width: 214px;
  2699. height: 80px;
  2700. line-height: 80px;
  2701. background: #b41c2a;
  2702. text-align: center;
  2703. color: #fff;
  2704. font-size: 40px;
  2705. font-weight: bold;
  2706. border-top-left-radius: 20px;
  2707. border-top-right-radius: 20px;
  2708. }
  2709. }
  2710. .part6_right_content {
  2711. .part6Right_content_item {
  2712. width: 100%;
  2713. height: auto;
  2714. overflow: hidden;
  2715. padding: 20px 0;
  2716. border-bottom: 1px dashed #ccc;
  2717. box-sizing: border-box;
  2718. a {
  2719. .part6contentTitle {
  2720. display: block;
  2721. width: 100%;
  2722. height: 72px;
  2723. line-height: 72px;
  2724. font-size: 32px;
  2725. color: #333;
  2726. font-weight: bold;
  2727. overflow: hidden;
  2728. }
  2729. .part6contentDesc {
  2730. display: block;
  2731. width: 100%;
  2732. max-height: 132px;
  2733. line-height: 44px;
  2734. overflow: hidden;
  2735. font-size: 28px;
  2736. color: #666;
  2737. }
  2738. .part6textdetail {
  2739. float: right;
  2740. color: #ff0024;
  2741. font-size: 28px;
  2742. }
  2743. }
  2744. }
  2745. }
  2746. }
  2747. }
  2748. }
  2749. .dot1 {
  2750. white-space: nowrap;
  2751. overflow: hidden;
  2752. text-overflow: ellipsis;
  2753. }
  2754. .dot2 {
  2755. display: -webkit-box;
  2756. -webkit-box-orient: vertical;
  2757. -webkit-line-clamp: 2;
  2758. overflow: hidden;
  2759. text-overflow: ellipsis;
  2760. word-break: break-all;
  2761. }
  2762. .dot3 {
  2763. display: -webkit-box;
  2764. -webkit-box-orient: vertical;
  2765. -webkit-line-clamp: 3;
  2766. overflow: hidden;
  2767. text-overflow: ellipsis;
  2768. word-break: break-all;
  2769. }
  2770. .dot4 {
  2771. display: -webkit-box;
  2772. -webkit-box-orient: vertical;
  2773. -webkit-line-clamp: 4;
  2774. overflow: hidden;
  2775. text-overflow: ellipsis;
  2776. word-break: break-all;
  2777. }