technicalBroker.css 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629
  1. .technicalWrap{
  2. background-color: #fff;
  3. padding: 11px 13px 0;
  4. width: 96%;
  5. border-radius: 5px;
  6. box-shadow: 0 0 30px #dfdfe2;
  7. margin: 20px auto;
  8. position: relative;
  9. overflow: hidden;
  10. height: auto;
  11. max-height:430px;
  12. }
  13. .technicalWrap:first-child{
  14. margin-top:0;
  15. }
  16. .technicalContentFloor{
  17. width: 100%;
  18. padding: 5px 0;
  19. margin: 0 auto;
  20. background-color: #fff;
  21. border-radius: 4px;
  22. position: relative;
  23. }
  24. .course-card-bottom{
  25. }
  26. .course-card-info {
  27. font-size: 12px;
  28. color: #93999F;
  29. line-height: 24px;
  30. margin-top: 8px;
  31. font-weight: 400;
  32. height: auto;
  33. overflow: hidden;
  34. }
  35. .course-card-info span {
  36. display: inline-block;
  37. margin-right: 12px;
  38. font-size: 12px;
  39. color: #93999F;
  40. line-height: 24px;
  41. font-weight: 400;
  42. }
  43. .course-card-name {
  44. font-size: 16px;
  45. color: #07111B;
  46. line-height: 24px;
  47. word-wrap: break-word;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. display: -webkit-box;
  51. -webkit-line-clamp: 1;
  52. -webkit-box-orient: vertical;
  53. max-height: 46px;
  54. transition: all .3s;
  55. width: 90%;
  56. }
  57. .course-label {
  58. position: absolute;
  59. bottom: 6px;
  60. left: 8px;
  61. font-size: 12px;
  62. color: #FFF;
  63. line-height: 16px;
  64. }
  65. .technicalFloorMiddle{
  66. position: relative;
  67. width: 100%;
  68. height: auto;
  69. min-height: 22px;
  70. }
  71. .course-label label {
  72. display: inline-block;
  73. background-color:rgba(118, 123, 128, 0.4);
  74. border-radius: 12px;
  75. padding: 4px 8px;
  76. margin-bottom: 2px;
  77. margin-right: 5px;
  78. font-weight: 200;
  79. opacity: .8;
  80. font-size: 12px;
  81. color: #FFF;
  82. line-height: 16px;
  83. }
  84. .item-line--bottom {
  85. height: auto;
  86. line-height: 24px;
  87. overflow: hidden;
  88. margin-top: 0;
  89. font-size: 12px;
  90. position: relative;
  91. padding-bottom: 10px;
  92. }
  93. .line-cell:first-child {
  94. margin-left: 0;
  95. color: #5fb41b;
  96. font-size: 14px;
  97. float: left;
  98. }
  99. .item-source {
  100. display: inline-block;
  101. color: #999;
  102. float: left;
  103. width: auto;
  104. text-align: right;
  105. overflow: hidden;
  106. white-space: nowrap;
  107. text-overflow: ellipsis;
  108. word-wrap: normal;
  109. margin-left: 6px;
  110. }
  111. .renzheng {
  112. display: inline-block;
  113. vertical-align: middle;
  114. margin-right: 2px;
  115. width: auto;
  116. height: 18px;
  117. color: #5babe6;
  118. border: 1px solid #5babe6;
  119. line-height: 11px;
  120. font-size: 12px;
  121. border-radius: 4px;
  122. padding: 2px 7px;
  123. }
  124. .item-source-link {
  125. color: #999;
  126. text-decoration: none;
  127. background: transparent;
  128. text-align: right;
  129. }
  130. .course-card-info .icon-set_sns {
  131. font-size: 14px;
  132. margin-right: 5px;
  133. vertical-align: -1px;
  134. }
  135. .course-card-info i.ion-clock{
  136. font-size: 12px;
  137. position: relative;
  138. left: -4px;
  139. margin-right: 1px;
  140. }
  141. .course-card-info i.ion-clock:before{
  142. font-size: 11px;
  143. }
  144. .course-card-info .icon-set_sns em{
  145. margin-left: 5px;
  146. font-size: 13px;
  147. }
  148. .course-stat.hot {
  149. background: #FF005D;
  150. position: absolute;
  151. border: 2px solid #FFF;
  152. border-radius: 12px;
  153. top: -10px;
  154. right:-10px;
  155. z-index: 4;
  156. font-size: 12px;
  157. color: #FFF;
  158. line-height: 20px;
  159. padding: 0 8px;
  160. }
  161. .price-info {
  162. height: 40px;
  163. overflow: hidden;
  164. text-align: left;
  165. position: relative;
  166. }
  167. .current-price-wrapper{
  168. width: auto;
  169. float: left;
  170. position: relative;
  171. top: 0px;
  172. height: 100%;
  173. }
  174. .current-price-wrapper .activityFloor{
  175. height: 100%;
  176. width: 100%;
  177. }
  178. .current-price-wrapper .activityFloor small{
  179. width: 100%;
  180. height: 100%;
  181. display: inline-block;
  182. line-height: 40px;
  183. }
  184. .bottom-right-info{
  185. font-size: 12px;
  186. color: #999;
  187. margin-top: 10px;
  188. position: absolute;
  189. right: 0;
  190. }
  191. .bottom-right-info em{
  192. color: #F60;
  193. font-size: 15px;
  194. margin: 0 4px;
  195. vertical-align: -2px;
  196. }
  197. .head-img {
  198. border: 2px solid #FFF;
  199. height: 48px;
  200. width: 48px;
  201. position: relative;
  202. z-index: 9;
  203. border-radius: 40px;
  204. float: left;
  205. }
  206. .taskPublisherWrap{
  207. display:inline-block;
  208. float: left;
  209. }
  210. .technicalNoticBg{
  211. display: block;
  212. color: #a6a6a7;
  213. margin-left:6px;
  214. position: absolute;
  215. bottom: 10px;
  216. }
  217. .enterTechnicalTask{
  218. position: relative;
  219. margin: 0 auto;
  220. display: block;
  221. border: none;
  222. color: #fff;
  223. width: 60px;
  224. height: 60px;
  225. border-radius: 50%;
  226. bottom: 37px;
  227. background-color: #5babe6;
  228. }
  229. .notenterTechnicalTask{
  230. background-color: #ccc !important;
  231. }
  232. .havenTechnical{
  233. opacity: .8;
  234. }
  235. .editTechnicalTask{
  236. background-color: #f9493d;
  237. color: #fff;
  238. border: none;
  239. position: absolute;
  240. right: 0;
  241. border-radius: 4px;
  242. padding: 4px 8px;
  243. top: 10px;
  244. }
  245. .editTechnicalTask i{
  246. font-size: 12px;
  247. margin-right: 5px;
  248. vertical-align: 1px;
  249. }
  250. .technicalBrokerContentDetail{
  251. color: #a6a6a7;
  252. text-align: justify;
  253. text-indent: 2em;
  254. }
  255. .technicalOtherBottom{
  256. position: relative;
  257. }
  258. .acceptPeopleWrap{
  259. height: 35px;
  260. width: 35px;
  261. display: inline-block;
  262. float: left;
  263. border: 2px solid #5babe6;
  264. border-radius: 50%;
  265. overflow: hidden;
  266. margin-right: 5px;
  267. }
  268. .acceptPeopleWrap img{
  269. width: 100%;
  270. height: 100%;
  271. }
  272. .accept_info{
  273. border-top: 1px solid #e6e6e7;
  274. margin-top: 15px;
  275. padding-top: 12px;
  276. height: auto;
  277. overflow: hidden;
  278. text-align: left;
  279. position: relative;
  280. }
  281. .quick_entry_module.qe_5x {
  282. padding-left: 4%;
  283. padding-right: 4%;
  284. }
  285. .quick_entry_module {
  286. padding-bottom: 15px;
  287. box-sizing: border-box;
  288. -webkit-box-sizing: border-box;
  289. overflow: hidden;
  290. }
  291. .quick_entry_module ul li {
  292. position: relative;
  293. }
  294. .quick_entry_module.qe_5x ul li {
  295. width: 20%;
  296. float: left;
  297. }
  298. .quick_entry_module ul li a, .quick_entry_module ul li span {
  299. position: relative;
  300. display: block;
  301. outline: none;
  302. text-decoration: none;
  303. background: transparent;
  304. }
  305. .quick_entry_module .qe_img_wrap.no_bg_img {
  306. background-image: none;
  307. background-color: transparent;
  308. }
  309. .quick_entry_module .qe_img_wrap {
  310. padding-top: 100%;
  311. width: 100%;
  312. margin-top: 20px;
  313. margin-bottom: 27px;
  314. overflow: hidden;
  315. }
  316. .quick_entry_module .qe_img_wrap i{
  317. font-size: 25px;
  318. color: #fff;
  319. position: absolute;
  320. top: 0;
  321. left: 0;
  322. width: 100%;
  323. opacity: 1;
  324. height: 35px;
  325. line-height: 33px;
  326. border-radius: 50%;
  327. text-align: center;
  328. }
  329. .trainIcon{
  330. background: -webkit-linear-gradient(#5babe6,#9dcaec);
  331. }
  332. .taskIcon{
  333. background: -webkit-linear-gradient(#ea5776,#e4a4a4);
  334. }
  335. .resultIcon{
  336. background: -webkit-linear-gradient(#a37bff,#b295f4);
  337. }
  338. .infoIcon{
  339. background: -webkit-linear-gradient(#ffd30a,#f1de84);
  340. }
  341. .demandIcon{
  342. background: -webkit-linear-gradient(#6aa9e0,#73d6f5);
  343. }
  344. .levelIcon{
  345. background: -webkit-linear-gradient(#ffae0d,#eeb84d);
  346. }
  347. .publishIcon{
  348. background: -webkit-linear-gradient(#66d0b1,#9bf0d7);
  349. }
  350. .myTaskIcon{
  351. background: -webkit-linear-gradient(#28cffc,#6ad8f6);
  352. }
  353. .myReceiveTaskIcon{
  354. background: -webkit-linear-gradient(#ff8e6f,#f1a590);
  355. }
  356. .mySignUpIcon{
  357. background: -webkit-linear-gradient(#73dee8,#79c5bb);
  358. }
  359. .quick_entry_module .qe_img_wrap img {
  360. position: absolute;
  361. top: 0;
  362. left: 0;
  363. width: 100%;
  364. opacity: 1;
  365. }
  366. .quick_entry_module .qe_text_wrap {
  367. position: absolute;
  368. display: -webkit-box;
  369. bottom: -27px;
  370. left: 50%;
  371. width: 72px;
  372. height: 16px;
  373. font-size: 12px;
  374. margin-top: 11px;
  375. color: #999;
  376. text-align: center;
  377. overflow: hidden;
  378. transform: translateX(-50%);
  379. -webkit-transform: translateX(-50%);
  380. text-overflow: ellipsis;
  381. -webkit-line-clamp: 1;
  382. -webkit-box-orient: vertical;
  383. word-break: break-all;
  384. }
  385. .quick_entry_module ul li a, .quick_entry_module ul li span {
  386. position: relative;
  387. display: block;
  388. -webkit-tap-highlight-color: rgba(255,255,255,0);
  389. }
  390. .quick_entry_module ul li a{
  391. width: 50%;
  392. margin: 0 auto;
  393. }
  394. .isactiveInfoWrap{
  395. font-size: 14px;
  396. color: #a6a6a7;
  397. position: absolute;
  398. right: 75px;
  399. top: 3px;
  400. }
  401. .enterCompanyInfo_header{
  402. width: 90%;
  403. }
  404. .enterCompanyInfo_header .arrange_tab{
  405. position: relative;
  406. }
  407. .enterCompanyInfo_header .arrange_tab:nth-child(2)::after{
  408. content: "";
  409. display: block;
  410. position: absolute;
  411. right: 0;
  412. width: 0;
  413. height: 34px;
  414. border: 1px solid #5babe6;
  415. top:0;
  416. border-radius: 14px;
  417. }
  418. .enterCompanyInfo_header .arrange_tab:nth-child(2)::before{
  419. content: "";
  420. display: block;
  421. position: absolute;
  422. left: 0;
  423. width: 0;
  424. height:34px;
  425. border: 1px solid #5babe6;
  426. top:0;
  427. border-radius: 14px;
  428. }
  429. .addOrDelButton{
  430. position: relative;
  431. background-color: #5babe6;
  432. color: #fff;
  433. border: none;
  434. border-radius: 4px;
  435. width: auto;
  436. padding: 5px 25px 5px 10px;
  437. display: block;
  438. margin: 10px 20px;
  439. }
  440. .addOrDelButton i{
  441. right: 10px;
  442. color: #fff;
  443. top: 4px !important;
  444. }
  445. .addStauesButtonName::before{
  446. content:"添加产品";
  447. display: block;
  448. }
  449. .delStauesButtonName::before{
  450. content:"删除产品";
  451. display: block;
  452. }
  453. .addStauesButtonName_s::before{
  454. content:"添加需求";
  455. display: block;
  456. }
  457. .delStauesButtonName_s::before{
  458. content:"删除需求";
  459. display: block;
  460. }
  461. /*图片放大*/
  462. #ProductRightDisplay,#DemandRightDisplay{
  463. position: fixed;
  464. top: 0;
  465. left: 0;
  466. z-index: 2510;
  467. width: 100%;
  468. height: 100.2%;
  469. /*background-color: #000;*/
  470. }
  471. #ProductRightDisplay .picIndex,#DemandRightDisplay .picIndex{
  472. color: #fff;
  473. position: absolute;
  474. display: block;
  475. top: 40px;
  476. font-size: 15px;
  477. margin: 0 auto;
  478. width: 100px;
  479. text-align: center;
  480. z-index: 666;
  481. }
  482. #ProductRightDisplay .img-responsive,#DemandRightDisplay .img-responsive{
  483. position: absolute;
  484. /*position: relative;*/
  485. z-index: 10;
  486. display: block;
  487. /*margin: 0 auto;*/
  488. width:100%;
  489. /*top:80px;*/
  490. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  491. }
  492. .big-wrap{
  493. background: #f3f5f7;
  494. }
  495. .top-box {
  496. position: relative;
  497. width: 100%;
  498. height: auto;
  499. background: url("../img/teacher-bg.png") no-repeat scroll center;
  500. background-size: 100% 100%;
  501. }
  502. .top-box .top-bg-mask {
  503. width: 100%;
  504. height: auto;
  505. background: rgba(0,0,0,.6);
  506. }
  507. .top-box .top-content-wrap {
  508. margin: 0 auto;
  509. width: 100%;
  510. }
  511. .top-box .top-content-wrap .teacher-box {
  512. position: relative;
  513. margin: 0 auto;
  514. padding-top:25px;
  515. text-align: center;
  516. z-index: 2;
  517. }
  518. .top-box .top-content-wrap .teacher-box .tea-header {
  519. width: 90px;
  520. height: 90px;
  521. border-radius: 50%;
  522. border: 3px solid #fff;
  523. }
  524. .top-box .top-content-wrap .teacher-box .tea-title {
  525. position: relative;
  526. margin: -24px auto 0;
  527. width: 149px;
  528. height: 56px;
  529. text-align: center;
  530. color: #fff;
  531. background: url("../img/flag-bg.png")no-repeat scroll center;
  532. background-size: 100%;
  533. z-index: 2;
  534. }
  535. .top-box .top-content-wrap .teacher-box .tea-title p {
  536. opacity: .7;
  537. font-size: 11px;
  538. line-height: 21px;
  539. margin: 0 0 3px;
  540. }
  541. .top-box .top-content-wrap .teacher-box .tea-title h3 {
  542. font-size: 14px;
  543. font-weight: 700;
  544. line-height: 14px;
  545. margin: 0;
  546. color: #fff;
  547. }
  548. .top-box .top-content-wrap .teacher-box .tea-nickname {
  549. font-size: 16px;
  550. font-weight: 700;
  551. color: #fff;
  552. line-height: 24px;
  553. margin: 0;
  554. }
  555. .top-box .top-content-wrap .teacher-box .tea-professional {
  556. margin-top: 8px;
  557. font-size: 14px;
  558. color: #fff;
  559. line-height: 14px;
  560. margin-bottom: 12px;
  561. }
  562. .top-box .top-content-wrap .teacher-box .payattention-btn {
  563. margin: 0px 0 5px;
  564. padding: 0;
  565. height: 36px;
  566. width: 96px;
  567. background: 0 0;
  568. font-size: 12px;
  569. line-height: 36px;
  570. color: #fff;
  571. border: 1px solid rgba(255,255,255,.6);
  572. position: relative;
  573. display: inline-block;
  574. text-align: center;
  575. vertical-align: middle;
  576. touch-action: manipulation;
  577. -webkit-appearance: none;
  578. white-space: nowrap;
  579. outline: none;
  580. user-select: none;
  581. border-radius: 50px;
  582. }
  583. .top-box .top-content-wrap .teacher-box .payattention-btn i {
  584. position: relative;
  585. top: 2px;
  586. font-size: 16px;
  587. margin-right: 4px;
  588. line-height: 12px;
  589. }
  590. .top-box .top-content-wrap .teacher-box .tea-desc {
  591. margin: 0 auto 12px;
  592. width: 92%;
  593. height: 48px;
  594. font-size: 14px;
  595. color: rgba(255,255,255,.6);
  596. line-height: 24px;
  597. word-break: break-word;
  598. overflow: hidden;
  599. text-overflow: -o-ellipsis-lastline;
  600. display: -webkit-box;
  601. -webkit-line-clamp: 2;
  602. -webkit-box-orient: vertical;
  603. }
  604. .top-box .top-content-wrap .teacher-box .tea-detail-box {
  605. text-align: center;
  606. margin: 0 auto;
  607. width: 100%;
  608. }
  609. .top-box .top-content-wrap .teacher-box .tea-detail-box ul {
  610. width: 100%;
  611. }
  612. .top-box .top-content-wrap .teacher-box .tea-detail-box ul li {
  613. display: inline-block;
  614. text-align: center;
  615. margin: 0 auto;
  616. width: 20%;
  617. }
  618. .top-box .top-content-wrap .teacher-box .tea-detail-box ul li .num {
  619. margin-bottom: 5px;
  620. font-size: 16px;
  621. line-height: 15px;
  622. color: #fff;
  623. }
  624. .tea-detail-box ul li em{
  625. font-size: 12px;
  626. margin-left: 3px;
  627. }
  628. .top-box .top-content-wrap .teacher-box .tea-detail-box ul li .text {
  629. font-size: 12px;
  630. line-height: 14px;
  631. color: rgba(255,255,255,.6);
  632. }
  633. .top-box .top-content-wrap .teacher-box .tea-detail-box ul li a{
  634. text-decoration: none;
  635. }
  636. .project-introduce {
  637. position: relative;
  638. width: 100%;
  639. height: auto;
  640. color: #323232;
  641. margin: 0 auto;
  642. background-color: #fff;
  643. padding:12px 7.5% 0;
  644. }
  645. .project-introduce .p-num {
  646. font-family: "monospace";
  647. font-size: 35px;
  648. width: 100%;
  649. height: 55px;
  650. line-height: 60px;
  651. overflow: hidden;
  652. white-space: nowrap;
  653. text-overflow: ellipsis;
  654. text-align: center;
  655. color: #d3b273;
  656. }
  657. .project-introduce .p-bar {
  658. width: 100%;
  659. height: 8px;
  660. margin-top: 10px;
  661. background: #e6e6e6;
  662. overflow: hidden;
  663. -moz-border-radius: 4px;
  664. -webkit-border-radius: 4px;
  665. border-radius: 4px;
  666. }
  667. .project-introduce .p-bar .p-bar-purple {
  668. height: 8px;
  669. background-color:#d3b273;
  670. }
  671. .project-introduce .p-progress {
  672. width: 100%;
  673. height: 32px;
  674. line-height: 32px;
  675. font-size: 14px;
  676. font-weight: 700;
  677. margin-top: 5px;
  678. text-align: center;
  679. }
  680. .p-progress .percent{
  681. color: #d3b273;
  682. }
  683. .project-introduce .p-title{
  684. display: block;
  685. margin: 0 auto;
  686. width: 100px;
  687. text-align: center;
  688. color: #b0b0b0;
  689. }
  690. .brokerSignUp,.brokerPsMoney{
  691. float: right;
  692. border: none;
  693. background-color: transparent;
  694. color: #fff;
  695. width: 60px;
  696. height: auto;
  697. position: absolute;
  698. right: 5px;
  699. top: 10px;
  700. z-index: 55;
  701. }
  702. .brokerPsMoney{
  703. left: 5px;
  704. width: auto;
  705. max-width: 85px;
  706. display: inline-block;
  707. overflow: hidden;
  708. }
  709. .brokerSignUp i,.brokerPsMoney i{
  710. display: block;
  711. font-size: 12px;
  712. }
  713. .brokerSignUp i::before,.brokerPsMoney i::before{
  714. font-size: 16px;
  715. }
  716. .brokerSignUp span,.brokerPsMoney span{
  717. font-size: 12px;
  718. letter-spacing: 1px;
  719. }
  720. .brokerArrow{
  721. position: absolute;
  722. right: 0px;
  723. top: 11px;
  724. font-size: 12px;
  725. }
  726. .host_avatar{
  727. position: absolute;
  728. right: 10px;
  729. bottom: -30px;
  730. width: 60px;
  731. height: 60px;
  732. border-radius: 100%;
  733. background: #eee;
  734. overflow: hidden;
  735. border: 2px solid #fff;
  736. }
  737. .host_avatar img{
  738. width: 100%;
  739. height: 100%;
  740. border-radius: 100%;
  741. }
  742. .summaryButtonWrap{
  743. padding: 0;
  744. border: none;
  745. background-image: none;
  746. }
  747. .summaryButton{
  748. width: 50%;
  749. height: 100%;
  750. border: none;
  751. background-color: transparent;
  752. color: #fff;
  753. position: relative;
  754. }
  755. .signUpTr{
  756. color: #5babe6;
  757. }
  758. .signUpTr::before{
  759. content: "";
  760. position: absolute;
  761. height: 30px;
  762. width: 0;
  763. border-right: 1px solid #a6a6a7;
  764. right: 0;
  765. top: 8px;
  766. border-radius: 50px;
  767. opacity: .7;
  768. }
  769. .signUpTs{
  770. color: #f91000;
  771. }
  772. .myTaskAgree{
  773. background:#fff url("../img/getedAgree.png")no-repeat scroll right top;
  774. background-size:22%;
  775. }
  776. .myTaskCancel{
  777. background:#fff url("../img/getedCancel.png")no-repeat scroll right top;
  778. background-size:22%;
  779. }
  780. .study-points {
  781. padding: 0;
  782. height: 21px;
  783. margin-top: 9px;
  784. }
  785. .study-points .i-left {
  786. margin-right:18px;
  787. }
  788. .study-points .i-right {
  789. float: right;
  790. }
  791. .study-points .i-right em{
  792. color: #f48357;
  793. }
  794. .study-points span {
  795. margin-right: 12px;
  796. font-size: 13px;
  797. color: #787d82;
  798. }
  799. .course-list .study-points span {
  800. margin-right: 12px;
  801. }
  802. .enterTechnicalTaskBottomBtn{
  803. width: 100%;
  804. background-color: #5babe6;
  805. border: none;
  806. color: #fff;
  807. }
  808. .technicalInsetIcon{
  809. width: 37px;
  810. text-align: center;
  811. right: 0;
  812. }
  813. .infoTitleBanner{
  814. height: 65px;
  815. }
  816. .infoTitleBanner .slider-pager{
  817. bottom: 0 !important;
  818. height: 17px;
  819. }
  820. .infoTitleBanner .slider-pager span.active{
  821. color:#5babe6 !important;
  822. }
  823. .infoTitleBanner .slider-pager .slider-pager-page{
  824. color: #a6a6a7 !important;
  825. }
  826. .dottedSplice{
  827. font-size: 16px;
  828. padding-left: 25px;
  829. position: relative;
  830. border-top: 1px solid #e6e6e7;
  831. padding-top: 10px;
  832. margin-bottom: 0;
  833. }
  834. .dottedSplice s{
  835. display: inline-block;
  836. width: 3px;
  837. height: 15px;
  838. background-color: #f91000;
  839. position: absolute;
  840. left: 19px;
  841. top: 13px;
  842. }
  843. .addProjectInfoName::before{
  844. content: "添加工程中心信息" !important;
  845. display: block;
  846. }
  847. .addYFTRInfoName::before{
  848. content: "添加研发投入信息" !important;
  849. display: block;
  850. }
  851. .addrealInfoName::before{
  852. content: "添加实际收入/预计投入情况" !important;
  853. display: block;
  854. }
  855. .addGreatProductButtonName:before{
  856. content: "添加高新产品" !important;
  857. display: block;
  858. }
  859. .addimportantProjectInfoButton:before{
  860. content: "添加重大科研项目" !important;
  861. display: block;
  862. }
  863. .addAdviceButton:before{
  864. content: "添加项目建议" !important;
  865. display: block;
  866. }
  867. .AddOrexperienceInfo:before{
  868. content: "添加产学研经验" !important;
  869. display: block;
  870. }
  871. .addpatentInfo:before{
  872. content: "添加专利" !important;
  873. display: block;
  874. }
  875. .addtalentInfo:before{
  876. content: "添加人才" !important;
  877. display: block;
  878. }
  879. .addshoolStudyInfo:before{
  880. content: "添加成果" !important;
  881. display: block;
  882. }
  883. .addshoolExportInfo:before{
  884. content: "添加专家" !important;
  885. display: block;
  886. }
  887. .addSpecialitiesInfo:before{
  888. content: "添加特色专业" !important;
  889. display: block;
  890. }
  891. .addschoolLaboratoryInfo:before{
  892. content: "添加实验室" !important;
  893. display: block;
  894. }
  895. .addDemandFeedBackInfo:before{
  896. content: "添加解决方案" !important;
  897. display: block;
  898. }
  899. .addproblemInfoInfo:before{
  900. content: "添加解决方案" !important;
  901. display: block;
  902. }
  903. .addAchieveButtonName:before{
  904. content: "添加成果" !important;
  905. display: block;
  906. }
  907. .delProjectInfoName::before{
  908. content: "删除工程中心信息" !important;
  909. display: block;
  910. }
  911. .delYFTRInfoName::before{
  912. content: "删除研发投入信息" !important;
  913. display: block;
  914. }
  915. .delrealButtonName::before{
  916. content: "删除实际收入/预计投入情况" !important;
  917. display: block;
  918. }
  919. .delGreatProductButtonName::before{
  920. content: "删除高新产品" !important;
  921. display: block;
  922. }
  923. .delImportantProjectInfoButtonName::before{
  924. content: "删除重大科研项目" !important;
  925. display: block;
  926. }
  927. .delAdviceButton::before{
  928. content: "删除项目建议" !important;
  929. display: block;
  930. }
  931. .delExperienceInfo::before{
  932. content: "删除产学研经验" !important;
  933. display: block;
  934. }
  935. .delpatentInfo::before{
  936. content: "删除专利" !important;
  937. display: block;
  938. }
  939. .deltalentInfo::before{
  940. content: "删除人才" !important;
  941. display: block;
  942. }
  943. .delAchieveButtonName::before{
  944. content: "删除成果" !important;
  945. display: block;
  946. }
  947. .delshoolExportInfo::before{
  948. content: "删除专家" !important;
  949. display: block;
  950. }
  951. .delshoolStudyInfo::before{
  952. content: "删除成果" !important;
  953. display: block;
  954. }
  955. .delSpecialitiesInfo::before{
  956. content: "删除特色专业" !important;
  957. display: block;
  958. }
  959. .delschoolLaboratoryInfo::before{
  960. content: "删除实验室" !important;
  961. display: block;
  962. }
  963. .top-box .top-content-wrap .teacher-box .company-title{
  964. position: relative;
  965. margin: 0 auto 0;
  966. width: 245px;
  967. height: 65px;
  968. text-align: center;
  969. color: #fff;
  970. z-index: 2;
  971. overflow: hidden;
  972. text-overflow: ellipsis;
  973. white-space: nowrap;
  974. }
  975. .top-box .top-content-wrap .teacher-box .company-title span{
  976. overflow: hidden;
  977. text-overflow: ellipsis;
  978. white-space: nowrap;
  979. font-size: 18px;
  980. position: relative;
  981. top: 4px;
  982. }
  983. .top-box .top-content-wrap .teacher-box .company-title h6{
  984. color: #fff;
  985. margin: 5px 0 2px;
  986. font-size: 14px;
  987. }
  988. .company-title .ion-location{
  989. font-size: 19px;
  990. position: relative;
  991. left: -5px;
  992. top: 1px;
  993. }
  994. .companySectionFloor{
  995. background-color: #fff;
  996. }
  997. .companySectionFloor .titCom{
  998. padding-left: 11px;
  999. border-bottom: 2px solid #5babe6;
  1000. line-height: 32px;
  1001. height: 32px;
  1002. font-size: 17px;
  1003. width: 95%;
  1004. margin: 10px auto;
  1005. position:relative;
  1006. }
  1007. .companySectionFloor .titCom::before{
  1008. content: "";
  1009. display: block;
  1010. width: 3px;
  1011. height: 16px;
  1012. background-color: #f91000;
  1013. position: absolute;
  1014. left: 4px;
  1015. top: 9px;
  1016. border-radius: 10px;
  1017. }
  1018. .companySectionFloor ul li{
  1019. width: 95%;
  1020. margin: 0 auto;
  1021. display: block;
  1022. position: relative;
  1023. border-bottom: .5px solid #e6e6e7;
  1024. height: auto;
  1025. min-height: 50px;
  1026. line-height: 22px;
  1027. padding-left: 25px;
  1028. }
  1029. .companySectionFloor ul li:last-child{
  1030. border-bottom:none;
  1031. }
  1032. .companySectionFloor ul li em{
  1033. color: #949494;
  1034. font-size: 13px;
  1035. }
  1036. .companySectionFloor ul li div{
  1037. position: relative;
  1038. }
  1039. .companySectionFloor ul li div span{
  1040. position: relative;
  1041. font-size: 16px;
  1042. }
  1043. .companySectionFloor ul li div i{
  1044. position: absolute;
  1045. left: -20px;
  1046. font-size: 20px;
  1047. }
  1048. .visitCompanyBtn{
  1049. z-index: 5;
  1050. position: absolute;
  1051. bottom: 68px;
  1052. right: 14px;
  1053. width: 60px;
  1054. height: 60px;
  1055. }
  1056. .visitCompanyBtn button{
  1057. height: 60px;
  1058. margin-left: 0 !important;
  1059. position: relative;
  1060. float: left;
  1061. width: 100%;
  1062. background-color: #5babe6;
  1063. border: none;
  1064. border-radius: 50%;
  1065. box-shadow: 0 0 15px 2px #6babda;
  1066. }
  1067. .visitCompanyBtn button span{
  1068. color: #fff;
  1069. position: relative;
  1070. height: 60px;
  1071. display: inline-flex;
  1072. font-size: 14px;
  1073. line-height: 60px;
  1074. }
  1075. .showAnotherBtn{
  1076. position: absolute;
  1077. /*top: 0;*/
  1078. left: 0;
  1079. bottom:0;
  1080. z-index: 5;
  1081. background-color: rgba(0,0,0,0.6);
  1082. width: 100%;
  1083. max-width:20.5rem;
  1084. height: 60%;
  1085. margin:auto;
  1086. border-radius:20px 20px 0 0;
  1087. }
  1088. .button-box{
  1089. max-width:20.5rem;
  1090. position: relative;
  1091. height:100%;
  1092. margin:auto;
  1093. }
  1094. .buttonEnter_ulWrap{
  1095. position: absolute;
  1096. /*bottom: 140px;*/
  1097. color: #fff;
  1098. display: block;
  1099. width: 100%;
  1100. height: auto;
  1101. top:50px;
  1102. }
  1103. .buttonEnter_ulWrap li{
  1104. height: auto;
  1105. display: inline-block;
  1106. float: left;
  1107. width: 33%;
  1108. text-align: center;
  1109. position: relative;
  1110. padding:5px 0;
  1111. }
  1112. .buttonEnter_ulWrap li i{
  1113. display: block;
  1114. width: 60px;
  1115. margin: 0 auto;
  1116. /*background-color: #f91000;*/
  1117. height: 57px;
  1118. border-radius: 50%;
  1119. color: #fff;
  1120. font-size: 1rem;
  1121. line-height: 60px;
  1122. }
  1123. .buttonEnter_ulWrap li:nth-child(1){
  1124. animation: toTopScroll1 0.1s;
  1125. animation-fill-mode: forwards;
  1126. }
  1127. @-webkit-keyframes toTopScroll1 {
  1128. 0%{bottom: 0;}
  1129. 100%{bottom: 0;}
  1130. }
  1131. .buttonEnter_ulWrap li:nth-child(2){
  1132. animation: toTopScroll2 0.2s;
  1133. animation-fill-mode: forwards;
  1134. }
  1135. @-webkit-keyframes toTopScroll2 {
  1136. 0%{bottom: -18px;opacity: .5}
  1137. 100%{bottom: 0;opacity: 1}
  1138. }
  1139. .buttonEnter_ulWrap li:nth-child(3){
  1140. animation: toTopScroll3 0.3s;
  1141. animation-fill-mode: forwards;
  1142. }
  1143. @-webkit-keyframes toTopScroll3 {
  1144. 0%{bottom: -25px;opacity: .5}
  1145. 100%{bottom: 0;opacity: 1}
  1146. }
  1147. .buttonEnter_ulWrap li:nth-child(4){
  1148. animation: toTopScroll4 0.5s;
  1149. animation-fill-mode: forwards;
  1150. }
  1151. @-webkit-keyframes toTopScroll4 {
  1152. 0%{bottom: -60px;opacity: .3}
  1153. 100%{bottom: 0;opacity: 1}
  1154. }
  1155. .buttonEnter_ulWrap li:nth-child(5){
  1156. animation: toTopScroll5 0.6s;
  1157. animation-fill-mode: forwards;
  1158. }
  1159. @-webkit-keyframes toTopScroll5 {
  1160. 0%{bottom: -80px;opacity: .3}
  1161. 100%{bottom: 0;opacity: 1}
  1162. }
  1163. .buttonEnter_ulWrap li:nth-child(6){
  1164. animation: toTopScroll6 0.7s;
  1165. animation-fill-mode: forwards;
  1166. }
  1167. @-webkit-keyframes toTopScroll6 {
  1168. 0%{bottom: -105px;opacity: .3}
  1169. 100%{bottom: 0;opacity: 1}
  1170. }
  1171. .buttonEnter_ulWrap li:nth-child(7){
  1172. animation: toTopScroll7 0.8s;
  1173. animation-fill-mode: forwards;
  1174. }
  1175. @-webkit-keyframes toTopScroll7 {
  1176. 0%{bottom: -125px;opacity: .3}
  1177. 100%{bottom: 0;opacity: 1}
  1178. }
  1179. .buttonEnter_ulWrap li:nth-child(8){
  1180. animation: toTopScroll8 0.9s;
  1181. animation-fill-mode: forwards;
  1182. }
  1183. @-webkit-keyframes toTopScroll8 {
  1184. 0%{bottom: -145px;opacity: .3}
  1185. 100%{bottom: 0;opacity: 1}
  1186. }
  1187. /*.buttonEnter_ulWrap li:nth-child(1) i{*/
  1188. /*background-color:#f74866;*/
  1189. /*}*/
  1190. /*.buttonEnter_ulWrap li:nth-child(2) i{*/
  1191. /*background-color:#6095d1;*/
  1192. /*}*/
  1193. /*.buttonEnter_ulWrap li:nth-child(3) i{*/
  1194. /*background-color:#42cd89;*/
  1195. /*}*/
  1196. /*.buttonEnter_ulWrap li:nth-child(4) i{*/
  1197. /*background-color:#8591e7;*/
  1198. /*}*/
  1199. /*.buttonEnter_ulWrap li:nth-child(5) i{*/
  1200. /*background-color:#f9a11e;*/
  1201. /*}*/
  1202. /*.buttonEnter_ulWrap li:nth-child(6) i{*/
  1203. /*background-color:#5cabd7;*/
  1204. /*}*/
  1205. .hideAnthorBtnWrap{
  1206. position: absolute;
  1207. right: 0;
  1208. top:10px;
  1209. width: 77px;
  1210. height: 50px;
  1211. font-size: 29px;
  1212. color: #fff;
  1213. background-color: transparent;
  1214. border: navajowhite;
  1215. }
  1216. .middleWrapSection{
  1217. width: 95%;
  1218. margin: 0 auto;
  1219. }
  1220. .middleWrapSection ul{
  1221. height: auto;
  1222. overflow: hidden;
  1223. }
  1224. .middleWrapSection ul li{
  1225. width:49%;
  1226. height: auto;
  1227. border-radius: 7px;
  1228. padding-top: 5px;
  1229. margin-top: 12px;
  1230. }
  1231. .middleWrapSection ul li span{
  1232. display: block;
  1233. font-weight: bold;
  1234. font-size: 17px;
  1235. height: 35px;
  1236. line-height: 35px;
  1237. padding-left: 12px;
  1238. letter-spacing: 3px;
  1239. }
  1240. .middleWrapSection ul li em{
  1241. display: block;
  1242. padding-left: 12px;
  1243. padding-bottom: 10px;
  1244. }
  1245. .middleWrapSection ul li:nth-child(1){
  1246. float: left;
  1247. background-color: #fed957;
  1248. color: #ad8603;
  1249. }
  1250. .middleWrapSection ul li:nth-child(2){
  1251. float: right;
  1252. background-color: #97ddff;
  1253. color: #1b8cce;
  1254. }
  1255. .errorClock:before{
  1256. position: relative !important;
  1257. left: 2px !important;
  1258. }
  1259. .detailTaskResume_wrap{
  1260. width: 96%;
  1261. margin: 0 auto;
  1262. background-color: #fff;
  1263. padding: 12px;
  1264. }
  1265. .taskDetailFloorTop{
  1266. background-color: #fff;
  1267. width: 97%;
  1268. display: block;
  1269. border-radius: 4px;
  1270. padding: 5px 12px;
  1271. margin: 8px auto;
  1272. }
  1273. .detailTaskResume_name{
  1274. font-size: 16px;
  1275. font-weight: bold;
  1276. padding-left:9px;
  1277. display: block;
  1278. position: relative;
  1279. }
  1280. .detailTaskResume_name:before{
  1281. content: "";
  1282. display: block;
  1283. position: absolute;
  1284. width: 4px;
  1285. height: 15px;
  1286. background-color: #5babe6;
  1287. left: 0;
  1288. top: 2px;
  1289. border-radius: 3px;
  1290. }
  1291. .detailTaskResume_peoCir{
  1292. display: block;
  1293. height: auto;
  1294. line-height: 32px;
  1295. padding-left: 15px;
  1296. position: relative;
  1297. }
  1298. .detailTaskResume_peoCir::before{
  1299. content: "";
  1300. display: block;
  1301. position: absolute;
  1302. width: 5px;
  1303. height: 5px;
  1304. border-radius: 50%;
  1305. left: 6px;
  1306. top: 6px;
  1307. background-color: #f91000;
  1308. }
  1309. .detailTaskResume_peoWrap{
  1310. position: relative;
  1311. display: block;
  1312. }
  1313. .detailTaskResume_peoCir::after{
  1314. content: "";
  1315. position: absolute;
  1316. display: block;
  1317. height: 45px;
  1318. border-left: 1px solid #e6e6e7;
  1319. top: 10px;
  1320. left: 8px;
  1321. z-index: 1;
  1322. }
  1323. .detailTaskResume_peoCir:last-child::after{
  1324. height: 43px;
  1325. border-left: 1px dashed #e6e6e7;
  1326. top: 0;
  1327. }
  1328. .reousrcrKuProfile{
  1329. line-height: 17px;
  1330. word-wrap: break-word;
  1331. overflow: hidden;
  1332. text-overflow: ellipsis;
  1333. display: -webkit-box;
  1334. -webkit-line-clamp: 2;
  1335. -webkit-box-orient: vertical;
  1336. max-height: 46px;
  1337. font-size: 12px;
  1338. width: 88%;
  1339. }
  1340. .resourceLinksWrap{
  1341. border-bottom: 1px dashed #5babe6;
  1342. height: 100px !important;
  1343. border-radius: 0 !important;
  1344. }
  1345. .resourceLinksWrap:last-child{
  1346. border-bottom:none !important;
  1347. }
  1348. .resourceLinksFloor{
  1349. height: 274px;
  1350. overflow-y: scroll;
  1351. }
  1352. .resourceGO{
  1353. line-height: 80px;
  1354. padding-left: 7px;
  1355. }
  1356. .detailTaskResume_detail{
  1357. display: block;
  1358. height: auto;
  1359. overflow: hidden;
  1360. }
  1361. .detailTaskResume_detail p{
  1362. margin: 0;
  1363. font-size: 12px;
  1364. color: #a6a6a7;
  1365. }
  1366. .detailTaskResume_detail h6{
  1367. margin: 0;
  1368. text-align: left;
  1369. width: auto;
  1370. text-indent: 0;
  1371. font-size: 14px;
  1372. }
  1373. .detailTaskResume_detail span{
  1374. position: absolute;
  1375. right:14px;
  1376. top: 0;
  1377. font-size: 12px;
  1378. color: #a1a1a1;
  1379. height: 20px;
  1380. line-height: 20px;
  1381. }
  1382. .detailTaskResume_detailWrapF{
  1383. height: auto;
  1384. display: block;
  1385. }
  1386. .toDoTaskBtn{
  1387. position: absolute;
  1388. right: 10px;
  1389. color: #5babe6;
  1390. display: block;
  1391. border: none;
  1392. top: 0;
  1393. line-height: 15px;
  1394. height: 15px;
  1395. }
  1396. .showResourceBtn_bt{
  1397. position: fixed;
  1398. right: 12px;
  1399. bottom: 95px;
  1400. z-index: 4;
  1401. border: none;
  1402. background:url("../img/wyf.png")no-repeat scroll center center;
  1403. width: 100px;
  1404. height: 50px;
  1405. background-size: 100%;
  1406. animation: dtnFrame 2s linear infinite;
  1407. -webkit-animation: dtnFrame 2s linear infinite;
  1408. }
  1409. @-webkit-keyframes dtnFrame{
  1410. 10% {
  1411. transform: rotate(15deg);
  1412. }
  1413. 20% {
  1414. transform: rotate(-10deg);
  1415. }
  1416. 30% {
  1417. transform: rotate(5deg);
  1418. }
  1419. 40% {
  1420. transform: rotate(-5deg);
  1421. }
  1422. 50%,100% {
  1423. transform: rotate(0deg);
  1424. }
  1425. }
  1426. .addCompanyInfo_button{
  1427. position: absolute;
  1428. right: 37px;
  1429. width: auto;
  1430. height: auto;
  1431. bottom: 60px;
  1432. z-index:5;
  1433. }
  1434. .addCompanyInfo_button span{
  1435. width: 65px;
  1436. height: 65px;
  1437. border: none;
  1438. background-image:linear-gradient(to bottom, #86c2ef 0%, #5babe6 100%);
  1439. border-radius: 50%;
  1440. display: block;
  1441. font-size: 50px;
  1442. color: #fff;
  1443. text-align: center;
  1444. line-height: 58px;
  1445. box-shadow: 0 1px 10px 4px #86c2ef;
  1446. }
  1447. .addCompanyInfo_button span.goVisit::before{
  1448. content: '新建走访';
  1449. display: block;
  1450. font-size: 15px;
  1451. position: absolute;
  1452. bottom: -28px;
  1453. color: #5babe6;
  1454. width: 100%;
  1455. height: 20px;
  1456. line-height: 25px;
  1457. background-color: #fff;
  1458. }
  1459. .addCompanyInfo_button span.recordBtn::before{
  1460. content: '新建录入' !important;
  1461. }
  1462. .addCompanyInfo_button span.goVisitE::before{
  1463. content: '新建需求' !important;
  1464. }
  1465. .addCompanyInfo_button span.goVisitA::before{
  1466. content: '新建成果' !important;
  1467. }
  1468. .addCompanyInfo_button span.goVisitB::before{
  1469. content: '新建企业' !important;
  1470. }
  1471. .addCompanyInfo_button span.goVisitC::before{
  1472. content: '新建高校' !important;
  1473. }
  1474. .addCompanyInfo_button span.goVisitD::before{
  1475. content: '新建人才' !important;
  1476. }
  1477. .addCompanyInfo_button span.goVisitF::before{
  1478. content: '新建报表' !important;
  1479. }
  1480. .actPassword_wrap{
  1481. height: 230px;
  1482. display: block;
  1483. width: 90%;
  1484. margin: 0 auto;
  1485. padding-top: 75px;
  1486. }
  1487. .actPassword_wrap label{
  1488. display: block;
  1489. width: auto;
  1490. height: auto;
  1491. margin-top:0;
  1492. }
  1493. .actPassword_wrap span{
  1494. display: block;
  1495. text-align: center;
  1496. font-weight: bold;
  1497. color: #ea783f;
  1498. font-size: 25px;
  1499. letter-spacing: 12px;
  1500. text-indent: 12px;
  1501. margin: 12px 0;
  1502. }
  1503. .actPassword_wrap input{
  1504. display: block;
  1505. vertical-align: -2px;
  1506. border: 1px solid #e6e6e7;
  1507. border-radius: 4px;
  1508. width: 150px;
  1509. padding-left: 12px;
  1510. margin: 0 auto;
  1511. position: relative;
  1512. top: -5px;
  1513. }
  1514. .actPassword_wrap button{
  1515. width: 136px;
  1516. height: 40px;
  1517. line-height: 35px;
  1518. color: #fff;
  1519. background-color: #f95900;
  1520. border: none;
  1521. border-radius: 50px;
  1522. display: block;
  1523. margin: 18px auto 0;
  1524. }
  1525. .actPassword_wrap em{
  1526. color: #fff;
  1527. display: block;
  1528. width: 130px;
  1529. text-align: center;
  1530. position: relative;
  1531. top: 9px;
  1532. margin: 0 auto;
  1533. }
  1534. .kl_bottom{
  1535. background-color: rgba(0,0,0,.7);
  1536. }
  1537. .kl_container{
  1538. background: url("../img/kouling.png")no-repeat scroll 0 0;
  1539. background-size: 100% 145%;
  1540. height: 305px;
  1541. top: 40%;
  1542. }
  1543. .kl_container .successArrangeWrap{
  1544. background-color: transparent;
  1545. border-bottom: none;
  1546. }
  1547. .actGBtn{
  1548. top: 50px;
  1549. position: relative;
  1550. }
  1551. .comEnterTing{
  1552. position: absolute;
  1553. right: 9px;
  1554. bottom:8px;
  1555. font-size: 12px;
  1556. color: #a6a6a7;
  1557. }
  1558. .icon_Cz{
  1559. background-position: -85px -93px !important;
  1560. background-size: 415% !important;
  1561. }
  1562. .visitorContentWrap{
  1563. height:auto;
  1564. width: 95%;
  1565. margin: 0 auto;
  1566. position: relative;
  1567. padding-bottom: 10px;
  1568. }
  1569. .visitorContentWrap .visitIndustryName h5{
  1570. color: #5CABD7;
  1571. position: relative;
  1572. }
  1573. .visitIndustryName h5 i{
  1574. color: #5CABD7;
  1575. transform: rotate(-153deg);
  1576. display: inline-block;
  1577. font-size: 24px;
  1578. vertical-align: -5px;
  1579. margin-right: 8px;
  1580. }
  1581. .visitIndustryName .moreRightButton{
  1582. top: 0;
  1583. }
  1584. .visitorContentWrap .visitorContentFloor{
  1585. border-bottom: 1px solid #e6e6e7;
  1586. }
  1587. .visitorContentMiddle{
  1588. height: auto;
  1589. position: relative;
  1590. margin-top: 10px;
  1591. padding-left: 21px;
  1592. }
  1593. .visitorContentMiddle li{
  1594. }
  1595. .visitorContentMiddle li em{
  1596. color: #a6a6a7;
  1597. margin-left: 8px;
  1598. }
  1599. .visitBtn{
  1600. width: 90%;
  1601. border: none;
  1602. color: #5babe6;
  1603. background-color: #f4f4f4;
  1604. margin: 10px auto 0;
  1605. display: block;
  1606. padding: 7px 0;
  1607. border-radius: 4px;
  1608. }
  1609. /*返回网站首页*/
  1610. .comback-to-web{
  1611. position: absolute;
  1612. bottom:50px;
  1613. left:0;
  1614. z-index:5;
  1615. display:flex;
  1616. flex-direction: column;
  1617. align-items: center;
  1618. }
  1619. .comback-to-web i{
  1620. font-size:36px;
  1621. color:#5babe6;
  1622. }
  1623. .comback-to-web span{
  1624. font-size:12px;
  1625. }