detail.less 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  1. @media screen and (min-width: 1401px) {
  2. //导航条
  3. .breadcrumb {
  4. width: 100%;
  5. height: 30PX;
  6. line-height: 30PX;
  7. margin-top: 20PX;
  8. margin-bottom: 10PX;
  9. .inner {
  10. width: 1400PX;
  11. margin: 0 auto;
  12. border-bottom: 1PX dashed #ccc;
  13. color: #000;
  14. font-size: 16PX;
  15. .location {
  16. margin-right: 20PX;
  17. width: 100PX;
  18. height: 22PX;
  19. font-family: Microsoft YaHei, Microsoft YaHei;
  20. font-weight: 400;
  21. font-size: 16PX;
  22. color: #000;
  23. line-height: 23PX;
  24. text-align: left;
  25. font-style: normal;
  26. text-transform: none;
  27. }
  28. }
  29. :deep(.el-breadcrumb__separator) {
  30. color: #000;
  31. font-weight: bold;
  32. margin: 0 9PX;
  33. }
  34. :deep(.el-breadcrumb) {
  35. display: inline-block;
  36. vertical-align: -4PX;
  37. }
  38. :deep(.el-breadcrumb__inner a),
  39. :deep(.el-breadcrumb__inner.is-link) {
  40. color: #000;
  41. font-weight: 400;
  42. text-decoration: none;
  43. transition: var(--el-transition-color);
  44. }
  45. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  46. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  47. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  48. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  49. color: #000;
  50. }
  51. span {
  52. font-weight: 400;
  53. font-size: 16PX;
  54. color: #000;
  55. line-height: 23PX;
  56. text-align: left;
  57. font-style: normal;
  58. text-transform: none;
  59. }
  60. }
  61. // 资讯列表
  62. .newsDetail {
  63. width: 100%;
  64. margin-bottom: 10PX;
  65. .inner {
  66. width: 1400PX;
  67. overflow: hidden;
  68. margin: 0 auto;
  69. display: flex;
  70. justify-content: space-between;
  71. .innerLeft {
  72. width: 68%;
  73. margin-right: 26PX;
  74. .LeftTop {
  75. h1 {
  76. width: 100%;
  77. height: auto;
  78. overflow: hidden;
  79. padding: 20PX 0;
  80. text-align: center;
  81. font-size: 24PX;
  82. color: #333;
  83. font-weight: bold;
  84. box-sizing: border-box;
  85. }
  86. p {
  87. width: 100%;
  88. height: auto;
  89. overflow: hidden;
  90. text-align: center;
  91. border-bottom: 1PX dashed #ccc;
  92. line-height: 30PX;
  93. color: #666;
  94. font-size: 16PX;
  95. span {
  96. padding: 0 10PX;
  97. font-size: 14PX;
  98. color: #666;
  99. }
  100. }
  101. >img {
  102. width: 680PX;
  103. height: 382PX;
  104. padding: 50PX 0PX 60PX 55PX;
  105. }
  106. }
  107. .leftBottom {
  108. margin-top: 20PX;
  109. font-size: 15PX;
  110. line-height: 24PX;
  111. margin-bottom: 30PX;
  112. word-break: break-all;
  113. color: #333;
  114. ul>li img {
  115. width: 100%;
  116. height: 382PX;
  117. }
  118. img {
  119. width: 100%;
  120. height: 382PX;
  121. }
  122. p.tinymce-material {
  123. img {
  124. width: 100%;
  125. }
  126. }
  127. >h3,
  128. >p {
  129. text-indent: 2em;
  130. width: 100%;
  131. font-family: Microsoft YaHei, Microsoft YaHei;
  132. font-size: 20PX;
  133. color: #333333;
  134. line-height: 38PX;
  135. padding-bottom: 30PX;
  136. img {
  137. width: 100%;
  138. }
  139. }
  140. >h3 {
  141. font-weight: 600PX;
  142. }
  143. >p {
  144. font-weight: 400;
  145. }
  146. }
  147. .disclaimer {
  148. width: 100%;
  149. overflow: hidden;
  150. border-top: 1PX solid #e6e6e6;
  151. padding: 30PX 0PX;
  152. color: #999999;
  153. font-size: 17PX;
  154. p {
  155. width: 100%;
  156. line-height: 30PX;
  157. }
  158. }
  159. .recommendRead {
  160. width: 100%;
  161. margin: 30PX 0PX;
  162. .recommendReadTitle {
  163. font-weight: bold;
  164. font-size: 22PX;
  165. color: #49A769;
  166. height: 42PX;
  167. line-height: 35PX;
  168. letter-spacing: 1PX;
  169. text-align: left;
  170. font-style: normal;
  171. text-transform: none;
  172. border-bottom: 1PX solid #D9D9D9;
  173. .read_title {
  174. display: inline-block;
  175. width: 94PX;
  176. height: 40PX;
  177. border-bottom: 3PX solid #49A769;
  178. }
  179. }
  180. .recommendReadList {
  181. min-height: 155PX;
  182. margin-top: 30PX;
  183. padding-bottom: 10PX;
  184. font-size: 20PX;
  185. border-bottom: 1PX solid #D9D9D9;
  186. .recommendReadListTitle {
  187. margin-top: 25PX;
  188. a {
  189. color: #333333;
  190. }
  191. }
  192. .recommendReadListTitle:nth-child(1)::after {
  193. content: "热";
  194. margin-left: 13PX;
  195. background: #FF8A37;
  196. color: #fff;
  197. font-size: 14PX;
  198. padding: 0PX 2PX;
  199. }
  200. .recommendReadListTitle:hover a {
  201. color: #49A769;
  202. }
  203. }
  204. }
  205. }
  206. .innerRight {
  207. width: 30%;
  208. }
  209. }
  210. }
  211. .leftBottom::v-deep p img,
  212. .leftBottom::v-deep img,
  213. .leftBottom::v-deep video {
  214. max-width: 700PX;
  215. }
  216. .leftBottom::v-deep h1,
  217. .leftBottom::v-deep h2,
  218. .leftBottom::v-deep h3,
  219. .leftBottom::v-deep h4,
  220. .leftBottom::v-deep h5,
  221. .leftBottom::v-deep h6 {
  222. font-size: 20PX;
  223. font-weight: 500;
  224. }
  225. //投票
  226. .index_3_box_vote {
  227. .voteTitle {
  228. font-size: 20PX;
  229. height: 40PX;
  230. line-height: 40PX;
  231. color: #333333;
  232. padding-left: 20PX;
  233. width: 100%;
  234. border-bottom: 1PX solid #E7E7E7;
  235. border-top: 1PX solid #139602;
  236. box-sizing: border-box;
  237. }
  238. width:100%;
  239. box-sizing:border-box;
  240. border:solid 1PX #FBFBFB;
  241. background: #FBFBFB;
  242. .inquire {
  243. height: 394PX;
  244. margin-top: 20PX;
  245. border-radius: 6PX 6PX 6PX 6PX;
  246. padding: 4PX 40PX 4PX 6PX;
  247. box-sizing: border-box;
  248. p {
  249. font-weight: bold;
  250. height: 69PX;
  251. font-family: PingFang SC, PingFang SC;
  252. font-size: 20PX;
  253. color: #333333;
  254. line-height: 21PX;
  255. text-align: left;
  256. font-style: normal;
  257. text-transform: none;
  258. padding: 12PX 20PX 0 32PX;
  259. }
  260. .radioBox {
  261. height: 250PX;
  262. padding-left: 30PX;
  263. overflow-y: auto;
  264. box-sizing: border-box;
  265. padding-bottom: 20PX;
  266. }
  267. .radio {
  268. /deep/.el-radio {
  269. --el-radio-input-border-color-hover: #27881a;
  270. }
  271. /deep/.el-radio-group {
  272. align-items: center;
  273. display: inline-flex;
  274. flex-wrap: wrap;
  275. font-size: 0;
  276. //padding-left: 35PX;
  277. }
  278. /deep/.el-radio.el-radio--large {
  279. width: 100%;
  280. height: 29PX;
  281. margin-bottom: 15PX;
  282. }
  283. /deep/.el-radio.el-radio--large .el-radio__label {
  284. font-family: PingFang SC, PingFang SC;
  285. font-weight: 400;
  286. font-size: 16PX;
  287. color: #333333;
  288. white-space: nowrap;
  289. overflow: hidden;
  290. text-overflow: ellipsis;
  291. width: 300PX;
  292. }
  293. /deep/.el-radio.el-radio--large .el-radio__inner {
  294. height: 16PX;
  295. width: 16PX;
  296. }
  297. /deep/.el-radio__input.is-checked+.el-radio__label {
  298. color: #27881a;
  299. }
  300. /deep/.el-radio__input.is-checked .el-radio__inner {
  301. background: #33b023;
  302. border-color: #27881a;
  303. }
  304. }
  305. .checkInputBox {
  306. /deep/.el-checkbox {
  307. --el-radio-input-border-color-hover: #27881a;
  308. }
  309. /deep/.el-checkbox-group {
  310. align-items: center;
  311. display: inline-flex;
  312. flex-wrap: wrap;
  313. font-size: 0;
  314. //padding-left: 35PX;
  315. }
  316. /deep/.el-checkbox.el-checkbox--large {
  317. width: 330PX;
  318. height: 29PX;
  319. margin-bottom: 15PX;
  320. }
  321. /deep/.el-checkbox.el-checkbox--large .el-checkbox__label {
  322. font-family: PingFang SC, PingFang SC;
  323. font-weight: 400;
  324. font-size: 16PX;
  325. color: #333333;
  326. white-space: nowrap;
  327. overflow: hidden;
  328. text-overflow: ellipsis;
  329. width: 300PX;
  330. }
  331. /deep/.el-checkbox.el-checkbox--large .el-checkbox__inner {
  332. height: 16PX;
  333. width: 16PX;
  334. }
  335. /deep/.el-checkbox__input.is-checked+.el-checkbox__label {
  336. color: #27881a;
  337. }
  338. /deep/.el-checkbox__input.is-checked .el-checkbox__inner {
  339. background: #33b023;
  340. border-color: #27881a;
  341. }
  342. }
  343. .btn {
  344. padding-left: 30PX;
  345. button {
  346. width: 78PX;
  347. height: 37PX;
  348. line-height: 37PX;
  349. border-radius: 6PX;
  350. border: none;
  351. font-family: PingFang SC, PingFang SC;
  352. font-weight: 400;
  353. font-size: 16PX;
  354. color: #999999;
  355. }
  356. .voting {
  357. background-color: #49A769;
  358. color: #fff;
  359. margin-right: 44PX;
  360. cursor: pointer;
  361. }
  362. .look {
  363. cursor: pointer;
  364. }
  365. }
  366. }
  367. .inquireData {
  368. .inquireDataItem {
  369. width: 100%;
  370. height: 38PX;
  371. display: flex;
  372. align-items: center;
  373. justify-content: space-between;
  374. background: #F3F3F3;
  375. border: 1PX solid #D2D2D2;
  376. margin-bottom: 10PX;
  377. border-radius: 6PX;
  378. padding: 0 15PX;
  379. box-sizing: border-box;
  380. color: #999999;
  381. .inquireDataItemTitle {
  382. width: 290PX;
  383. height: 38PX;
  384. font-size: 16PX;
  385. line-height: 38PX;
  386. white-space: nowrap;
  387. overflow: hidden;
  388. text-overflow: ellipsis;
  389. }
  390. .inquireDataItemNum {
  391. font-size: 16PX;
  392. }
  393. }
  394. .active {
  395. color: #49A769;
  396. background: #dff7e8;
  397. border: 1PX solid #49A769;
  398. }
  399. }
  400. }
  401. //放大图片
  402. .preview-modal {
  403. position: fixed;
  404. top: 0;
  405. left: 0;
  406. width: 100%;
  407. height: 100%;
  408. background: rgba(0, 0, 0, 0.8);
  409. display: flex;
  410. justify-content: center;
  411. align-items: center;
  412. z-index: 1000;
  413. }
  414. .preview-modal img {
  415. max-width: 100%;
  416. max-height: 100%;
  417. cursor: pointer;
  418. /* 关闭按钮样式 */
  419. }
  420. }
  421. @media screen and (min-width: 801px) and (max-width: 1400px) {
  422. //导航条
  423. .breadcrumb {
  424. width: 100%;
  425. height: 30PX;
  426. line-height: 30PX;
  427. margin-top: 20PX;
  428. margin-bottom: 10PX;
  429. .inner {
  430. width: 100%;
  431. margin: 0 auto;
  432. border-bottom: 1PX dashed #ccc;
  433. color: #000;
  434. font-size: 16PX;
  435. padding: 0 15PX;
  436. box-sizing: border-box;
  437. .location {
  438. margin-right: 20PX;
  439. width: 100PX;
  440. height: 22PX;
  441. font-family: Microsoft YaHei, Microsoft YaHei;
  442. font-weight: 400;
  443. font-size: 16PX;
  444. color: #000;
  445. line-height: 23PX;
  446. text-align: left;
  447. font-style: normal;
  448. text-transform: none;
  449. }
  450. }
  451. :deep(.el-breadcrumb__separator) {
  452. color: #000;
  453. font-weight: bold;
  454. margin: 0 9PX;
  455. }
  456. :deep(.el-breadcrumb) {
  457. display: inline-block;
  458. vertical-align: -4PX;
  459. }
  460. :deep(.el-breadcrumb__inner a),
  461. :deep(.el-breadcrumb__inner.is-link) {
  462. color: #000;
  463. font-weight: 400;
  464. text-decoration: none;
  465. transition: var(--el-transition-color);
  466. }
  467. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  468. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  469. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  470. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  471. color: #000;
  472. }
  473. span {
  474. font-weight: 400;
  475. font-size: 16PX;
  476. color: #000;
  477. line-height: 23PX;
  478. text-align: left;
  479. font-style: normal;
  480. text-transform: none;
  481. }
  482. }
  483. // 资讯列表
  484. .newsDetail {
  485. width: 100%;
  486. margin-bottom: 10px;
  487. .inner {
  488. width: 100%;
  489. margin: 0 auto;
  490. overflow: hidden;
  491. display: flex;
  492. justify-content: space-between;
  493. .innerLeft {
  494. width: 68%;
  495. padding: 0 15PX;
  496. box-sizing: border-box;
  497. .LeftTop {
  498. h1 {
  499. width: 100%;
  500. height: auto;
  501. overflow: hidden;
  502. padding: 20PX 0;
  503. text-align: center;
  504. font-size: 24PX;
  505. color: #333;
  506. font-weight: bold;
  507. }
  508. p {
  509. width: 100%;
  510. height: auto;
  511. overflow: hidden;
  512. text-align: center;
  513. border-bottom: 1PX dashed #ccc;
  514. line-height: 30PX;
  515. color: #666;
  516. font-size: 14PX;
  517. span {
  518. padding: 0 10PX;
  519. font-size: 14PX;
  520. color: #666;
  521. }
  522. }
  523. >img {
  524. width: 680PX;
  525. height: 382PX;
  526. padding: 50PX 0PX 60PX 55PX;
  527. }
  528. }
  529. .leftBottom {
  530. margin-top: 20px;
  531. font-size: 15px;
  532. line-height: 24px;
  533. margin-bottom: 30px;
  534. word-break: break-all;
  535. color: #333;
  536. ul>li img {
  537. width: 100%;
  538. height: 382px;
  539. }
  540. img {
  541. width: 100%;
  542. height: 382px;
  543. }
  544. p.tinymce-material {
  545. img {
  546. width: 100%;
  547. }
  548. }
  549. >h3,
  550. >p {
  551. text-indent: 2em;
  552. width: 100%;
  553. font-family: Microsoft YaHei, Microsoft YaHei;
  554. font-size: 20px;
  555. color: #333333;
  556. line-height: 38px;
  557. padding-bottom: 30px;
  558. img {
  559. width: 100%;
  560. }
  561. }
  562. >h3 {
  563. font-weight: 600px;
  564. }
  565. >p {
  566. font-weight: 400;
  567. }
  568. }
  569. // 免责声明
  570. .disclaimer {
  571. width: 100%;
  572. overflow: hidden;
  573. border-top: 1PX solid #e6e6e6;
  574. padding: 30PX 0PX;
  575. color: #999999;
  576. font-size: 17PX;
  577. p {
  578. width: 100%;
  579. line-height: 30PX;
  580. }
  581. }
  582. .recommendRead {
  583. width: 100%;
  584. margin: 30PX 0PX;
  585. .recommendReadTitle {
  586. font-weight: bold;
  587. font-size: 22PX;
  588. color: #49A769;
  589. height: 42PX;
  590. line-height: 35PX;
  591. letter-spacing: 1PX;
  592. text-align: left;
  593. font-style: normal;
  594. text-transform: none;
  595. border-bottom: 1PX solid #D9D9D9;
  596. .read_title {
  597. display: inline-block;
  598. width: 94PX;
  599. height: 40PX;
  600. border-bottom: 3PX solid #49A769;
  601. }
  602. }
  603. .recommendReadList {
  604. min-height: 155PX;
  605. margin-top: 30PX;
  606. padding-bottom: 10PX;
  607. font-size: 20PX;
  608. border-bottom: 1PX solid #D9D9D9;
  609. .recommendReadListTitle {
  610. margin-top: 25PX;
  611. a {
  612. color: #333333;
  613. }
  614. }
  615. .recommendReadListTitle:nth-child(1)::after {
  616. content: "热";
  617. margin-left: 13PX;
  618. background: #FF8A37;
  619. color: #fff;
  620. font-size: 14PX;
  621. padding: 0px 2PX;
  622. }
  623. .recommendReadListTitle:hover a {
  624. color: #49A769;
  625. }
  626. }
  627. }
  628. }
  629. .innerRight {
  630. width: 30%;
  631. }
  632. }
  633. }
  634. .leftBottom::v-deep p img,
  635. .leftBottom::v-deep img,
  636. .leftBottom::v-deep video {
  637. max-width: 700px;
  638. }
  639. .leftBottom::v-deep h1,
  640. .leftBottom::v-deep h2,
  641. .leftBottom::v-deep h3,
  642. .leftBottom::v-deep h4,
  643. .leftBottom::v-deep h5,
  644. .leftBottom::v-deep h6 {
  645. font-size: 20px;
  646. font-weight: 500;
  647. }
  648. //投票
  649. .index_3_box_vote {
  650. .voteTitle {
  651. font-size: 20px;
  652. height: 40px;
  653. line-height: 40px;
  654. color: #333333;
  655. padding-left: 20px;
  656. width: 100%;
  657. border-bottom: 1px solid #E7E7E7;
  658. border-top: 1px solid #139602;
  659. box-sizing: border-box;
  660. }
  661. width:100%;
  662. box-sizing:border-box;
  663. border:solid 1px #FBFBFB;
  664. background: #FBFBFB;
  665. .inquire {
  666. height: 394px;
  667. margin-top: 20px;
  668. border-radius: 6px 6px 6px 6px;
  669. padding: 4px 40px 4px 6px;
  670. box-sizing: border-box;
  671. p {
  672. font-weight: bold;
  673. height: 69px;
  674. font-family: PingFang SC, PingFang SC;
  675. font-size: 20px;
  676. color: #333333;
  677. line-height: 21px;
  678. text-align: left;
  679. font-style: normal;
  680. text-transform: none;
  681. padding: 12px 20px 0 32px;
  682. }
  683. .radioBox {
  684. height: 250px;
  685. padding-left: 30px;
  686. overflow-y: auto;
  687. box-sizing: border-box;
  688. padding-bottom: 20px;
  689. }
  690. .radio {
  691. /deep/.el-radio {
  692. --el-radio-input-border-color-hover: #27881a;
  693. }
  694. /deep/.el-radio-group {
  695. align-items: center;
  696. display: inline-flex;
  697. flex-wrap: wrap;
  698. font-size: 0;
  699. //padding-left: 35px;
  700. }
  701. /deep/.el-radio.el-radio--large {
  702. width: 100%;
  703. height: 29px;
  704. margin-bottom: 15px;
  705. }
  706. /deep/.el-radio.el-radio--large .el-radio__label {
  707. font-family: PingFang SC, PingFang SC;
  708. font-weight: 400;
  709. font-size: 16px;
  710. color: #333333;
  711. white-space: nowrap;
  712. overflow: hidden;
  713. text-overflow: ellipsis;
  714. width: 300px;
  715. }
  716. /deep/.el-radio.el-radio--large .el-radio__inner {
  717. height: 16px;
  718. width: 16px;
  719. }
  720. /deep/.el-radio__input.is-checked+.el-radio__label {
  721. color: #27881a;
  722. }
  723. /deep/.el-radio__input.is-checked .el-radio__inner {
  724. background: #33b023;
  725. border-color: #27881a;
  726. }
  727. }
  728. .checkInputBox {
  729. /deep/.el-checkbox {
  730. --el-radio-input-border-color-hover: #27881a;
  731. }
  732. /deep/.el-checkbox-group {
  733. align-items: center;
  734. display: inline-flex;
  735. flex-wrap: wrap;
  736. font-size: 0;
  737. //padding-left: 35px;
  738. }
  739. /deep/.el-checkbox.el-checkbox--large {
  740. width: 330px;
  741. height: 29px;
  742. margin-bottom: 15px;
  743. }
  744. /deep/.el-checkbox.el-checkbox--large .el-checkbox__label {
  745. font-family: PingFang SC, PingFang SC;
  746. font-weight: 400;
  747. font-size: 16px;
  748. color: #333333;
  749. white-space: nowrap;
  750. overflow: hidden;
  751. text-overflow: ellipsis;
  752. width: 300px;
  753. }
  754. /deep/.el-checkbox.el-checkbox--large .el-checkbox__inner {
  755. height: 16px;
  756. width: 16px;
  757. }
  758. /deep/.el-checkbox__input.is-checked+.el-checkbox__label {
  759. color: #27881a;
  760. }
  761. /deep/.el-checkbox__input.is-checked .el-checkbox__inner {
  762. background: #33b023;
  763. border-color: #27881a;
  764. }
  765. }
  766. .btn {
  767. padding-left: 30px;
  768. button {
  769. width: 78px;
  770. height: 37px;
  771. line-height: 37px;
  772. border-radius: 6px;
  773. border: none;
  774. font-family: PingFang SC, PingFang SC;
  775. font-weight: 400;
  776. font-size: 16px;
  777. color: #999999;
  778. }
  779. .voting {
  780. background-color: #49A769;
  781. color: #fff;
  782. margin-right: 44px;
  783. cursor: pointer;
  784. }
  785. .look {
  786. cursor: pointer;
  787. }
  788. }
  789. }
  790. .inquireData {
  791. .inquireDataItem {
  792. width: 100%;
  793. height: 38px;
  794. display: flex;
  795. align-items: center;
  796. justify-content: space-between;
  797. background: #F3F3F3;
  798. border: 1px solid #D2D2D2;
  799. margin-bottom: 10px;
  800. border-radius: 6px;
  801. padding: 0 15px;
  802. box-sizing: border-box;
  803. color: #999999;
  804. .inquireDataItemTitle {
  805. width: 290px;
  806. height: 38px;
  807. font-size: 16px;
  808. line-height: 38px;
  809. white-space: nowrap;
  810. overflow: hidden;
  811. text-overflow: ellipsis;
  812. }
  813. .inquireDataItemNum {
  814. font-size: 16px;
  815. }
  816. }
  817. .active {
  818. color: #49A769;
  819. background: #dff7e8;
  820. border: 1px solid #49A769;
  821. }
  822. }
  823. }
  824. //放大图片
  825. .preview-modal {
  826. position: fixed;
  827. top: 0;
  828. left: 0;
  829. width: 100%;
  830. height: 100%;
  831. background: rgba(0, 0, 0, 0.8);
  832. display: flex;
  833. justify-content: center;
  834. align-items: center;
  835. z-index: 1000;
  836. }
  837. .preview-modal img {
  838. max-width: 100%;
  839. max-height: 100%;
  840. cursor: pointer;
  841. /* 关闭按钮样式 */
  842. }
  843. }
  844. @media screen and (max-width: 800px) {
  845. //导航条
  846. .breadcrumb {
  847. width: 100%;
  848. height: 60px;
  849. line-height: 60px;
  850. margin-top: 40px;
  851. margin-bottom: 20px;
  852. .inner {
  853. width: 100%;
  854. border-bottom: 2px dashed #ccc;
  855. color: #000;
  856. font-size: 32px;
  857. .location {
  858. margin-right: 40px;
  859. width: 200px;
  860. height: 44px;
  861. font-family: Microsoft YaHei, Microsoft YaHei;
  862. font-weight: 400;
  863. font-size: 32px;
  864. color: #000;
  865. line-height: 46px;
  866. text-align: left;
  867. font-style: normal;
  868. text-transform: none;
  869. }
  870. }
  871. :deep(.el-breadcrumb__separator) {
  872. color: #000;
  873. font-weight: bold;
  874. margin: 0 18px;
  875. }
  876. :deep(.el-breadcrumb) {
  877. display: inline-block;
  878. vertical-align: -10px;
  879. }
  880. :deep(.el-breadcrumb__inner a),
  881. :deep(.el-breadcrumb__inner.is-link) {
  882. color: #000;
  883. font-weight: 400;
  884. text-decoration: none;
  885. transition: var(--el-transition-color);
  886. }
  887. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner),
  888. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a),
  889. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover),
  890. :deep(.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover) {
  891. color: #000;
  892. }
  893. .phone_breadcrumb_text {
  894. display: none;
  895. }
  896. span {
  897. font-weight: 400;
  898. font-size: 32px;
  899. color: #000;
  900. line-height: 46px;
  901. text-align: left;
  902. font-style: normal;
  903. text-transform: none;
  904. }
  905. }
  906. // 资讯列表
  907. .newsDetail {
  908. width: 100%;
  909. margin-bottom: 20px;
  910. .inner {
  911. width: 100%;
  912. padding: 0 20px;
  913. box-sizing: border-box;
  914. overflow: hidden;
  915. .innerLeft {
  916. width: 100%;
  917. .LeftTop {
  918. h1 {
  919. width: 100%;
  920. height: auto;
  921. overflow: hidden;
  922. padding: 40px 0;
  923. text-align: center;
  924. font-size: 48px;
  925. color: #333;
  926. font-weight: bold;
  927. }
  928. p {
  929. width: 100%;
  930. height: auto;
  931. overflow: hidden;
  932. text-align: center;
  933. border-bottom: 2px dashed #ccc;
  934. line-height: 60px;
  935. color: #666;
  936. font-size: 28px;
  937. span {
  938. padding: 0 20px;
  939. font-size: 28px;
  940. color: #666;
  941. }
  942. }
  943. >img {
  944. width: 680px;
  945. height: 382px;
  946. padding: 50px 0px 60px 55px;
  947. }
  948. }
  949. .leftBottom {
  950. margin-top: 40px;
  951. font-size: 30px;
  952. line-height: 48px;
  953. margin-bottom: 60px;
  954. word-break: break-all;
  955. color: #333;
  956. ul>li img {
  957. width: 100%;
  958. height: 382px;
  959. }
  960. img {
  961. width: 100%;
  962. height: 382px;
  963. }
  964. p.tinymce-material {
  965. img {
  966. width: 100%;
  967. }
  968. }
  969. >h3,
  970. >p {
  971. text-indent: 2em;
  972. width: 100%;
  973. font-family: Microsoft YaHei, Microsoft YaHei;
  974. font-size: 40px;
  975. color: #333333;
  976. line-height: 76px;
  977. padding-bottom: 60px;
  978. img {
  979. width: 100%;
  980. }
  981. }
  982. >h3 {
  983. font-weight: 600;
  984. }
  985. >p {
  986. font-weight: 400;
  987. }
  988. }
  989. .disclaimer {
  990. width: 100%;
  991. overflow: hidden;
  992. border-top: 1px solid #e6e6e6;
  993. padding: 30px 0px;
  994. color: #999999;
  995. font-size: 34px;
  996. p {
  997. width: 100%;
  998. line-height: 60px;
  999. }
  1000. }
  1001. .recommendRead {
  1002. width: 100%;
  1003. margin: 30px 0px;
  1004. .recommendReadTitle {
  1005. font-weight: bold;
  1006. font-size: 44px;
  1007. color: #49A769;
  1008. height: 80px;
  1009. line-height: 70px;
  1010. letter-spacing: 1px;
  1011. text-align: left;
  1012. font-style: normal;
  1013. text-transform: none;
  1014. border-bottom: 1px solid #D9D9D9;
  1015. .read_title {
  1016. display: inline-block;
  1017. width: 94px;
  1018. height: 40px;
  1019. border-bottom: 3px solid #49A769;
  1020. }
  1021. }
  1022. .recommendReadList {
  1023. min-height: 155px;
  1024. margin-top: 30px;
  1025. padding-bottom: 10px;
  1026. font-size: 20px;
  1027. border-bottom: 1px solid #D9D9D9;
  1028. .recommendReadListTitle {
  1029. margin-top: 25px;
  1030. a {
  1031. color: #333333;
  1032. }
  1033. }
  1034. .recommendReadListTitle:nth-child(1)::after {
  1035. content: "热";
  1036. margin-left: 13px;
  1037. background: #FF8A37;
  1038. color: #fff;
  1039. font-size: 14px;
  1040. padding: 0px 2px;
  1041. }
  1042. .recommendReadListTitle:hover a {
  1043. color: #49A769;
  1044. }
  1045. }
  1046. }
  1047. }
  1048. .innerRight {
  1049. width: 100%;
  1050. }
  1051. }
  1052. }
  1053. .leftBottom::v-deep p img,
  1054. .leftBottom::v-deep img,
  1055. .leftBottom::v-deep video {
  1056. max-width: 700px;
  1057. }
  1058. .leftBottom::v-deep h1,
  1059. .leftBottom::v-deep h2,
  1060. .leftBottom::v-deep h3,
  1061. .leftBottom::v-deep h4,
  1062. .leftBottom::v-deep h5,
  1063. .leftBottom::v-deep h6 {
  1064. font-size: 20px;
  1065. font-weight: 500;
  1066. }
  1067. //投票
  1068. .index_3_box_vote {
  1069. .voteTitle {
  1070. font-size: 20px;
  1071. height: 40px;
  1072. line-height: 40px;
  1073. color: #333333;
  1074. padding-left: 20px;
  1075. width: 100%;
  1076. border-bottom: 1px solid #E7E7E7;
  1077. border-top: 1px solid #139602;
  1078. box-sizing: border-box;
  1079. }
  1080. width:100%;
  1081. box-sizing:border-box;
  1082. border:solid 1px #FBFBFB;
  1083. background: #FBFBFB;
  1084. .inquire {
  1085. height: 394px;
  1086. margin-top: 20px;
  1087. border-radius: 6px 6px 6px 6px;
  1088. padding: 4px 40px 4px 6px;
  1089. box-sizing: border-box;
  1090. p {
  1091. font-weight: bold;
  1092. height: 69px;
  1093. font-family: PingFang SC, PingFang SC;
  1094. font-size: 20px;
  1095. color: #333333;
  1096. line-height: 21px;
  1097. text-align: left;
  1098. font-style: normal;
  1099. text-transform: none;
  1100. padding: 12px 20px 0 32px;
  1101. }
  1102. .radioBox {
  1103. height: 250px;
  1104. padding-left: 30px;
  1105. overflow-y: auto;
  1106. box-sizing: border-box;
  1107. padding-bottom: 20px;
  1108. }
  1109. .radio {
  1110. /deep/.el-radio {
  1111. --el-radio-input-border-color-hover: #27881a;
  1112. }
  1113. /deep/.el-radio-group {
  1114. align-items: center;
  1115. display: inline-flex;
  1116. flex-wrap: wrap;
  1117. font-size: 0;
  1118. //padding-left: 35px;
  1119. }
  1120. /deep/.el-radio.el-radio--large {
  1121. width: 100%;
  1122. height: 29px;
  1123. margin-bottom: 15px;
  1124. }
  1125. /deep/.el-radio.el-radio--large .el-radio__label {
  1126. font-family: PingFang SC, PingFang SC;
  1127. font-weight: 400;
  1128. font-size: 16px;
  1129. color: #333333;
  1130. white-space: nowrap;
  1131. overflow: hidden;
  1132. text-overflow: ellipsis;
  1133. width: 300px;
  1134. }
  1135. /deep/.el-radio.el-radio--large .el-radio__inner {
  1136. height: 16px;
  1137. width: 16px;
  1138. }
  1139. /deep/.el-radio__input.is-checked+.el-radio__label {
  1140. color: #27881a;
  1141. }
  1142. /deep/.el-radio__input.is-checked .el-radio__inner {
  1143. background: #33b023;
  1144. border-color: #27881a;
  1145. }
  1146. }
  1147. .checkInputBox {
  1148. /deep/.el-checkbox {
  1149. --el-radio-input-border-color-hover: #27881a;
  1150. }
  1151. /deep/.el-checkbox-group {
  1152. align-items: center;
  1153. display: inline-flex;
  1154. flex-wrap: wrap;
  1155. font-size: 0;
  1156. //padding-left: 35px;
  1157. }
  1158. /deep/.el-checkbox.el-checkbox--large {
  1159. width: 330px;
  1160. height: 29px;
  1161. margin-bottom: 15px;
  1162. }
  1163. /deep/.el-checkbox.el-checkbox--large .el-checkbox__label {
  1164. font-family: PingFang SC, PingFang SC;
  1165. font-weight: 400;
  1166. font-size: 16px;
  1167. color: #333333;
  1168. white-space: nowrap;
  1169. overflow: hidden;
  1170. text-overflow: ellipsis;
  1171. width: 300px;
  1172. }
  1173. /deep/.el-checkbox.el-checkbox--large .el-checkbox__inner {
  1174. height: 16px;
  1175. width: 16px;
  1176. }
  1177. /deep/.el-checkbox__input.is-checked+.el-checkbox__label {
  1178. color: #27881a;
  1179. }
  1180. /deep/.el-checkbox__input.is-checked .el-checkbox__inner {
  1181. background: #33b023;
  1182. border-color: #27881a;
  1183. }
  1184. }
  1185. .btn {
  1186. padding-left: 30px;
  1187. button {
  1188. width: 78px;
  1189. height: 37px;
  1190. line-height: 37px;
  1191. border-radius: 6px;
  1192. border: none;
  1193. font-family: PingFang SC, PingFang SC;
  1194. font-weight: 400;
  1195. font-size: 16px;
  1196. color: #999999;
  1197. }
  1198. .voting {
  1199. background-color: #49A769;
  1200. color: #fff;
  1201. margin-right: 44px;
  1202. cursor: pointer;
  1203. }
  1204. .look {
  1205. cursor: pointer;
  1206. }
  1207. }
  1208. }
  1209. .inquireData {
  1210. .inquireDataItem {
  1211. width: 100%;
  1212. height: 38px;
  1213. display: flex;
  1214. align-items: center;
  1215. justify-content: space-between;
  1216. background: #F3F3F3;
  1217. border: 1px solid #D2D2D2;
  1218. margin-bottom: 10px;
  1219. border-radius: 6px;
  1220. padding: 0 15px;
  1221. box-sizing: border-box;
  1222. color: #999999;
  1223. .inquireDataItemTitle {
  1224. width: 290px;
  1225. height: 38px;
  1226. font-size: 16px;
  1227. line-height: 38px;
  1228. white-space: nowrap;
  1229. overflow: hidden;
  1230. text-overflow: ellipsis;
  1231. }
  1232. .inquireDataItemNum {
  1233. font-size: 16px;
  1234. }
  1235. }
  1236. .active {
  1237. color: #49A769;
  1238. background: #dff7e8;
  1239. border: 1px solid #49A769;
  1240. }
  1241. }
  1242. }
  1243. //放大图片
  1244. .preview-modal {
  1245. position: fixed;
  1246. top: 0;
  1247. left: 0;
  1248. width: 100%;
  1249. height: 100%;
  1250. background: rgba(0, 0, 0, 0.8);
  1251. display: flex;
  1252. justify-content: center;
  1253. align-items: center;
  1254. z-index: 1000;
  1255. }
  1256. .preview-modal img {
  1257. max-width: 100%;
  1258. max-height: 100%;
  1259. cursor: pointer;
  1260. /* 关闭按钮样式 */
  1261. }
  1262. }
  1263. // @media screen and (min-width:801px) {
  1264. // .breadcrumb {
  1265. // margin-top: 20px;
  1266. // }
  1267. // }
  1268. // @media screen and (max-width:800px) {
  1269. // .newsDetail .inner .innerLeft .leftBottom *,
  1270. // .newsDetail .inner .innerLeft .leftBottom {
  1271. // line-height: 24px !important;
  1272. // font-size: 16px !important;
  1273. // background: rgba(0, 0, 0, 0) !important;
  1274. // }
  1275. // }