home.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443
  1. /* mac_* 样式 */
  2. /*延时加载*/
  3. .lazy {
  4. background: url('../images/home/loading.gif') center no-repeat
  5. }
  6. /*滑动显示*/
  7. .mac_drop_box {
  8. text-align: left;
  9. margin-top: 8px;
  10. padding: 10px 0;
  11. display: none;
  12. position: absolute;
  13. background: var(--theme-card-bg);
  14. z-index: 9999;
  15. box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.06);
  16. border-radius: 10px;
  17. }
  18. .mac_drop_box::after {
  19. content: '';
  20. width: 0px;
  21. height: 0px;
  22. border-color: transparent transparent var(--theme-card-bg) transparent;
  23. border-style: solid;
  24. border-width: 6px;
  25. position: absolute;
  26. top: -12px;
  27. border-radius: 3px;
  28. left: 0px;
  29. right: auto;
  30. }
  31. .mac_drop_box::before {
  32. content: '';
  33. width: 0px;
  34. height: 0px;
  35. border-color: transparent transparent var(--theme-card-bg) transparent;
  36. border-style: solid;
  37. border-width: 7px;
  38. position: absolute;
  39. top: -14px;
  40. border-radius: 3px;
  41. left: 40px;
  42. right: auto;
  43. }
  44. .mac_user_box::after {
  45. left: 171px;
  46. }
  47. .mac_user_box::before {
  48. left: 170px;
  49. }
  50. /*用户滑动*/
  51. .mac_user_box {
  52. width: 224px;
  53. margin-left: -20px;
  54. }
  55. .mac_user_box ul {}
  56. .mac_user_box ul li {
  57. margin: 3px 0;
  58. color: var(--theme-text);
  59. }
  60. .mac_user_box .login-item {
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. gap: 10px;
  65. padding: 10px;
  66. cursor: pointer;
  67. }
  68. .mac_user_box .user-item {
  69. display: flex;
  70. align-items: center;
  71. height: 40px;
  72. padding: 10px;
  73. gap: 10px;
  74. cursor: pointer;
  75. }
  76. .mac_user_box .user-item:hover {
  77. background: var(--theme-card-bg);
  78. color: var(--theme-text);
  79. }
  80. .mac_user_box .login-img {
  81. width: 30px;
  82. height: 30px;
  83. display: flex;
  84. justify-content: center;
  85. align-items: center;
  86. border-radius: 50%;
  87. }
  88. .mac_user_box .portrait-img {
  89. width: 30px;
  90. height: 30px;
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. border-radius: 50%;
  95. overflow: hidden;
  96. }
  97. .mac_user_box .portrait-img img {
  98. width: 100%;
  99. }
  100. .mac_user_box .login-img img {
  101. width: 26px;
  102. height: 26px;
  103. object-fit: cover;
  104. }
  105. .mac_user_box .login-btn {
  106. width: 60px;
  107. height: 26px;
  108. border-radius: 4px;
  109. border: 1px solid #40CC92;
  110. font-family: PingFangSC, PingFang SC;
  111. font-weight: 400;
  112. font-size: 14px;
  113. display: flex;
  114. justify-content: center;
  115. align-items: center;
  116. color: #40CC92;
  117. cursor: pointer;
  118. }
  119. /*历史记录*/
  120. .mac_history_box {
  121. width: 180px;
  122. margin-left: -20px;
  123. }
  124. .mac_history_box dt {
  125. text-align: right;
  126. padding-right: 15px;
  127. height: 24px;
  128. line-height: 24px;
  129. border-bottom: 1px solid #F9F9F9;
  130. cursor: pointer
  131. }
  132. .mac_history_box dt a {
  133. color: #000000
  134. }
  135. .mac_history_box dd {
  136. clear: both;
  137. margin: 0px;
  138. height: 24px;
  139. line-height: 24px;
  140. text-overflow: ellipsis;
  141. white-space: nowrap;
  142. width: 96%;
  143. padding: 2px;
  144. overflow: hidden;
  145. }
  146. .mac_history_box dd a {
  147. color: #990033;
  148. display: block;
  149. padding-left: 0px;
  150. }
  151. .mac_history_box dd.odd {
  152. background-color: #eee;
  153. }
  154. .mac_history_box dd a:hover {
  155. background-color: #acacac;
  156. color: white;
  157. }
  158. /*验证码*/
  159. .mac_verify_img {
  160. width: 70px;
  161. height: 30px;
  162. line-height: 30px;
  163. vertical-align: middle;
  164. }
  165. .mac_comment,
  166. .mac_digg {
  167. font-size: 12px;
  168. }
  169. .fl {
  170. float: left;
  171. _display: inline;
  172. }
  173. .fr {
  174. float: right;
  175. _display: inline;
  176. }
  177. .clearfix:after {
  178. visibility: hidden;
  179. display: block;
  180. font-size: 0;
  181. content: " ";
  182. clear: both;
  183. height: 0
  184. }
  185. .clearfix {
  186. *zoom: 1;
  187. }
  188. /*-Pages-*/
  189. .mac_pages {
  190. text-align: center;
  191. padding: 4px 0;
  192. overflow: hidden;
  193. }
  194. .mac_pages .page_tip {
  195. font-weight: bold;
  196. margin: 10px 0;
  197. color: #8D8D8D;
  198. font-size: 14px;
  199. font-weight: normal;
  200. }
  201. .mac_pages .page_link {
  202. display: inline-block;
  203. padding: 6px 14px;
  204. border: 1px solid var(--theme-border);
  205. background: var(--theme-card-bg);
  206. border-radius: 5px;
  207. margin-left: 4px;
  208. color: var(--theme-text);
  209. }
  210. .mac_pages .page_current {
  211. display: inline-block;
  212. padding: 6px 14px;
  213. background: var(--theme-primary);
  214. border: 1px solid var(--theme-primary);
  215. color: #fff;
  216. margin-left: 4px;
  217. }
  218. .mac_pages .page_input {
  219. margin-left: 4px;
  220. height: 35px;
  221. width: 50px;
  222. padding: 0px 10px;
  223. border: 1px solid var(--theme-border);
  224. background: var(--theme-card-bg);
  225. border-radius: 5px;
  226. color: var(--theme-text);
  227. box-sizing: border-box;
  228. }
  229. .mac_pages .page_btn {
  230. padding: 6px 14px;
  231. height: 35px;
  232. border-radius: 5px;
  233. background: var(--theme-card-bg);
  234. border: 1px solid var(--theme-border);
  235. color: var(--theme-text);
  236. }
  237. /*-/Page-*/
  238. /*文章顶踩图标*/
  239. .mac_art_digg {
  240. width: 400px;
  241. margin: 0px auto;
  242. clear: both;
  243. padding: 10px 0px;
  244. overflow: hidden
  245. }
  246. .mac_art_digg .digg_artup,
  247. .mac_art_digg .digg_artdown {
  248. background: url('../images/home/digg_art.gif') no-repeat -189px 0;
  249. border: 0;
  250. cursor: pointer;
  251. float: left;
  252. height: 48px;
  253. margin: 0;
  254. overflow: hidden;
  255. padding: 0;
  256. position: relative;
  257. width: 189px;
  258. }
  259. #digg_artup_num,
  260. #digg_artdown_num {
  261. color: #333333;
  262. font-family: arial;
  263. font-size: 10px;
  264. font-weight: 400;
  265. left: 70px;
  266. line-height: 12px;
  267. position: absolute;
  268. top: 30px;
  269. }
  270. .mac_art_digg .digg_bar {
  271. background-color: #FFFFFF;
  272. border: 1px solid #40A300;
  273. height: 5px;
  274. left: 9px;
  275. overflow: hidden;
  276. position: absolute;
  277. text-align: left;
  278. top: 32px;
  279. width: 55px;
  280. }
  281. .mac_art_digg.digg_bar div {
  282. background: transparent url('../images/home/digg_art_bg.gif') repeat-x scroll 0 -265px;
  283. height: 5px;
  284. overflow: hidden;
  285. width: 0px
  286. }
  287. .mac_art_digg.digg_artdown {
  288. background-position: -378px 0;
  289. margin-left: 10px;
  290. }
  291. .mac_art_digg.digg_artdown .dig_bar {
  292. border-color: #555555;
  293. }
  294. .mac_art_digg.digg_artdown .dig_bar div {
  295. background-position: 0 -270px;
  296. }
  297. /*搜索下拉*/
  298. .mac_results {
  299. background-color: #FFFFFF;
  300. overflow: hidden;
  301. z-index: 99999;
  302. margin: 0;
  303. padding: 0;
  304. text-align: left;
  305. min-width: 290px;
  306. box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.06);
  307. }
  308. .mac_results ul {
  309. width: 100%;
  310. list-style-position: outside;
  311. list-style: none;
  312. padding: 0;
  313. margin: 0;
  314. }
  315. .mac_results li {
  316. margin: 0px;
  317. padding: 7px 21px;
  318. cursor: pointer;
  319. display: block;
  320. font: menu;
  321. font-size: 14px;
  322. line-height: 34px;
  323. overflow: hidden;
  324. }
  325. .mac_results li:hover {
  326. background: #F5F5F5;
  327. color: #F7502D;
  328. }
  329. .mac_results .mac_loading {
  330. background: #2A2930;
  331. }
  332. .mac_results .ac_odd {
  333. background-color: #fff;
  334. color: #333333;
  335. }
  336. .mac_results .ac_even {
  337. background-color: #fff;
  338. color: #333333;
  339. }
  340. /*普通评分*/
  341. .mac_score {
  342. height: 60px;
  343. }
  344. .mac_score .score_info strong {
  345. font-size: 14px;
  346. color: red
  347. }
  348. .mac_score .score_tip {
  349. position: absolute;
  350. width: 140px;
  351. color: #999;
  352. font-size: 14px;
  353. margin-left: 0px;
  354. }
  355. .mac_score .score_hover {
  356. margin: 24px 8px 0 0;
  357. width: 30px;
  358. color: green;
  359. font-family: Arial;
  360. font-weight: bold;
  361. font-size: 14px;
  362. }
  363. .mac_score .score_shi {
  364. font-size: 32px;
  365. line-height: 28px;
  366. font-weight: bold;
  367. }
  368. .mac_score .score_ge {
  369. font-size: 18px;
  370. line-height: 22px;
  371. }
  372. .mac_score p {
  373. width: 100px;
  374. float: left;
  375. color: #666;
  376. }
  377. .mac_score p span {
  378. font-family: Arial;
  379. font-style: italic;
  380. color: #f60;
  381. }
  382. .mac_score p span.score_no {
  383. width: 110px;
  384. clear: both;
  385. color: #666;
  386. font-style: normal;
  387. font-size: 12px;
  388. }
  389. .mac_score .score_btn {
  390. width: 55px;
  391. height: 21px
  392. }
  393. /*星星评分*/
  394. .mac_star {
  395. font-weight: normal;
  396. width: 240px;
  397. }
  398. .mac_star dd {
  399. display: inline-block;
  400. float: right;
  401. margin-left: 10px;
  402. }
  403. .mac_star dt {
  404. color: #999;
  405. font-size: 1.0em;
  406. display: inline-block;
  407. float: left;
  408. margin-top: 3px;
  409. }
  410. .mac_star .star_box {
  411. color: #00b269;
  412. font-size: 0.5em;
  413. }
  414. .mac_star .star_tips {
  415. font-size: 1.8em;
  416. line-height: 0.5;
  417. color: #ffc00a;
  418. font-family: Arial, Helvetica, sans-serif;
  419. }
  420. .mac_star i {
  421. background: url("../images/home/starrating.gif") no-repeat;
  422. cursor: pointer;
  423. font-size: 1.5em;
  424. color: transparent;
  425. }
  426. .mac_star i.star-half-png,
  427. .mac_star i.star-on-png {
  428. background: url("../images/home/starrating.gif") 0 -35px no-repeat;
  429. }
  430. /*评论*/
  431. .mac_comment {
  432. margin-top: 5px;
  433. padding: 10px;
  434. padding-left: 10px;
  435. font-family: "Microsoft YaHei";
  436. }
  437. .mac_comment .clearfix::after {
  438. height: 0px;
  439. clear: both;
  440. font-size: 0px;
  441. display: block;
  442. visibility: hidden;
  443. content: " ";
  444. }
  445. .mac_comment .cmt_form {
  446. margin-bottom: 10px;
  447. }
  448. .mac_comment .face_wrap img {
  449. width: 50px;
  450. height: 50px;
  451. }
  452. .mac_comment .input_wrap {
  453. width: 100%;
  454. position: relative;
  455. }
  456. .mac_comment .cmt_wrap .input_wrap {
  457. width: 98%;
  458. }
  459. .mac_comment .input_wrap textarea {
  460. background: var(--theme-card-bg);
  461. border-radius: 12px;
  462. width: 100%;
  463. height: 150px;
  464. line-height: 1.4;
  465. overflow: auto;
  466. padding-top: 8px;
  467. padding-left: 1%;
  468. color: var(--theme-subtitle);
  469. border: 1px solid var(--theme-border);
  470. box-sizing: border-box;
  471. }
  472. .mac_comment .input_wrap .handle {
  473. position: relative;
  474. width: 100%;
  475. height: 46px;
  476. color: var(--theme-subtitle);
  477. display: flex;
  478. box-sizing: border-box;
  479. }
  480. .mac_comment .input_wrap .face {
  481. cursor: pointer;
  482. position: absolute;
  483. width: 42px;
  484. height: 45px;
  485. cursor: pointer;
  486. z-index: 2;
  487. }
  488. /* .mac_comment .input_wrap .face.curr {
  489. background: #fff;
  490. } */
  491. .mac_comment .input_wrap .face-box {
  492. display: none;
  493. padding: 8px 0 3px 5px;
  494. width: 280px;
  495. position: absolute;
  496. top: 44px;
  497. background: var(--theme-card-bg);
  498. border: 1px solid var(--theme-border);
  499. border-top-color: var(--theme-border);
  500. margin-left: -1px;
  501. z-index: 1;
  502. }
  503. .mac_comment .input_wrap .face-box img {
  504. display: inline-block;
  505. margin: 2px;
  506. }
  507. .mac_comment .icon-face {
  508. display: block;
  509. width: 42px;
  510. height: 44px;
  511. background: url("../images/home/face.png") center no-repeat;
  512. }
  513. .mac_comment .icon-face:hover,
  514. .mac_comment .input_wrap .face.curr .icon-face {
  515. background: url("../images/home/face-on.png") center no-repeat;
  516. }
  517. .mac_comment .expression {
  518. background: url("../images/home/emotion2.png") no-repeat 0px 0px;
  519. margin: 6px 0px 0px 6px;
  520. width: 18px;
  521. height: 16px;
  522. display: block;
  523. cursor: pointer;
  524. }
  525. .mac_comment .expression:hover {
  526. background: url("../images/home/emotion2.png") no-repeat 0px -16px;
  527. }
  528. .mac_comment .remaining-w {
  529. line-height: 44px;
  530. font-size: 14px;
  531. color: #5E5E5E;
  532. }
  533. .mac_comment .smt_wrap {
  534. width: 100%;
  535. text-align: right;
  536. margin: 8px 0 20px 0;
  537. }
  538. .mac_comment .smt_wrap span {
  539. color: var(--theme-text);
  540. }
  541. .mac_comment .smt_wrap .total {
  542. font-size: 16px;
  543. font-weight: bold;
  544. }
  545. .mac_comment .smt_wrap span span {
  546. margin: 0px;
  547. padding: 0px;
  548. }
  549. .mac_comment .smt_wrap span a {
  550. margin: 0px 0px 0px 8px;
  551. color: rgb(49, 139, 183);
  552. }
  553. .mac_comment .smt .cmt_post {
  554. width: 106px;
  555. height: 40px;
  556. background: #40cc92;
  557. border-radius: 20px;
  558. display: flex;
  559. justify-content: center;
  560. align-items: center;
  561. color: #FFFFFF;
  562. }
  563. .mac_comment .smt .cmt_text {
  564. width: 100px;
  565. padding: 0px 20px;
  566. border-radius: 3px;
  567. background: transparent;
  568. height: 100%;
  569. color: #5E5E5E;
  570. vertical-align: middle;
  571. }
  572. .mac_comment .verify-box .mac_verify_img {
  573. border-radius: 20px;
  574. }
  575. .mac_comment .smt .cmt_verify {
  576. width: 80px;
  577. height: 30px;
  578. line-height: 30px;
  579. vertical-align: middle;
  580. }
  581. .mac_comment .smt input:hover {
  582. background-position: -1px -603px;
  583. }
  584. .mac_comment .smt {
  585. margin-top: 6px;
  586. margin-left: auto;
  587. display: flex;
  588. align-items: center;
  589. gap: 20px;
  590. color: #454545;
  591. }
  592. .mac_comment .sort_wrap {
  593. padding-bottom: 2px;
  594. border-bottom-color: rgb(215, 215, 215);
  595. border-bottom-width: 1px;
  596. border-bottom-style: solid;
  597. }
  598. .mac_comment .sort_wrap a:hover {
  599. text-decoration: none;
  600. }
  601. .mac_comment .sort_wrap .current {
  602. color: rgb(49, 139, 183);
  603. font-weight: bold;
  604. border-bottom-color: rgb(43, 140, 230);
  605. border-bottom-width: 2px;
  606. border-bottom-style: solid;
  607. }
  608. .mac_comment .cmt_item {
  609. padding: 15px 0px 21px;
  610. width: 100%;
  611. color: rgb(153, 153, 153);
  612. border-bottom-color: #3E3D40;
  613. border-bottom-width: 1px;
  614. border-bottom-style: dotted;
  615. }
  616. .mac_comment .item_con {
  617. width: 93%;
  618. padding-left: 1%;
  619. }
  620. .mac_comment .item_con p.topdd {
  621. padding: 0;
  622. width: auto;
  623. margin-bottom: 8px;
  624. }
  625. .mac_comment .item_con a {
  626. color: rgb(153, 153, 153);
  627. }
  628. .mac_comment .item_con a:hover {
  629. color: rgb(153, 153, 153);
  630. text-decoration: none;
  631. }
  632. .mac_comment .item_con .name {
  633. color: #8D8D8D;
  634. }
  635. .mac_comment .item_con .name:hover {
  636. color: #8D8D8D;
  637. text-decoration: none;
  638. }
  639. .mac_comment .item_con .con {
  640. color: #FAFAFA;
  641. line-height: 20px;
  642. overflow: hidden;
  643. margin-top: 8px;
  644. -ms-word-wrap: break-word;
  645. }
  646. .mac_comment .item_con .bottom li {
  647. height: 16px;
  648. line-height: 15px;
  649. overflow: hidden;
  650. margin-right: 10px;
  651. float: left;
  652. }
  653. .mac_comment .item_con .bottom .reply {
  654. background: url("../images/home/rpy2.png") no-repeat 0px 0px;
  655. color: rgb(153, 153, 153);
  656. text-indent: 19px;
  657. font-size: 11px;
  658. display: block;
  659. }
  660. .mac_comment .item_con .bottom .reply:hover {
  661. color: rgb(1, 106, 159);
  662. text-decoration: none;
  663. }
  664. .mac_comment .item_con .bottom .bdshare_t {
  665. margin-top: -5px;
  666. }
  667. .mac_comment .item_con .bottom .bds_more {
  668. padding-top: 5px;
  669. }
  670. .mac_comment .inner {
  671. padding: 3px;
  672. border: 1px solid rgb(153, 153, 153);
  673. width: auto;
  674. background-color: rgb(254, 254, 241);
  675. }
  676. .mac_comment .inner .top {
  677. margin: 8px 0px 8px 3px;
  678. }
  679. .mac_comment .inner .con {
  680. margin: 5px 0px 5px 3px;
  681. }
  682. .mac_comment .inner .bottom {
  683. margin-bottom: 5px;
  684. visibility: hidden;
  685. }
  686. .mac_comment .mid_cmt_item {
  687. margin-top: 3px;
  688. border-top-color: currentColor;
  689. border-top-width: medium;
  690. border-top-style: none;
  691. }
  692. .mac_comment .pages {
  693. margin-top: 15px;
  694. }
  695. .mac_comment .item_con .gw-action {
  696. text-align: left;
  697. }
  698. .mac_comment .item_con .gw-action a {
  699. margin-left: 10px;
  700. }
  701. .mac_comment .item_con .gw-action a:nth-child(1) {
  702. margin-left: 0;
  703. }
  704. .mac_comment .item_con .click-ding-gw {
  705. margin-right: 10px;
  706. }
  707. .mac_comment .item_con .click-ding-gw a,
  708. .mac_digg .click-ding-gw a {
  709. color: #f29898;
  710. }
  711. .mac_comment .item_con .click-ding-gw a:hover,
  712. .mac_digg .click-ding-gw a {
  713. color: #f29898;
  714. }
  715. .mac_comment .item_con .click-ding-gw a i,
  716. .mac_digg a i {
  717. display: inline-block;
  718. width: 14px;
  719. height: 14px;
  720. vertical-align: middle;
  721. }
  722. .mac_comment .cmt_wrap .item_con .input_wrap {
  723. width: 100%;
  724. margin: 10px 0;
  725. padding-left: 0;
  726. }
  727. .mac_comment .cmt_wrap .item_con .cmt_item {
  728. clear: left;
  729. border-bottom: none;
  730. }
  731. .mac_comment .cmt_wrap .item_con .cmt_item .gw-action {
  732. text-align: left;
  733. clear: left;
  734. }
  735. .mac_comment .cmt_wrap .item_con .cmt_item .gw-action a {
  736. margin-right: 10px;
  737. margin-left: 0;
  738. }
  739. /*留言气泡版本*/
  740. .reply_box .mac_msg_l {
  741. padding: 10px 1%;
  742. float: left;
  743. width: 70%;
  744. }
  745. .reply_box .mac_msg_l .mac_msg_item {
  746. width: 100%;
  747. float: left;
  748. }
  749. .reply_box .mac_msg_l .msg_tag {
  750. float: left;
  751. width: 60px;
  752. margin-right: 2%;
  753. margin-bottom: 5px;
  754. border-radius: 5px;
  755. overflow: hidden;
  756. }
  757. .reply_box .mac_msg_l .count_bg {
  758. width: 60px;
  759. height: 5px;
  760. background: linear-gradient(90deg, #f25f4d 30%, #59b84b 20%, #30a1d9 65%, #fdcd34 10%);
  761. }
  762. .reply_box .mac_msg_l .msg_count {
  763. padding: 8px 0;
  764. color: #fff;
  765. text-align: center;
  766. font-size: 13px;
  767. background: -moz-linear-gradient(top, #444444 0%, #222222 100%);
  768. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #444444), color-stop(100%, #222222));
  769. background: -webkit-linear-gradient(top, #444444 0%, #222222 100%);
  770. background: -o-linear-gradient(top, #444444 0%, #222222 100%);
  771. background: -ms-linear-gradient(top, #444444 0%, #222222 100%);
  772. background: linear-gradient(to bottom, #444444 0%, #222222 100%);
  773. }
  774. .reply_box .mac_msg_l .msg_count strong {
  775. display: block;
  776. }
  777. .reply_box .mac_msg_l .msg_list {
  778. float: left;
  779. width: 85%;
  780. margin-bottom: 10px;
  781. }
  782. .reply_box .mac_msg_l .msg_list .msg_title {
  783. text-align: left;
  784. font-size: 16px;
  785. border-bottom: 1px #d3e9fb dotted;
  786. line-height: 26px;
  787. }
  788. .reply_box .mac_msg_l .msg_list .msg_title span.time {
  789. float: right;
  790. font-size: 12px;
  791. }
  792. .reply_box .mac_msg_l .msg_list .msg_reply {
  793. color: #666;
  794. }
  795. .reply_box .mac_msg_l .msg_list .reply_answer {
  796. color: #3c8f3f;
  797. }
  798. .reply_box .mac_msg_l .msg_list .reply_answer .msg_title {
  799. font-size: 13px;
  800. }
  801. .reply_box .mac_msg_l .msg_list .msg_cont {
  802. padding: 8px 0 0;
  803. }
  804. .reply_box .mac_msg_l .msg_list .msg_reply,
  805. .reply_box .mac_msg_l .msg_list .reply_answer {
  806. position: relative;
  807. margin: 0 0 10px;
  808. padding: 6px 10px 8px;
  809. border: 1px solid #d3e9fb;
  810. border-radius: 0.2rem;
  811. background-color: #f5fbff;
  812. }
  813. .reply_box .mac_msg_l .msg_list .reply_answer:after {
  814. content: '';
  815. width: 0px;
  816. height: 0px;
  817. border-color: transparent transparent #f5fbff transparent;
  818. border-style: solid;
  819. border-width: 6px;
  820. position: absolute;
  821. top: -11px;
  822. border-radius: 3px;
  823. left: 18px;
  824. right: auto;
  825. }
  826. .reply_box .mac_msg_l .msg_list .reply_answer:before {
  827. content: '';
  828. width: 0px;
  829. height: 0px;
  830. border-color: transparent transparent #d3e9fb transparent;
  831. border-style: solid;
  832. border-width: 7px;
  833. position: absolute;
  834. top: -14px;
  835. border-radius: 3px;
  836. left: 17px;
  837. right: auto;
  838. }
  839. .reply_box .mac_msg_l .msg_list .msg_reply:after {
  840. content: '';
  841. width: 0px;
  842. height: 0px;
  843. border-color: transparent #f5fbff #f5fbff transparent;
  844. border-style: solid;
  845. border-width: 7px;
  846. position: absolute;
  847. top: 8px;
  848. border-radius: 3px;
  849. left: -12px;
  850. right: auto;
  851. }
  852. .reply_box .mac_msg_l .msg_list .msg_reply:before {
  853. content: '';
  854. width: 0px;
  855. height: 0px;
  856. border-color: transparent #d3e9fb #d3e9fb transparent;
  857. border-style: solid;
  858. border-width: 7px;
  859. position: absolute;
  860. top: 9px;
  861. border-radius: 3px;
  862. left: -14px;
  863. right: auto;
  864. }
  865. .reply_box .mac_msg_r {
  866. margin: 10px 1%;
  867. float: right;
  868. width: 25%;
  869. border: 1px solid #ddd;
  870. border-radius: 5px;
  871. color: #666;
  872. }
  873. .reply_box .mac_msg_r .msg_tit {
  874. background: #f1f1f1;
  875. padding: 10px;
  876. border-bottom: 1px solid #ddd;
  877. }
  878. .reply_box .mac_msg_r form {
  879. padding: 15px;
  880. }
  881. .reply_box .mac_msg_r form .msg_cue {
  882. margin-bottom: 8px;
  883. }
  884. .reply_box .mac_msg_r form textarea {
  885. width: 100%;
  886. height: 106px;
  887. padding: 10px;
  888. overflow-y: auto;
  889. box-sizing: border-box;
  890. border-color: #ddd;
  891. }
  892. .reply_box .mac_msg_r .msg_code {
  893. margin: 10px 0;
  894. }
  895. .reply_box .mac_msg_r .msg_code input {
  896. border: 1px solid #ddd;
  897. padding: 4px;
  898. width: 65px;
  899. }
  900. .reply_box .mac_msg_r .msg_code .mac_verify_img {
  901. height: 30px;
  902. margin-left: 2px;
  903. vertical-align: top;
  904. }
  905. .reply_box .mac_msg_r .submit_btn {
  906. width: 100px;
  907. height: 32px;
  908. background: #4c8fe9;
  909. color: #fff;
  910. border: 1px solid #4c8fe9;
  911. margin: 20px auto 0;
  912. display: block;
  913. cursor: pointer;
  914. }
  915. .mac_msg_r .submit_btn:hover {
  916. background: #619ff3;
  917. }
  918. .mac_msg_r .submit_btn:active {
  919. background: #3883e6;
  920. }
  921. /*顶踩图标*/
  922. .mac_comment i.icon-ding,
  923. .mac_digg i.icon-ding {
  924. background: url("../images/home/up1.png") center no-repeat;
  925. }
  926. .mac_comment i.icon-ding:hover,
  927. .mac_digg i.icon-ding:hover {
  928. background: url("../images/home/up2.png") center no-repeat;
  929. }
  930. .mac_comment i.icon-dw,
  931. .mac_digg i.icon-dw {
  932. background: url("../images/home/dw1.png") center no-repeat;
  933. }
  934. .mac_comment i.icon-dw:hover,
  935. .mac_digg i.icon-dw:hover {
  936. background: url("../images/home/dw2.png") center no-repeat;
  937. }
  938. /*顶踩页面*/
  939. .mac_digg a {
  940. margin-right: 10px;
  941. color: #999;
  942. }
  943. .mac_digg a:hover {
  944. color: #333;
  945. }
  946. /*登录页面*/
  947. .mac_login {
  948. width: 400px;
  949. height: 250px;
  950. box-sizing: border-box;
  951. font-family: "microsoft yahei";
  952. display: flex;
  953. justify-content: center;
  954. align-items: center;
  955. }
  956. .mac_login h3 {
  957. font-weight: normal;
  958. color: #333;
  959. margin: 0 0 30px;
  960. }
  961. .mac_login .mac_login_form .login_form_group {
  962. margin-top: 20px;
  963. position: relative;
  964. }
  965. .mac_login .mac_login_form .login_form_group input {
  966. padding: 4px 10px 4px 36px;
  967. width: 350px;
  968. height: 44px;
  969. line-height: 44px;
  970. background: #F8F8F8;
  971. box-sizing: border-box;
  972. color: #999999;
  973. border-radius: 22px;
  974. position: relative;
  975. }
  976. .mac_login .mac_login_form .login_form_group input::placeholder {
  977. color: #999999;
  978. }
  979. .mac_login .mac_login_form .login_form_group .login-icon {
  980. width: 16px;
  981. position: absolute;
  982. left: 12px;
  983. top: 13px;
  984. z-index: 99;
  985. }
  986. .mac_login .mac_login_form .login_form_group input.mac_u_verify {
  987. float: left;
  988. width: 70%;
  989. /* background: url("../images/home/u_verify.png") 8px 9px no-repeat; */
  990. }
  991. .mac_login .mac_login_form .login_form_group img.mac_verify_img {
  992. float: left;
  993. margin-left: 1%;
  994. width: 101px;
  995. height: 44px;
  996. border-radius: 22px;
  997. box-sizing: border-box;
  998. cursor: pointer;
  999. }
  1000. .mac_login .mac_login_form .login_form_link {
  1001. margin-top: 10px;
  1002. text-align: center;
  1003. }
  1004. .mac_login .mac_login_form .login_form_link a {
  1005. font-size: 16px;
  1006. color: #999999;
  1007. margin-left: 25px;
  1008. }
  1009. .mac_login .mac_login_form input.login_form_submit {
  1010. background: #40CC92;
  1011. color: #fff;
  1012. font-size: 16px;
  1013. line-height: normal;
  1014. border: none;
  1015. cursor: pointer;
  1016. border-radius: 36px;
  1017. padding: 0;
  1018. }
  1019. .mac_login .mac_login_form input.login_form_submit:hover {
  1020. background: #40CC92;
  1021. }
  1022. /*弹出层*/
  1023. .mac_pop_bg {
  1024. position: fixed;
  1025. z-index: 129;
  1026. left: 0;
  1027. top: 0;
  1028. width: 100%;
  1029. height: 100%;
  1030. background: rgba(0, 0, 0, .5);
  1031. }
  1032. .mac_pop {
  1033. z-index: 99998;
  1034. display: none;
  1035. min-height: 20px;
  1036. max-height: 750px;
  1037. position: fixed;
  1038. top: 0;
  1039. left: 0;
  1040. bottom: 0;
  1041. right: 0;
  1042. margin: auto;
  1043. padding: 30px 50px;
  1044. z-index: 130;
  1045. border-radius: 12px;
  1046. background-color: #FFFFFF;
  1047. box-shadow: 0px 3px 15px 0px rgba(0, 34, 80, 0.1);
  1048. }
  1049. .mac_pop .pop_top {
  1050. height: 40px;
  1051. width: 100%;
  1052. }
  1053. .mac_pop .pop_top h2 {
  1054. float: left;
  1055. display: block;
  1056. margin: 0;
  1057. font-size: 20px;
  1058. color: #333333;
  1059. font-weight: normal;
  1060. font-family: "microsoft yahei";
  1061. }
  1062. .mac_pop span.pop_close {
  1063. float: right;
  1064. width: 31px;
  1065. height: 31px;
  1066. font-size: 0;
  1067. text-indent: 9999;
  1068. cursor: pointer;
  1069. font-weight: bold;
  1070. display: block;
  1071. background: url("../images/home/close.png") 100% 100%;
  1072. }
  1073. .mac_pop .pop-foot {
  1074. height: 50px;
  1075. line-height: 50px;
  1076. width: 100%;
  1077. text-align: right;
  1078. }
  1079. .mac_pop .pop-cancel,
  1080. .pop-ok {
  1081. padding: 8px 15px;
  1082. margin: 15px 5px;
  1083. border: none;
  1084. border-radius: 5px;
  1085. color: #fff;
  1086. cursor: pointer;
  1087. }
  1088. .mac_pop .pop-cancel {
  1089. background-color: #FFF;
  1090. border: 1px #CECECE solid;
  1091. color: #000;
  1092. }
  1093. .mac_pop .pop-content {
  1094. height: 380px;
  1095. }
  1096. .mac_pop .pop-content-left {
  1097. float: left;
  1098. }
  1099. .mac_pop .pop-content-right {
  1100. width: 310px;
  1101. float: left;
  1102. padding-top: 20px;
  1103. padding-left: 20px;
  1104. font-size: 16px;
  1105. line-height: 35px;
  1106. }
  1107. .mac_pop .bgPop {
  1108. display: none;
  1109. position: absolute;
  1110. z-index: 129;
  1111. left: 0;
  1112. top: 0;
  1113. width: 100%;
  1114. height: 100%;
  1115. background: rgba(0, 0, 0, .2);
  1116. }
  1117. .mac_pop .pop-msg {
  1118. text-align: center;
  1119. font-size: 14px;
  1120. }
  1121. .mac_pop_msg_bg {
  1122. position: fixed;
  1123. z-index: 9999;
  1124. left: 0;
  1125. top: 0;
  1126. width: 100%;
  1127. height: 100%;
  1128. }
  1129. .mac_pop_msg {
  1130. z-index: 99999;
  1131. display: none;
  1132. min-height: 20px;
  1133. max-height: 750px;
  1134. position: fixed;
  1135. top: 80px;
  1136. left: 0;
  1137. bottom: 0;
  1138. right: 0;
  1139. margin: 0 auto;
  1140. padding: 25px;
  1141. border-radius: 8px;
  1142. background: #FEF9C3;
  1143. border-radius: 12px;
  1144. border: 2px solid #FEF08A;
  1145. animation: fadeIn 0.5s; /* 增加出现动画 */
  1146. }
  1147. @keyframes fadeIn {
  1148. from {
  1149. opacity: 0;
  1150. transform: translateY(-20px);
  1151. }
  1152. to {
  1153. opacity: 1;
  1154. transform: translateY(0);
  1155. }
  1156. }
  1157. .mac_pop_msg .pop-msg {
  1158. text-align: center;
  1159. font-size: 14px;
  1160. }
  1161. /*跳转信息*/
  1162. .mac_msg_jump {
  1163. width: 90%;
  1164. max-width: 624px;
  1165. min-height: 60px;
  1166. padding: 20px 50px 50px;
  1167. margin: 20% auto 0;
  1168. font-size: 14px;
  1169. line-height: 24px;
  1170. border: 1px solid #cdd5e0;
  1171. border-radius: 10px;
  1172. background: #fff;
  1173. box-sizing: border-box;
  1174. }
  1175. .mac_msg_jump .title {
  1176. margin-bottom: 11px;
  1177. }
  1178. .mac_msg_jump .text {
  1179. padding-left: 29px;
  1180. margin-bottom: 11px;
  1181. }
  1182. .mac_msg._jump .jump {}
  1183. .msg_jump_tit {
  1184. width: 100%;
  1185. height: 35px;
  1186. margin: 25px 0 10px;
  1187. text-align: center;
  1188. font-size: 25px;
  1189. color: #23c319;
  1190. font-family: "黑体", "microsoft yahei";
  1191. letter-spacing: 5px;
  1192. }
  1193. @media screen and (max-width: 900px) {
  1194. .reply_box .mac_msg_l {
  1195. float: none;
  1196. width: 100%;
  1197. }
  1198. .reply_box .mac_msg_r {
  1199. float: none;
  1200. width: 96%;
  1201. margin-left: 2%;
  1202. }
  1203. .reply_box .mac_msg_l .msg_list {
  1204. width: 80%;
  1205. }
  1206. .reply_box .mac_msg_r .submit_btn {
  1207. width: 100%;
  1208. border-radius: 3px;
  1209. }
  1210. }
  1211. @media (min-width: 700px) and (max-width: 900px) {
  1212. .reply_box .mac_msg_l .msg_list {
  1213. float: right;
  1214. width: 88%;
  1215. }
  1216. }
  1217. @media (min-width: 500px) and (max-width: 700px) {
  1218. .reply_box .mac_msg_l .msg_list {
  1219. float: right;
  1220. width: 85%;
  1221. }
  1222. }
  1223. @media screen and (max-width: 500px) {
  1224. .reply_box .mac_msg_l .msg_list {
  1225. float: right;
  1226. }
  1227. }